From 1c22cc2f9f4a080da6ebfaa17ad88f219ff77f29 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Thu, 26 Sep 2019 13:52:22 -0300 Subject: [PATCH] [CHORE] Update react-native-safe-area-view (#1219) --- app/containers/FileModal.js | 3 +- app/containers/MessageBox/Recording.js | 3 +- app/containers/ReactionsModal.js | 3 +- app/index.js | 15 +- app/share.js | 21 +- app/views/AdminPanelView/index.js | 2 +- app/views/AutoTranslateView/index.js | 3 +- app/views/CreateChannelView.js | 2 +- app/views/DirectoryView/index.js | 2 +- app/views/ForgotPasswordView.js | 2 +- app/views/LanguageView/index.js | 3 +- app/views/LegalView.js | 2 +- app/views/LoginSignupView.js | 2 +- app/views/LoginView.js | 2 +- app/views/MessagesView/index.js | 2 +- app/views/NewMessageView.js | 2 +- app/views/NewServerView.js | 12 +- .../NotificationPreferencesView/index.js | 2 +- app/views/OnboardingView/index.js | 2 +- app/views/ProfileView/index.js | 2 +- app/views/ReadReceiptView/index.js | 2 +- app/views/RegisterView.js | 2 +- app/views/RoomActionsView/index.js | 2 +- app/views/RoomInfoEditView/index.js | 2 +- app/views/RoomInfoView/index.js | 2 +- app/views/RoomMembersView/index.js | 2 +- app/views/RoomView/index.js | 2 +- app/views/RoomsListView/index.js | 2 +- app/views/SearchMessagesView/index.js | 2 +- app/views/SelectServerView.js | 2 +- app/views/SelectedUsersView.js | 2 +- app/views/SetUsernameView.js | 2 +- app/views/SettingsView/index.js | 3 +- app/views/ShareListView/index.js | 2 +- app/views/ShareView/index.js | 5 +- app/views/SidebarView/index.js | 3 +- app/views/ThreadMessagesView/index.js | 2 +- ios/Podfile.lock | 6 + .../RNCSafeAreaView.h | 1 + .../RNCSafeAreaViewManager.h | 1 + .../RNCSafeAreaView.h | 1 + .../RNCSafeAreaViewManager.h | 1 + ...eact-native-safe-area-context.podspec.json | 22 + ios/Pods/Manifest.lock | 6 + ios/Pods/Pods.xcodeproj/project.pbxproj | 22519 ++++++++-------- ...ods-RocketChatRN-acknowledgements.markdown | 25 + .../Pods-RocketChatRN-acknowledgements.plist | 31 + .../Pods-RocketChatRN.debug.xcconfig | 6 +- .../Pods-RocketChatRN.release.xcconfig | 6 +- ...hareRocketChatRN-acknowledgements.markdown | 25 + ...s-ShareRocketChatRN-acknowledgements.plist | 31 + .../Pods-ShareRocketChatRN.debug.xcconfig | 6 +- .../Pods-ShareRocketChatRN.release.xcconfig | 6 +- .../react-native-safe-area-context-dummy.m | 5 + .../react-native-safe-area-context-prefix.pch | 12 + .../react-native-safe-area-context.xcconfig | 9 + package.json | 2 + patches/react-native+0.60.4.patch_ | 170 - yarn.lock | 12 + 59 files changed, 11623 insertions(+), 11406 deletions(-) create mode 120000 ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaView.h create mode 120000 ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaViewManager.h create mode 120000 ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaView.h create mode 120000 ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaViewManager.h create mode 100644 ios/Pods/Local Podspecs/react-native-safe-area-context.podspec.json create mode 100644 ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context-dummy.m create mode 100644 ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context-prefix.pch create mode 100644 ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context.xcconfig delete mode 100644 patches/react-native+0.60.4.patch_ diff --git a/app/containers/FileModal.js b/app/containers/FileModal.js index bf7e53ec9..efff28af3 100644 --- a/app/containers/FileModal.js +++ b/app/containers/FileModal.js @@ -1,11 +1,12 @@ import React, { useState } from 'react'; import { - View, Text, TouchableWithoutFeedback, ActivityIndicator, StyleSheet, SafeAreaView + View, Text, TouchableWithoutFeedback, ActivityIndicator, StyleSheet } from 'react-native'; import FastImage from 'react-native-fast-image'; import PropTypes from 'prop-types'; import Modal from 'react-native-modal'; import ImageViewer from 'react-native-image-zoom-viewer'; +import SafeAreaView from 'react-native-safe-area-view'; import { Video } from 'expo-av'; import sharedStyles from '../views/Styles'; diff --git a/app/containers/MessageBox/Recording.js b/app/containers/MessageBox/Recording.js index d5fed549a..6c1a1fb47 100644 --- a/app/containers/MessageBox/Recording.js +++ b/app/containers/MessageBox/Recording.js @@ -1,10 +1,11 @@ import React from 'react'; import PropTypes from 'prop-types'; import { - View, SafeAreaView, PermissionsAndroid, Text + View, PermissionsAndroid, Text } from 'react-native'; import { AudioRecorder, AudioUtils } from 'react-native-audio'; import { BorderlessButton } from 'react-native-gesture-handler'; +import SafeAreaView from 'react-native-safe-area-view'; import FileSystem from 'expo-file-system'; import styles from './styles'; diff --git a/app/containers/ReactionsModal.js b/app/containers/ReactionsModal.js index 17b59f5b0..4da25f673 100644 --- a/app/containers/ReactionsModal.js +++ b/app/containers/ReactionsModal.js @@ -1,10 +1,11 @@ import React from 'react'; import { - View, Text, FlatList, StyleSheet, SafeAreaView + View, Text, FlatList, StyleSheet } from 'react-native'; import PropTypes from 'prop-types'; import Modal from 'react-native-modal'; import Touchable from 'react-native-platform-touchable'; +import SafeAreaView from 'react-native-safe-area-view'; import Emoji from './message/Emoji'; import I18n from '../i18n'; diff --git a/app/index.js b/app/index.js index 9782714fb..4c4ad2f57 100644 --- a/app/index.js +++ b/app/index.js @@ -6,6 +6,7 @@ import { Provider } from 'react-redux'; import { useScreens } from 'react-native-screens'; // eslint-disable-line import/no-unresolved import { Linking } from 'react-native'; import PropTypes from 'prop-types'; +import { SafeAreaProvider } from 'react-native-safe-area-context'; import { appInit } from './actions'; import { deepLinkingOpen } from './actions/deepLinking'; @@ -314,12 +315,14 @@ export default class Root extends React.Component { return ( - { - Navigation.setTopLevelNavigator(navigatorRef); - }} - onNavigationStateChange={onNavigationStateChange} - /> + + { + Navigation.setTopLevelNavigator(navigatorRef); + }} + onNavigationStateChange={onNavigationStateChange} + /> + ); diff --git a/app/share.js b/app/share.js index 73d6f06b4..5fce5de14 100644 --- a/app/share.js +++ b/app/share.js @@ -1,14 +1,13 @@ import React from 'react'; -import { View } from 'react-native'; import { createAppContainer, createSwitchNavigator } from 'react-navigation'; import { createStackNavigator } from 'react-navigation-stack'; import { Provider } from 'react-redux'; import RNUserDefaults from 'rn-user-defaults'; +import { SafeAreaProvider } from 'react-native-safe-area-context'; import Navigation from './lib/ShareNavigation'; import store from './lib/createStore'; -import sharedStyles from './views/Styles'; -import { isNotch, isIOS } from './utils/deviceInfo'; +import { isIOS } from './utils/deviceInfo'; import { defaultHeader, onNavigationStateChange } from './utils/navigation'; import RocketChat from './lib/rocketchat'; import LayoutAnimation from './utils/layoutAnimation'; @@ -51,9 +50,6 @@ const AppContainer = createAppContainer(createSwitchNavigator({ class Root extends React.Component { constructor(props) { super(props); - this.state = { - isLandscape: false - }; this.init(); } @@ -72,18 +68,9 @@ class Root extends React.Component { } } - handleLayout = (event) => { - const { width, height } = event.nativeEvent.layout; - this.setState({ isLandscape: width > height }); - } - render() { - const { isLandscape } = this.state; return ( - + - + ); } } diff --git a/app/views/AdminPanelView/index.js b/app/views/AdminPanelView/index.js index c31529680..9fe591d78 100644 --- a/app/views/AdminPanelView/index.js +++ b/app/views/AdminPanelView/index.js @@ -1,7 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { WebView } from 'react-native-webview'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import { connect } from 'react-redux'; import I18n from '../../i18n'; diff --git a/app/views/AutoTranslateView/index.js b/app/views/AutoTranslateView/index.js index 0bb520a6b..653db1e3e 100644 --- a/app/views/AutoTranslateView/index.js +++ b/app/views/AutoTranslateView/index.js @@ -3,7 +3,8 @@ import PropTypes from 'prop-types'; import { FlatList, Switch, View, StyleSheet } from 'react-native'; -import { SafeAreaView, ScrollView } from 'react-navigation'; +import { ScrollView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import RocketChat from '../../lib/rocketchat'; import I18n from '../../i18n'; diff --git a/app/views/CreateChannelView.js b/app/views/CreateChannelView.js index 46b989922..21876b32a 100644 --- a/app/views/CreateChannelView.js +++ b/app/views/CreateChannelView.js @@ -4,7 +4,7 @@ import PropTypes from 'prop-types'; import { View, Text, Switch, ScrollView, TextInput, StyleSheet, FlatList } from 'react-native'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import equal from 'deep-equal'; import Loading from '../containers/Loading'; diff --git a/app/views/DirectoryView/index.js b/app/views/DirectoryView/index.js index 9f5018c86..502f1748f 100644 --- a/app/views/DirectoryView/index.js +++ b/app/views/DirectoryView/index.js @@ -4,7 +4,7 @@ import { View, FlatList, Text } from 'react-native'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import RocketChat from '../../lib/rocketchat'; import DirectoryItem from '../../presentation/DirectoryItem'; diff --git a/app/views/ForgotPasswordView.js b/app/views/ForgotPasswordView.js index b8e26c083..193e2dae9 100644 --- a/app/views/ForgotPasswordView.js +++ b/app/views/ForgotPasswordView.js @@ -1,6 +1,6 @@ import React from 'react'; import { Text, ScrollView } from 'react-native'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import PropTypes from 'prop-types'; import KeyboardView from '../presentation/KeyboardView'; diff --git a/app/views/LanguageView/index.js b/app/views/LanguageView/index.js index d1dc35dbd..f966dd687 100644 --- a/app/views/LanguageView/index.js +++ b/app/views/LanguageView/index.js @@ -2,7 +2,8 @@ import React from 'react'; import PropTypes from 'prop-types'; import { FlatList } from 'react-native'; import { connect } from 'react-redux'; -import { SafeAreaView, NavigationActions } from 'react-navigation'; +import { NavigationActions } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import RocketChat from '../../lib/rocketchat'; import I18n from '../../i18n'; diff --git a/app/views/LegalView.js b/app/views/LegalView.js index 8986db3dd..1eb4faa7d 100644 --- a/app/views/LegalView.js +++ b/app/views/LegalView.js @@ -3,7 +3,7 @@ import PropTypes from 'prop-types'; import { Text, ScrollView, View, StyleSheet } from 'react-native'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import { RectButton } from 'react-native-gesture-handler'; import { connect } from 'react-redux'; diff --git a/app/views/LoginSignupView.js b/app/views/LoginSignupView.js index 0f55361f8..149f80f5f 100644 --- a/app/views/LoginSignupView.js +++ b/app/views/LoginSignupView.js @@ -5,7 +5,7 @@ import { } from 'react-native'; import { connect } from 'react-redux'; import { Base64 } from 'js-base64'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import { RectButton, BorderlessButton } from 'react-native-gesture-handler'; import equal from 'deep-equal'; diff --git a/app/views/LoginView.js b/app/views/LoginView.js index 87c9cf34f..94e581435 100644 --- a/app/views/LoginView.js +++ b/app/views/LoginView.js @@ -4,7 +4,7 @@ import { Keyboard, Text, ScrollView, View, StyleSheet, Alert } from 'react-native'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import equal from 'deep-equal'; import { analytics } from '../utils/log'; diff --git a/app/views/MessagesView/index.js b/app/views/MessagesView/index.js index bea5d01bd..af7f3a3e0 100644 --- a/app/views/MessagesView/index.js +++ b/app/views/MessagesView/index.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { FlatList, View, Text } from 'react-native'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import equal from 'deep-equal'; import ActionSheet from 'react-native-action-sheet'; diff --git a/app/views/NewMessageView.js b/app/views/NewMessageView.js index 9f4bb8025..51c4542c6 100644 --- a/app/views/NewMessageView.js +++ b/app/views/NewMessageView.js @@ -4,7 +4,7 @@ import { View, StyleSheet, FlatList, Text } from 'react-native'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import equal from 'deep-equal'; import { orderBy } from 'lodash'; import { Q } from '@nozbe/watermelondb'; diff --git a/app/views/NewServerView.js b/app/views/NewServerView.js index 92759700c..97df58e5b 100644 --- a/app/views/NewServerView.js +++ b/app/views/NewServerView.js @@ -4,7 +4,7 @@ import { Text, ScrollView, Keyboard, Image, StyleSheet, TouchableOpacity, View, Alert } from 'react-native'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import * as FileSystem from 'expo-file-system'; import DocumentPicker from 'react-native-document-picker'; import ActionSheet from 'react-native-action-sheet'; @@ -256,8 +256,8 @@ class NewServerView extends React.Component { key='login-view' > - - + + {I18n.t('Sign_in_your_server')} - { isIOS ? this.renderCertificatePicker() : null } - - + {isIOS ? this.renderCertificatePicker() : null} + + {this.renderBack()} ); diff --git a/app/views/NotificationPreferencesView/index.js b/app/views/NotificationPreferencesView/index.js index 423d2a7fb..373256189 100644 --- a/app/views/NotificationPreferencesView/index.js +++ b/app/views/NotificationPreferencesView/index.js @@ -4,7 +4,7 @@ import { } from 'react-native'; import PropTypes from 'prop-types'; import RNPickerSelect from 'react-native-picker-select'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import { SWITCH_TRACK_COLOR } from '../../constants/colors'; import StatusBar from '../../containers/StatusBar'; diff --git a/app/views/OnboardingView/index.js b/app/views/OnboardingView/index.js index c54a6eea6..f5f703348 100644 --- a/app/views/OnboardingView/index.js +++ b/app/views/OnboardingView/index.js @@ -4,7 +4,7 @@ import { } from 'react-native'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import Orientation from 'react-native-orientation-locker'; import { selectServerRequest, serverInitAdd, serverFinishAdd } from '../../actions/server'; diff --git a/app/views/ProfileView/index.js b/app/views/ProfileView/index.js index aab3c76d3..7d0bd2b3d 100644 --- a/app/views/ProfileView/index.js +++ b/app/views/ProfileView/index.js @@ -6,7 +6,7 @@ import Dialog from 'react-native-dialog'; import SHA256 from 'js-sha256'; import ImagePicker from 'react-native-image-crop-picker'; import RNPickerSelect from 'react-native-picker-select'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import equal from 'deep-equal'; import KeyboardView from '../../presentation/KeyboardView'; diff --git a/app/views/ReadReceiptView/index.js b/app/views/ReadReceiptView/index.js index 7d01574dd..eef2797cd 100644 --- a/app/views/ReadReceiptView/index.js +++ b/app/views/ReadReceiptView/index.js @@ -1,7 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { FlatList, View, Text } from 'react-native'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import equal from 'deep-equal'; import moment from 'moment'; import { connect } from 'react-redux'; diff --git a/app/views/RegisterView.js b/app/views/RegisterView.js index f1b34498f..a74903b9d 100644 --- a/app/views/RegisterView.js +++ b/app/views/RegisterView.js @@ -4,7 +4,7 @@ import { Keyboard, Text, ScrollView, Alert } from 'react-native'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import RNPickerSelect from 'react-native-picker-select'; import equal from 'deep-equal'; diff --git a/app/views/RoomActionsView/index.js b/app/views/RoomActionsView/index.js index e40ff68a4..e56710bd9 100644 --- a/app/views/RoomActionsView/index.js +++ b/app/views/RoomActionsView/index.js @@ -4,7 +4,7 @@ import { View, SectionList, Text, Alert, Share } from 'react-native'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import { leaveRoom as leaveRoomAction } from '../../actions/room'; import styles from './styles'; diff --git a/app/views/RoomInfoEditView/index.js b/app/views/RoomInfoEditView/index.js index 8bb3da77b..755fbac5e 100644 --- a/app/views/RoomInfoEditView/index.js +++ b/app/views/RoomInfoEditView/index.js @@ -4,7 +4,7 @@ import { Text, View, ScrollView, TouchableOpacity, Keyboard, Alert } from 'react-native'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import equal from 'deep-equal'; import database from '../../lib/database'; diff --git a/app/views/RoomInfoView/index.js b/app/views/RoomInfoView/index.js index e7dcd7ea0..558853d18 100644 --- a/app/views/RoomInfoView/index.js +++ b/app/views/RoomInfoView/index.js @@ -3,7 +3,7 @@ import PropTypes from 'prop-types'; import { View, Text, ScrollView } from 'react-native'; import { connect } from 'react-redux'; import moment from 'moment'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import Status from '../../containers/Status'; import Avatar from '../../containers/Avatar'; diff --git a/app/views/RoomMembersView/index.js b/app/views/RoomMembersView/index.js index 25476297b..4e6cf1687 100644 --- a/app/views/RoomMembersView/index.js +++ b/app/views/RoomMembersView/index.js @@ -3,7 +3,7 @@ import PropTypes from 'prop-types'; import { FlatList, View, ActivityIndicator } from 'react-native'; import ActionSheet from 'react-native-action-sheet'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import * as Haptics from 'expo-haptics'; import { Q } from '@nozbe/watermelondb'; diff --git a/app/views/RoomView/index.js b/app/views/RoomView/index.js index 902e5e75d..aadbe18ea 100644 --- a/app/views/RoomView/index.js +++ b/app/views/RoomView/index.js @@ -3,7 +3,7 @@ import PropTypes from 'prop-types'; import { Text, View, InteractionManager } from 'react-native'; import { connect } from 'react-redux'; import { RectButton } from 'react-native-gesture-handler'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import { HeaderBackButton } from 'react-navigation-stack'; import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord'; import moment from 'moment'; diff --git a/app/views/RoomsListView/index.js b/app/views/RoomsListView/index.js index 3d5559a10..472490846 100644 --- a/app/views/RoomsListView/index.js +++ b/app/views/RoomsListView/index.js @@ -12,7 +12,7 @@ import { } from 'react-native'; import { connect } from 'react-redux'; import { isEqual, orderBy } from 'lodash'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import Orientation from 'react-native-orientation-locker'; import { Q } from '@nozbe/watermelondb'; diff --git a/app/views/SearchMessagesView/index.js b/app/views/SearchMessagesView/index.js index 5d7f33d0f..fa96de2f7 100644 --- a/app/views/SearchMessagesView/index.js +++ b/app/views/SearchMessagesView/index.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { View, FlatList, Text } from 'react-native'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import equal from 'deep-equal'; import RCTextInput from '../../containers/TextInput'; diff --git a/app/views/SelectServerView.js b/app/views/SelectServerView.js index 29d59b1b6..c8f1d1241 100644 --- a/app/views/SelectServerView.js +++ b/app/views/SelectServerView.js @@ -4,7 +4,7 @@ import { } from 'react-native'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import I18n from '../i18n'; import StatusBar from '../containers/StatusBar'; diff --git a/app/views/SelectedUsersView.js b/app/views/SelectedUsersView.js index b9209f7d7..0c7b0124a 100644 --- a/app/views/SelectedUsersView.js +++ b/app/views/SelectedUsersView.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { View, StyleSheet, FlatList } from 'react-native'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import equal from 'deep-equal'; import { orderBy } from 'lodash'; import { Q } from '@nozbe/watermelondb'; diff --git a/app/views/SetUsernameView.js b/app/views/SetUsernameView.js index f7122f466..7d4ed1474 100644 --- a/app/views/SetUsernameView.js +++ b/app/views/SetUsernameView.js @@ -4,7 +4,7 @@ import { Text, ScrollView, StyleSheet } from 'react-native'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import Orientation from 'react-native-orientation-locker'; import { loginRequest as loginRequestAction } from '../actions/login'; diff --git a/app/views/SettingsView/index.js b/app/views/SettingsView/index.js index a21fb545e..1b95fad29 100644 --- a/app/views/SettingsView/index.js +++ b/app/views/SettingsView/index.js @@ -1,9 +1,10 @@ import React from 'react'; import { - View, Linking, ScrollView, AsyncStorage, SafeAreaView, Switch, Text, Share + View, Linking, ScrollView, AsyncStorage, Switch, Text, Share } from 'react-native'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; +import SafeAreaView from 'react-native-safe-area-view'; import { toggleMarkdown as toggleMarkdownAction } from '../../actions/markdown'; import { toggleCrashReport as toggleCrashReportAction } from '../../actions/crashReport'; diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index f419ffc60..8f63955bd 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -3,13 +3,13 @@ import PropTypes from 'prop-types'; import { View, Text, FlatList, ActivityIndicator, Keyboard, BackHandler } from 'react-native'; -import { SafeAreaView } from 'react-navigation'; import ShareExtension from 'rn-extensions-share'; import { connect } from 'react-redux'; import RNFetchBlob from 'rn-fetch-blob'; import * as mime from 'react-native-mime-types'; import { isEqual, orderBy } from 'lodash'; import { Q } from '@nozbe/watermelondb'; +import SafeAreaView from 'react-native-safe-area-view'; import Navigation from '../../lib/ShareNavigation'; import database from '../../lib/database'; diff --git a/app/views/ShareView/index.js b/app/views/ShareView/index.js index ee0857599..72cbc9ec0 100644 --- a/app/views/ShareView/index.js +++ b/app/views/ShareView/index.js @@ -5,6 +5,7 @@ import { } from 'react-native'; import { connect } from 'react-redux'; import ShareExtension from 'rn-extensions-share'; +import SafeAreaView from 'react-native-safe-area-view'; import { COLOR_TEXT_DESCRIPTION @@ -225,7 +226,7 @@ class ShareView extends React.Component { } return ( - + {`${ I18n.t('To') }: `} @@ -236,7 +237,7 @@ class ShareView extends React.Component { {isMedia ? this.renderMediaContent() : this.renderInput()} { loading ? : null } - + ); } } diff --git a/app/views/SidebarView/index.js b/app/views/SidebarView/index.js index fa077befb..359255190 100644 --- a/app/views/SidebarView/index.js +++ b/app/views/SidebarView/index.js @@ -1,11 +1,12 @@ import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { - ScrollView, Text, View, FlatList, SafeAreaView + ScrollView, Text, View, FlatList } from 'react-native'; import { connect } from 'react-redux'; import equal from 'deep-equal'; import { RectButton } from 'react-native-gesture-handler'; +import SafeAreaView from 'react-native-safe-area-view'; import { Q } from '@nozbe/watermelondb'; import { logout as logoutAction } from '../../actions/login'; diff --git a/app/views/ThreadMessagesView/index.js b/app/views/ThreadMessagesView/index.js index 05e6c7821..7a1fa81b2 100644 --- a/app/views/ThreadMessagesView/index.js +++ b/app/views/ThreadMessagesView/index.js @@ -4,7 +4,7 @@ import { FlatList, View, Text, InteractionManager } from 'react-native'; import { connect } from 'react-redux'; -import { SafeAreaView } from 'react-navigation'; +import SafeAreaView from 'react-native-safe-area-view'; import moment from 'moment'; import orderBy from 'lodash/orderBy'; import { Q } from '@nozbe/watermelondb'; diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 2c8d0bc55..352f68097 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -293,6 +293,8 @@ PODS: - React - react-native-orientation-locker (1.1.6): - React + - react-native-safe-area-context (0.3.6): + - React - react-native-splash-screen (3.2.0): - React - react-native-video (5.0.0): @@ -431,6 +433,7 @@ DEPENDENCIES: - react-native-keyboard-tracking-view (from `../node_modules/react-native-keyboard-tracking-view`) - react-native-notifications (from `../node_modules/react-native-notifications`) - react-native-orientation-locker (from `../node_modules/react-native-orientation-locker`) + - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`) - react-native-splash-screen (from `../node_modules/react-native-splash-screen`) - react-native-video (from `../node_modules/react-native-video`) - react-native-webview (from `../node_modules/react-native-webview`) @@ -560,6 +563,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-notifications" react-native-orientation-locker: :path: "../node_modules/react-native-orientation-locker" + react-native-safe-area-context: + :path: "../node_modules/react-native-safe-area-context" react-native-splash-screen: :path: "../node_modules/react-native-splash-screen" react-native-video: @@ -697,6 +702,7 @@ SPEC CHECKSUMS: react-native-keyboard-tracking-view: 1ebd24a2b6ca2314549aa51775995678094bffa1 react-native-notifications: 163ddedac6fcc8d850ea15b06abdadcacdff00f1 react-native-orientation-locker: 23918c400376a7043e752c639c122fcf6bce8f1c + react-native-safe-area-context: e380a6f783ccaec848e2f3cc8eb205a62362950d react-native-splash-screen: 200d11d188e2e78cea3ad319964f6142b6384865 react-native-video: 6555881252c8ca039760e1cd6df28ac28ffb2baf react-native-webview: 9f588ea09ede9bd1f5443f4aa4ddfadeb51fcd28 diff --git a/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaView.h b/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaView.h new file mode 120000 index 000000000..7476be42b --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaView.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-safe-area-context/ios/SafeAreaView/RNCSafeAreaView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaViewManager.h b/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaViewManager.h new file mode 120000 index 000000000..5e022746e --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaViewManager.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-safe-area-context/ios/SafeAreaView/RNCSafeAreaViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaView.h b/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaView.h new file mode 120000 index 000000000..7476be42b --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaView.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-safe-area-context/ios/SafeAreaView/RNCSafeAreaView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaViewManager.h b/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaViewManager.h new file mode 120000 index 000000000..5e022746e --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaViewManager.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-safe-area-context/ios/SafeAreaView/RNCSafeAreaViewManager.h \ No newline at end of file diff --git a/ios/Pods/Local Podspecs/react-native-safe-area-context.podspec.json b/ios/Pods/Local Podspecs/react-native-safe-area-context.podspec.json new file mode 100644 index 000000000..3e8a9ff66 --- /dev/null +++ b/ios/Pods/Local Podspecs/react-native-safe-area-context.podspec.json @@ -0,0 +1,22 @@ +{ + "name": "react-native-safe-area-context", + "version": "0.3.6", + "summary": "A flexible way to handle safe area, also works on Android and web.", + "license": "MIT", + "authors": "Janic Duplessis ", + "homepage": "https://github.com/th3rdwave/react-native-safe-area-context#readme", + "platforms": { + "ios": "9.0", + "tvos": "9.2" + }, + "source": { + "git": "https://github.com/th3rdwave/react-native-safe-area-context.git", + "tag": "v0.3.6" + }, + "source_files": "ios/**/*.{h,m}", + "dependencies": { + "React": [ + + ] + } +} diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index 2c8d0bc55..352f68097 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -293,6 +293,8 @@ PODS: - React - react-native-orientation-locker (1.1.6): - React + - react-native-safe-area-context (0.3.6): + - React - react-native-splash-screen (3.2.0): - React - react-native-video (5.0.0): @@ -431,6 +433,7 @@ DEPENDENCIES: - react-native-keyboard-tracking-view (from `../node_modules/react-native-keyboard-tracking-view`) - react-native-notifications (from `../node_modules/react-native-notifications`) - react-native-orientation-locker (from `../node_modules/react-native-orientation-locker`) + - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`) - react-native-splash-screen (from `../node_modules/react-native-splash-screen`) - react-native-video (from `../node_modules/react-native-video`) - react-native-webview (from `../node_modules/react-native-webview`) @@ -560,6 +563,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-notifications" react-native-orientation-locker: :path: "../node_modules/react-native-orientation-locker" + react-native-safe-area-context: + :path: "../node_modules/react-native-safe-area-context" react-native-splash-screen: :path: "../node_modules/react-native-splash-screen" react-native-video: @@ -697,6 +702,7 @@ SPEC CHECKSUMS: react-native-keyboard-tracking-view: 1ebd24a2b6ca2314549aa51775995678094bffa1 react-native-notifications: 163ddedac6fcc8d850ea15b06abdadcacdff00f1 react-native-orientation-locker: 23918c400376a7043e752c639c122fcf6bce8f1c + react-native-safe-area-context: e380a6f783ccaec848e2f3cc8eb205a62362950d react-native-splash-screen: 200d11d188e2e78cea3ad319964f6142b6384865 react-native-video: 6555881252c8ca039760e1cd6df28ac28ffb2baf react-native-webview: 9f588ea09ede9bd1f5443f4aa4ddfadeb51fcd28 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index 9adf21fb2..264ec54e6 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -7,6 +7,15 @@ objects = { /* Begin PBXAggregateTarget section */ + 15F9F7952A132E879D1B32065C22F870 /* UMTaskManagerInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 144E768819136BE5A5EE763C21A8B8DF /* Build configuration list for PBXAggregateTarget "UMTaskManagerInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMTaskManagerInterface; + }; 1CCF1D06CCFE0D0AB787DF0923C94D79 /* FBLazyVector */ = { isa = PBXAggregateTarget; buildConfigurationList = 611882B4FC76DDB90E3FE11E69E82A1D /* Build configuration list for PBXAggregateTarget "FBLazyVector" */; @@ -30,9 +39,9 @@ ); name = FirebaseAnalytics; }; - 2B96BEB2DA52F32912B485D29E28C7BD /* UMFontInterface */ = { + 2911DE646E6DFD9455119DA0F7248020 /* UMFontInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = 72D2660A69AF613A6E453BD5E25FB4AD /* Build configuration list for PBXAggregateTarget "UMFontInterface" */; + buildConfigurationList = 278B4666F577C894E85CA3FB64BF274B /* Build configuration list for PBXAggregateTarget "UMFontInterface" */; buildPhases = ( ); dependencies = ( @@ -58,15 +67,6 @@ ); name = React; }; - 32D122CEBC2F799F23ED032EEB11B198 /* UMTaskManagerInterface */ = { - isa = PBXAggregateTarget; - buildConfigurationList = 42E3A89E49A74CB579939F0D27EAFE6E /* Build configuration list for PBXAggregateTarget "UMTaskManagerInterface" */; - buildPhases = ( - ); - dependencies = ( - ); - name = UMTaskManagerInterface; - }; 458293E00EF1C1F42778F9425AD34AA4 /* UMConstantsInterface */ = { isa = PBXAggregateTarget; buildConfigurationList = 0D1C58C4F3C697682657D483AF1081D3 /* Build configuration list for PBXAggregateTarget "UMConstantsInterface" */; @@ -76,15 +76,6 @@ ); name = UMConstantsInterface; }; - 5108B653873149EC4BF8AD36798AD6BD /* UMBarCodeScannerInterface */ = { - isa = PBXAggregateTarget; - buildConfigurationList = BBC0DC60B26594EF6338ED4EA7FA5E01 /* Build configuration list for PBXAggregateTarget "UMBarCodeScannerInterface" */; - buildPhases = ( - ); - dependencies = ( - ); - name = UMBarCodeScannerInterface; - }; 57B9E0A892EAB5C13D4AE7D4B1DE0C16 /* GoogleAppMeasurement */ = { isa = PBXAggregateTarget; buildConfigurationList = D714EFAF91AF42119B673C282ADF2B13 /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */; @@ -105,6 +96,15 @@ ); name = UMPermissionsInterface; }; + 64B317954BAE80E3324A956FD9035716 /* UMBarCodeScannerInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 1D0A0A5A28891466EEC8401B5ACB3E76 /* Build configuration list for PBXAggregateTarget "UMBarCodeScannerInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMBarCodeScannerInterface; + }; 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */ = { isa = PBXAggregateTarget; buildConfigurationList = 5AE3722DD39C3B2C37D89B1AC2A0A4C0 /* Build configuration list for PBXAggregateTarget "boost-for-react-native" */; @@ -134,33 +134,24 @@ ); name = Firebase; }; - 89354908C626AE1F1E4D5E9F42F4E248 /* UMFaceDetectorInterface */ = { + 84362B470EA387E55ADAD84F88B19444 /* UMFaceDetectorInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = 51434F98596B4B48220CAC8B56DA23A6 /* Build configuration list for PBXAggregateTarget "UMFaceDetectorInterface" */; + buildConfigurationList = BF77B6124EB5A1BB9CFD9BBD0750652D /* Build configuration list for PBXAggregateTarget "UMFaceDetectorInterface" */; buildPhases = ( ); dependencies = ( ); name = UMFaceDetectorInterface; }; - 96205370750E7374B14ACD374E630261 /* UMSensorsInterface */ = { + 900359F19CD27ABA6E4A4F2E481D422A /* UMSensorsInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = 375E4679147B1B2AFD408A869FF6BACA /* Build configuration list for PBXAggregateTarget "UMSensorsInterface" */; + buildConfigurationList = 3820EDEA7C84F3A668D4F1B2F8F5A27F /* Build configuration list for PBXAggregateTarget "UMSensorsInterface" */; buildPhases = ( ); dependencies = ( ); name = UMSensorsInterface; }; - 97BD405FD9F848B761D280E25331AD81 /* UMCameraInterface */ = { - isa = PBXAggregateTarget; - buildConfigurationList = 655041E37338F965A0D31E45BD7C48E1 /* Build configuration list for PBXAggregateTarget "UMCameraInterface" */; - buildPhases = ( - ); - dependencies = ( - ); - name = UMCameraInterface; - }; 9D255DD73ADD1E4565B5CCB665433053 /* RCTRequired */ = { isa = PBXAggregateTarget; buildConfigurationList = 571F2AF26E3E3BE1CF278297E4327EA3 /* Build configuration list for PBXAggregateTarget "RCTRequired" */; @@ -189,15 +180,24 @@ ); name = Crashlytics; }; - BA602E0E6B0AAFD40F5578A3B7231AC3 /* UMImageLoaderInterface */ = { + AC715495C5294BEB747E601DBB313B5A /* UMImageLoaderInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = CAFD465C7FC3C311CB13947F8730C501 /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */; + buildConfigurationList = 0A789620C6F531BFF19266625E1CE6BE /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */; buildPhases = ( ); dependencies = ( ); name = UMImageLoaderInterface; }; + C0257B2F2F50DB2D70283F07722FFD1F /* UMCameraInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = BB15290964FE46A8D0B68B12149A802E /* Build configuration list for PBXAggregateTarget "UMCameraInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMCameraInterface; + }; D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */ = { isa = PBXAggregateTarget; buildConfigurationList = 13B185864087F75D556AC109B2D70BF7 /* Build configuration list for PBXAggregateTarget "Fabric" */; @@ -212,1777 +212,1796 @@ /* Begin PBXBuildFile section */ 004C151DEA47D2B7274977550CB15F7B /* GDTUploadPackage.h in Headers */ = {isa = PBXBuildFile; fileRef = 4847B482EFCF00D61052680F980A3696 /* GDTUploadPackage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 004F5679B9467C475CCD10531838FAA0 /* FIRInstanceIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = DA48F97904C179AC3326BE4587A49249 /* FIRInstanceIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 006030D03FD6CB5319A4550CBC368952 /* RCTVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = AC84D409E8DDE07B3CD37A4C21898677 /* RCTVideo.m */; }; - 006364724B6D48A40FB5234700B74378 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = E9A7362D0B4592165074C69EECE25B16 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 006364724B6D48A40FB5234700B74378 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 11D07A6C8C17178AE2756E9C5C3FB189 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0076D8A7220679D73FCAA84F43B95212 /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BC634AA8832337A5495F34821D27BF7 /* GULUserDefaults.m */; }; - 00B9ED595E0C6368BD6E897CFEBE0CB8 /* RCTDevMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 088BC08256EE16FB9D1600C61EA7F1DA /* RCTDevMenu.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 00F493D71685085B041A1AB56EE18171 /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E0D0804389C818D5221C13368D7692BA /* RNGestureHandlerManager.m */; }; + 00B9ED595E0C6368BD6E897CFEBE0CB8 /* RCTDevMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 04AF007A55CBCC69FB35F15B9E976AEA /* RCTDevMenu.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 00F05116C38005DD187F6E230370B363 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 09D94611F51C6BB5F00E7E553DEB4ADB /* UMViewManagerAdapterClassesRegistry.m */; }; 00FAD6C011B67C0B8057A2D664227716 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = 5396094C894A84A05ED26CF9D039DDA8 /* rescaler.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 00FB836143F5C8AFFB2A939B0F2FEBD8 /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D0D8351A0AFB8B617B481D2BF67B56D /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01368A7C0F64AB46F26BE789ACF54371 /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E960E6AAA4AB279827B0F54F6DCD9D0 /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01368A7C0F64AB46F26BE789ACF54371 /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = B99E059E125A95B102A51F9D9E615634 /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; 014A953E16242C5C2D97728BE5EB3FED /* FirebaseCoreDiagnostics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 75AFACDBD8335C236D2F11C0BC8C0151 /* FirebaseCoreDiagnostics-dummy.m */; }; - 0190BB9AF5CD7D812CA30DC1DABA0090 /* RTCMediaConstraints.h in Headers */ = {isa = PBXBuildFile; fileRef = 71912D96CB52D6E72B8B2BE7F57AF914 /* RTCMediaConstraints.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01941142727853CFEF90C47D388335CE /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DC6C60D01081B238A711C97EE63CF3E /* RCTUITextField.m */; }; - 01AE786B599FAA2C8DDDC4303D9C6EF2 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F360CFB41C9A8126AF9A74DDD500BFB /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 019007D29192F7B10CE198186095B92A /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6893302EFE047A8E68B0ECEB7CAFFEAD /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01941142727853CFEF90C47D388335CE /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = B9E2FC09CAD11A63DFA5276B5366241C /* RCTUITextField.m */; }; + 01AE786B599FAA2C8DDDC4303D9C6EF2 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DBB42105D13FD92172E921865400626 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01EF6EF51A89D2749AED0E9049BAAE8E /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = B87FA68E472648622BCFBBBB49B59E73 /* SDImageIOCoder.m */; }; 01F1D84FDAD0AF47FF1C2166C9A2D3EC /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 25CE7A909D2A6AD19C964C140CB99F43 /* pb_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 021104542A2A5534A044E7F8EDDCC1AC /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = F667DFF2508EFB0CB1207994F2661D20 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0233CB05B1658518DE55C0BE26A1D3F9 /* AudioRecorderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 769D16E0BBBBCABBE7F5A315FB1D4717 /* AudioRecorderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 023D47F751630348D3FFD2DFE8881F73 /* RCTImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B7D9379DF0C09770B2B2AD35FDAB7AF /* RCTImageView.m */; }; + 021104542A2A5534A044E7F8EDDCC1AC /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = 96DE591CCBD648721425CBBFEA55BA75 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 023D47F751630348D3FFD2DFE8881F73 /* RCTImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DD679A82877E89FC78016857AB31021 /* RCTImageView.m */; }; 025C5E676828C11A8A6C602CEFCEF805 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 881EF7415F26D6FD4A74D598CEF34EA8 /* cost_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 026BEE9141E52447313D1D1CE091683C /* RNFirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = E0F6A5BB12B0909DC712D121D77815BB /* RNFirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; 02CC3115AB4B885AB679CB89CAA22686 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 63EC4C3D4DDABFD3BBED1D5DB0B73EE3 /* alpha_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 02F962CE41BE7DE5D2A8D40252DBCA40 /* RNFirebaseDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = EE8D5A11546D69FA854CFD86E521B833 /* RNFirebaseDatabase.m */; }; - 030ABD4F94044E592D12A942802B36E3 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = C6BA0DA9A42BF72CD1D0557441A778DA /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 030ABD4F94044E592D12A942802B36E3 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = A5FCAAFF930356FC7B7C2C57B18C5A8B /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 030E485758D5700A45E96553565C05AF /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F3493479E8F6FE68508E0AE73EB96AD /* SDImageCachesManager.m */; }; 0317CDBD45DD1F08482E2C1D2C55D2D5 /* upsampling_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 6D3DD62244FDA6E6C36ACF68585C753E /* upsampling_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 03232E567032995A46888EE4085B1FC8 /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D45D1BFFC3F90AFE8E36AE506FBC1EA /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03232E567032995A46888EE4085B1FC8 /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E5D67042060FC0A284FC9593D78490D1 /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03311832FDD91A029F016815F69BA8EF /* FIRInstanceIDCheckinPreferences+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8659DC6C8D7F8183E7746FEC9E014719 /* FIRInstanceIDCheckinPreferences+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 033F52F3FB1A824BA8B065E3F893590B /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BD12D651C2143BC1710E7D75F5DB718A /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 033F52F3FB1A824BA8B065E3F893590B /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CBD88173ECBC18FB0617900CCF8E2720 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 035BAB003C41D6486BAD0B624B59B947 /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 19CFF543A0DCD1C433A979571F16AD81 /* FFFastImageViewManager.m */; }; 03625EE23D0D87639BBC3435094567CD /* FIRInstanceIDStringEncoding.h in Headers */ = {isa = PBXBuildFile; fileRef = C3317292C2D6C79FF816A519DBBA5251 /* FIRInstanceIDStringEncoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 036AA9097E22483112514FDECFC4486C /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D7D6C76A0CC4E29642AA995E5B207425 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0386E1FBD971940B81D25F973803A24A /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 290A5CF51092C9911670D58CE1EC126E /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 036AA9097E22483112514FDECFC4486C /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B5B15DB473A729898FB1C4406C5E05BB /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 036E3D195E196FD8B7C55D020FFBF451 /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 94B83F9E92DD53072148B8F941D02B94 /* RNCommandsHandler.m */; }; + 0386E1FBD971940B81D25F973803A24A /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 9244A66B259F4B2EAE601E3AB833344A /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03B1BCBB960C0747FF8037C28EF82574 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 486C52F0584E1522A2178F6078147EB2 /* decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03DB95ED366A219D853C432C4E5C90F8 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BA88B3B28AF8D1F1AF0C5B1F8C0C5D0 /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 03E25BCF43F2B49BDD8BBF674C102BC9 /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A2269041F71E93DC3D5E4E62F1D9FC94 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03DB95ED366A219D853C432C4E5C90F8 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = D02882A27829973F671E9FF724BE74E0 /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 0415955DF1142B1087CD77F9631924BE /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 129704FB2D8376802754D4ADDCC2C3D5 /* vp8_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0466AF831A3D66A6F521E173A178B229 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 98152A2B2328E641A0AA5E255CCA3CBC /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0466AF831A3D66A6F521E173A178B229 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ABB3B9A70B7C524EF1EBB06045D1FBC /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; 04751C5988818B1F50D7C3C00D67FC77 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E04976218228CC76EBC93B283373EC06 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 049914E65E95C9AD5F4DBA1BDF5954A6 /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A87B231929EFFC2E90F77CF24115852 /* Color+Interpolation.m */; }; + 04C6547239D730B02E65E269B46BCA0F /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CA044417A337AFA0C9369FD09F890F4 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 04F898F093B7468766941635C77DD78F /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 89DE1CFC42D5704E9089A05522A035F8 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 051F3485F0058081B93F24E585B983C5 /* RNFirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 18CA1F463B7F118303AB338DEC4851A4 /* RNFirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 052C7E655EC4C8B8B4FBDCEC8428EE67 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A12FEB66D4DFDFD9C582DB3898055189 /* READebugNode.m */; }; - 05351A5B8B896B245A1726ECA65BC607 /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = BFA627CB0BA3FCCDE73A71C4D9DA1B2E /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 056C0B9E5782A696F850E898A456DA96 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 621455A6189A6D813A2BF66B2FB2B919 /* SDWebImageDownloader.m */; }; - 05A4AA5408315AE4F544C905057EA769 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FBE6D4529581992E06E09DAEA44BC62 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05E3F1ED84051287AD1392065AC8D651 /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = BD096CE739D36FD26696BB655E78E515 /* SDWebImageTransition.m */; }; - 060B79A9DAA85BF0C19DEF7BDA812149 /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 56CC7C3D3536DCD6CA439D0D445B8FEE /* Orientation.m */; }; - 061ECC76B7FA81F678B60827FC62AD29 /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B63F1772FF1583DC9236F87DE5BEC9B /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06271464CDE31E003CC5D3FA704CF4A6 /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 933B4435205D09368BF64BEBDE7C047F /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0521671729988774F28E06ACABD9CC1F /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B4DBCD71C27B1A346D8D62C12E3BF22 /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0524716A01C00CFC301D7BD38835EA69 /* RTCFileVideoCapturer.h in Headers */ = {isa = PBXBuildFile; fileRef = 43A1EC448893D1FB0444E625C6DA1711 /* RTCFileVideoCapturer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05351A5B8B896B245A1726ECA65BC607 /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = 730C8FA5A42BD932184682E648E109A9 /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05CB465AD4F12063F9D19F432DEFA8B6 /* RTCDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = BC847E594505B79F7A7DAE96D8E3E6C7 /* RTCDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05D9FBAAE17CCAEC7A719D5FCB4C931C /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 624F1319227376756C5B6B817F0358B7 /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0607AFAC1994ABCA5CDB85509A688956 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = A31B7AF9D97883D1431BCF0BEBC6A5BF /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0608FF72B775C9CF4F97F54DB573D13F /* RTCRtpReceiver.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DB17FFC399B485798FDB4DCD00FE089 /* RTCRtpReceiver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0628597CCE24D4CEDD48A6906DE6AC3C /* RCTConvert+UIBackgroundFetchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 308928E7A546335085AEDA026EF00756 /* RCTConvert+UIBackgroundFetchResult.m */; }; 067C083E55ADB7E5FC14D731BEF521E2 /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = F9CE0D95CB30C7E29F8A50853A7ED744 /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 071269AC8426870256DE850D26D16360 /* UIApplication+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 86D02063967146D6A0A42CC7D323EC60 /* UIApplication+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07490746DAF480BC2B33ADA45D34B879 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = CB8B12C52AE984A3128A420CB4442F11 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07964E72BE6C10A4074E6F034F17699A /* RNFirebaseAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D16295547E5670D3B98A08360078F4C /* RNFirebaseAnalytics.m */; }; - 079899D5F89F5E17D0C8018DA4F1D343 /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 47DEC900CCD9CE14D447199013E3446B /* BugsnagSessionTracker.m */; }; - 079BD0BF2F64CFE99FCB684370097C7F /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E8C2E627DE162F1D138CD2053921C51F /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07490746DAF480BC2B33ADA45D34B879 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CE570B3EB77507C794598F33BBDCCC2 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0767883E926999A38DD09F1B31601ED0 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 7181FFCDB07FE21BE0EE00B5DF442033 /* NSButton+WebCache.m */; }; + 079899D5F89F5E17D0C8018DA4F1D343 /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = A8040DE5C02D614BEBBEDCEFF2067604 /* BugsnagSessionTracker.m */; }; 079F1D9242105C9266286C47710287D2 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = B173D0AE66CCF8DB153DF8A8B1D42B7B /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07A4345562C627EBDA0AA5ED26FEE706 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 7206AD40858137C2C95D47687B35CDD6 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07A744281129ECED49B821816DE7AE85 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2421D0644E6C68779C1AECE1EEF6C271 /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 07D1C624AD60E3A30503D3804A68F18D /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 01D2F92678B08D14F8B50093C9F20B38 /* RNFlingHandler.m */; }; - 07E8AA3B3EA109E2A621754EF147464F /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F6253E6A38DFCFB26F4B0178A268ED6 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07A4345562C627EBDA0AA5ED26FEE706 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DFC2B2AE10AE86873DA2180CCFEB0D2 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07A744281129ECED49B821816DE7AE85 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 680D18079110593F12BB5BF78E604EAE /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 07E8AA3B3EA109E2A621754EF147464F /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BF4B1D10BA50A211991DE10B816A422 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 085A2788F026DC4B6A30EE969E2705F5 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 90756F1F010C3ADDE8656F519C9C5C2B /* SDWebImageCompat.m */; }; 08602634F40722C30A90B6F3572B639A /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = B94698C378DCCD8D5BE53B980B19B437 /* alpha_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 088BF218B07C48D03EF2675C5D535264 /* FIRInstanceIDCheckinPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = DC8E785FF376689515D1C1A26F4C5CDD /* FIRInstanceIDCheckinPreferences.m */; }; - 089D6499498954B395C850F1982AA2CF /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DFCC2AFA198C5122CF36CF241F59838 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 092352A383E89EA3E2EF07CB1C034377 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C59E3995282AAFDEE53C840CF2AB879B /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 092419AE210B14305B10A96E94C0CB62 /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C47BC8E63567B03ECE9A98F19E22CFE /* REAAlwaysNode.m */; }; - 092EFF5054C9A6770A3C0932AD4570BA /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A311D05428FA99B906B574F3AC2C9E8 /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 093F11756CE3486B4FAB30D519C0E812 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 06F58B6D4D009DF885F865490E96B18A /* RNGestureHandler.m */; }; - 0978FE58F48ED2FD75A428FC6FDCB304 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 98473CA72F08DFCE7A232FAC89E9E474 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09E1E2635AFB97A60EBB68B2D0BCFBD5 /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = 668A99544C5125FEF9112E3BE8173DB5 /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A0F91D1BA89EE30C756F0ED8208E650 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EF8264C10FAFA998ECE1459FE3715723 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A2DFF26F8C1ED8DFEB68307E34B38F7 /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 79235824C8211FBEED50E4749E521A44 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A975B293D68F98F6727366A3FE6842A /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1446835FEDECC51A317070EAD5239174 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AB66ADC4DF0B22822E0612F38B69F9B /* RTCDataChannelConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CD281938F2C18237513EEACEF92E842 /* RTCDataChannelConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AB875BFF152EE45B7A6B5108ECAE7DC /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 469669C51717AB3A9AE23299B5A20099 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08AD55CA29C4544D0A40BEE7A79A1A29 /* RNFirebaseDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A57C4F1C485AD1A3FD1210051EA9E49 /* RNFirebaseDatabase.m */; }; + 08E9A26FDDFE70607DEC5BFBB8429495 /* RTCAudioSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 993DDFFA84E8A994B6AC09447757291B /* RTCAudioSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 092352A383E89EA3E2EF07CB1C034377 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8471316B270247E1270FAD82B76A5B23 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 092EFF5054C9A6770A3C0932AD4570BA /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 49059D17D7C5B037904B0A8D28A5FEA3 /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A0F91D1BA89EE30C756F0ED8208E650 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FC9E5A06C3C4B96EE818A49E7E1C9F7C /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A2DFF26F8C1ED8DFEB68307E34B38F7 /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B2C39C9CE469B4A332CBC27B252EAA2 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A75E23BCE06ED1549440110ACACA771 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B3F230C319BA1B4187E1BF0C5E95032 /* RNCSafeAreaView.m */; }; + 0A975B293D68F98F6727366A3FE6842A /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = D69BE0909BCC07D0A367301F3CC5BD96 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AB875BFF152EE45B7A6B5108ECAE7DC /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DF7CBF2800F7AAA8568C4ACA6E5FDC5 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0ACEE146071F2404A07F1CEA99CA5B3D /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = AB6DC8697BCB96DDC7099E19C0FADEFD /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AEAF5EAC260B4BC688FFBEA9CBFA045 /* RTCIntervalRange.h in Headers */ = {isa = PBXBuildFile; fileRef = 357433FCCF10A2E8CB375A024D932A57 /* RTCIntervalRange.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B2D30F38EB2951F5650351BB4C018E6 /* EXRemoteNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C4E2AB246D3C5081E992FD4369A148B /* EXRemoteNotificationRequester.m */; }; - 0B92FCE07205EC05AAB26A4D42514511 /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = F2BC0971635CCB64556DA17CE1B2C7DF /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B9D1CE5188E7A7FB602B85B7A071C29 /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 0963C4631B59C1013B08D66EA1C5A730 /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = BC6AF824866AF39B3798D42C8C00D05F /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C631B56D84BB38DC0844EBACC4893C5 /* EXLocationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = F986B7275CD6BB9BBF71BF78737F5AFD /* EXLocationRequester.m */; }; - 0C93C55D6CE7AAA3812AB7FDD9C62D01 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EB25BCE31ADF1A90D96551E8A9B1C0B /* UIImage+GIF.m */; }; - 0CD8F6C4A1BDD7BB190E2C33A9B3C8F2 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 88A12BDA62F70EEAEB23AF1858281A67 /* RNNotificationCenterListener.m */; }; - 0CDC3942B6E11E3375B3263165EE5448 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = 2692AFC129DDBD9886CD8EFC94FB2767 /* RNPushKit.m */; }; - 0CFFC0796941C41583D75A40559E9515 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 74EF26258C1C91BC9CC7A0116601B044 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D017956BBA993A3EAED7F8CC0F0CE62 /* RTCCallbackLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = C556416AE8FA44165F45655B57F9A65B /* RTCCallbackLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D08AB6B2C2CE84F51F8570C652DDF4F /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FBE47804588921FB73C3F709A9EB9B7 /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D53CB24C7870644867FA7C97DB1D71E /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 96D76BF7F46445BC1360A5C8D0CD94F5 /* RCTRawTextViewManager.m */; }; - 0D58538B8D4C6B1BA10A5BC530B8BE06 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E52070B6CA2BB60AF403C543D08BCFE /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D60F47F1C096244710398B1BBF8397D /* RNFirebaseDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 132BA2F5C7656EA1F08594B446B7CBB2 /* RNFirebaseDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B2C424EDC9B06C6CCD88E332E97AE20 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = C23BB8FCFCE960A47537246A74E0A6E2 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B2D30F38EB2951F5650351BB4C018E6 /* EXRemoteNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 01449783CAF64BD01F884FC75298B598 /* EXRemoteNotificationRequester.m */; }; + 0B8EB77E8022251E109DF153C8418535 /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BE198CE5996ED4DFCC4AA5591D2B427E /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B9ABE3C3F610E7FC36BE7377DF44527 /* RTCSessionDescription.h in Headers */ = {isa = PBXBuildFile; fileRef = 7770191861666A734A0B9671284F0096 /* RTCSessionDescription.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B9D1CE5188E7A7FB602B85B7A071C29 /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = BEDCDA7F5FB4E2A3C075E3C438C20C24 /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = A96264404BE6A0015E902B4B6928BE6F /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C631B56D84BB38DC0844EBACC4893C5 /* EXLocationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CC1D79BC8FE9CE82252104CE989FDC /* EXLocationRequester.m */; }; + 0CFFC0796941C41583D75A40559E9515 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BD37A0EF96478DD1BE2118DB36A5AC5 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D08AB6B2C2CE84F51F8570C652DDF4F /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AAC71A320ED283EFD0FED2E6EA4F92A /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D53CB24C7870644867FA7C97DB1D71E /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 99B7819209679DD6A46C10252C34F927 /* RCTRawTextViewManager.m */; }; + 0D58538B8D4C6B1BA10A5BC530B8BE06 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 41D2C71CAB5C5BABD794610D68FCDE8E /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D633EC67388BD0DD536442C515A5243 /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = C20E79FF6379BE775700BC9533CA620A /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D8A8D114935E93B26588831B7EC44EB /* UIApplication+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = B41EBDD1DB022AF9820E6B5214C69976 /* UIApplication+RSKImageCropper.m */; }; - 0DB0E0A7680BB2DA80600CFE5491E13F /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BEBCC6ECF678F0FBFC11E586996E7F1 /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0DB0E0A7680BB2DA80600CFE5491E13F /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D4907EE435AE0F31E9838EF88D68A63 /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0DB10DDD9AD5EB71B456E0F51F283594 /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C2368C0573F26C01DB93B2C5D3EC89E /* GULSwizzler.m */; }; 0E23972AD194731EF4E59E44A9B006F6 /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = CD6B23FFF48BB43F31E60DC5F3C4F92C /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E25AB2F6049EB1521920014605A335F /* JitsiMeet-Swift.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D9FA4FC6DF8E830719459727D5ECAB1 /* JitsiMeet-Swift.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E2E1F7CF448428ADB75C74EE6DE19E0 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = D8463CB6990B9D893817B0E248FC48F8 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0E3BA0966440503BBA3BDB0864855DF2 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 2167528798589D9EEE09064D358F63B8 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E3D7A64B7B7C9A1C134B565EE87E9B3 /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = 2B1769ECED986A1016B92E04081BB820 /* BSG_KSMach_Arm64.c */; }; - 0E4D64FE8295828E255202DFD6E0A945 /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C2E004F8107F52F54333F8F5921536C /* REAModule.m */; }; - 0E5C63315C8DB2D26508CCB1C3189919 /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CEE8F7C1EB72AEE620FDFA213AA6B84 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0ED2D0F123B56EBB0FA2E460D573B555 /* BridgeJSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 08C684AEF16F87CBEA88FF8658EB9BC1 /* BridgeJSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E2E1F7CF448428ADB75C74EE6DE19E0 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 735EAB53A7BAB574078D81C0D2728495 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0E3BA0966440503BBA3BDB0864855DF2 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 71B67FB99DFDF34429AE4141D65EA772 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E3D7A64B7B7C9A1C134B565EE87E9B3 /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = 7A4547ABE320FC123A36407A29057EAB /* BSG_KSMach_Arm64.c */; }; + 0E5C63315C8DB2D26508CCB1C3189919 /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 82C15BFB58FEAF5A22DE0B1748BCA46D /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E744D13D1ADFC888662BFF0E97F4099 /* RNFirebaseFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = 35F9B9A43496220799632121DEC6E20C /* RNFirebaseFunctions.m */; }; + 0EC1F8891E00DE4CA00FDD78E8689836 /* RNFirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 9471E181216D71B7AD6086AA947987DA /* RNFirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0ED2D0F123B56EBB0FA2E460D573B555 /* BridgeJSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = D91A787FA4BDC8B6812704EA4D081DCB /* BridgeJSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F199BC919DA606852559D57EF858777 /* GDTLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = 0708E098AAAD79EE913D0D6F7F73EBCE /* GDTLifecycle.m */; }; - 0F256182F1DABA4DA61747C775F0480E /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = D81EAFF97C6B2431E7B66891FA606C38 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F3DD2654FBA801720386B73168B7970 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B6406E40908A277BFB0BB8BFEFF9318 /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0F5076C66AD32BE726FFCC89EB6140AE /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 64FA75301D624D64846B47027E8E77A2 /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F256182F1DABA4DA61747C775F0480E /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = AB7209CB15AEA1D836B43B0BD1EA9EC4 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F2F5C8B8BB50B13227932918434629A /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 65FB620DC5C3D0E52325F0302200B457 /* QBImagePickerController.m */; }; + 0F3DD2654FBA801720386B73168B7970 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 32AD5BF8C0BE27DFF135A2549E663391 /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0F5DFC93BD709B17E8C0C03D2E04C9B8 /* RTCVideoFrameBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7216A032565B6464422EFE14760A1DF2 /* RTCVideoFrameBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F7D0326C38FA3CF8745C0A798D6ACE1 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = BDDCC90BDE3C4182CBC95A5B0C56BF99 /* picture_rescale_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0F92A58BD61B9EE2950E0B91DF2A027F /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F6ABD140F1AAFF23D08A1CFFECCE608C /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FAC5ABB17618768EF6975F20E4397B2 /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = 08A54DFD20CFDAF1C6CCA111590904CD /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FD2D13B3C4BE4E33F533BEC445422F9 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 77FA87602F55FB4A63DA8567BFA156A3 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1013A79D857E519125B1735B10DC9294 /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = EFF554A8814B7B98EB1EDDCD9FE13C58 /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FAC5ABB17618768EF6975F20E4397B2 /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = E9086234EFE765AEDAE2D77AD62A5EEF /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FD2D13B3C4BE4E33F533BEC445422F9 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 31E470CC14E82E7C6A7FE9A256BFB0EB /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FDEA0FDF5EDFA58BCBB974A2BF8215B /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F03E92701B927C3D2F709EEE919A5F84 /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1013A79D857E519125B1735B10DC9294 /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = B5DDEACBF4E24F21EAC0B77B9BCBC61E /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1031D7750424C86A9D1239A32DDB48DC /* GDTTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = D70D0D476839F85C75D635CAF26AD9FB /* GDTTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 103543D34028B435839D34055D9DB529 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BFB9ED64D3E73DD26C9FB9ADACBAFAA /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1075BCE9C709148CEB1F44FA18AA58F7 /* RCTImageEditingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B5C4E2B11EE5F2CA3F82AAEE6EFD16E /* 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"; }; }; 107BF51166C8E00581BB9828B788ADD7 /* FIRInstanceIDLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = BF894941A4BB7EDEA10BB6BB72A8B31C /* FIRInstanceIDLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 107CD51CD5FD22E8DE8F0F74C86B5A74 /* FIRInstanceIDStringEncoding.m in Sources */ = {isa = PBXBuildFile; fileRef = F055CCC2B72DCFB4E1090FA3AD861F91 /* FIRInstanceIDStringEncoding.m */; }; - 10D1C4E32DAC24E825CECC72DAB4DF7A /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B8B89C0B94AA9A885F792E8624A21E4 /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10F8BFD41B75FDC410DC65D23B8BABC0 /* RCTSettingsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 71808D87862895353675EE217E26D015 /* RCTSettingsManager.m */; }; - 11892AE99894A03C18DA993F7C3A1E26 /* RNFirebaseDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 807E3AD33EB396565457697EE2B4B260 /* RNFirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1190BC3312B7D6629E55BE46CCA3FD16 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = AACC3906679263F744C164DFF7329977 /* de.lproj */; }; - 1193F5ED3459E5A83ED7C838B447857C /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A59769F417E8426D4124D3D1CC2FE59C /* RNPushKitEventHandler.m */; }; - 120A490C9035C6F2689BF47F1346EAE1 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 175A8EF975AD50B5903597726ACAA5AF /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 120B444553614F5C8BDCD83D8B5D53B5 /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 602CC196350DA341701989B3B1F7EB79 /* LNAnimator.m */; }; + 10F8BFD41B75FDC410DC65D23B8BABC0 /* RCTSettingsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A8A8C33EB0EDB9C95243DD765FD381D /* RCTSettingsManager.m */; }; + 10FE04115C606E91D47A2B6D03C209CD /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FF0E5AA62D46D382DF71A8CEA9125FC /* react-native-jitsi-meet-dummy.m */; }; + 1172407460D2EF876D2942D1EF636896 /* RTCMediaConstraints.h in Headers */ = {isa = PBXBuildFile; fileRef = A0717351221BC0B32CF891C96A7E343E /* RTCMediaConstraints.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11931E9DCCC418BB192D20983AD69545 /* RTCPeerConnectionFactoryOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = FF275F2A6854281FCDE21005A98E2DC8 /* RTCPeerConnectionFactoryOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11D3E18383B3AFD3111F4AA16826103D /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 74DA632E81504F6FAF6AF978C00DB2C5 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 120A490C9035C6F2689BF47F1346EAE1 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 749DC7F7E9133ED7EF8E4BF0C3DCEC02 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1222E7AB723CB2D3E5811C261AF342E4 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = C0A19B5100ABC1F5FBA1997C6DDAE10C /* alpha_processing_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 122829968A162E17A84546B6266B9352 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2675FEE1C5CC622E6FC7BE1A262FCAEA /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 123246707A2C3FE6C894FC9C4F12DECB /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 1ADD1D4BD44FE2B496767D09490360E1 /* ja.lproj */; }; - 1283DAA1D9FC84DF5395D2C8E052B779 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 3640174E5C2BB1DDD77D0D39BD854A22 /* EXWebBrowser.m */; }; + 122829968A162E17A84546B6266B9352 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 78CAE23A439A44A2BBA74B554F7FA4E0 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12373E47061262B4F5631B67C4A2ECE4 /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = B511D3B36076ACF05F824FA6F3A4B142 /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1283DAA1D9FC84DF5395D2C8E052B779 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 17743B9E1CC2D79F94D36F534A8AB073 /* EXWebBrowser.m */; }; + 12DA569568864F0B43FA059A3C43423E /* NativeExpressComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = B50DCEF697EBFA84F81921591BB31CD7 /* NativeExpressComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 12DBD85FDC2712722947D323D774B81C /* GDTStoredEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 2078B73CFED3E988D47CEC70589963AD /* GDTStoredEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 12FA7519507285624A8F734D8A3939CB /* GDTDataFuture.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB3142967DB480025141D11A7610924 /* GDTDataFuture.m */; }; - 13311C6D84581E707C481BFEDD87D2D0 /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 909EC055269B78451EB554E6107EEFCE /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 135FF236A1066B7E1DC63A0F8F3B3DE4 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = B468FF1F2043325BA63D683B4EC70171 /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 139281DF1A6F934C3E0E0E6EF5D6DD25 /* RNCUIWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BD73EE30197CA10BE60B039B9764A9D8 /* RNCUIWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14074A5960FD59A6E01AAA8BAC92788B /* RNFirebaseAdMobRewardedVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B06F5722E272AC7C95122A1A32AB775 /* RNFirebaseAdMobRewardedVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 140816781649C365507FE080CFB60C8A /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = BEF6FA9F937441C166875C1AA970A9C3 /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13311C6D84581E707C481BFEDD87D2D0 /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B1403DBBCFEAA585EB3BA40D8B8D749 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 135FF236A1066B7E1DC63A0F8F3B3DE4 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = B82D17E046E84B7E6B9516A36ED373FE /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1394CAEFC6FED1CE6DADD27C7C2AEF96 /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CE70BB6FB2323587C1CA383B415A65D /* RNSScreenStack.m */; }; + 140816781649C365507FE080CFB60C8A /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = EB360CC720C5485D028F9B482206D046 /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 140A6D88AD6F0C1DE3624A27BBF645F0 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5272D0CF4BF47B787A08940E3AB2ECF1 /* RNVectorIconsManager.m */; }; + 1425D1ED69B8C37E901EF2F1E7DD235A /* RTCFileLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 154E76A701E0DDB64A223E02120777B2 /* RTCFileLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 142DDBA72CDBBC8F357722E76EB54EDA /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 96FEDBFF970311D4CE8F74A6572600E0 /* yuv_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 14A693ACDB76A06075456A2ED5BD698C /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DCDEE3756A474945988DA54A6C93377 /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1481494EDD4052E8FF5B15A233E6D399 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 426E04BEAC8D35F840DE9A56AAA70DA0 /* RNTapHandler.m */; }; 14C992D410FCB6E0B19C4DFE74646164 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 943DAE35342735D221D1CCE7B23499E7 /* rescaler_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 14C9D8617BDB9C98C8B0B704309BE4E8 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BFCE6CFFEB93E37C6C3A066D694052A /* SDAnimatedImageView.m */; }; - 14FCEE2CEB088210F983D904DF91583A /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B87EDEDEE3A7A9EAA756C9664B69EDD8 /* React-jsiexecutor-dummy.m */; }; - 1504DF0839AB4798FC18E42CC64A54BC /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F342D9A61A28E8BC5521E166C20290D5 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15064F8A70DB97B4A6C745ED69742E50 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3128E78C4F227B716F48FDA25D3F4077 /* RCTBlobCollector.mm */; }; - 1509DF077B7CCB52B7A79491E3F69D30 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DBBDEC4E23E4994DB2DCF719C5D9810 /* RCTMultilineTextInputViewManager.m */; }; - 150A1A914377D845429047F5AC3481AA /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 05D9484DB779AD4884AAEA29AF1F497E /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15135A9A67B4019F2CC03E7D5FACA0FE /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D8F234223C5A85DB3C2C51DA8AA1BD6 /* RCTTypeSafety-dummy.m */; }; + 14FCEE2CEB088210F983D904DF91583A /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AF037CF64FD98D38974D33762A6B7AEE /* React-jsiexecutor-dummy.m */; }; + 1504DF0839AB4798FC18E42CC64A54BC /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 76BB0F64D39493D79E127825DE3F6FF8 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15064F8A70DB97B4A6C745ED69742E50 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3DDED617E6970A761D1485C9DFF7F6B5 /* RCTBlobCollector.mm */; }; + 1509DF077B7CCB52B7A79491E3F69D30 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 40230EA7E7F0D84886311A1A836150C4 /* RCTMultilineTextInputViewManager.m */; }; + 150DD41CC78D385EDDDD371214E6ABA1 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C478C38681D80CE7EAB7CE07BC58768F /* REAJSCallNode.m */; }; + 15135A9A67B4019F2CC03E7D5FACA0FE /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 31808754F413E9FCF29F80B7E4DCAB8B /* RCTTypeSafety-dummy.m */; }; 15B612FE99D579BB1FF05C272D197F33 /* FIRAppAssociationRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CDEF241D2E723AE3AA76C243CD201E0 /* FIRAppAssociationRegistration.m */; }; 1606C1BAAC2E20C7E7E6A3CCAF15711F /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 465EBE9FA967B134748C301E7E1287B8 /* dec_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 167E4228FA0F2352D7EAFE7C4BABD49D /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E1D1699B9F50FFC234C23C80DCD5F73 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 85E30C1680F295F6C85B2AA5C7F9E7A5 /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16F28ED5E8ECACAE5BE82B299D068DDF /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AB66BC78E71A7E62B25D037FA6FFFF2 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16F85F2C619F004816564F8066341CB9 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 35E28ECEAAF2B93628AABA76D593BDCD /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 17104805472816902CDE8F88A03EFCD8 /* RCTAsyncLocalStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 6052CE7E6233D6E9F70EC09AE944FF2D /* RCTAsyncLocalStorage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 179348E5AB409BB6892159F01B22496C /* BridgeJSCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 30336E44BD404E7E605D8D5A2F28A6A7 /* BridgeJSCallInvoker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1798CD9BDD33B44A297906040F08A8BF /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = C16D25BEAD0D62391FD47C4E4D787BB6 /* UMNativeModulesProxy.m */; }; - 17A36219C987CD12C5A1C50EA590D11A /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = D971561D00B974F4A1846DC3C13D9D2B /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17AB3A41A3DAFB6EE14EB49FC316F997 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = C326A26950FBF8AECF7F627422A1F822 /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17B03B21474472F7EB23CCA083EB6CE0 /* EXCameraRollRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = BB8DD00CF47EB6840BBDB9CC14EF4572 /* EXCameraRollRequester.m */; }; + 162EDCFB85CDF68BEBB035E989351A11 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 0ADD2993692CDDD5DC70CEA68E893CA0 /* SDWebImagePrefetcher.m */; }; + 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 46F635BE10A77E855C99B88B6FC10775 /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16F85F2C619F004816564F8066341CB9 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 6036B0874238C1BA500770702C08A9CF /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 17104805472816902CDE8F88A03EFCD8 /* RCTAsyncLocalStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 64E2422412C6521F5985B0A214977611 /* RCTAsyncLocalStorage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 179348E5AB409BB6892159F01B22496C /* BridgeJSCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BA78FB33C4C0287447DA3B317ADEA57 /* BridgeJSCallInvoker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 17A36219C987CD12C5A1C50EA590D11A /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = CD2DEF517A7A1700F6C19F3604CA0969 /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17AB3A41A3DAFB6EE14EB49FC316F997 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = B9EB42C9BCE303128856EB2736F6AD9D /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17B03B21474472F7EB23CCA083EB6CE0 /* EXCameraRollRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 1084BFE712BCC8A045D832C96B3D0AAF /* EXCameraRollRequester.m */; }; + 17C2016CE33EAB68AE95C0BA2A8A650E /* RTCVideoCapturer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AF98F684872BB9551EC154FF2EBF317 /* RTCVideoCapturer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 17C8EE850EE3AEA00E515ACE095FBC8E /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CB98D2DDAE2A55A768A30FDFCFDB9AF /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1818CB61F7CBA5FEFA50850E8D607CD4 /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 61C3084A77B2BAB03030D4E584D23AE9 /* React-RCTVibration-dummy.m */; }; - 18307F5C7D272B71FC1A9DB4828B3B18 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = CCF13BD0E7764B675172A99EB708F5D8 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6825151067F4F9C9692BB07A19D757AD /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17F6A2C83EDB32F5E52D6873682BB408 /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 271F27E7527C4BB4F565FED763BEFF42 /* REAPropsNode.m */; }; + 1818CB61F7CBA5FEFA50850E8D607CD4 /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E257C44BB7B9C78B7D3F7F17F66A6A7 /* React-RCTVibration-dummy.m */; }; + 1839BE5F409CB52748B0E90C9453528C /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BDCA2B511AA84A52E9E0DCE3384D2E2 /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F492D6837FF7F3BDE44215A7B44BCB3 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1875FC9F710D7CE0D6B9C3BB919D18B1 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = FABF62481064ABF2C11928A42592E1AF /* alpha_processing_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 18825CEE99EC851BF8DBEBACC61D6D51 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55B3F61F2EB9BC6E05666B3449736569 /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 18BB72FA4FA6B665DEB5CB1B963A0807 /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 361ED24B795D598831F92950AAE3106F /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18D4C889B62C750CB81615AE58007053 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 95280DD5FD256146429B7FE9B6AEFEB9 /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 18EA582429824349B2A698D290FFE86E /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = 9193ABA6F9FCB4EA1223616BD2BEF82B /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18F0F9C4B445B28C354E1AE70AEC6DF1 /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 97058C0C0CD5C6F04E58BB35310C0F2E /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18D4C889B62C750CB81615AE58007053 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F1EBD1D657237C858EF4C076DE48DABB /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 18EA582429824349B2A698D290FFE86E /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = 88225C731257583882C2C772A8E30EB9 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 190F8B4C8A04E11A00BDCA1057FB1EDB /* FIRInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 40D86A35C64C72911FC247AEB64044D1 /* FIRInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 195506397FAA1E491996E5C685E4D415 /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 48B9FF3960F96FC17EC9EB715173541D /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 194E8B34C61824667B638781C584FAAE /* RNSplashScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AFDD915EB02BC97A62EC9670510F13F /* RNSplashScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 195506397FAA1E491996E5C685E4D415 /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 15C79BEB9AE6AD07BD220859AD395ADE /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 198FCB093A9B9BF1DA57A126F2787358 /* FIRInstanceIDTokenOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = D387F835AC8DA23F3D29D5423CABE800 /* FIRInstanceIDTokenOperation.m */; }; 1A0104B522DEFB57D4AA61C477C69E86 /* FIRInstanceIDAuthKeyChain.m in Sources */ = {isa = PBXBuildFile; fileRef = B1818F7EF0C10182EBEA70AD74197B1F /* FIRInstanceIDAuthKeyChain.m */; }; 1A56960F5181C56C80438ADE507F6B70 /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E59473F2C4173F38055CEFA6CAE01DE /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A82C0D385B136B42F1151FAE70FDDC1 /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E4D3A8243738B05FCFDFD8E899E5256 /* UIImage+WebP.m */; }; - 1AA269A724F244D0618E3E8C50A1BEE6 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 90756F1F010C3ADDE8656F519C9C5C2B /* SDWebImageCompat.m */; }; - 1AC951E28336052BBB2B8F7FEEF15987 /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C5491EE4ACB398BCAE280CA7D30FDEC0 /* QBAlbumCell.m */; }; - 1B2EB123597141ED57BF5915F4CBF34F /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = AAA293DADEDCEDC13D22CE28A2C91ABB /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B43961811586340F288EEFBFCE377C2 /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3312D054F2CC88795612F8C6BE2C20D2 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B578CF52E3AF44ACCC48F37FE3DF994 /* RTCRtpHeaderExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = BD2C6247240F521F7FE1126E9423B04B /* RTCRtpHeaderExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B6D08B38202AA4E4B1CAD58E6EB3304 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E7597417E3D7DD4332C5C84BB51990D /* RCTBaseTextInputViewManager.m */; }; - 1B7089EE7245CE852987E7230FBDA578 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 572A3CCCA4815398446A9D98310556FA /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1B8CE8C8481CBE8E4522E654E8B15FEF /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 519D1636DB8FD61EC9BBEA2983CF7EA2 /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BA6DFE784A24CCB6B70F766B6335596 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 50BD815AA69C87C42AB3BAEFD7F5E3DA /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1BC8DED8FDB672811B51D3C5994C6365 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 712C28D8153DB4FBC0218EF9578B8D57 /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1BE8130B7A748F6685440740D90F695A /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B4F6C8A6A3866286BF9A7904CF34F639 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BEAC4D07164ED107A0CD6960D57A36F /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 75262489B2DD9E36CABAD8F96B4D3039 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1AD2F9639AEF37208F85614A530979D9 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 748E68FF8F0584C3062AE3DBE77FFA1E /* Pods-ShareRocketChatRN-dummy.m */; }; + 1B6D08B38202AA4E4B1CAD58E6EB3304 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A380B5186909C7542770E62A6D8D5CDF /* RCTBaseTextInputViewManager.m */; }; + 1B7089EE7245CE852987E7230FBDA578 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = D182C2AE3A508C0EF6843366FF367D27 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1B8CE8C8481CBE8E4522E654E8B15FEF /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = FB6E0B285548B30DED6A6248BA9BFEFC /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BA6DFE784A24CCB6B70F766B6335596 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = BC579760A47409D34DA48F491B94F6E1 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1BC8DED8FDB672811B51D3C5994C6365 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8B8F3424D6C0AA603EF4D21EA999A60D /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1BE8130B7A748F6685440740D90F695A /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 03C15DFA1D85EC899D31B8976AA96CA8 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BEAC4D07164ED107A0CD6960D57A36F /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 915EBCCD574AA116367DE17F575ABF1A /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C0EA4058456B3D3762F435C2572EB53 /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DAE43A95A1DD64C112A7BC942745D2B /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C1CB445FF4AB903370BFB36D5279158 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = E2009A42795A8FA28617B6A94E490C62 /* BSG_KSCrashSentry_NSException.m */; }; + 1C1CB445FF4AB903370BFB36D5279158 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A9B5C4BE57B72F6FA2EBEF4EA55D0F3 /* BSG_KSCrashSentry_NSException.m */; }; 1C293C81A7131E0A6DF0D48746434AB6 /* GDTEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = FB08E78DBDF9DB8282CFF0D8FEF7393C /* GDTEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C7824984010D7619A12000D3C17DBAD /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = CEDC101390EB641DCCE9B731F22164F1 /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C37202DC1AF036537E97B30E494E384 /* react-native-splash-screen-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DE6BC389E62E0C665323C3196A60E8EE /* react-native-splash-screen-dummy.m */; }; + 1C487925D74EB5B30F5D42C239264F28 /* RTCIceCandidate.h in Headers */ = {isa = PBXBuildFile; fileRef = 10917B250A173D7014A652DDF2962DE3 /* RTCIceCandidate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C849B66AE31D40851966035DD96C85F /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F9E02CB5AE96400A5D13DB49DC01ED8 /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CA314ABFFE7C81A0E1F03B8097446CC /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = ABF00288BE6B64C9A4A0A6E1CFF6646F /* BSG_KSSystemInfo.m */; }; + 1CA314ABFFE7C81A0E1F03B8097446CC /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 17935CB6C8B23B54C6C73EFE33D849CB /* BSG_KSSystemInfo.m */; }; 1CB2EC2353CF09350338D1C77F3A2703 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3286C47D0D2E7941D9F892B0606F90EF /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 1CBD943A26A60CC472C6AFEC0098FF91 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = 923A35D985EF56E8D2F58FE10FE88DA0 /* upsampling.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 1CEC9722F8DE930445379902380BBD11 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = CD0E671EF80D002991AAF981E72BED49 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 1D05C8453EB2B936720262319C77095D /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = B2B164D44CDCC3851E4EFADAA3996F2C /* BugsnagSessionFileStore.m */; }; + 1D05C8453EB2B936720262319C77095D /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ED9CAC5F54C10F0B934A4E27A501827 /* BugsnagSessionFileStore.m */; }; + 1D26A9F8BC2B0A9CE1C6CE5CFFDAE0E0 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 133BD491F5DD8B0DF35E946C8DEBA30A /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1D3A9292C404B93E41EA657319C5A616 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3601E287D42AF8BF9D590F830354C37B /* encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D5C101F5B5A65F0C0C2B1FA642B767E /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = CBC70175832ADB2C24D42BF6FD067C14 /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D41251262AD285734A876F515BE6267 /* UIColor+HexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 1727AF9D01B46FFC15218621D02E85CF /* UIColor+HexString.m */; }; + 1D5C101F5B5A65F0C0C2B1FA642B767E /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = CAC29FB99AD285D7390FCBA07B3E6A93 /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1D949C6601A62EC6CAD60C9E7B50C0CC /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = 0911259B6924DEB8CE798ECCF9A287CE /* lossless.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1DD0ED35455ED0BD76AFF8FCB877673F /* FIRDiagnosticsData.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D21568CA3D2B002C973A9BA34573B73 /* FIRDiagnosticsData.m */; }; - 1DDA17B2C52FF23F1018C659E14984A3 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FC3B9919FB23C6ED6EEBCB4F7118FB0 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DDA17B2C52FF23F1018C659E14984A3 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 776AE251A86EEEB3DC7F3C5AC146BDDE /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DED56A2111205D9C0D91399DD83405B /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 50E7E7D71FD6E23FA7514E5EEEF38DE4 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DF89719EF83FB863FAD03F5BE5907D2 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C15AB22352ACB1710562384C58F2C31 /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1DF89E7727E0526C9F6958A6297BE82F /* FIRInstanceIDAuthService.h in Headers */ = {isa = PBXBuildFile; fileRef = DF9EE2E07853F87422F1FE26C5625E59 /* FIRInstanceIDAuthService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DFC8657F1F3CD03011F815DFFD0B659 /* RSKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 4947D5C4E29AACBE0A9E8E2A8B476931 /* RSKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E33F5DBE2A1EC00BB20D16ECF677E76 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 031B2AC077C3A79567C435939CEF72D0 /* UMViewManager.m */; }; + 1E26609F571CEE207B742AFAF8A9B7AC /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = 921A0622A5C88DE709E970E706A0762F /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E33F5DBE2A1EC00BB20D16ECF677E76 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5833F8205A66F0EF65029B4686DADB52 /* UMViewManager.m */; }; 1E456BCB8628607BE1E2DCDBC170FAE4 /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 11BABA994173D89D64A419EC2B1D8EB2 /* enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 1E508F3B7386CDE28DA2905F91165FA6 /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CFDBB581772024714FD0688A7201200 /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1E64F85206A501B93DCD5A0EE4FF6775 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = CF93CD62B84DFAE84148EF3D66B5E865 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1E80A97AEFB836F9A67FD52F42CD29E1 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ED3276AB5A7CC1FC6981F6BFB803FC4 /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1ED696DD2AD45B06038BAB216CCF6317 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 002C4A2C1A9B72F1451A2D85943B13E4 /* RCTConvert+REATransition.m */; }; + 1E4A158E19E5D640974292420BBAAB12 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B3521C23A432CC9542C79055ABC505D2 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E508F3B7386CDE28DA2905F91165FA6 /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 82CDC329E68EE52D6E6EC99BAEEA1154 /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1E5C9F90319FF30D80CC01B98A0F6BF4 /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = E986712B01E8C99AC088661DE5C6235E /* Compression.m */; }; + 1E64F85206A501B93DCD5A0EE4FF6775 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 6560E61B11839A6C43F486F71DBB77A9 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1E80A97AEFB836F9A67FD52F42CD29E1 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 72A868378DE5C5494FFD4E6B80935751 /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1EA9DAE1E5419117A8E0B03BEDD6725B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D6701F23C1B02C3789AE879D4EA3B20 /* RNForceTouchHandler.m */; }; + 1ED73C11ED950ECD0A52C5CFBB8EF29F /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B5EB9C763083FC66442C03EDEBB099B0 /* REAAlwaysNode.m */; }; 1EE29AF938E8A2AA9DB15EC2CF341FA8 /* FIRCoreDiagnosticsDateFileStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A943E73F3FD098F409C63811FCC88B1 /* FIRCoreDiagnosticsDateFileStorage.m */; }; - 1F0874C0195461FB5FA31ACAF0CA7CE4 /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = FCCFFF2F024A5EC44150C1BFB8C90D28 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F433492BD742344BAB20B11CABADAC9 /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 20E3E017F976C85456F5E3E9FD1DCC61 /* React-RCTAnimation-dummy.m */; }; - 1F5E662DA11E04E32401070187F7B106 /* RNFirebaseEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 02ADDCBE575728142E45669BF1875E09 /* RNFirebaseEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F7D45563AC337CF84791FE70DFCCFCA /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 56F09924EA9BFCA9898A396EFB5B5EEE /* BugsnagConfiguration.m */; }; - 1F93B9D5FFF2B89EED6DC77A368547C8 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 19ACB919631DA3E5BAB64FC62D08BC8E /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F9933E56E951CD24B5FE59A1DF30EC4 /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = E83C05DCECA6232493931757F6D3B884 /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FA093AEF62AE2BE20CAD11695130091 /* NativeExpressComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = B066E45E570655249E4ACC8D12121DEE /* NativeExpressComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F0874C0195461FB5FA31ACAF0CA7CE4 /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = C01569BFC76BB941E6E89DEA9038BFB4 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F0D7FD087732135F68120C579F49386 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C13E0443F06610B7EFFEB8ADF89AF53 /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F433492BD742344BAB20B11CABADAC9 /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D5BCF7266A460806A3D9FF384F411D90 /* React-RCTAnimation-dummy.m */; }; + 1F7D45563AC337CF84791FE70DFCCFCA /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 901B7276A7310B7F317E8C37026F64A0 /* BugsnagConfiguration.m */; }; + 1F93B9D5FFF2B89EED6DC77A368547C8 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 35DF8D3D10126F34D176439DA4158850 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F9D18C12556EF7C4A3DEEAF8AA30A59 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 0435115B6D5EF1B9043C434167912090 /* REATransition.m */; }; + 1FAFA4A242C86C00139F2873C8A6F0E0 /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A7308F84DF5142997D5175D62872E25 /* RNJitsiMeetViewManager.m */; }; + 1FDFB90B7E52B0ED0CCAEAE4D10C1BD8 /* RTCVideoFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = FDCB24C51F499E9FD1556BBA7FC9932D /* RTCVideoFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1FF2C3BBF640A90238FDCE88B9F4BDA1 /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = FB2D86A108895FD798F3CB65A1BA97D7 /* picture_tools_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 1FFE812F135FF3C50666B45174BBC0E2 /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = FFB5191F2A89F10A824157FCB2185413 /* GDTCCTNanopbHelpers.m */; }; 200022E023C1CB715FE8A63069F76D71 /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CB8E96300577ECE5B570C0DFE8BD5A2 /* mux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20151875DA84E676FF35DCED3A7A3195 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = C8ABFF105AC704B4DFECAF248C4ADCDF /* BSG_KSLogger.m */; }; - 205430F5151F44149078DE31FA20E878 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 37F188493F6654882DE5E6B2BDE19215 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 206B5516D18BBEFFBBC45813CC50E76C /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = E6F5E5D8FC87C499FFC947C0FDC91058 /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 20B9C4936CD8E22A195DF799E0B85E74 /* RCTImageEditingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BF1B3C7C7E5F67CBF74A1A30DAAA7F05 /* 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"; }; }; - 20BB52A2F1EB699503EFA842EA5089B7 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ACBA2403B6914136AB18C882EC9DBD4 /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20151875DA84E676FF35DCED3A7A3195 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 2795ABC502CD10381189161967F50860 /* BSG_KSLogger.m */; }; + 201C1DBFD35193149972A76A9196660C /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EAC0DE1B2D16D2F3F98ED0C1EE70784 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 205430F5151F44149078DE31FA20E878 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = D583E0FD9C99A5C4EACE257245AE37BF /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 206B5516D18BBEFFBBC45813CC50E76C /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 94CB36C4322F282B36EB44E09A4AEC53 /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2083DEE86E2846EB49E10483A1D84205 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B2B6CCD6199BC227927A6F66F1C4B676 /* UIImageView+HighlightedWebCache.m */; }; + 20BB52A2F1EB699503EFA842EA5089B7 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = 5394F24A17B647EC262837BDBA53C7CB /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20C50D70DD42F95AE7C28811E6F5B5D1 /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 46BC8AEDFF4D6712112403690A7C3733 /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20D2D943E25749537AFD4D44A90B515F /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 4C3EAEE65CDE17A9B4069549BC2EF2DD /* filter_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 20D4A05296D575EBF955DCD9EFF521E2 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 780DDC9C63AB689CABFFF37736234AAF /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20D803741AABCBEEED52F0ECA8D3AC17 /* RCTNativeAnimatedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BDEA29BE76A4CD995FF5FF996D2E3AF /* RCTNativeAnimatedModule.m */; }; - 211DDE9DD56CC6733F0430A7223DC11C /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EB2C0F0288889CB5356F89329F9A432A /* RNVectorIcons-dummy.m */; }; - 216A82DCB6AEC6E3FB639429BB553F0D /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = FB02C5F260048F00222BBCBBFCEE2FC9 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 219872C757F207F7B935358706E19215 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = DDA1EFB3F0B2BA756AF27AB8E6BC67C7 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21A33E4C1B8F56C99B36D6341930D784 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 6928B4F8A8053CE75ECC6B5A5F36C92C /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21A7B03038615161C7777396EA546882 /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 63C14DDCE72A4E5D97673C5C74DC0F46 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20D4A05296D575EBF955DCD9EFF521E2 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = A0AE44464D79976D776D2A087ECFC85D /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20D803741AABCBEEED52F0ECA8D3AC17 /* RCTNativeAnimatedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = A65B3EC0C674A8437A43B4C3D3AE0536 /* RCTNativeAnimatedModule.m */; }; + 216A82DCB6AEC6E3FB639429BB553F0D /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 6486B62D1BE044C670C172DFF3227E97 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 219872C757F207F7B935358706E19215 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 769ED9C8AF3E426734F313C4AFEE9D61 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21A7B03038615161C7777396EA546882 /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 232AE8BBB19AE477D2ABAA1A37BA2118 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 21ABF1293012F0600F05DF3D7ABE5928 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 9E6596BE80EBC4F14B569C64397D7F41 /* dec_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 21B1823B4F7EEFEFF94E2D5D2E4F88B1 /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 907FDAB7A7008AAD800494DD59DFD35A /* RCTMultiplicationAnimatedNode.m */; }; - 21C35B80CAEA0A76691C779BA384B7D8 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E0B7512BC3FDB975E4DC5278844D3829 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21CE9B29C4AA417A5CF00AFF6CF34151 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 55CDE9C58723ADE684A7D823EE7CDA20 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 21D078D2DB6C6A953ADC6BACA3907A62 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DFDA67AB734798D01BABFB49DD83A8C7 /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 21EC7D3AD60270794C1F393D994EEC4F /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = BCFBB91AAB4D0D6D6E79B0BDFD15E29C /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22159A7A5549EF28EF0E9E0538E1DD33 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AAB9F137D471BC732AF4577DA583C38 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 224BFE3AB6B1669CB925F9647D7D818A /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B59CC1BAA4BFC5DB2D00452E5713ADB /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 224C8A685B5ACC4524109290F80C0319 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = F01D8B44B111CEED10F68E12225DE0CE /* RCTVirtualTextShadowView.m */; }; - 22697CD62AE749AD709D12874316FF6D /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ACA51A6D2C3F9821EFC1856E07D9B48 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21B1823B4F7EEFEFF94E2D5D2E4F88B1 /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 08B2B0D06B9D7B70691E8465DCFB7425 /* RCTMultiplicationAnimatedNode.m */; }; + 21C35B80CAEA0A76691C779BA384B7D8 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9140EBF996CB25BBC64302FA7A506C0C /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21C9F890E3465126B7CB5ACF71473C4B /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EE4EC581FC8ABD5F70E10BA7F595D5B /* SDAnimatedImageRep.m */; }; + 21CE9B29C4AA417A5CF00AFF6CF34151 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = E7DEB2F26E54AE87B1FA75588F12D7F7 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 21D078D2DB6C6A953ADC6BACA3907A62 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 69EB7BF524AD0245AD2BA7B8EE24C5C1 /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 21DE2A10681CE86207C60042CF81CC48 /* RNCWKWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 054454765C650E0793BE6B979357484E /* RNCWKWebViewManager.m */; }; + 21EC7D3AD60270794C1F393D994EEC4F /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = 37EC08C914CE9355DB2B72F7F2E4146C /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22159A7A5549EF28EF0E9E0538E1DD33 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 25CC2F827A9F947F10241043AD7BC871 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 224C8A685B5ACC4524109290F80C0319 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3102101438E992F7A4D1AF110747AC8C /* RCTVirtualTextShadowView.m */; }; + 22697CD62AE749AD709D12874316FF6D /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 3245737CF751F5AECA0A503ECA82271D /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 227E798F6EB67F02AE3FB6227E466D98 /* FIRInstanceIDCombinedHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 37AB3E1CA524C470AC4217C4A2146926 /* FIRInstanceIDCombinedHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22838872B356B4AF34721F61409AAD23 /* UIImage+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = B82698878E55481EB830AE41F5792A4C /* UIImage+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 228612C4C1079DB14B789A3062865A59 /* RNFirebaseAdMob.m in Sources */ = {isa = PBXBuildFile; fileRef = 4831002E31D2F6815C4C73C5B31E5A72 /* RNFirebaseAdMob.m */; }; - 22898BD6C6A490182C188A14C72195AA /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = 6257AC3E2DA31BB3E01EE99164AA9070 /* BSG_KSCrashDoctor.m */; }; - 22A4682B2E1611AA80A231CA6BDB8151 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3685360A7BD99E6847628EE5D1FF83EA /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2300DFBBEF16E2B09F2895DFDB925499 /* AudioRecorderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A9CBE5EDD1A08F9BBD6ED751C0B6E090 /* AudioRecorderManager.m */; }; - 233EB8A86D47194C1EAD871FE6884D64 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = F7140AEFC9BE5032FB209FCFFBC6BFF4 /* 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"; }; }; - 23530E8ACACCDD2A168E071AB99522B8 /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 48D8A6A9316926B226AA53312D33BF18 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 236E399D293966ABFDE07A97CD317408 /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = F5A81A280EA4DE0A82A1242B61D58A72 /* RNBackgroundTimer.m */; }; - 237D3CB3B6114C9CD0A393A3307C4CA4 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 25803CC314A2E644D9FCF2FAD9647006 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22898BD6C6A490182C188A14C72195AA /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = E455556F97EC4F3832300A23529B49BB /* BSG_KSCrashDoctor.m */; }; + 22A4682B2E1611AA80A231CA6BDB8151 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A3F35EEE02E752F06C8D29DE4F1E003 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 233EB8A86D47194C1EAD871FE6884D64 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E47890F881BBB8DCEFDB2FB78F8E35D /* 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"; }; }; + 23530E8ACACCDD2A168E071AB99522B8 /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = C780E0FCA9FA33EA09A500410333B0DC /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 237D3CB3B6114C9CD0A393A3307C4CA4 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B52B5BB6216EBD02881F75790A07E13 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 23BD7EAF0F4EBEA12B17AE7D21D916DA /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 87BD2F49DE7E2ED41B26A69441613E75 /* anim_decode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 23E4A832066FED70A4A478B172974B17 /* FIRDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = B8198475A46AB05337E09F32DDA7B688 /* FIRDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24725EF526B66947DFCFB06F8B0442D9 /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 05E6FA1010261B767C1111CE6097419C /* EXPermissions.m */; }; - 247A9E9CF0E893DE72FAE7DFB705E4A9 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = C82F229D9E944295E826EF102441184B /* BSG_KSBacktrace.c */; }; - 24A0427A84E9937758D8E1D2DE34906A /* RNFirebaseFirestoreDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 977243794F9236C487595779231114FA /* RNFirebaseFirestoreDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24B5854716E91E06CCE3AD51BE54CC56 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C15AB22352ACB1710562384C58F2C31 /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24BA23655F5101418049B4B82461D725 /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 9336E696A5C9B4ABB34D5E52D336040A /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2512FEE8990D6D42F338EABA386AC2F7 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = C504584E8224E095C31AE23E97049947 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24725EF526B66947DFCFB06F8B0442D9 /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 392A54C242119AC827378B2C6BAD1D3F /* EXPermissions.m */; }; + 247A9E9CF0E893DE72FAE7DFB705E4A9 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = BC2889F3709FF3024B5063FBEF2046E7 /* BSG_KSBacktrace.c */; }; + 24A683EFF94922AD5BCD7FD1401CA584 /* RNCUIWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 18A83C98FAD90D1635B4FAD631A8DD56 /* RNCUIWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24BA23655F5101418049B4B82461D725 /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F30CD1A53CF420CCEC8AB03C9657DB9 /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24C648DA44DE8E8601D12BFB59C38949 /* RTCCameraPreviewView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1641DBA87791889F408662B110B3529B /* RTCCameraPreviewView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2512FEE8990D6D42F338EABA386AC2F7 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = D297D1CD88D6EC383B4F171C315963DA /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2567302E73972DAF2C1AEC5F74F7BFE6 /* RTCAudioSource.h in Headers */ = {isa = PBXBuildFile; fileRef = A57E0A5F8BBA090989770FD2FA5E2333 /* RTCAudioSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2592A5FF8A7EAACC26FBC400F2A39805 /* GDTClock.h in Headers */ = {isa = PBXBuildFile; fileRef = BEB8AD90DE687544934847BB70635A54 /* GDTClock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 259805457533172392A5D7EAF6541D6B /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A8CC69E6564B343ACE870DF47982292 /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 259BBBADD7C1D83C44B3A9DCBDA7C943 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = EE082B931344DEF3EA3083AA8E319113 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 25A679E08CD562EE47F0F4CAA08DE67D /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B5B71DEADE3F134C37C7CA658A9BDBE0 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25B76E6EA75B572F2465B93EEF59B3C6 /* JitsiMeetConferenceOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 99F55336CA51A544DA22557825A83866 /* JitsiMeetConferenceOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25DB5025EB1F4A185F3A4F285CA12767 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 95326CF9943793EEF3C483A2EF154EFA /* SDImageCacheConfig.m */; }; - 260B6AABAE2D9FD32BB8C80D619F9A0A /* RNFirebaseAdMobRewardedVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 8386892B4BA307BA53398377169C673F /* RNFirebaseAdMobRewardedVideo.m */; }; - 26118CD1C4DF6A7ABF1D6623EC7F2849 /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 16C6183676AD6537323D5EC6ADBB976F /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2659330DBD7370573D1393130B43BB4F /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D921C88B653C6F55B8F32C5229D912C /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26698CB3584159578B74F00DD586EF8E /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B554C75B17DBF9D797AFAE6314A64EB /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2673194DF03F621991F04793BB861BEF /* RTCVideoTrack.h in Headers */ = {isa = PBXBuildFile; fileRef = 22DAC7FA09CDDAFA2025177956F43829 /* RTCVideoTrack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26833E29DC727084826661273603EE92 /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A28A885DB5C7E3687C339B35DBA9D577 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 270957F405168211B69298CB2048DF0D /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = F2BA8BB1F6E38B3C8257CF9CB81FC230 /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27216859EDD22BD1689E1C2DEFF48D60 /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1D7A2E85BFEF2ECC9B0649D1ECAC6D07 /* 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"; }; }; - 274F74D8522595669D50286B66527D70 /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = F0A42F10B4353A6B82F07BC94C65BFB4 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2764F6AB069F801DA98BB016E5058A56 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A16FA363552E8747CB528C5DAA63C75 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27A0D7F32A4608E3E60FDBEEC68BD9E4 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AF9D973DFEE1FEF3DF20202F45BE3BE7 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27AD52F67B0DCE2212BF541A9603B232 /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = 942AEE3E4F57DECD83E5EBE0AFE392E0 /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 259805457533172392A5D7EAF6541D6B /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 86EF96D3E4F392A4A732B1F9A4AD62EC /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 259BBBADD7C1D83C44B3A9DCBDA7C943 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = AFF6530F3B4C1E1AC8DB8D75B640D4BD /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 25F0EC1D0FACC00B8FF8B3587474A44A /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3007AA5094F3919B637E9E207729FE7B /* RNFlingHandler.m */; }; + 261FEBBE6DB03A0C9CDC0E2F66F9EFF6 /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = B9801943FF6EE3E75F3DD169BA3E45B5 /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2659330DBD7370573D1393130B43BB4F /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BB130BFEBA123BF5F40864D7327A1CE /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26698CB3584159578B74F00DD586EF8E /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E73EC51CA130986D4435F5280FE62E1 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26833E29DC727084826661273603EE92 /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 901E1111E9842CEAE3A54CFB675A2261 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26E9C6B427E74202266F868F6D3B3AA2 /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DC404C13CF1A25C0937D7F77E8A31A0 /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 270957F405168211B69298CB2048DF0D /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 66C6F8C0BEE2578205320376881774E6 /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 273740B394BF771AEB103A407D941867 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = F193806B174373DF2D1FECCE29EB9F7B /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 274F74D8522595669D50286B66527D70 /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = BA747C4A31683AD9E2C672F936FF2995 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2764F6AB069F801DA98BB016E5058A56 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 848B065D7A2A028195742CCE26F6C524 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27A0D7F32A4608E3E60FDBEEC68BD9E4 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1382A2A90D42FAFE2DD95F2B78210FCC /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27AD52F67B0DCE2212BF541A9603B232 /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = F7043B74452BD705C688700D50CF98BF /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27BB8AB948D080CF5CFC7FF75F5B59E8 /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 85FFEA0EA30D02DB5C96E92331483A6C /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27BC747948E221653E00E2AA30E29F5C /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 97BE7330857285D0663B48A8768584DA /* SDAnimatedImage.m */; }; + 27BD52C61D7E2DA7685DD3B2D88F848D /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 87E9F38D85AE21DD2A7E002BECD22369 /* RNPanHandler.m */; }; 27CF157255C447A5063775B5BE8A7CCF /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 610B0A128056CC6126A005BAFAA887F6 /* vp8_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27FA5651A76E722AF28A42B374C31FA9 /* react-native-keyboard-input-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5231A22C48E362EB0DD36886103DF5CC /* react-native-keyboard-input-dummy.m */; }; - 280AE76B1314A572C42246827AFC9325 /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = CED675B583FA736552ABE486E6C059C7 /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27E6EEAE92AD1078CBAA3D991A064E23 /* RNFirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FC607DFD390514534819C0DE585EAED /* RNFirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2816AFE7D0CEA6D240F30639E6F330BC /* FIRCoreDiagnosticsConnector.m in Sources */ = {isa = PBXBuildFile; fileRef = 4890A430C0D350B24542A4C7BE7CF8D7 /* FIRCoreDiagnosticsConnector.m */; }; - 2819B1A890BCCCC8F66B7BA0C4BD1C2B /* RTCAudioSessionConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = AD6D9FE62A19C65EE313AFBDEDCBBDF6 /* RTCAudioSessionConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28460F084E3F76CAE4A73405858D93D2 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 53507FDF3A11C8248CC06B92D2272C13 /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 287AF10671D2CB0A97D051B3DF0EA3BA /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DC97CDAB52C4037177987D5EACD5438F /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28CC9D12382FF2F86C71C861D4B967D3 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D426D3B4538E31F2F6DB0DEA8FDEEA90 /* RCTDiffClampAnimatedNode.m */; }; - 28CCB8A8AE578ED7E3DA0C35893B0D27 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4A28166F5EB00DB34183211A2D1723B3 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 28E33DF680B70E0EFD1D1A84593F92F1 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CA2D8F54C76A9153F9B373817DED279 /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 28E68C5E487D381C748E8A14278521B6 /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FD208A987D26707807DEACD92EAEDC2 /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28E800F897C3FC5D0D8BCB0A35CF5986 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C65E47429B552B172A74DDEB48E37A /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28E83AC94D53EFF4D180E0A742AA733B /* RNFirebaseAdMobBannerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FFCB3DD7159723670C92E2DEA12A3F85 /* RNFirebaseAdMobBannerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29484F3F6E4F96B336DE4D51FC0233D3 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = EF99D7F00053860409719088A4DDA847 /* es.lproj */; }; - 29A5AE580C156F6FEDF0324BE27BBFDD /* RCTVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 23D9BA17A725B050BFB7E8AF0C8CB267 /* RCTVideoPlayerViewController.m */; }; - 29B83C0236039A7D69AB5AAAB1F786DB /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CF5991AF2EB1CF341B46ED915556AFB /* REAAllTransitions.m */; }; - 2A2926C4D4165C17BD0FD4ADFA1C1282 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 87D85EEB99234929D3C3B840B4842934 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A41075BCC3D7E19022AF88160D866FD /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 32A2B92EC96777B75672426E777F0E1A /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A4FD22248D4B1C68D48C3CC742B7702 /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = EB4550CFD3271A2081B5E60D492F2376 /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A59076ED7D1E3D7335B847D1E4C8DF7 /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = DE347CCC6CB1C9D009A596DE10BD2DFB /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 28460F084E3F76CAE4A73405858D93D2 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C7B1DA4959C2459DF10755381BBD59FC /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 287AF10671D2CB0A97D051B3DF0EA3BA /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CEFB3485E06EA5B2BADC8F2873030FC /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28CC9D12382FF2F86C71C861D4B967D3 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = AF013465EC9DC0655024BD7A9269EA82 /* RCTDiffClampAnimatedNode.m */; }; + 28CCB8A8AE578ED7E3DA0C35893B0D27 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8790AB5D40DDE84D1B3D0E455DAAE986 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 28E33DF680B70E0EFD1D1A84593F92F1 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = E96BAB157D2998086C5B27982DC2FD70 /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 28E800F897C3FC5D0D8BCB0A35CF5986 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FFA08AD88D8F0C551A3135E816B1864 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2995AC927E037C9D682B8C1047541D7C /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 14C36476961E46A2F97DAF28F884B6F8 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29E0A466646822BF7992EB5EED19D722 /* RTCMediaSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 65DBF226D023A7A892612FC0E8A71FCA /* RTCMediaSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A2926C4D4165C17BD0FD4ADFA1C1282 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0634E471C8D2991463FCABC1359891F4 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A41075BCC3D7E19022AF88160D866FD /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 30A61D6BA406FD3518D81BBD4BDB9122 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A4FD22248D4B1C68D48C3CC742B7702 /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 84F3FA5A68ABE7171031AE3F0A4A7289 /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A59076ED7D1E3D7335B847D1E4C8DF7 /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0B6B62DADD39DA01034D398ED5C1A8A5 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 2A6007CC43D8EEA9B2BC68DD9C588117 /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 99A30B30F50E663C4F6D01DCBC7D90B6 /* frame_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2AA778D0BAAF39A15A6D28507D4F1C5B /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = EAD84CA8A895048C48C60E6B2A2754A9 /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2ABD5D9936F366E87BB7EA022DE746CF /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 800C36B746A8C7FFA715AAF29B0DE159 /* EXPermissions-dummy.m */; }; + 2A67C8FF4132A00DAAA99DBBCE50D413 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = ED5E7B0E540ADB6C5A078ED666307B2D /* RNNotificationCenterListener.m */; }; + 2ABD5D9936F366E87BB7EA022DE746CF /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CBEC5485DE6C9A00D5015DB0887CD9F /* EXPermissions-dummy.m */; }; + 2AC252CD11D8210E4459CB190F05D118 /* RTCVideoCodecH264.h in Headers */ = {isa = PBXBuildFile; fileRef = BC1B6948DAE6D4318C3A409593A9B883 /* RTCVideoCodecH264.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2ADF07B96AFD642FDDA0273C3FC90A9A /* FIRInstanceIDURLQueryItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 20FB7B4A045FB6018B76109BB4402D2D /* FIRInstanceIDURLQueryItem.m */; }; - 2B775B5C0CEE4EA0CD768F135F845C8B /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = D0303932CBA19C4343EA41C633571533 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B237E1520CBF06FD71091F1E1631C63 /* BannerComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DC638E79AC0F815080FA80FF52C5299 /* BannerComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B7BBEE60DFC6B43E93D0A2BBDBD2FF8 /* FIRInstanceIDCheckinPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = 86F38348289EC83B5F2C73681AD30213 /* FIRInstanceIDCheckinPreferences.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B9CC455EB3417A7EFEBE610679A6E33 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 240E1D6C6F7E22B6C26BF672819FF509 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BA75A28217EE3FA06B996528B4B551B /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DB8FB20F400557664EA907D0CCEA9A4 /* RCTBackedTextInputDelegateAdapter.m */; }; + 2B9CC455EB3417A7EFEBE610679A6E33 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 96B349183F53F57468E745F360A5109D /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2BA75A28217EE3FA06B996528B4B551B /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D9C382E153E060B6AB643777323C8CB /* RCTBackedTextInputDelegateAdapter.m */; }; + 2BBFF13F237BE2684D4466164F9DA5EB /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 63C86DC2C6226AC8085ABDE12400FDCF /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2BDAE2BAA48D3C6E8C983C126D1FF6D3 /* FIRInstanceIDCheckinPreferences_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A2669F9597361BA03540DB202E45107D /* FIRInstanceIDCheckinPreferences_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BE321A08DCB8BBD46BADC0025EE22AA /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = B443710E63E715B94B5C3BDBE5BF7700 /* BSG_KSCrashSentry_Signal.c */; }; - 2C26317049B79F38AA56D9959D9C8D32 /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = FC800C552B768304543ED5C421BB9485 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2BE321A08DCB8BBD46BADC0025EE22AA /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 2431A684D1294C48BCCDF49A6B33C1EB /* BSG_KSCrashSentry_Signal.c */; }; + 2C26317049B79F38AA56D9959D9C8D32 /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E05754C48F54E4BE3182E0BA035B8B20 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 2C2AC1E8B0605625D9F2D5B5D3480055 /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 6AC5E310FA30ADA42244538FD8256084 /* dec_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = BAE8DC5D234672D2E49F73111B307675 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A21DA24A169977277D085E1318E4EC63 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C6FA3B1D3D6FF2F6248928CAE7CF19F /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EB25BCE31ADF1A90D96551E8A9B1C0B /* UIImage+GIF.m */; }; 2CBE448FB6CEF4C98AF0A90B1DAA3E22 /* lossless_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = AFFEC13D0BCA59D868F6841E4FFD6AF1 /* lossless_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 2CC6D6AD2671C563A0E0574A57B12896 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C6FED9F0BE14108E4CC6E139F97D40D3 /* SDImageCodersManager.m */; }; + 2CE7D4CA1AF7687B1E92FE5DDFBF419F /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0852B3F23BF2CCC5942464F363AA829D /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2CFEE3C68DF30B10733EB873C39AD7CC /* FIRCoreDiagnostics.m in Sources */ = {isa = PBXBuildFile; fileRef = 592BB6B8234B8E4CC08CD548972BD2FE /* FIRCoreDiagnostics.m */; }; - 2D148CBAA6A993D9F7BAD0FB0117C825 /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0889B027F2783DB1FDE44677F938B492 /* RCTCustomKeyboardViewController.m */; }; - 2D61A2747A7ED3643B239BF6F190E30A /* EXLocationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = DB66B4A755AD16758D26FA46E333B4FF /* EXLocationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D889A37C6B0DCFAC73E5AC673F56C1C /* EXCameraRollRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = D2D3FB75CDE21750E73D11A0078FD826 /* EXCameraRollRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D94A7F720A87F8E8CBB6B3E1F47ECBD /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EAC0DE1B2D16D2F3F98ED0C1EE70784 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D1354263163AAE7FB85C0AA45AC7951 /* WebRTC.h in Headers */ = {isa = PBXBuildFile; fileRef = AB1349B7B63DF3A789D37D4B41E9CCB4 /* WebRTC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D61A2747A7ED3643B239BF6F190E30A /* EXLocationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BE10CF2B91B33A20A6F88FBB9B3F311 /* EXLocationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D889A37C6B0DCFAC73E5AC673F56C1C /* EXCameraRollRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 240081B29BEF0B064AF857722A5995DE /* EXCameraRollRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2DB4F42CEBDC24A79C3C19B323720090 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 1BE4DD9A3A0342A8E44650599C2CCF76 /* lossless_enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2E0CE299D4A86130368E30A7EE7F82ED /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A405AECFC1392628DEA9E741B4087EB /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E2FAEABC0476055F22D6A37003502A6 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = F99CC4BE4EC1E8C5B621C4669D4D20DC /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2E3DF252F2F3F954DA657CD84427E2A0 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BABE059E6403F44B1FF43875638B0DCD /* REABezierNode.m */; }; - 2E4931E8207986206E7AB09BFBB585EB /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = 08AECB1653989DA930B68E900E7D1BA9 /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E52FF8FA66C58800C090D00337256E1 /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = E2291D8D25BAC35D0DE563E75BE219B0 /* UIImage+Metadata.m */; }; + 2E0CE299D4A86130368E30A7EE7F82ED /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EF30FE74F36D157FC58BC0033FC3A29 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E2FAEABC0476055F22D6A37003502A6 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 8724FA74C00454349D3ADB0405FAD0D0 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2E4931E8207986206E7AB09BFBB585EB /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = F8711D114D434316B98A947D269A0703 /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E8DC07931E77D5FEE7E8C0E393E4A42 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C5C9A758A307E9C2308801D85F4AD5B /* FFFastImageSource.m */; }; 2EEF2428BF4748087D8E774D39E0A4F4 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = CB474847C01C8226B45873C974C8A65C /* backward_references_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2EF50ADAD30A67413D8AE5E3A4BA0770 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0893789DB95ECE903CACCA08319819F1 /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2F532EF26684F4C1C81ADE05E45D95DE /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC1FB84400BE54B01B8CC2369F9AA339 /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 2F979FECCC508F429C6897CC838658D7 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 8405B7B00ED769894EE60016CC55AA73 /* RNFetchBlobProgress.m */; }; - 300C71ABFD378A1342C940BAD49E48BA /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 052F18F75CBE8D8527343972F983724C /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3036ADAC45D7080759FDE8A391116E87 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = CBDCA198B6442671F614F967ED74C497 /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3048B26B78ED15ECDB68B564FE60FCBE /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = A4D016D868BD58467CA1033C502573D6 /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2EF50ADAD30A67413D8AE5E3A4BA0770 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = EF1DBFE040EC230677A0E19DE0CE562C /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2F532EF26684F4C1C81ADE05E45D95DE /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4002DD3069DAB02EC998A6B083D34D40 /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 300C71ABFD378A1342C940BAD49E48BA /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E582B228FEEC070129398FC2EAEA8F0 /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3035670AFA8429D8517933D10EB86318 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = CF34934D7B6EF5A185FBAF6BF9CCC504 /* UIButton+WebCache.m */; }; + 3036ADAC45D7080759FDE8A391116E87 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 19DEB28D1056B1A2B077A411AD95611B /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 3059407935B2C8DB01CFDE29A61E1AE6 /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 366A71480716A7F4AFACF4B7A4B0F575 /* GULNSData+zlib.m */; }; - 307702DAFED5B6B9B1138A4657C5653C /* JitsiMeet.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F7977379199D30597CDC9944240F9E4 /* JitsiMeet.h */; settings = {ATTRIBUTES = (Project, ); }; }; 30787BC4F5F2D1BF6C15CF616FD2EFF1 /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 091519202305630ED4A1C9A45D550FE8 /* huffman_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 30B264FF19160F7B84E522938128AD34 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = B828B7319126BE036DCB2EADF42112E8 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 307C191B1E19D8726AA196CBA0D7F975 /* RCTVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C3D6EFB8D50A27D3AE08A56867B88D5 /* RCTVideoManager.m */; }; + 30B264FF19160F7B84E522938128AD34 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 522F10730E194A3037BCDF996A47E81A /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 30B7FADFDC6C72E866EDF0B76639D177 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = FBB541E9B9A01EA3762BE29C5BCC124F /* dec_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 30C44A3EC525F17B193F938EAB44F38B /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AAC61CDA0D1E91E602C8E62F111D7F6 /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30FE11C29AE90CE864F21AD66E7CFCB1 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 426614488C4A84088A29FF799BCFA49B /* RNVectorIconsManager.m */; }; - 31182E073DBF5B3E09AFD6F6664EA453 /* RCTLocalAssetImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 073AA0DABE1C1F2E136E34E275BBACF1 /* RCTLocalAssetImageLoader.m */; }; - 31274EDDBCD11A92A9DDF9C3CAFD44FE /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = ABA7D17947BF9037B3F73C84CA322ABB /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 312DCE7A6237A58BFB73D95B5B7016F2 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = C6BA0DA9A42BF72CD1D0557441A778DA /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3142C186A60FDFFA9B053386E66CD6D1 /* RTCMetrics.h in Headers */ = {isa = PBXBuildFile; fileRef = EE2DAFA587449DD1657B952CEBA630CE /* RTCMetrics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 30C44A3EC525F17B193F938EAB44F38B /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = F5D48CFAFFE59BD35D6C2A3381B7F91E /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 30EBF06BCE90BD8C761F9E9DC8C9B4D8 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D3A46F9CCE8CEFF84C4C455EA782C9B /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31182E073DBF5B3E09AFD6F6664EA453 /* RCTLocalAssetImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = CF674F5C2EE4E534C77580819ADBACA9 /* RCTLocalAssetImageLoader.m */; }; + 31274EDDBCD11A92A9DDF9C3CAFD44FE /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DC267C629FF91AC4E846925EB5D7A32 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 312DCE7A6237A58BFB73D95B5B7016F2 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = A5FCAAFF930356FC7B7C2C57B18C5A8B /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31A575CE50A281D0F123B2947B4399BD /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 15668F5FD97ECBA0FB8A0FC54240039D /* enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 31A5B7E4D5990727852E4C87C3E24560 /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AE9963F24F79DFE3DC91B87C2FBD08F /* RNFetchBlobConst.m */; }; - 31A6D18B44F359D3DDD8802E7EC51505 /* RNFirebaseInstanceId.m in Sources */ = {isa = PBXBuildFile; fileRef = AA799C2BCAF0812208D579857BBFE59C /* RNFirebaseInstanceId.m */; }; - 31D08D5F417ED5B397B23EFCC6938BFE /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EF27FB97B9D7EBE56623D54BDAE1297 /* RNPinchHandler.m */; }; - 32206859790B56F683946A3D5A6E24D4 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CB7BE9DC1FF73569EF920805D610F2C /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3282F4AA90089D1811FC0E58A6E6025A /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 5118A149A8E980B6A5ECE891F4C115EC /* UMReactNativeAdapter.m */; }; - 3287CFD243A6308384817B1B6CDAD373 /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E601D78FD0F51EF75CA7085D90D007A /* RNEventEmitter.m */; }; - 32C4C455405B9CD9EF755DEBE89A2CA5 /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = 850C2CFF5FCDF71AD5682FC1547661A9 /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32E684924D741517DCF60217D3427297 /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = B8D62298397AB98E6962A42DFCA4422F /* BSG_KSMach_x86_64.c */; }; + 31B1132C57ABDAE141CE53C84AE787AE /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C158146D441C1840F6148EE3D236C33 /* RCTConvert+FFFastImage.m */; }; + 32206859790B56F683946A3D5A6E24D4 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A8692F8329A6E790C24A6E450FC3B4D /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 32C4C455405B9CD9EF755DEBE89A2CA5 /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CF2BFB1C54DF14C029020E89D3F7EF6 /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 32DB3410DD858D5062392CCDFCBEA57C /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = DFD54D567474AE55EB97F8845FAF3B7A /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 32E684924D741517DCF60217D3427297 /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = BA3156A4ABC0881F79EDFB84436B30AC /* BSG_KSMach_x86_64.c */; }; + 32EC230E9A7CBEF14A45D133AB11CB6A /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = BBE2A73BEE72F398152D5D38F8059991 /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; 33062309584EE5CDBC69FC6DE862E033 /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 571450E9D18ABFBBE1E0C3790D7FB52A /* color_cache_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 330A1B0D5843F9EF53903DD77EEFCB30 /* RCTActionSheetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6026AE027DAB1023A35C124CD726A66A /* RCTActionSheetManager.m */; }; - 330B6B072E57ED740584170F1D33629C /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DBC31B184432CC52EC5989F5CC9F893E /* EXFileSystemLocalFileHandler.m */; }; - 330E49E54FAE78E15DCA4ADBB77983F0 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 63388F2BCE5126FB513A2351B6A2BD80 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 332BF9DE06A8C382D5AF750CDA85D66E /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6783D109F54B3921CA42A49BBCF61D6D /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 330A1B0D5843F9EF53903DD77EEFCB30 /* RCTActionSheetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 75D8082D84EF5FD5832C7FE5F25BFB7F /* RCTActionSheetManager.m */; }; + 330B6B072E57ED740584170F1D33629C /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B17F5FD7E71FEDE5A02B0200C443138 /* EXFileSystemLocalFileHandler.m */; }; + 330E49E54FAE78E15DCA4ADBB77983F0 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8992709B32BDAC01E0B0112F19B1262F /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 333E72A60BAFC9EB250C17222C7023B5 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = 48B371CB114CA324DEE1CE9661DF246F /* neon.h */; settings = {ATTRIBUTES = (Project, ); }; }; 335029A6D67395F3DF335ED8328DCDF9 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 1418009FC5641E024FCAA026F4B09937 /* upsampling_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 3354D8B4BB60FB17E7772B63D789D6D8 /* GDTReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 6692124A109C0B6DE0A64CDF4BDCC3DF /* GDTReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 336346130CC998028634B4AB5777A665 /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DBB9724792F06FB38B656212C889AED /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 336760D8A5971F71A75451160845CA30 /* RNCUIWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = A98CBC136302FCDF57A99CDE8D1DE06D /* RNCUIWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 337D56ABE8516E491805EDA094DDB786 /* FIRAppAssociationRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 2092051B4577548919F24B8EDAD80932 /* FIRAppAssociationRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 338E09B092953457F18D827F487CCA80 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 09194B6B9B3142164C311680EBF2F1F5 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 339CF8E8A0466D116DC12D2F304C202D /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D935A965951AD2A988F3D4908D8060F /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 338E09B092953457F18D827F487CCA80 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 106CB78B1A5A36AAB5A3359AF69C107D /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33AF2274BA594645B3CCFA3D45E61EF1 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 673EECF6EDA15A73134989558149C7F5 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; 33BFDF34CCF06F27AF5A95AF3D3A8CDE /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F496EB4CC86E6446BEC31D05CF5AA7A /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33C91DE5F2A63897008170423C191BD4 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = BD44312CAA7F36F9F47BA4A0BD0471BE /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33CB5D3DD385D4617604E912AC04C551 /* RCTNetInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A2A6E90B220EA4C8894E1AA4826629C /* RCTNetInfo.m */; }; + 33C91DE5F2A63897008170423C191BD4 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D39C8BEF9B469F3D9DAC70037B78025 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33CB5D3DD385D4617604E912AC04C551 /* RCTNetInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 72942A7D22C13D239036E5CBF81E9FCE /* RCTNetInfo.m */; }; + 33FE7CF4869D3175998CCA4AA3AEE9F0 /* UIImage+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = B4ED747092A1D20754551030B7A387CE /* UIImage+RSKImageCropper.m */; }; + 34048863D0588BA6D9B2D5600E93921A /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E33362888E1CFC0E1660407237C36CF /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 341380E44D4722C561A20D6F28A387B4 /* SDImageAPNGCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = A3DBD6D4B64099330ACBBF9E0560ECDA /* SDImageAPNGCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3447D3DD4987D84E005FF3012A4EE817 /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4B148D97AACF0F13E77EDD6FD6AB019A /* QBImagePicker.storyboard */; }; + 345FB327D7687EBB3599426A999F58AD /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 14BAD30572F735577B7DBEF7E1CB78B7 /* RNFetchBlobNetwork.m */; }; 349B8E6465493658CF6AF3C28F8E69F1 /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = C57F3A256584CA86343D5E7BF998DCB1 /* quant_levels_dec_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34C2FF6F97B984B18CD943E512743BC5 /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 7671275585D773EF29D1D407C7ED15B7 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 34E5531AC0AA9747E78835A956DA5580 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 4103E5D22024414FEBC368E41E6B0FA8 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34C2FF6F97B984B18CD943E512743BC5 /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 8384F5FFD027915795E7F3091CAB1DC5 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 34DE9849D2ED1E85F38BE19FEA1F93F7 /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 48866415580354FBF873DCF0211B4C84 /* SDImageTransformer.m */; }; + 34E5531AC0AA9747E78835A956DA5580 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = A171A41048E3753FE41D2C7BF8916BF0 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; 34EC45D7E05C7E544ADCE54C82C7F815 /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 71DFA1CB287620B31E51EE5A44A4CE73 /* dsp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 35274B076962B5B78F433966C9EB820A /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B554C75B17DBF9D797AFAE6314A64EB /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 353B64763D9B3735FE494477258E3606 /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 157DA3F3A95FA53FCD6F3475A9F2EFEB /* REAEventNode.m */; }; - 358A9BE1F23199F46F214591625352D7 /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 960786193F233345384121295E7AA56F /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 35935917688EAC1AB5FD623ECFC56D21 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C480EF2D8F50B07E22BCDC93BC3EB11 /* RNGestureHandlerEvents.m */; }; - 361B14F85720471401775A9F3CA22960 /* BannerComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 89800C2AF902C29B6DEC63995CB7A66D /* BannerComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3635E2F63011AE26D2DD94C7C8CF19F9 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = FE821DD517EE9360F620E7C8AD1A64E1 /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36414710DAF820D4E5D3770D37A7E5B2 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EAD07054F7004035835349D6A771190 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36628010BAAFF22CF5CB6B121447926F /* RTCVideoCapturer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FD63DBEFE0291AFC77E36B865519D46 /* RTCVideoCapturer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 35274B076962B5B78F433966C9EB820A /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E73EC51CA130986D4435F5280FE62E1 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 35583B951B32929BA271FA0BDCFFB906 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B675EAACA6B6C00527A3EA87B53BAD4 /* SDImageCoderHelper.m */; }; + 358A9BE1F23199F46F214591625352D7 /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = EAF2244E86404703EDF8CD5123B25A51 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 361A6CAD11C93AE110F59D7391877C2D /* RNFirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D9CBDFB01F4205B48664A623D0FAA81 /* RNFirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36414710DAF820D4E5D3770D37A7E5B2 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = D4F01AAD7CB9648EDD4903DCFC9D468B /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 364368FF85944E1E4231CF5AF5BF8AB6 /* RTCVideoViewShading.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EF374BC8CB16FB4250B0B4BA62CEADA /* RTCVideoViewShading.h */; settings = {ATTRIBUTES = (Project, ); }; }; 36C08CBA266B36BF70CA1CE5CC9DF920 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = F1AAE41A2F077404E26CB34BDE7A709F /* FIROptions.m */; }; - 36D6C69C0E2415D65232D1F12B1D7A80 /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = AEEC4562BAA6DFDE5EB55EC8AC55EBD8 /* BSGConnectivity.m */; }; - 3726B9D248710A919ED5C9F06B0B7D03 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = A3AE96A6C5ED8CD28D8F9C82C8CAD319 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 372C7F71C9B78932C820CEBCA9A3C665 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1292D738A1B53982D585A05E833B3E32 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3767695DFDF7CA03345FBE9C829A56E0 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = C432B3F5228D1F6F5FBCFD6550268283 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3787849E17237AB188BAFCAC4E41F2D0 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B33C8498F9242E1FB81C79D40ACE51F /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 379506DA7639CCE2B25F6BF6155FF629 /* RNFirebaseFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F7196B12CB66A2F385877320E6DB17E /* RNFirebaseFunctions.m */; }; - 37A3BE9BC211683254BFF6A372F97A05 /* RNFirebaseAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 569F787951278B680CAFAE9ED37EF891 /* RNFirebaseAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37AB3363897A7188C30D4012E1D6F9B1 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 748E68FF8F0584C3062AE3DBE77FFA1E /* Pods-ShareRocketChatRN-dummy.m */; }; + 36D6C69C0E2415D65232D1F12B1D7A80 /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 37090CD9EC4FF1D1BF5D88DC1A631BCD /* BSGConnectivity.m */; }; + 370602F9F9A66D35B13D9C4A36207F34 /* RCTVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 5609275DFB5D90D9172DC2ACEBB53D7F /* RCTVideo.m */; }; + 3767695DFDF7CA03345FBE9C829A56E0 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = B9EA6B2D4EAEC170C18C160AF0C5774F /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3787849E17237AB188BAFCAC4E41F2D0 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E6FAD20119C2A28FCD3AE1E2B37732F /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37DD54840768E12258A9E9EABCB6ABE2 /* FIRInstanceIDTokenInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F80706831D9CA95145FCD5FECD21465E /* FIRInstanceIDTokenInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 381E62687AB55DF94F2073E8C5A85A50 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E313D984D28AC745889ED441BDC1EB9 /* RCTEventAnimation.m */; }; - 38249DCB0B6ED78C5A06B8562A87AB6B /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F00EF48643A1BAD4E6F017588A3452F /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3856F841675018C86435172CFC7E4458 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B808DCA9315A70386FB5A082F78BD5DB /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3856FA6524A7E27D3DED0D3F3A599204 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 4269682A8F921C81F7B30C45BBC1A6F1 /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3881653F292441196D782D8DD92A6CA1 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = AD4E046AB7EFC7482FC3EBD179AD1B34 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 381E62687AB55DF94F2073E8C5A85A50 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 933A4BF892559C92FC404D874D4511B2 /* RCTEventAnimation.m */; }; + 38249DCB0B6ED78C5A06B8562A87AB6B /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = E96F63550790D0741226AD298322C5D9 /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3824A1BF01E732F6B2D11639B701EBB8 /* RTCConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = B469ADF99DB0A81E5D4650618770D48D /* RTCConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3836F061152140901DFD6A6DA5655FB0 /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AAD8C1F4911585A04EFD83712CC75A7 /* react-native-background-timer-dummy.m */; }; + 3856F841675018C86435172CFC7E4458 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F925A11DFF486337DD823CC3FA6BED0C /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3856FA6524A7E27D3DED0D3F3A599204 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 32574B32C917CF9475E053D0B5C005CA /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3881653F292441196D782D8DD92A6CA1 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EBD8D887615F5331A2F84E2DF08C5A1 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3899FE6DA6AA2873FDEAC13EAB68AB0B /* RTCVideoTrack.h in Headers */ = {isa = PBXBuildFile; fileRef = 64895D06E2354A47652A676488CD63F2 /* RTCVideoTrack.h */; settings = {ATTRIBUTES = (Project, ); }; }; 38AD4512BAEA16C8B031C7DCF55F2A8E /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 030B266A112E8CD26FED4A0262EA0B09 /* histogram_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38B526163FD52FCD4BBD7F5AA45C5098 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D13022CB9FCE35B9421FAB091531864 /* RNDeviceInfo.m */; }; 38BBA21348DCF9947155442372A8E735 /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = B76B06E44B473727B6C76EA4FB258784 /* analysis_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3963D28AE4FB8DBC48097812CB07DB77 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 11F1C0F40EDD14850023BC7C600AEBEA /* React-cxxreact-dummy.m */; }; - 397C3EDD243353685F957F57C2240CDE /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = BE2002769D716B1EF2D93B7A62742650 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3963D28AE4FB8DBC48097812CB07DB77 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FFB45ADC206854B90BDA7AC82681DD4 /* React-cxxreact-dummy.m */; }; + 397C3EDD243353685F957F57C2240CDE /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F4A649519492F8C3CA765B27CBF757A /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 39ABF66F1A41BA69E07D72F892F4AAA0 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = B64278BFA907F143E534AE7A299EB104 /* UIImage+MultiFormat.m */; }; 39CBC50563C959FB5909CBA64A680666 /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = D0D54B89EC0AF7E09DD6B2B7090F1E09 /* GULLogger.m */; }; 3A2CF9C00157FECC985B4C09095319AD /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B0B62E00399B479D6D4DB026943919C /* FIRApp.m */; }; - 3A41FA077417FD269CE763B748DE3D7C /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E91AED9E3DEB12A15A0C1D9AF7D6A14D /* RCTAnimatedNode.m */; }; - 3A85C24766DCC1A2224EB8756A14630A /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F972F091BC08C0AB6B136244331BFE /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3A96DA81AD15FB50AF223023843583F1 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 91EBA865D0C502CA9FA10F17E6E08E1A /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3AD0C260A0F7BC03E5F5323E53C32C79 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DA522B551BAB1B9884E87495F4389203 /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3AE40FB4DC7626478D8E8CBF0EB26F69 /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 29502A0004E740F80FDFA9E5CFE421A8 /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3AFE9B8BDADA084AC206DDE383CA207B /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = BE3145A3A7B80D0DB04DEA6D9EA57722 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B1FF2DE9FB1A71042F8B66B9524710E /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 341343810142DB75FC8589509194800F /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B2118BCD0CD8A2A7D5A855464FD47CD /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C22DDE348837C5272779BF4D393C3A5 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A41FA077417FD269CE763B748DE3D7C /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 83774A380755DDC391A5D33B432516E2 /* RCTAnimatedNode.m */; }; + 3A85C24766DCC1A2224EB8756A14630A /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = E0115C62C8339DE2E7F0D57BDC9BA823 /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3A96DA81AD15FB50AF223023843583F1 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 964F34C99842B0BD357F0347EDFB9F21 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3AC38F68F918BDB89ABE44BEADAD6982 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 05A35C877F407959946B5D996F109947 /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3AFE9B8BDADA084AC206DDE383CA207B /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E3FF804545A3D7676103453272D4207 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3AFF0A6DF9B16C89F69F387017C8D983 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EFF26FBF25613C65417375496B5A684 /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B1278C079FD1A3DDA55F93154AF9CE8 /* RSKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A5156C8465DFCBF352F718A1DEA0AA6 /* RSKInternalUtility.m */; }; + 3B16A1E046147D3CF69CED6A4DE41137 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B51F6B6F5399E4AE55B813B2506B798 /* UIResponder+FirstResponder.m */; }; + 3B1FF2DE9FB1A71042F8B66B9524710E /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 2129528167582F9ED8F7C99BE58F50A3 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B2118BCD0CD8A2A7D5A855464FD47CD /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 969DAD83A9E0AB290925D3D13EB4969D /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B28F7A9086B9800E70AE4C993021AB5 /* RNFirebaseLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = D5D36D2815742A5225FA0F7FB1564C98 /* RNFirebaseLinks.m */; }; 3B3855F510D8BB2023ABFC6A5628A827 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 33D77B6B010AA1DB5A776730EC6CAC8C /* FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B98D40D03F4A4FA76DDADACDDD2669D /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7088D934002FF5FD6C1FCD97EA5336B6 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3BB7613A3A3B5DEB2C5EB61243ABAF8F /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = 233F44D531B8DBC2E5D8F5284BDF8165 /* BSG_KSMach_x86_32.c */; }; - 3BE8ACA55D534539C2559EB1567B7D33 /* RTCFileVideoCapturer.h in Headers */ = {isa = PBXBuildFile; fileRef = FF5CB84510B55C4B97F9FC36D72DC9BD /* RTCFileVideoCapturer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C4BBEAE55A37D985320BF5A8F7E3FDC /* RCTDataRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B28F70FA859C6D9B8123D23EB436395 /* RCTDataRequestHandler.m */; }; + 3B8A4388A01416C167B460688A670EB5 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = EA1781D89FFA2BA60622D97169AAFD88 /* UIImage+MemoryCacheCost.m */; }; + 3B98D40D03F4A4FA76DDADACDDD2669D /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A8E9402BC87211DB0AE56F478EE9E4A /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3BB7613A3A3B5DEB2C5EB61243ABAF8F /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = C3505850F5817377AC1F374285BFE525 /* BSG_KSMach_x86_32.c */; }; + 3C27203737CCD27C60F9A5921817F438 /* RNFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = A1989D181D400E1910B9095EC1961E1D /* RNFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C4730509A5CC5E58F08CB2DE9BCD1F9 /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D323359ECBAC16A11D1D0E7F7BCE87F /* RNGestureHandlerRegistry.m */; }; + 3C4BBEAE55A37D985320BF5A8F7E3FDC /* RCTDataRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 58DE49C0120CA04B88A594A67551752C /* RCTDataRequestHandler.m */; }; + 3C5782C2A850957A2D85883FAEB56987 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F9CFAE2929D195D6DDAC223ACDE0C9B /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C59E4210B09E27F847CC83CD91DB322 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 302832E989F3265D092A1216B7CF3C24 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 3C5E2F8D2019FD31E4C9B383D6015902 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FDEBB2E6A544C5B48D0057F999E8152 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3CB6842C4C314BEC0F57A1922A3BE4A1 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 217D400F0B0F4B8BC509E20302435275 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3CC37F830C8AFB168035AA0F3830D214 /* RTCFieldTrials.h in Headers */ = {isa = PBXBuildFile; fileRef = 20D5773D092E2441727D255A9F69BA55 /* RTCFieldTrials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C5E2F8D2019FD31E4C9B383D6015902 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 06BE5C061BE90971D64F7B995F0CE095 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3CA52FB02D17B796734ABDFACB3833D8 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = E589B89DC6C6FCB4A178CD809A1586C0 /* SDDiskCache.m */; }; + 3CB6842C4C314BEC0F57A1922A3BE4A1 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 738FBC154CF0E9D62D232459F3E6309A /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CE0729079D17BAE2A3F5C0904B3FEC8 /* GDTTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 37232A41056D9A38B04FB3C9A5F784F6 /* GDTTransformer.m */; }; - 3CE15AB0820E4D67302133BBBBFAFD0A /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 74DA632E81504F6FAF6AF978C00DB2C5 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D0706A33F57E9BFB1A5C0F4C30C38C7 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = E589B89DC6C6FCB4A178CD809A1586C0 /* SDDiskCache.m */; }; - 3D159BC7359816B6F847DD2854FC9520 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2044349ACBA13B10320CE610FD274CDF /* RCTSinglelineTextInputView.m */; }; - 3D3E47E5F83FB0562F67CCE9A4AAA4F1 /* EXSystemBrightnessRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F84AC8A6BED890A93DE25DDB236D6E2 /* EXSystemBrightnessRequester.m */; }; - 3E0D9D530637D80E80BC187E766BF528 /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 231FA1621BD63904ECE8FA0AE201AF9B /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E46DCF57663FA104F69BDEC9DD11BF8 /* RTCVideoViewShading.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FE814CFAB4A5C5A92A9A6ED48D7468E /* RTCVideoViewShading.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E7551EFF7998500B299F84718DE82F4 /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9595208313A3C0C1EE57D66C2F6ECC36 /* RCTResizeMode.m */; }; + 3D159BC7359816B6F847DD2854FC9520 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 20106C657E923B8B530B7C179B68637E /* RCTSinglelineTextInputView.m */; }; + 3D18E52799609F4D00B71C0CA41C68B6 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F14E3D092C47891DDD7AD1F4EE5F85E /* REATransitionAnimation.m */; }; + 3D3E47E5F83FB0562F67CCE9A4AAA4F1 /* EXSystemBrightnessRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 48C03813F43BDBA1A1A9D8891C892436 /* EXSystemBrightnessRequester.m */; }; + 3E0D9D530637D80E80BC187E766BF528 /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 44BBCEA6993FAEC2173B75CD7EE02612 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E7551EFF7998500B299F84718DE82F4 /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = FE24745E5C82F23E2BB913D0242081C0 /* RCTResizeMode.m */; }; + 3E855A14695E9DAA62E4A76D40408C09 /* CGGeometry+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 667BD2DD8232F3B014648070F87D419C /* CGGeometry+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3EDDBF55FEC78332628B99B7FCCF05F0 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C9F9138773ED5AAF70DA2EB4951AC9A /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F5E15218AF798D177E4FD2650FA4044 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18A087E44BFAA77EB640B626F079B2B1 /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3F9B89A4B59E207FC75B694B830FB31D /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 258F9B9F16D67BA9A3F9CC592DEBF8DB /* NSData+ImageContentType.m */; }; - 3FAC1DD0638669ADAACE3C32DAA02C81 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 446B8CE97A0CEE9982AA2EBA4C525437 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FD0C85322B29C7182BF529764E0F138 /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 30797487CF57A7A232B61D28D62BEB27 /* rn-extensions-share-dummy.m */; }; + 3F23F28F0BD0A04428F991996459F68D /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = 9694FDEA45518C8EECE0DA08E69A1492 /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F5E15218AF798D177E4FD2650FA4044 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2DBC5B39B683FAF0B22E8345E8FA0AC4 /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3FAC1DD0638669ADAACE3C32DAA02C81 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 08A8795192F8E02DE9C585569CDAC06D /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3FD619CD7E4DA2CB1F156E46E5096A79 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 19BB9E5A300AFE1052AB5756082D320F /* filters_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FD7E25279237B91D4E427EF8ED784E2 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 88836057AC917E1A9EDBD574E385C230 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FFFC6E8E0EA3753ADCC980B209485CE /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C9A1D221AA0129822BA0C4E42FB0DC2 /* React-RCTLinking-dummy.m */; }; - 400377F580EEB21962B955A22F181457 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = F1CC6A252CDDF4E2C7ACBFF3437CA88A /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 400ED15DD9A0F8BDC94B1E5F8D6D226E /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D70EE4F4CC28276151916B59A132159F /* RNJitsiMeetViewManager.m */; }; - 40423A792261DD77258C96ABFE04464B /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = F60E90824BAD0E4C3687E556A80F9E65 /* RCTInputAccessoryView.m */; }; - 409DCD97D8A5D4173CB1C709F13F54E5 /* RTCAudioSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 94E45A84B67CDABEFC105CC4644E041A /* RTCAudioSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40AE675CE30893125F5446DE5BBBFDB6 /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E3BDF1C000C4F208B97FE56FFED14A3 /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40CC21DAC1C1A534B291BAD77B13F403 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = EA1781D89FFA2BA60622D97169AAFD88 /* UIImage+MemoryCacheCost.m */; }; - 40E02135B467F425AA7FC5D7C7DA09FD /* EXContactsRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 460AD3851E021B6C51B4870B45FFE1EE /* EXContactsRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4160085BE68E12518B6CD775878297A7 /* RSKImageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 49EDFEC01407C66949E4CEDEB9038890 /* RSKImageScrollView.m */; }; + 3FE305BC2BF6A59A80186E09DDB012E1 /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A1A7607FB0F59CB4D9CA4137D10A849 /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FFFC6E8E0EA3753ADCC980B209485CE /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A4E2986C1839698D63F1CC863E946114 /* React-RCTLinking-dummy.m */; }; + 400377F580EEB21962B955A22F181457 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 742C52AD86BA3D5A3574D1370B6B3AB7 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40423A792261DD77258C96ABFE04464B /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CF6B3841437E559192BB78C854424C4 /* RCTInputAccessoryView.m */; }; + 4044E0F94A24EE9D527440BE16EE5A18 /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F8D2C1CB9205876389F25A945841C51 /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 407E0B10FA4AD4A393D78FCBEEDC612B /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = F077345CFE65C76A10C340C50E4F83BD /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 409DFE7F78C6CB77374D465F88FFC7D4 /* RTCCameraVideoCapturer.h in Headers */ = {isa = PBXBuildFile; fileRef = CEE89D9C163D08ECD6D26CACC63BF904 /* RTCCameraVideoCapturer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40AE675CE30893125F5446DE5BBBFDB6 /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = F3AA95F10D58284419216BA25AD4BA2B /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40E02135B467F425AA7FC5D7C7DA09FD /* EXContactsRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C249B2DFDAF88D62FA81526AA3E1A19 /* EXContactsRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40E802348C6CC3615FD96431637FAAA1 /* RTCDataChannelConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 69ADE6A42D65F96620E5FD19507DC76D /* RTCDataChannelConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 417DACDC0A7BC5F9A55B32734AF496F3 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = 36FAE3621D77782DAFD73A01E76FB8BB /* animi.h */; settings = {ATTRIBUTES = (Project, ); }; }; 417E75BC5FE99415F33B4422E53E4127 /* FIRInstanceIDAPNSInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = DD02C6DFDBEDEC38DB9316122DC68038 /* FIRInstanceIDAPNSInfo.m */; }; 417F9C8A3AA8AAC9D60B25C6FB3EA614 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = A58F7914B909B36DF27DFAE5864E4F23 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41845E0555B416B57A575BA1BE9E1A16 /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1041612ACBE4DB3F52F6CA9221FF8BE7 /* REATransformNode.m */; }; - 418E45B1C68343DB0396AA4CBD77E8A2 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 5091EDCDCAB59DCEB68EB64708BC6AD0 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 418E45B1C68343DB0396AA4CBD77E8A2 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = E561B5B55FD08CF6E1375EA185DDEB04 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; 41B89098A007746270DD180D70EC71F5 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 8E8E1164F926BA4DC12102F1E2D1D212 /* anim_encode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 41BA4170CB606185AFEA1252A47AC393 /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 225DE646426BB00FBA9D79EAF0846E6C /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41D1E0B51D0E945795DEA849E1194D29 /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F20DD1CB8B6293D270D505E2D4E69EED /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41D5DB22A692F13E54B5D80D17928062 /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A58BB2D4D47414EF042918BFD563014F /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41D1E0B51D0E945795DEA849E1194D29 /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 890769207E3B5BDFD30AB0E1EF540773 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 41D8858FE972092F3CD14BCA87010126 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C05ECB9067AD66981D934993D596045 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 421B5731A8FD78F71F5D0F4D08A8D875 /* RNCWKWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A048DD02EA4A10EA8D145ACCB12A76F7 /* RNCWKWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 422E7CEFC66A0706DB0D54C106E6A891 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FE6F16EC1891DDA88992C80E2F014217 /* React-jsi-dummy.m */; }; - 426112F7D340323309E90FDCEDB6698E /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F08252394DC6CCA1A0989728C147FD6 /* BugsnagSessionTrackingApiClient.m */; }; + 422E7CEFC66A0706DB0D54C106E6A891 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4106499F22B96B283BBAB1DBD3936495 /* React-jsi-dummy.m */; }; + 426112F7D340323309E90FDCEDB6698E /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = CB3820CF16BF258CE29F6B172405DA86 /* BugsnagSessionTrackingApiClient.m */; }; 428DA569F1EB3E48A5F26F0FF30A9061 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = E1FDB18215738E0DFF8669E469DFAFDD /* rescaler_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 42C0CA41DF82BC302650393BC0CFF122 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 211816840BAB72CC0A83D2C77B433D11 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42C5AC349980DCAA96B4CBE42A459ECB /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = BD74F9D1FD2BFF0CD358E8BC9AF73290 /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 42CCA954EF0F8530C71111EE42C17698 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 544F265948AA6E54B679E21CF0B43D4F /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42F41D4C9215AB90B9B4616C992F8912 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = A08ABDAC6EEF823927BAE510DB2CDBA2 /* RCTConvert+FFFastImage.m */; }; - 43152D4278E7B17678346F3FE6BA495B /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A096995BDDD186EB5EFB345A6923CFA /* RNPanHandler.m */; }; - 433DD7FA4A6821184B35DE8BAD3492AC /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 515D4CCFE37889074F3E05277EAF55AC /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 438551EEE33E812F71A2C54EDB74726F /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E1638A6BC858BF6693201C66328D8BC /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43B96C3301D8299F133883BFDFD36358 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 3596829CB006591685B47ADA4BA6B851 /* RCTConvert+Text.m */; }; + 429E6533B4EE14BD374216E2AD750697 /* RTCRtpTransceiver.h in Headers */ = {isa = PBXBuildFile; fileRef = DB8378033267237BDAD0B0118FEF6C8B /* RTCRtpTransceiver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42C0CA41DF82BC302650393BC0CFF122 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = F747F94502A8E494B6BF39BE4357524E /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42C5AC349980DCAA96B4CBE42A459ECB /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 68D3341FCF40F5CF5594CFAECD249AB0 /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 42CCA954EF0F8530C71111EE42C17698 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E9448FDF3CD6382B2BFC44BA0ADB4B8 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 438551EEE33E812F71A2C54EDB74726F /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = C20A905513637256A5D3A98B90894BC0 /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43B96C3301D8299F133883BFDFD36358 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 35805890D0D4351BAB9C215F44CEE54D /* RCTConvert+Text.m */; }; 43B97BBEA60B13CA069319A3757A4EA9 /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A04AE81FAFCF6A28988F4C7E777E05BE /* GoogleUtilities-dummy.m */; }; - 43BC4B5718524A141126854098C2EF06 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FEE895C3510BEC204D4824A51DD7A31 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 43BFF7ACEE9D24F8D19609FDC1D3D2C7 /* UIColor+HexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 1727AF9D01B46FFC15218621D02E85CF /* UIColor+HexString.m */; }; + 43BC4B5718524A141126854098C2EF06 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = F8EEFBE25D2B4D5E320C0E2C094F902B /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 43CBD73B6409385B3BA97C371970F1D2 /* FIRInstanceID+Private.m in Sources */ = {isa = PBXBuildFile; fileRef = 93DDCE675BCA4D6255E6C94525287F7F /* FIRInstanceID+Private.m */; }; + 43CF2EFDFE78CD5EFCAC5319D2288C0C /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FBE6D4529581992E06E09DAEA44BC62 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43E11DA6D060BEADEAD736180B594C36 /* FIRInstanceIDKeychain.m in Sources */ = {isa = PBXBuildFile; fileRef = EE44A3C4F294DCB4F009A3453413691C /* FIRInstanceIDKeychain.m */; }; - 441CC59E05CD1798A940EABEC9260FCC /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8024E6D7A87A1352AB2376681FE77335 /* EXConstants-dummy.m */; }; - 4433F070D4A57CC518CA517D5D7EDE23 /* RNFirebaseAdMob.h in Headers */ = {isa = PBXBuildFile; fileRef = 25FB3DF4F4E990869E552E6C4A47D638 /* RNFirebaseAdMob.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4456834E416563A7C0ABDF3575948D16 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = BD9D41B07325D430C02F96DEE72AC0DA /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 441CC59E05CD1798A940EABEC9260FCC /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F8C6DD2B63BAAA29749C1989007172AD /* EXConstants-dummy.m */; }; 44A56E8FBEA913137B22E0F48F692DCD /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 2169C0C00372352B960FAA622851EC94 /* vp8li_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44CA156A6C2E08A5E36A685C9B9A3A9F /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B675EAACA6B6C00527A3EA87B53BAD4 /* SDImageCoderHelper.m */; }; - 44D904013DAE238628E56CA40E5659AF /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4289A253D51A77E57E304ABD9B76AB59 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44E0AA7DC5388A98B22692C0F928BD5C /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = E2291D8D25BAC35D0DE563E75BE219B0 /* UIImage+Metadata.m */; }; 44FB6A1BFCDEF27B9B786C9A7181719C /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A1175049F88CB8B0F9A99BD424844A0 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4501F02B61C64DFD75D3C410E8C18FD9 /* RCTConvert+UIBackgroundFetchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = E400ED13513489C0B7A33BB7F1977019 /* RCTConvert+UIBackgroundFetchResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 450264F2621C656145265BD88DDA1CD6 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 782881264F37D7B95125BD0E4756C108 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4531992ED891F2C6B85144E2E06DB689 /* RTCMediaStreamTrack.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C06B8346CC58F2C59DD750882D83E7 /* RTCMediaStreamTrack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45570A40FDABD8CE955117EDDED09E24 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ECF15DE2627B474080EEBA2573769CD1 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 45586CA77B946017F67214625CCB9147 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BB830BCFDDCA3003BCBB15E27B34C16 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4581C096EEE71878594E52949FF373A7 /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EEB5354D5AF6B675E9B7C1798BF015F /* BSG_KSJSONCodecObjC.m */; }; + 450264F2621C656145265BD88DDA1CD6 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 58335CBB2F8ADFEE01930DDCC188925C /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 453A313A6F8190E97DE9E935EA6C041D /* JitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 17F094DDA7339EDD385DBC0E97D2C101 /* JitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4541E33CA9F9963FA1518089A1C4A3AD /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 18575A59266F7A6CFE46B8E5FAC1ED85 /* SDWebImageCacheSerializer.m */; }; + 45435C88F05F819DDD9317C34778B6E6 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = A2048FA7569E8B0EA346BCC21379747C /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45570A40FDABD8CE955117EDDED09E24 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 65836FEEAE47439F0597FA49CAE88439 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4581C096EEE71878594E52949FF373A7 /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = 33C4F1F33D1D4CF4E159BFD75BBB0083 /* BSG_KSJSONCodecObjC.m */; }; 45A40F884619367E2D134F45E8496BEF /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = B14321EE392ADB847052BD5E58762AD4 /* bit_reader_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 45A60C2FC8583388B242FA0E80BFBB86 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = FD4EA671A3CC79EB2D9864C340796CCE /* ReactNativeShareExtension.m */; }; - 45FADA4EB5D6E6A2B5A3B8D358E27D2D /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 916BB2BEF13944038BC8D1A8666AD7EB /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4629EC0FE4E8F7582CCBB32CCBA19140 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 678E3B811E2B5DAE511254082F40576D /* RCTTextViewManager.m */; }; + 45FADA4EB5D6E6A2B5A3B8D358E27D2D /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = B199AB1DC90082B31061593EE95C4A63 /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4629EC0FE4E8F7582CCBB32CCBA19140 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EF3A5D25676B1BD13E931A34E7158704 /* RCTTextViewManager.m */; }; + 464EC1A02E9BD7071207DE77510DC676 /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 3798963A6D4FECB3CB0CE414C53C553E /* RNBackgroundTimer.m */; }; 4672288653A12A8ED1BD40835C8CA941 /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 580CB2C1FA2261CA43BED95F16C84F76 /* GULNetwork.m */; }; - 4674401D35E56C1F6E65FB6480C9764C /* RTCIceServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 200E05DE7F33800201E0EE42D6A7CC14 /* RTCIceServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4677C3F8B59D3B4EE7A53E431C7A98D9 /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BE9C00A0CD1A096CA768B9072AE457A /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4692A03F476391868C6362ED0C497F02 /* FIRInstanceIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = E75B60E901ACD0428E5FC4F6F9FFD787 /* FIRInstanceIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 46D4DB4D7655C9D518527A43C8BCAB15 /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C532307C6FA70A32BF09B2CAE2F65AEE /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46F68B4279B30F206527B567E1195EE8 /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = D201004AC766A6E485B5083CBCCB5A61 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46FC4AF7BFD453794AEDCE9C42F7E1D8 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 834F21163628FC6624462039BADCF7E6 /* Yoga-dummy.m */; }; - 472A6ED3C76FDD642DF435E4526087D2 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = DEA78C6D5969CDC7D313E66F1C19CD26 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4747F8766746305A6925482005F441C1 /* EXCameraPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = FE1D4FBCF03954D075035EB411B4CB73 /* EXCameraPermissionRequester.m */; }; - 4756D1D81A6A4CAE5A7CA47C0E749E82 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B197DB52E6AE91D411B5EF95389BD29 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 475FBB59DE86E1E478B92C83E8E3FD60 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13A364609C20443EDD280E1FFE3D8BCD /* 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"; }; }; + 46F68B4279B30F206527B567E1195EE8 /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E5B90F57D3067859B96065F2ECCE16A /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46FC4AF7BFD453794AEDCE9C42F7E1D8 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F3BC296DF6FCD6D6BFB48EED061DB46A /* Yoga-dummy.m */; }; + 472A6ED3C76FDD642DF435E4526087D2 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = DB2E0A13DAFE993FD8B1FFEC04E1B9A9 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4747F8766746305A6925482005F441C1 /* EXCameraPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = FD5D139545E874F40FF2FDB565456808 /* EXCameraPermissionRequester.m */; }; + 4756D1D81A6A4CAE5A7CA47C0E749E82 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B0348E94C22192C942DF791B76D9E7B /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 475FBB59DE86E1E478B92C83E8E3FD60 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ADDF16393D488D586E5F70B9D41F4ECB /* 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"; }; }; 476E15D7574C917AE318723BF604E8EC /* GDTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FBCD73C563D599E2DE67CBE79D3C69A /* GDTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 477F817C6E719CB4E3DD39043DBD416A /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = DB6B711A6070F2AA7E021F095D156297 /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47AEE83DB849E3C2B4A8B16F935B2492 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = 65314EFD45FF479FE3873392325FFCA1 /* BugsnagReactNative.m */; }; - 47C50D3D030A8341837A19DB6A67A4B8 /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = C1D9B07B8D59611CA4336F49FC6F237A /* NSTextStorage+FontScaling.m */; }; - 47C8FED7534756473E73E6E4F2DC47DB /* RTCCameraPreviewView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CB070D5B1ADF1EEA6FC9955D41FC07F /* RTCCameraPreviewView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47846280989B83E0E81201AB6519EF4E /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ECE681DF01112622A1E85860849C2D0 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 478B1FB6AE4A2BE8AA51832443A5F390 /* RTCEAGLVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C13E1EAA956D76E06508287F9753BC /* RTCEAGLVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47AEE83DB849E3C2B4A8B16F935B2492 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A3800D8351F8C215D23392B666536DC /* BugsnagReactNative.m */; }; + 47C50D3D030A8341837A19DB6A67A4B8 /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 6923095B5C533122502709335E1ADA77 /* NSTextStorage+FontScaling.m */; }; 47D26569084E23199966F0D962D65D0B /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 2FBC9DFD2C3DAD553E47628E06BFD862 /* yuv_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 482866F6BCCF09D242CA0A640C7ECE87 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 18575A59266F7A6CFE46B8E5FAC1ED85 /* SDWebImageCacheSerializer.m */; }; - 482879F2E897D6FC1F54D355D5759B58 /* RCTVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EFB7DCBF15312ACB6FDEA3F2E87C302 /* RCTVideoManager.m */; }; - 488123B6785D8E54DBF3FE3B87BE30EE /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF326EB2E483F4FA8705427C3F6AA465 /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 47FA781ACA1CDDDE87698ACB530F2569 /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = B1EE017FC5853D5DDB743A5D08391942 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 484BA56ABE986678844DAB665D2E6CE8 /* RTCRtcpParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = 59CA7C5E4ED263B42048A5E611944826 /* RTCRtcpParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48637BBF5A108504FBA06D9651D2038A /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = E2DB8A21748BB05BFF874734C01BBDE2 /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 488123B6785D8E54DBF3FE3B87BE30EE /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F064E42B455BE53CAE2D7E6B59201EF /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 48AC3D5DC49DEEB5CAC44256BA5B5DEA /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EEEE97BE88DF37E78B0236B8B518E8B /* GULReachabilityChecker.m */; }; - 48D877C4030394DDCFA78E867E8644B0 /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AA45CF7FD560CD061DF321A1266D254 /* REAOperatorNode.m */; }; - 48FD91451DA44310A44523825F96B1C4 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C9D9856F57AA907EF3B985BD830B5251 /* RCTPropsAnimatedNode.m */; }; + 48AC41978C9E1F3BA480FF4D97252BAE /* RSKImageScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AC5E071A78F24A2A29B9B0D6BFEEAEF /* RSKImageScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48B863BF0F96B0BDA51F7CDC80232E88 /* RTCVideoDecoderVP9.h in Headers */ = {isa = PBXBuildFile; fileRef = B5849A395CBF0287C431D4FCC26AC6ED /* RTCVideoDecoderVP9.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48C5CCC125ED8CFD690B305A2544F94B /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3550F8FB29D5E3BA0B88C57F3CF17109 /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48D35753003C77C5E487A36A9896C42A /* RNFirebaseEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 81525BB36C82A28549678A29CE808DB6 /* RNFirebaseEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48FD91451DA44310A44523825F96B1C4 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 762DB7CC730FF5FC8363DCACD171FAD5 /* RCTPropsAnimatedNode.m */; }; 49249CD83D6535E94344F438513381BD /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7140F68790174D21FE0A2EDA07FF3550 /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4930759E486069FC5A806A64CA118EF7 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DF20C690CC2D91B89082C436808E377 /* RCTBaseTextShadowView.m */; }; - 49385287EFDE1B754EC3925BA48B341A /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 624F1319227376756C5B6B817F0358B7 /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4942EA066CB214BC8393C6C1A5C68ED7 /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = F077345CFE65C76A10C340C50E4F83BD /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 498D98051E9B5C900DDA02261F9FB085 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 765A0E988AE74AA37F350DE0C7E5378E /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49A72925D4803758EFB20A0CB642C6F9 /* RNFirebaseNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 5278B1FEB9A35D11BDF58962E9945138 /* RNFirebaseNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49F12FC5E06C1395A4FA589053C977C0 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D7D6C76A0CC4E29642AA995E5B207425 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A179F67B2211D5A0C4CEFF2808687AA /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEE1E8891ACBB4DC5D6D77253E55921E /* InspectorInterfaces.cpp */; }; - 4A635A71C4C46F0F2C9028A9BCB3361D /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = D89F67BCE0B3104E43AE4990FD086D98 /* RCTSpringAnimation.m */; }; - 4AA2182966D257333C8FBA2D630404CD /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = F798CBEB8949EF34969B9184EFA5DCB9 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AC8011E23465C2F8A192D20C2AD8D14 /* RTCMediaSource.h in Headers */ = {isa = PBXBuildFile; fileRef = A95AB4D649C04218556B94815ABED40A /* RTCMediaSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AF04CD7C7A366230D118DE7AF1793AB /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 82E7526C2A801E0F7EA0AD085B133D3E /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4930759E486069FC5A806A64CA118EF7 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CD73E50320B66ECB101E6DEFFA7A035 /* RCTBaseTextShadowView.m */; }; + 493F64F759D81AE9A475116A3A3F16B2 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D514ADD46EDED40FDFACCC29ADB6C7CF /* RNScreens-dummy.m */; }; + 496D5A3AB9136A6E999EC4DCCA8CAC6D /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EA8C5AAF2E9A9C9FD9292B8C34FABA02 /* REATransitionManager.m */; }; + 49909BFA0C0B26F9A23A48A6B9EAC240 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 95326CF9943793EEF3C483A2EF154EFA /* SDImageCacheConfig.m */; }; + 499A7E13ED38C975FFE972CEF404B7FB /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E52E0E9DB232F8BE40F074B56A453EF8 /* SDWebImage-dummy.m */; }; + 499C7A83E0AB26975C0CFA1AA13DD8B4 /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 47F980CA2B0C2592C755056481335501 /* RCTConvert+RNNotifications.m */; }; + 49F12FC5E06C1395A4FA589053C977C0 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B5B15DB473A729898FB1C4406C5E05BB /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49FC9295E8DA1628C49414E014036AF5 /* NSBezierPath+RoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = FCE7F753D100418B4F0A16876E5708DE /* NSBezierPath+RoundedCorners.m */; }; + 4A179F67B2211D5A0C4CEFF2808687AA /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF5DE756550CDED3A44B6BA369A0B3C3 /* InspectorInterfaces.cpp */; }; + 4A4545EB6F233C23438A2D6E2D2D3C93 /* RTCIntervalRange.h in Headers */ = {isa = PBXBuildFile; fileRef = D6536348D7EA758B755E6F305F8E9CD5 /* RTCIntervalRange.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A635A71C4C46F0F2C9028A9BCB3361D /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 87FFC3F76DD90122CE8B84D30F4E809D /* RCTSpringAnimation.m */; }; + 4AA2182966D257333C8FBA2D630404CD /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = EABB1EA41FF52ADE760181A27C759732 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4AB2C3C5E57AC01DC84ADD20602B0810 /* RTCCallbackLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 72BC6B60B0A09D910DD548F0595DC562 /* RTCCallbackLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4AF04CD7C7A366230D118DE7AF1793AB /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 1462F1D1589D947E211118E34474B7BF /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4AF533E5A6AFF13467F5968EC8A6EEFE /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = E688CAD13A81B50395BF1EF43A67DC37 /* random_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4B05794DB937C1138982FE6075BA318D /* RTCAudioTrack.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C297843BEFFDFD616D44202F0742AD5 /* RTCAudioTrack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B0E6292DFF93AF99A3211F0549CDFE9 /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BD06EC8D71451488BC2F7D676E96F00 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B0E6292DFF93AF99A3211F0549CDFE9 /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 02202DD59F3B974842BBBC649FB93448 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4B163EB758F5F9C2FC21DC257B9F02E6 /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 989E2230828062092C97F0FFA02E4076 /* quant_levels_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B35CB70798FDE7E4218999504975CBB /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 39F8A9ABAD4E836E77F8D0C364BC9A7C /* React-RCTBlob-dummy.m */; }; - 4B3E9BAE33AA82157C4759FB936EB14A /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F13B387399DE000AB9D70D563F7A4AF /* RCTTextView.m */; }; - 4B9CEBB534AF8FCE46F101F523358815 /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = DC2709C4A5BE89BE0D90AB30D754722C /* BSG_KSObjC.c */; }; - 4BC5E7CBA958E6040BC3F690E01EB1A6 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D2D884ECFA3E2FE46FCE4C6939B9FFE /* RNSScreenStackHeaderConfig.m */; }; - 4BFF28FD7DB1ECC151E935651B174DCE /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 216C4CF777B3BC98185108EDCCB8AB3C /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4C1D2C4DB4EEC2986197399B7E6E3E23 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 681071BC750225F967B40443B78A2217 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C28A2C54D25099E8BE46026D094784F /* NSBezierPath+RoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = BCAA872A4D14CBCDBA296FA056611526 /* NSBezierPath+RoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C2D9B6E7C57A6937CEC0DC334D9320F /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 730463F9485034FFC10C8E01300968BE /* RCTBlobManager.mm */; }; - 4C4373B796FEE0693EFECD9602352314 /* RNSplashScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = EBDB333108E0DBFB00B3986F7A2E21A8 /* RNSplashScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C6ED3E4BB6EC529B11AC77E776AD28A /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 714D00DA0DC7E0E895AF109A52359A72 /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4CAEB9BCA2013D736E9B57F5AE42EC69 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A4BE5994809BAF5D65006BAAC2754F8 /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B35CB70798FDE7E4218999504975CBB /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CDFB32E7DC9DF4A0CE573953AFC382D6 /* React-RCTBlob-dummy.m */; }; + 4B3E9BAE33AA82157C4759FB936EB14A /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = B85D0FD323177467708DD1B84B0E8A2B /* RCTTextView.m */; }; + 4B8B230724F01F993C87453930EF00EF /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A1B88FD9D6C771307C9F1804DE04F464 /* zh-Hans.lproj */; }; + 4B9CEBB534AF8FCE46F101F523358815 /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = 8F6CB6C3B997DE152704041AFE42B169 /* BSG_KSObjC.c */; }; + 4BB018F6706187E497F136B5FFAB5610 /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 4147092B4D61809637AFD41B72A335A0 /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BFF28FD7DB1ECC151E935651B174DCE /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 79C312CC70D871E60298BB2AD50AA1EB /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4C1D2C4DB4EEC2986197399B7E6E3E23 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A127CD6A0C37EFC59A04DD7E4C7A291 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C2D9B6E7C57A6937CEC0DC334D9320F /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = CD0C2F1CEE9B9DF93217C4C4608A28EC /* RCTBlobManager.mm */; }; + 4C4680691281C380B7173DDCD227406E /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = C343C860082F1FEE952201B8C2AF754A /* SDImageGraphics.m */; }; + 4C6ED3E4BB6EC529B11AC77E776AD28A /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 17EF1C9943A198D666B04A12907A8258 /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4CAEB9BCA2013D736E9B57F5AE42EC69 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D3AE7B680C118C3EBA0F6217DDBF48E /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4CE4CA9C98A9A166CDB53B285910E4EC /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 669F51CD7487DC6338745AC748F00B57 /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4CF5D994F690814D85E88ABEF8EAEE6B /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E04744137C4DC860143BC52B6FB9548 /* QBVideoIndicatorView.m */; }; 4CF92FEC7E0E43011AEB755E85944BB3 /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = CE267DBC21168FCDE00E079886422BE7 /* buffer_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4D121AA390BA08677C8FD7500893610C /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 924B406DEFA1E551D87470FD163D8099 /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D17B5E877041CD806C4D05D10EE9441 /* AudioRecorderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 215EEF42FD9BFDA9D6FF901E450852BB /* AudioRecorderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D19E59DB8097E74592AB77423038F1E /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = F436B5F5CAEB79F07420B2480A2F66E1 /* RNNotifications.m */; }; 4D5EDEB0379E36E22184768FF6024CA2 /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = BED8F77941E9853807B379F320762D81 /* GULAppEnvironmentUtil.m */; }; - 4D637EA0B53EA0EA616F73B87C6A7AC5 /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7BF4B4144448496E54C8FD65B93FAEC9 /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4D6F846F346560EFAE7474B2E8B289AD /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 3434AB2C795DFF5066BD8DB26942F527 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D81C07DB9171EDC6A3426B7A6076CB0 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A57961F42FB1C57919DCEA01F4AC650 /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E13EC5CD0F3010E777D440256FC5B8D /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D4747430DED00A1BF927230B54130799 /* React-RCTSettings-dummy.m */; }; - 4E6C515D20FCA286E05ADC20B9C15846 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BB9B51007AA889B4110B34AEADB4D68 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E73DD23B58D90E711DFDD53868A988E /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7442410208D42C715D30734F564DC2BB /* REAValueNode.m */; }; - 4E7450C96274C7236120E2B653B77C16 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 29D0DFCB9D70457B9B48F8858EA6D2F6 /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E7B7C83BCDEA577820611550D970828 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = FCD8E155893454D90AA3098782571AA3 /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4EB2647C1F0784677AFFAE3DDF9DB8DB /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = C41501FA6ED3459433CE429F83F3A95A /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D637EA0B53EA0EA616F73B87C6A7AC5 /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31348318ED794E375BF7C730554E48FB /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4D663608DBF9A095CEECCFDAF9496F03 /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = ACDCAD340D72814FA1D47411EBC872DA /* REAOperatorNode.m */; }; + 4D67157D13F251D69F6E816C962FA6B3 /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F6ABD140F1AAFF23D08A1CFFECCE608C /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D6F846F346560EFAE7474B2E8B289AD /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = FD25802F372D5730497A35D712B0FD04 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D81C07DB9171EDC6A3426B7A6076CB0 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A79ADE1E505ED3EAAA0729840969BEA /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DA2A03EFEE02C0F204EFAA0C912D229 /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FC9A6F5CC7241C3A23EE9D255DCE835 /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E13EC5CD0F3010E777D440256FC5B8D /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 18B540432DEB29B437320A782EADF37C /* React-RCTSettings-dummy.m */; }; + 4E6C515D20FCA286E05ADC20B9C15846 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 95DCB2ACEFC009AE0119C919E901B1C2 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E7B7C83BCDEA577820611550D970828 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = E33E40BBC606D616834A4103003B91AE /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EB2647C1F0784677AFFAE3DDF9DB8DB /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = BC60DD1A1BE5782A175CC1ACBE755F58 /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4EBB91E35415FF423D59491F260E8684 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4865375D89B483266789A58AC5050D1B /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4EC42E63957EE5E414C100E5D4973D9A /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B299FFF600468CC5F031359F11529C30 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EEDAA7E0FEE1C283049C711B9B2B49C /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = AAA293DADEDCEDC13D22CE28A2C91ABB /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4F089D7F458EB673D74481E532B062C6 /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D7B42939364492227C7BFDFB9DB672 /* FIRBundleUtil.m */; }; - 4F0F8D241F72523DFFD977E17FF04BAB /* RNFirebaseStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 462736990DFA92A4B9AD7C3519288A78 /* RNFirebaseStorage.m */; }; 4F1B88A1C4970DF955ECD048D7CEA807 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 0EFE5A4062EA0BA0B4575FF684292CC7 /* frame_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4F282ECE770EF002727058F2252B8E13 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 48CD830F7E24DD3BD7BF4A528CBACE50 /* Pods-RocketChatRN-dummy.m */; }; - 4F540F17EFCDEFB4DBD4C955B346FDB5 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 45C290CE5A62F1BA392D9F67FC24CC10 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F5F80D9D055E9C79EEE7B4BD656EC42 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AF9D973DFEE1FEF3DF20202F45BE3BE7 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FA38D8C7157DA6912473A3DA7D7FB23 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 88A354BC0F2C1179CEF4E0EA9D6EF8AA /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 500DA73F9D2855E64E514A42BE5A6ED7 /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = FB5D77F223E89D13F0E0D80F0E77FBBF /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 502C614C35F81B593E114E125FD535BE /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 05EBCA5ACE8CEDF5B8D3C55CC9D697AA /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F274DE8F89AF1DC42659D47567B866A /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E48C528D89C280BD3AB34ECF081E506 /* SDWeakProxy.m */; }; + 4F540F17EFCDEFB4DBD4C955B346FDB5 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BBDAA03DE55BA0D728CFE25CB9B48B22 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F5F80D9D055E9C79EEE7B4BD656EC42 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1382A2A90D42FAFE2DD95F2B78210FCC /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FA38D8C7157DA6912473A3DA7D7FB23 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CC5E1BC2080BF624F1360EA33C884DCC /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FADCD0F19292856D2A3B1CCB165E3E8 /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1579D9E9F5538CC512AE075026CC043B /* RNUserDefaults-dummy.m */; }; + 4FB44D1A3BE2F3340B4DB9EDE069A24D /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BAC264C0D1E4AC72A9FA35D078D6312 /* SDWebImageManager.m */; }; + 500E7C4AC6AA0AD47FBFEA9D84B73368 /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = D83DE8183D066CB2F2C6E53B2089E5EF /* RNNotificationEventHandler.m */; }; + 502C614C35F81B593E114E125FD535BE /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = F83F815FE6C16C9634D0BAABFC54D471 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 504D21C6D8ED46FA330EBF872CFB2D74 /* RTCMetricsSampleInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = E97E2D9B3EF092F01154F69368E0A352 /* RTCMetricsSampleInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50509695351A25E3573F2FD7AC34F31A /* FIRInstanceIDTokenManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 629B780CB6C81BC6E3CDB2322C8D9EBD /* FIRInstanceIDTokenManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50747AE223523E4B74103CEE02C246A6 /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = FE26982233A6EF5FA6034A916E76A21F /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5095F38E86E3067869CC90DEC11245CF /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 854ADFE42484EFDD278C8B4ACC98C157 /* React-CoreModules-dummy.m */; }; + 50747AE223523E4B74103CEE02C246A6 /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A884482F0F831FDA2181E919F3D3080 /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50A8500333976280906EE774EB7F7DC2 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = F115E65B6C65D8C32616BEFF59183C6C /* webpi_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50D552ED4A967F6755D64C875BC3CBB9 /* common_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 846CC889DA967D1D6EEEE559C07A556E /* common_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50E9FF65FB86DA0D2E58BDD4BA69B2AD /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0220BCC31921BCB8D930F8A91499BE53 /* FirebaseCore-dummy.m */; }; 50F65A7405BEE517EC658FE55ED70018 /* GDTConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = C982F354FBA3AA8957FF45226BD8292E /* GDTConsoleLogger.m */; }; - 511F83AB82C0930FB677018EE18A7271 /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 65FB620DC5C3D0E52325F0302200B457 /* QBImagePickerController.m */; }; + 5131842C2B8011E85660F70459BF2469 /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D0A620E84435E7D864A992E9F9A0818 /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 513E985ABDDDF0D1E6521BE3FA2C248D /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B8C02DF38AEA9FC02589CC6FD1B37E2 /* filters.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5173DEBA77CC026CE761ADB7052C0096 /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 978458944418A4945C0C0FA1E81A5E71 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51832BF4AEDF2D9FFBB9779DB3F9A1D3 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FC3B9919FB23C6ED6EEBCB4F7118FB0 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5173DEBA77CC026CE761ADB7052C0096 /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = ACB0BF20D838D2CCDB3E8D4BBA51FAEC /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51832BF4AEDF2D9FFBB9779DB3F9A1D3 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 776AE251A86EEEB3DC7F3C5AC146BDDE /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5199BA4BAAB11B0D7222A09DE3D05E8E /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = A9B791BDA93E2642E2AE20773005936E /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51C79C88820B5197AB3CDB9376396195 /* EXCalendarRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = E5F451C78F4B39595EDA7ADCDA9F4B76 /* EXCalendarRequester.m */; }; - 51CCEC05294FE21EB4674EDD80F79104 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C7841F919759FEA18B5E9E76A56FC94 /* RCTRawTextShadowView.m */; }; - 5251E839853EA8851DEF6A51A9D3DEA9 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 717EE1F3241D7CA3F34703DDCC738F82 /* BSG_KSString.c */; }; - 527705F88D117C65FFB37AB75410B537 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 9024487821F991A942730F4E97EA7391 /* ImageCropPicker.m */; }; - 5284EE58DD0B9CD2CA51121994932B7A /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 95D5FD78F6A576EE09A9E489A59262EF /* RNGestureHandlerModule.m */; }; - 52C7ADA4C0BA487B2F52C85596828E50 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F711E618AFB99B1074C4BB7E7C2A6D1 /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52DD1D1C18AD1306859A2E8B220EAF0A /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F924B7F564A7C928E4C2BA77C4AC97BB /* RCTValueAnimatedNode.m */; }; - 530B56F52DCE768887DD26BC27FC7D44 /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 39F0E960CB6D606FF9F667455409D121 /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5351E09175642E351430005A52D532D8 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B7D478665C615643A81DA89762EAB9E /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 51C79C88820B5197AB3CDB9376396195 /* EXCalendarRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A0035C37471C9BD37E46F96DD2480EB /* EXCalendarRequester.m */; }; + 51CCEC05294FE21EB4674EDD80F79104 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27D693997B65B3E74EC78362163B2C77 /* RCTRawTextShadowView.m */; }; + 51F7FE1859EC6EB5A38C8CAFBC28360B /* RCTConvert+UIBackgroundFetchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C612160739BB69042D52AD892C64554 /* RCTConvert+UIBackgroundFetchResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51F838EFC805D37B10B9DD6A86FA74EB /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 24B916F20C60F85F7360D2F3B2B64E27 /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51FE13501C3E340EF9110B47BD86C8A8 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 1ADD1D4BD44FE2B496767D09490360E1 /* ja.lproj */; }; + 524E21BA5B2C2D0D3803784A8E394A00 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = DBD5AB1191866F85728382E4C44FBEA1 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5251E839853EA8851DEF6A51A9D3DEA9 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 3D1CCE22AB1807F99B20FBCC50E462D5 /* BSG_KSString.c */; }; + 52D19B84EAB5676DE560415C5940D079 /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = F5E13D4427DDCDE77FC01C304B75DD9C /* LNAnimator.m */; }; + 52DD1D1C18AD1306859A2E8B220EAF0A /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 116AD8B5532A6F1CFF3B9C0DC48E9F43 /* RCTValueAnimatedNode.m */; }; + 52F2A89459696E89E7DCEF4B544D1A9C /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 29502A0004E740F80FDFA9E5CFE421A8 /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5351E09175642E351430005A52D532D8 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B66F7863B169D795F41BBADAB844A438 /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 53581A99A4A6570482A63E527B128F59 /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = F0A146C93184CF066D0C6275B20D0EF6 /* GULNetworkConstants.m */; }; - 535E793401A5C4AF4B3CE34F25E9548B /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = B727418C5C148F66D4754C047ADD6813 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53752865AAC13F09268AAD96DFFF6177 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1B57CE8B07F973AFFB868FD25BF48946 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 53A1C273FD8F443A816A12A4FC9907DC /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = C0D5886475B6246F510D98F09167BEC2 /* UMViewManagerAdapterClassesRegistry.m */; }; - 53C4B0F4C7E89700FD57A4F84F52C366 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B54E571A6F5D5DEBE95468F35AB613DC /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 535E793401A5C4AF4B3CE34F25E9548B /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 278C4B70C3C680A06F659F43BF294756 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53752865AAC13F09268AAD96DFFF6177 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = C9A49FF778C3EC6F3ADAB38E8C2ECF0C /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 53C0E5C5491EA9A39CA095640E93F034 /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D47013E1E7CFB71ADA5687ABE4BF045 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53C4B0F4C7E89700FD57A4F84F52C366 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A7B9D8B13F050E3F14A6DECF67C4EEF5 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53C76A24563C508E530A94901A7E2FFF /* JitsiMeet-Swift.h in Headers */ = {isa = PBXBuildFile; fileRef = ADA7B9D84EF6231347C6EC48A75600D3 /* JitsiMeet-Swift.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53C7E1D208026402F3066EC9DF53854E /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = F49B8CF1119B9A61EBE7B99BB24D118C /* RCTCustomInputController.m */; }; 53D5D5B4167585786C05375D4F27D95D /* GDTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B891842FA76E72BEEA1C138AF1355C0 /* GDTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53D7005AE1887F2F3BBEC6CCAB51A0DA /* RTCLegacyStatsReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 670A510C8819A35C0FFE8B3CDED7650A /* RTCLegacyStatsReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5405424AACA46A4BD2DEFA3249D84ADB /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = 28771B806F156F63B272C5859AC6E569 /* NSError+BSG_SimpleConstructor.m */; }; - 540DFBC1D3FD6F5E21160EC3B01CC2FF /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 982613590578A9B1AF82B09330E579D6 /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 54154B55895093959636E56F6EEEE99C /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9308503A0BCB342F77D3F8D6C6885AE5 /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5423945AB807C0CB95A554FC48CEE232 /* react-native-splash-screen-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C940909DB1D9FAC75FFAF31394EE92C /* react-native-splash-screen-dummy.m */; }; - 543C74A84012EFB1CA0B167C67490B92 /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 81F6F2327C04302F52ACF04E88825CA0 /* RNCommandsHandler.m */; }; - 54560E3D8CBEE89EFD3851F13BE51589 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E6F352D5C92823FD1802A6130F6902E /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 546ED3F1267A3182DF44533892EDB117 /* RTCVideoDecoderVP8.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F45235E0F148A83AD05C96C4B23AEE3 /* RTCVideoDecoderVP8.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54B2CAB8FDA9EDF8ECCD35C5E0ABE537 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 13D4693873290AEFB57A9DC64BBF4D51 /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 54B579504E1D3D57289AC759DD38020B /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = A758825D2493D053994681A9AABB1588 /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54B5F5566A6E71CEF68924E53B0210C6 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E2F5BB3DBC0E27EBE7BF3983F5113A5 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5405424AACA46A4BD2DEFA3249D84ADB /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = DC2C443A9EC399C362B961C99806AF4D /* NSError+BSG_SimpleConstructor.m */; }; + 540DFBC1D3FD6F5E21160EC3B01CC2FF /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E3693BD21A8AB71ADADE3299FE493832 /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 54154B55895093959636E56F6EEEE99C /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C1F72F0BD2A08E12586D00494C63204 /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5418C92F0F0A4EC8A0B91B3544091D5B /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 856A205B78B70693FFBB66826C0F09E6 /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5436A663AB816B809393EC6BDC059D8E /* RSKImageCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 50EC88EFB8C300264C2A2020EECAECB5 /* RSKImageCropViewController.m */; }; + 54B2CAB8FDA9EDF8ECCD35C5E0ABE537 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D0D2C3997CC7A1FAEEBC58E9B6916D4 /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 54B579504E1D3D57289AC759DD38020B /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 004FC516E6A32E088DF3DF4F3E10E15B /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54B5F5566A6E71CEF68924E53B0210C6 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F7EB36B79A7D5F3C290947F7522B788 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 54FF2E101D4C264550CEA1BE540171E6 /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 93C511F27ED5D50E864DCB9B0AFE64DA /* FIRComponent.m */; }; - 5581C8DF493672C06E5DBF40C2680682 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = E7E6BC405093534D36E76AB84F152D27 /* 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"; }; }; - 55D506C93250E7741FBD315EC6116F5E /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D7F2036C94E9C972E622D6FAB8A428F /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 55F319DD2FBCB7236C86CB50916CE740 /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = DFD54D567474AE55EB97F8845FAF3B7A /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5605C330B121799EBA27F8BE4F2B8BEF /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 46C3AD38437038E97CB6C3C353827223 /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 561B4750845964EDC17BE91FD1D3196A /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E98EA1A22DD27CC9BDE6FCC634D5768 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54FF451DA6ED5B34915AF1B79614F61D /* RNFirebaseAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 27C12A379F33A702A7EF080C6CBEF928 /* RNFirebaseAnalytics.m */; }; + 5513B1EA3D98AFBCE340771D6D252C5E /* RNFirebaseDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = DB723D9884A4D1B4A9B082790244120F /* RNFirebaseDatabaseReference.m */; }; + 55D506C93250E7741FBD315EC6116F5E /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = C81F5F2E2F2745501CB1DC35224AE57F /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 55E56EC45C50AA844A3069C8DDC9F97D /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = AA2F1D16219C46D61411C758E01D69F6 /* DeviceUID.m */; }; + 5605C330B121799EBA27F8BE4F2B8BEF /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA6C4F5EA7FED6E8B0042E9CDE849CFB /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 561B4750845964EDC17BE91FD1D3196A /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 91AC3D3B0949A03A9EB05917C7D2A28B /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 562BDDD05D4E62786A3828EF0DEA5F30 /* RNFirebaseFirestore.m in Sources */ = {isa = PBXBuildFile; fileRef = E48A131B2AEBC226BF7AB8FE7D76BB33 /* RNFirebaseFirestore.m */; }; + 5665B624C89B3EEB758C0AEE3327A977 /* RNAudio-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 04E88BBB16763437A6B910CD7A4F0F15 /* RNAudio-dummy.m */; }; 566AFBB16D10757E0FE89F41B838BE25 /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F2CA2326F69284F493D911019DD6729 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 567AB7BA9ED6D7951398DE1254AD4420 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EB70C49DABF10542CB05591CF8D967B /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5706EE7EFA4593AA47330FEA9638C748 /* RCTPerfMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CA54B109A863CB8816A4C71E3CA42EC /* RCTPerfMonitor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 571B71940F10C80D6A066F017D804757 /* RNFirebaseUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D59A161EF4CED1ACD8E863BF7BC09C1 /* RNFirebaseUtil.m */; }; - 571E1EA53535B415C4C4364B89CBCFAE /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A5C524E049C1E72F169ED5046047CEB /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5724A30AF0FE8BF898573EBBFCEE2B96 /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 68FECB0093AB4D2892F83593C416C054 /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57BD26B8C4923141D4FB30D63DF34AFD /* RNCWKWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 74C5B099EAE467F69BF778D8C17007F2 /* RNCWKWebViewManager.m */; }; + 567AB7BA9ED6D7951398DE1254AD4420 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = C778DFBE739DE87DAC7AD75A1E031227 /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5706EE7EFA4593AA47330FEA9638C748 /* RCTPerfMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 645DD68B4C7BA5F1A4E047A531EF3640 /* RCTPerfMonitor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 571E1EA53535B415C4C4364B89CBCFAE /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F67E3A26B0AFD7D4BF218BCD4F290F5 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 573E6E4335B9806D0D6866710250F1AB /* RNFirebaseAdMob.m in Sources */ = {isa = PBXBuildFile; fileRef = A30C86DEEC074F3692FC989FD0B5FE29 /* RNFirebaseAdMob.m */; }; 57C8A26C5E905E0B125AC142E720F5DB /* firebasecore.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BA5000E94AA313E650B6F2C01E8CCAB /* firebasecore.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57F0F85E4D739DAA04388E92D6F7DCB6 /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 59E71DEE276ED052E4EA48DF3D8B82B9 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57FD496A1B884C467DE3EAB43A21FCA9 /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = F47F5C7EB3E4551C98D89468FE956590 /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5825B7B00A4FE12BC7EF118506E894E6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 4786257925B0DB4B65A3DA452CC63195 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5841D76B68F87FD612007DC00D7A2920 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A5C524E049C1E72F169ED5046047CEB /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57E6B13C2FB9BD0AA09F30F3AB789AB9 /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = E2DFC110533BBD6C6C73C679331C3DF4 /* REAAllTransitions.m */; }; + 580C905C8F990879D69D68D202D1F9AA /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 60A0EB8011D3CA4F519D993FE79606AD /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5832930DEAD6DAB954289242B1B7FAF0 /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B812627CACF8DB5A9A6ECEF2B6BAFE /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5841D76B68F87FD612007DC00D7A2920 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F67E3A26B0AFD7D4BF218BCD4F290F5 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5911F2C36EE1970C228AE32A316816B6 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 086F20776E3CBD6C90E3FB4DFF3A3605 /* tree_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 59775D0037099876C7BEDAA541591344 /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = 7097A063DC932EF4DC81F08558A0B484 /* BSG_KSCrashState.m */; }; + 59136E16B44531F059EF7B784216E06C /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8593DBD017822F6D970D1829CB6D34BA /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59663678A156BD4DB3E126F529E4D362 /* RTCVideoCodecFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D375B3523440620FA94C07A7D560133 /* RTCVideoCodecFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59775D0037099876C7BEDAA541591344 /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B2727DD3339BB88DB7A16E578C2A991 /* BSG_KSCrashState.m */; }; 599C79E2AC486198363DF63026441579 /* FIRInstanceIDVersionUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 57B2CC75CA8E3F32098308781F12F843 /* FIRInstanceIDVersionUtilities.m */; }; - 59D86DF9B75C365BEE6B352CA65C2339 /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 954080367EDE14FC90A093125A781A2A /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59E39E0543B144729F52E70981B82844 /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = 541BA8CA202444E82155D24B413099D1 /* REATransitionValues.m */; }; - 5A05CF9E215BB1540C2111A7783F6C09 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D09B324CD047987B92F0B8F9E2AD00FE /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A17BD833C5FB753D349E7D5F3412439 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 24AB5D5E6F6D2FF4A938C3B1279D8FB8 /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59A27A76152C84D9F8F7E1E9DA83B96C /* NSBezierPath+RoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = BCAA872A4D14CBCDBA296FA056611526 /* NSBezierPath+RoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59BC2BB8CF6D8153AD31FDA427AADF47 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F769D6260F9E292438D0FFD1264C69D /* QBCheckmarkView.m */; }; + 59D86DF9B75C365BEE6B352CA65C2339 /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 48E9ABA92A27F5B25D22B2476BD981DC /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59FD6B6A1791BB16C48F39899F222942 /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = 0561FD42E9D0E127C6E8ADEC323CAAE9 /* RNFetchBlobFS.m */; }; + 5A05CF9E215BB1540C2111A7783F6C09 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 53BE641ABEE70F3C776D5A57234BE6E0 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A2EAF6E84881A8CD6CC43399AC33EE7 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 258F9B9F16D67BA9A3F9CC592DEBF8DB /* NSData+ImageContentType.m */; }; 5A2FEA1B25DA5D3DB81EA2927DA1CB09 /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 99C3ABAC6136ECE26842D81E2A0152EF /* config_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5A361BB7796228216B1187B398A60475 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = EE90A65E06B102DC4868B237FD7423C7 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A4EDCEF7D33FB0A946B748BF20174EB /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 47764B5801E587EFFBEAF16D08AE9227 /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A5743CF4E389A0A89510C2F769ABBF2 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CD0C0E15FE92C2CD6C99AB6482A37F6 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A75D23BCD436DE88F31A570A97F4CAB /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FBC5440BBB2AACD20BF4C86430C0086 /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A83023D1299434D1918237AAEDE947B /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F683AF2602FACFDC915252455977618 /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A963D590B04472E7AE3D9620154E884 /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 11F51612DC4C27ECE62A293723A8F1B8 /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A96898E2F6E59D21B8DCDA23E48ABE0 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 839C97C432976E496B1C43C7735C85A7 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5A9C127A4F64203C3E05871E66A10FE5 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 364347B22922DD5DD9C39372A883717A /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AA30030BC8E3342904CA0FC1962F447 /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B9690EB13E23BDAF9A0F9ECFAB1982D /* RCTDevLoadingView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5AAF223E5396DD2EC831E39E4767FB3C /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 802A3A41E328262EE0AB23980D8BA7A2 /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AD2D50EA0EA95CD2488782E90B478B6 /* EXAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A0A3F50A26FA605F31B77E82428F065 /* EXAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AD5CA5E9217E838A17B1E7036EC55AA /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E9AD3970059AE65F3247E3C4E6BB0B65 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5AE4304B939F17A88B6C4244ED516EBE /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8335D1CE75534CCD543BE3EA35D4F912 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A3539D300545CED419697DD8DC68C21 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = EF99D7F00053860409719088A4DDA847 /* es.lproj */; }; + 5A361BB7796228216B1187B398A60475 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B722D73E72D315BA5EBD3A0F5103B99 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A44C0CFD44AE007C29BA7CFF67077FE /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C05440DE7AEDC433EE007D0A499468EE /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A4EDCEF7D33FB0A946B748BF20174EB /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B96C3E30C1BD253DE65C66C95B3D4F4 /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A5743CF4E389A0A89510C2F769ABBF2 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E1ED6FF5B003DE56EABC082DDC2D039 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A75D23BCD436DE88F31A570A97F4CAB /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = A19500584ADEDF73297A233305C77ADB /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A83023D1299434D1918237AAEDE947B /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FCC86470ABA63FBA2F68D680427EE76 /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A96898E2F6E59D21B8DCDA23E48ABE0 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = BD5B33E3CA301BA313B9E038EB755EF8 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5A9C127A4F64203C3E05871E66A10FE5 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 85DA31FFB26088223BA11F5C4586CED6 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AA30030BC8E3342904CA0FC1962F447 /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = C784534B95C2F0A8FD143DEC7F34D5E8 /* RCTDevLoadingView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5AAF223E5396DD2EC831E39E4767FB3C /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 90A4AAB4C526B1637A7E61C03C4EA800 /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AD2D50EA0EA95CD2488782E90B478B6 /* EXAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = F3E18198B01D542FCB2092F21BCCFBBC /* EXAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AD5CA5E9217E838A17B1E7036EC55AA /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C13EBC780C052C78D94EFCA56250435 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5AE4304B939F17A88B6C4244ED516EBE /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D2CB35C37F72D6B5464B5C5A54FF005 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5AEE52A5A72E036A8C066F41EF446DDB /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 39878CFBE7B41C682EE69941F7595C0F /* dec_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5AEF5383C1B91A338DB666B3416E55DD /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 49AEE8B3474A5568CDAE836D4544F99E /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AF16C42FE4B884F2852F851C5C8766A /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F6D1B95E592427BCAD532896991176 /* react-native-notifications-dummy.m */; }; - 5B2CEB07FF22AECAF505F521E88E2E8C /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A0F8A8EDD753C0E60C36136BE3334B6 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B656C335214338E0EA8A136B0259BE9 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B6070CCDD1B35A0C894BA464EEA2221 /* RNFetchBlob.m */; }; - 5B8A0EBAF1B94B7FE5E55162A2707325 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = 22EC4163D98C0F3DE47C975E317C6607 /* BugsnagSink.m */; }; - 5B987D9A0BAAA801C41B608252BC820D /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = CB47C6F7161CC32B42084E85D4EB30FB /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AEF5383C1B91A338DB666B3416E55DD /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = C9AE0B6CB928A67EC2BD1D1E3387E5E9 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B1F0CCA6080A51536C93F7F4619DB84 /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = 85381644A4EA16890C52DADEC1C15249 /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B2CEB07FF22AECAF505F521E88E2E8C /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 8075DB9392E1E119627413F160134EB5 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B401215D957C168380D28B66C0BED02 /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = BEE47C639BA506ECCE98AAEBCA942A81 /* NSImage+Compatibility.m */; }; + 5B8A0EBAF1B94B7FE5E55162A2707325 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = 5972DE267E881AE87853079EF15A3FB9 /* BugsnagSink.m */; }; 5B9BC4FE2C8655F5752E5909DF135E91 /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = E6155A2809622FBF0488834710F92202 /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BF763F8EF91BF90AEC8E80EDA35C4F8 /* EXAppLoaderProvider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 69D28CD3E747291CBDED94E8F270D224 /* EXAppLoaderProvider-dummy.m */; }; - 5C1EB3FCC8EC9B7CE8E693EF269E7658 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BA859F8B13928A5192F098B418266DC /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C3C5017E8709A39D95BDAE7AF3D04C2 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3A34C74025F8A6F0A9116F44104CF61C /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5BF763F8EF91BF90AEC8E80EDA35C4F8 /* EXAppLoaderProvider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EF91170238E06257631C5B0654BCBAE6 /* EXAppLoaderProvider-dummy.m */; }; + 5C1EB3FCC8EC9B7CE8E693EF269E7658 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 651BADE3C93BF8E5CAE87709AEBEF393 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C3C5017E8709A39D95BDAE7AF3D04C2 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3F2A8F1CF3BC3AC3B5492A25F74433CE /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5C401C621E415BA027034B4B70477EAE /* UIImage+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = B82698878E55481EB830AE41F5792A4C /* UIImage+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C65CE740DFB0976F1A9AFCB62276816 /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D81F0DAD71C94F388CA56FA7AD475E9 /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5CD2A015A7A05B92BF2F5E7D71D12B1D /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4857951B8BEE52580B8BDC2812DC32B2 /* bit_reader_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5CE502F7F5ADC4C2F77013A953F9D1D0 /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D258CDB53EFD2F3A44594CA7B4D269 /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5D5AC98F858504014764C1F6F89B7C49 /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = C35135A3E866F0F747B10CA8DF8A2091 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D7BA29018680739DE57105640A48D7A /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 80A8302F3687F959D295EB70EB085DFA /* EXVideoPlayerViewController.m */; }; + 5CE502F7F5ADC4C2F77013A953F9D1D0 /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = A2273DB842F6857A504420A7BEA421D3 /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5D1BE62485182B53598841932CFA84FC /* RNFirebaseNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = E467224E1ECAC715668839A01796EA04 /* RNFirebaseNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D5AC98F858504014764C1F6F89B7C49 /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = 5141408A3C2FEE10C52ECEB85B4155E4 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D7BA29018680739DE57105640A48D7A /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DAB30C9A67672B75CA52254835439EA3 /* EXVideoPlayerViewController.m */; }; 5D96F097503E7F4D8615528BB6C55CED /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F9C2F09B67806EDE58E40D9A648E897 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DD2FEB84DBD5A9C6461812AD2793C56 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D3A46F9CCE8CEFF84C4C455EA782C9B /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5DF08FC5235A3324DB8150217C87F893 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B87E594363914C08F60E7F87BC3C62F2 /* SDAnimatedImageView+WebCache.m */; }; 5E0C04DA2367DFAB13CE9337ECF3D4B1 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD5D4D04DE011B2BCEC7CB50B6A2EB6C /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5E14C443FB6DF23A6B141BB1AFF588CB /* RNFirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 2836275B6F700192B022EA52DA419BCD /* RNFirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E1D957F97B6249851899EF6C8583881 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 04333F8B209F6409F87D2E267F38CD03 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E28BF203F809F33AD99103DD1450BB7 /* RCTTiming.m in Sources */ = {isa = PBXBuildFile; fileRef = 228FC8C869C9325D9E4257025CAFDAE8 /* RCTTiming.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5E2BD4CE63EE70F3C033D97CD9FDD380 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 02585A3CB670D27DB49A28A54259260A /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E28BF203F809F33AD99103DD1450BB7 /* RCTTiming.m in Sources */ = {isa = PBXBuildFile; fileRef = 3233FD512651D6526B0227C3B2DA648C /* RCTTiming.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5E2BD4CE63EE70F3C033D97CD9FDD380 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 27BF97D54D730CB27FF4ADCB95B81BDF /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5E2C96CDCC4F7D22F998106A11BDC1BB /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 78E80245ED31EA62A75571A2EC705E0B /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E3C7280509D78C6B01C5F2F975F4DA2 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F75CCCD362839EA27A1E88A7D38E5F7 /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EA5321E522B0A79EDFE58DC64B02977 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4797CCB8CF0CADB93DDE7716466A76EF /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5E3C7280509D78C6B01C5F2F975F4DA2 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = F25C521F40E45F6EDA7B5A44B2F9A0FC /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E59D127631ECB6023AB712A76BBE9A6 /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 00A08AF23B12EF05DD1718372D55A36E /* RNCWKProcessPoolManager.m */; }; + 5EA5321E522B0A79EDFE58DC64B02977 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 97502A36BBC67AA4C616D00C30135D5F /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5ECD87A0265E9566AFDBA7027B201F5A /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 00C476A0C5E90A21225966AED9231432 /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F03B044C0DBA7CD3F58A14F45BA064F /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 325B2A85C2005E4FB22A4A3ADB3B01D3 /* RCTInputAccessoryViewContent.m */; }; - 5F0DD80C380B6D228D4A33595B3E84F4 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2AE7B2C51D8B868E01FA302B8377E76F /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5F326640A40E351B65C24B5E01F7CB2B /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A0F193FBBF6413D8A61F784E82A2EF /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F42669A236645CA46122E4D0E5FF81F /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = BEE47C639BA506ECCE98AAEBCA942A81 /* NSImage+Compatibility.m */; }; - 5FA8B5F38C07C80F3A249A43CEBA64CC /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BD589DFD1BD4E0A110A1D788E71DCDB /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5FAD0A751E1895305A46C4702908D4ED /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 08E74F7067B07B7FA1E2F87CECA1084D /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6001D840D142F5DA98F3414A16AE55DB /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 831F0D42D039450010FF6956E3E56C03 /* SDWebImageDownloaderConfig.m */; }; - 6007EA5A4A08D6AA479ECA1AA6A44E57 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 4103E5D22024414FEBC368E41E6B0FA8 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 600ED764F718E31E18C8657E3819279B /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 93C302F55AD5D4039C0470EF2847D217 /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5EE76984424C85385970733484CA4065 /* RTCVideoSource.h in Headers */ = {isa = PBXBuildFile; fileRef = F9BD112F846017FCC006D9367D4D9979 /* RTCVideoSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F03B044C0DBA7CD3F58A14F45BA064F /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = D54F1F028E4A287D59D425629876E6C4 /* RCTInputAccessoryViewContent.m */; }; + 5F0DD80C380B6D228D4A33595B3E84F4 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C1A2E8ADA134E8238FA734E13530352 /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5F326640A40E351B65C24B5E01F7CB2B /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE0FF1B10879B200928F7B72D85692F /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5FA8B5F38C07C80F3A249A43CEBA64CC /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 777EFF02AEE37793BA8E2A3CACFB2E87 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5FB0447FFFE66F36BD117697D1B3CC4F /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E95A35F60D69F40CFFA03284CCA52BF /* SDWebImageCacheKeyFilter.m */; }; + 6007EA5A4A08D6AA479ECA1AA6A44E57 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = A171A41048E3753FE41D2C7BF8916BF0 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6017B2E333E17232E88A3D32BB8909D4 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F86DC96EB0178B7C7BF8E2C8D153E44 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 605F0C709490DE11C0BD51DA71621794 /* RTCMediaStreamTrack.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BC402F226C200467A0107D936FDF844 /* RTCMediaStreamTrack.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6067BC213ACE4C1CE241E87E5FD7FA42 /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = E9CBA7B3D0EE3E20FDBB699DBBC46487 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 608B30A9766B7C7AD75855008A72B76C /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = B32C29637004DFA00C422469551F00C5 /* endian_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 609BA655CE8EFF1990DA74EA42437886 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 3175D4F17FE054E65ECAE6AAB14DFB49 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60DA3DB696ABFDD01DEA38421A5BB3EC /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 15709B7021248CAB27E66715397AA976 /* UIImage+ForceDecode.m */; }; - 60EB82C911D6E26FC2304E542E9E7507 /* RTCEAGLVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 67E566C7ABDDCA6D458B5F60F84E5B2E /* RTCEAGLVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60FAA03A208514DDA5FA1B99C80C8915 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D05542AB868F073E68875B27D150A98A /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6093143B0BFF05A65AC0E12C028C8620 /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 84FDB5DEC3FA82CFFC892A002C81B52F /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 609BA655CE8EFF1990DA74EA42437886 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 4988DD1E50E27773794A0A25B414BFE1 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 61000B636EA54B95FE41F513135EC7D6 /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9883EB80AA0AE0AEACCD3B4C99C35140 /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 617F643AFD59C5D75813423ADD30B624 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = F433A020043B480DC7234774E496F4ED /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 617F83B58106D0B8CDDCB27679A39FD9 /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E98A1C2F0D6E45F92CA062D1F9B6783 /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 619316441ECB638999898C69DF3DC97C /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 093B496EC406F5EB47DD86CDF244E3E5 /* REAClockNodes.m */; }; + 611007A30BD51A47805ED03472D806D8 /* RNFirebaseFirestoreCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = F6273F49AD4D0826713A5421C5D09E1E /* RNFirebaseFirestoreCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 617F643AFD59C5D75813423ADD30B624 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AADF531C41EC635E9DAC59729BBDB19 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61CDE75B53EC0963197E49E35210467A /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = C34446947B99F093F682D587EA14882B /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61CFB11BBCB63EC460F1717EA592862C /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 983CCBE6DD41B2FCD46538E9B718F101 /* RNReanimated-dummy.m */; }; + 6241B607E1842345778FCF0C8340A143 /* RNFirebase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E95E8A846A57DB75E2F787FD8AB962E8 /* RNFirebase-dummy.m */; }; 6293B34D59BC5B39CBB09D323E9D3FDC /* backward_references_cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = FAEEB6A360EA4625E39886BB08902163 /* backward_references_cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 62CB8189A8DFDB52140C78C76EA04823 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = FF3B4A93336F5451E6D9396AB2776D0F /* idec_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 62E9493C7A7BD2EBAD58E8F3893278DE /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D639540297627EE72442F6BDEFD5777 /* RCTUITextView.m */; }; + 62D4B9AC2AD33ECAE206D30C957417B1 /* RTCLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 55BB970DFD46CBAD6C8010ABFE55B961 /* RTCLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 62E9493C7A7BD2EBAD58E8F3893278DE /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = CCA1304BAA7241ED6B50653FFC89D859 /* RCTUITextView.m */; }; + 62EC4384418F2BAA8F0C85EF4F2F13C9 /* RTCVideoCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = 838225B4B410F29C8105CC6E8206140A /* RTCVideoCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 62EF05AD5396C78743EC5BDD2643D95C /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 787962550B3A64379933CCF755AAFA54 /* vp8i_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6344F0ACE5BB39039D303F7BEFB052CC /* RTCIceCandidate.h in Headers */ = {isa = PBXBuildFile; fileRef = 550328F52CC3C6883332344007BFF391 /* RTCIceCandidate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 636AD3E42ABC1403BBB9385ACAFAE863 /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BF787392FD5C27D258A3A6FD290E125 /* RCTNativeAnimatedNodesManager.m */; }; + 636AD3E42ABC1403BBB9385ACAFAE863 /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 57CE1D18A14A6BABC2FC5E303D8B9D7F /* RCTNativeAnimatedNodesManager.m */; }; 63935F51290563AEB8FCAAD00C5595EC /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = E11189EAF698EAD899AB2AE3B2F02FE8 /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63BB559BC6DDA8726779E5435731BBF1 /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = B3A93AE402EDF1485DA4B4A5AF61A8C2 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63BCDF27B599B64B28D6A46D624234E3 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = CB8B12C52AE984A3128A420CB4442F11 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63BB559BC6DDA8726779E5435731BBF1 /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 998AE4414D11CC59E22B0DC860FF85AC /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63BCDF27B599B64B28D6A46D624234E3 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CE570B3EB77507C794598F33BBDCCC2 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63CD5ECCCB607BDB1ED3E70085940F63 /* RTCVideoRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 726C1B2664776220FDC64EA7067EFFFA /* RTCVideoRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 63CF3331255C82F8397096D34A4CF8DF /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C0DCEC8BFB86E14D2C370E114885266 /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 63DA317D7714D3BB46317E9137DB3D1F /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A9BBD50F562E09F4FC9D8723331D6081 /* RNNativeViewHandler.m */; }; 63DF1931079EE301A7422BEAA101EC70 /* cost_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 0373560C8F06F4D5DD7E28D42E8C3821 /* cost_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 640012298102A07B297D5FE1C41DB5C8 /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = A2BF1B2AF2C535785E03DECA25C0F0E3 /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6407DA67149C9B89D517DC8A6BAF0B70 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CB5073B9A26565A0967980E34B3D17B6 /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 640012298102A07B297D5FE1C41DB5C8 /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A7BA2EEDD3EF4CA7FB8026E92D065E6 /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6424CE1B21FB118EAC797A1EFB5CAB77 /* quant.h in Headers */ = {isa = PBXBuildFile; fileRef = 81D1D5A9FCFA9721EF49A2AA7162E742 /* quant.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6446867E20E972E64B5659B208B143C7 /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = D6470CF65092294FA7B4087C4377314C /* dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6474EF705A6CC0C0ED44174986C841B7 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A490DA9E70562B499E63B60320210C2B /* RNLocalize-dummy.m */; }; - 648C1E17FC1F41F1C1A708CA1A4C5584 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = CBD259C327377C693B4CE403402CFB77 /* 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"; }; }; - 648E8888F20D5833031D35F4F85AD4DD /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AC91388E5FE2A91C9CC93F6095B699A /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 648C1E17FC1F41F1C1A708CA1A4C5584 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = C2375E9ED0BD930A847A78A8F0DACA96 /* 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"; }; }; + 648E8888F20D5833031D35F4F85AD4DD /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 60169723F416C6E12FBFAC63CAB57B8F /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6491074DBBF2A3EE1448796EC326CB0D /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = B80AE04012735F39420C32321BC8CF64 /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6495520FC207EC40B0526F36C6642F40 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = A31B7AF9D97883D1431BCF0BEBC6A5BF /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64A68133486FD6417146155B801438E9 /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = BECC174CE98D1E8D25855CBCA368F55F /* enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 64A6A8A57572DD34C738AF5B476113D3 /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = 3D5DAF6F162765CBD8C7491800B9EA45 /* BSG_KSCrashReport.c */; }; - 64F13D1B302632D222822F3C514FDC11 /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 847F5E8AC05CA3450E2AC437B6203F46 /* react-native-jitsi-meet-dummy.m */; }; - 64FF982159B26E10B7931FC0B117B197 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 970A7E2E51EEF752F257CCFBD7300F1D /* QBVideoIconView.m */; }; + 64A6A8A57572DD34C738AF5B476113D3 /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = 9F37E7FEDEC07DBBB0C35F0036CF2DE5 /* BSG_KSCrashReport.c */; }; + 650CE7F03474C6BC07EB552CC807C8C3 /* RNFirebaseUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = B94F459F4F71A3C5C090BD353F9C8387 /* RNFirebaseUtil.m */; }; 650D89555B807E9AEC681EC6CD423A12 /* GDTUploadPackage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DD881D7E69E5AAC15235626814BA474 /* GDTUploadPackage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6515349D38E65E826803CF232D7FC207 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = A7979EFA0044A7751DBF2F91E4119047 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 656AECDFB3A553F1BF122E39D0716A98 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = EA70A056927DA6B56FE74784469829D5 /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65D9F74674CD1CDF569A77E74C5F26E7 /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = C73418B1525F0BA3A50BE187BEE0C073 /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6515349D38E65E826803CF232D7FC207 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = C0691451199B8BDA6C4B3DFA6D9368E6 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65374B149148C70C01ABC2DB007DF4F9 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = C3DD38C706C10C12E336FB35A6B38724 /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6580CA92EF4F6FFE92C2803B9D4FA282 /* RNFirebaseUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C4667C9710E87EA60D76EE13175BEDB /* RNFirebaseUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65AA8934E1D3A4B1D720679F82851C20 /* RNFirebaseAdMobInterstitial.m in Sources */ = {isa = PBXBuildFile; fileRef = A1EC4C554AC2FA34564E493D9F67EE84 /* RNFirebaseAdMobInterstitial.m */; }; + 65D9F74674CD1CDF569A77E74C5F26E7 /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 316F4BC9F345B3956AF94DB5A347E199 /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65DA5CA0B43BE1A8253C7A67256FC3C5 /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 0B23B0FCB0328F4CED9132A1B8A9882F /* lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 65F229D488336A7011978AC0403FF917 /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 05FE56B66A4E98BACA63845317D46817 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65FACF736CEB2C1BB3F8032FB195D1A9 /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = FDD0DC51876FEDD563B014D667E23423 /* BSG_KSCrashCallCompletion.m */; }; + 65F229D488336A7011978AC0403FF917 /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 99DD3DB01EE1A06040E37EFC499A396F /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65FACF736CEB2C1BB3F8032FB195D1A9 /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D106A44EA50316E16B763984AD60D49 /* BSG_KSCrashCallCompletion.m */; }; 6614083802E731AE356FA666BE7013FB /* FIRInstanceIDCombinedHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = BDCB6B57878BA7581E54CF2B80E10903 /* FIRInstanceIDCombinedHandler.m */; }; - 662D8B23C0899901F4518528D4D8715E /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 39331300757DF99B3ED1BC7F159B492C /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 663FF22F237896B0B086B89E18B5BC60 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = EBBB4CEDF06C9E4DAC5A356069ACC475 /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; 66527E65A382A6BB2FCAA7EA4E058755 /* FIRIMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = B98F22D61095526FA4DAB138C1B2A193 /* FIRIMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66636231DA050692C3D96586EBB31B15 /* RCTFileReaderModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E2D977CCD40D6AE475F0F1759ECCDA1 /* RCTFileReaderModule.m */; }; - 66CC88B008AEDCC3CEB221646298A72B /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D068189902796A90299BF9FE48D6109 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 670C1C9956D75C9518BF20641702A6A8 /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 67585D4C5FBA7E512FBBC672E7BA8D6F /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 67C56AE0DCC99E4CD30B0F50D109A51D /* RTCRtpTransceiver.h in Headers */ = {isa = PBXBuildFile; fileRef = 602FA28D3B195AF84796D141D0AA5D78 /* RTCRtpTransceiver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66636231DA050692C3D96586EBB31B15 /* RCTFileReaderModule.m in Sources */ = {isa = PBXBuildFile; fileRef = A04400228064963305EF63BD85BA6127 /* RCTFileReaderModule.m */; }; + 66A88077C59FA83BDAAB4189CA6DB8D6 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 00BF63C02B2DCB599CA42CDE805F61E3 /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66CC88B008AEDCC3CEB221646298A72B /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B72AE536F8B8C2AA6D9A56CCEC1DD4F /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66E31D883AF8831D57D1E03F465FD56F /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 67DC896DDB6BFB74E91CF31D7E6DDCEA /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66F59FDD72D7D3B6034140CB9116FA44 /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3312D054F2CC88795612F8C6BE2C20D2 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 670C1C9956D75C9518BF20641702A6A8 /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5FAA43024A9ABC65BE0D1E3D002CD556 /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 675ADA84C00913485A0EFAE38D34A8F5 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B443A642A5EA66F29AB689D39DBE42AF /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67DB419E1DF0139827A26AB4E6E0CCEA /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = FD1AB75128F04BB100EE155FA285D498 /* FFFastImageView.m */; }; 67EC503D6E3E390A859DB9AC74C64686 /* FIRInstanceIDConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B1C3C16447C4D321FC9269D1EF1A902 /* FIRInstanceIDConstants.m */; }; - 67ED22D95C9FD71789906A1758236882 /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = 8FE4030B5C8F3B86413D3D99EB8757C3 /* BSG_KSDynamicLinker.c */; }; - 6809B781E3E6D706BE28D2E09354D0AE /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D149F26BDBDEA13FCD6F1EDA897DC3ED /* react-native-background-timer-dummy.m */; }; - 68375371934A4545C12983D3A4AC22E9 /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EC6F16D28DE0AC26FD3262C2825D95A /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68C287FECA03B2DD27950AB838AB4FD8 /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D9573F8234E7A253B8F152612009897 /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68C6678CBDF5D435B8A2EC7AAC70EAB4 /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C2DEF2C1A2D0834AA1405A05D03E207 /* BugsnagNotifier.m */; }; - 68D1F82292ED12F36C87EF8FE5916F51 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = A6D2000D624583DC8BFB62705BD356BF /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6911418079370F89A57E161AEF1725EB /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F4745F36F4679B7151B5A5C6E16846D /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67ED22D95C9FD71789906A1758236882 /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = 23ABA778EC22E58F916583D0A755B2FF /* BSG_KSDynamicLinker.c */; }; + 67F28AD5467C5D83B36462F13E4737A2 /* RTCVideoEncoderVP9.h in Headers */ = {isa = PBXBuildFile; fileRef = 2606612E3C04EA90C68007FBBAC72964 /* RTCVideoEncoderVP9.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 681AC22F4116075787A35C9B2F4680AF /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AF18EEF141DF5F227AF06FE09036D47 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68C287FECA03B2DD27950AB838AB4FD8 /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FB1876F02B2FB0C5F29D988B6E3AB9E /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68C6678CBDF5D435B8A2EC7AAC70EAB4 /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 177D75F47EC8803CB485D7935943CFA4 /* BugsnagNotifier.m */; }; + 68D1F82292ED12F36C87EF8FE5916F51 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 14E3A053EC00A615C2225238B60165F9 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6911418079370F89A57E161AEF1725EB /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = E56A4A99297B8367A0249D822512795D /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 692A595702C25C39D08488B09963FA90 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F08060C005CC41632EBBEFD89FB9DE7 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6940FBE8BF9D3ACA5ACC39947D1309F6 /* RTCSSLAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 787277FA20763291550C252B95F59577 /* RTCSSLAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6948C8D514B377447A15A08AD73DA213 /* yuv_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 527125D5A4B8AC39BBE2295228318B0B /* yuv_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 694CDBD8C5C7739593F5A7D97CEDE52A /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 719C288348AA425392BAB76E5A486BEC /* RNFetchBlobProgress.m */; }; + 695455CED3568AA4129B3014FC3EBF01 /* RTCRtpEncodingParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = BA985EDDB1B2141BD2DB206CF7639906 /* RTCRtpEncodingParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; 699A3647F99D6D97EAE31610A587772D /* ssim_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 64095BD0B41E161836B45B19C83132AC /* ssim_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 69C1353D43F198AC2F8FF8B06AF10E84 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7A5DEECDA79F2835613CB7C24D2F6405 /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 69C1353D43F198AC2F8FF8B06AF10E84 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0CBDC0B5D095A5D4C73F6A26260BACF3 /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 69D0CEF50A2D9B50B92B2C4772683296 /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = 0797904A5FC7F9E780DBDC7E73B19ECA /* muxinternal.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6A5C926A16DABC844336FB51F299A791 /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 286397C424DBE1AAB294AC63C57F4C73 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A75227A9638E3AD9CF6D469129D03A0 /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D49AC7AE40388D4E49E1A9D883574C1 /* BugsnagMetaData.m */; }; + 69F3230807B73FC8DDD6702DBD4A8808 /* RSKTouchView.h in Headers */ = {isa = PBXBuildFile; fileRef = BE94543A04B8947916F72F33F5AB59B1 /* RSKTouchView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A0E13A9A603F7AE8F1D69241B3CB8A5 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = ECA90C12864EB009CD6E675F76E9A070 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A1D07E959C36B1D7CABD22D77AE9829 /* SDImageGIFCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E7212AAC51502DF738D2A093B0A145F /* SDImageGIFCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A3EAAE3311752E4519DD5147EF2F4A1 /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = D0F0CDDFC37CF634DEAFF325946238AC /* SDWebImageError.m */; }; + 6A5C926A16DABC844336FB51F299A791 /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 38B102188B49D1E48D9B805CB5D49FB3 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A75227A9638E3AD9CF6D469129D03A0 /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = 86401CF6D57258D7243C22527A70EFAB /* BugsnagMetaData.m */; }; + 6A876F2501554B8E7FE40CB55A1D2E88 /* RNFirebasePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = D2C46D3526544147DF57134EB39E11AC /* RNFirebasePerformance.m */; }; 6AF54979B8410B311076E6D99ACE9227 /* FIRInstanceIDTokenOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = FC8A3043A001A13BBC3A3945201C9504 /* FIRInstanceIDTokenOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6AFE02FC6D56C37DD0B85369678D68F1 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F0679D0105E10669A8210D90F88B7592 /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6B24587056B43B44A33D33481C1F0B7C /* EXCalendarRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 769B103E567E2271D63B84E14111DF4C /* EXCalendarRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B3C12BB17B7D3DE4D451143417A4FCE /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0D74AFA503A667D1B494AD7B6E155FDE /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6B48D79B89A51A32AE8F5AD10198780F /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 31F85D8CF4693A614653CC91F13D9BF1 /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B522302A9BF66638B95BB21EF10F035 /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = D60EEAAAEB07F8DC954BA13280205199 /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B6093789F5E10E5E7C41FBF18780593 /* RNSplashScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 56DD71371D66F0C906E1614C648B19DD /* RNSplashScreen.m */; }; - 6B690A1AD450BC998489A93D3DB119FB /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 115F152C05353BEADB399201FA6C2D1A /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B987FEE83345F7C546FC3C8F4039225 /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 519BE69174D61344D2C6AEABE9A5A15C /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BB06CB7446BCBD59FD95F327DF028BF /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = E3A9649E834BBCCF4F0B32C6998F598D /* EXConstantsService.m */; }; - 6BE95626E14B629519556BB88B5A283E /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CBE27C39EA1296C671FB2746107636F /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BF020554ADB0AB1B954C8A650F5992D /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = C34446947B99F093F682D587EA14882B /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BF1678A17B31EB9AFCD005231DB87C0 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 045F76DD8A74D3DE51F83DCDB48CB294 /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6AFE02FC6D56C37DD0B85369678D68F1 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7175D1998B8E5541F362B5AFA4403160 /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6B0FB5C5FBD73568528A79DA5D6CC0DC /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = DD2C4EC3A9DBE95E18C1A8834F48B8E4 /* RNGestureHandlerEvents.m */; }; + 6B24587056B43B44A33D33481C1F0B7C /* EXCalendarRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 816ECE8F769A2040BE9C8311A1BEE039 /* EXCalendarRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B3C12BB17B7D3DE4D451143417A4FCE /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 17F050B48D705759FDEA14CB987EC4AB /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6B3F86C7245E0113D127702359D44153 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 068CE9D54301DAF6848DEB439320B4ED /* QBAssetsViewController.m */; }; + 6B4DE1332C6E3415912E2723AD0C8428 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = CAF5F2FA5C5764EF3607ECC2A748C3C3 /* ImageCropPicker.m */; }; + 6B522302A9BF66638B95BB21EF10F035 /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = FA53F83EF0A612EC38E2E05D7E8CE4C1 /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B690A1AD450BC998489A93D3DB119FB /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D3DCC1AD245F69E36A43A50165A6FA3 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B75ECCFA3B577DB9E1F6D338589E037 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 48CD830F7E24DD3BD7BF4A528CBACE50 /* Pods-RocketChatRN-dummy.m */; }; + 6B8166A0AE5399CD4226570B33A7CA8B /* RCTVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 67663D2955741E4F28AFDA315570F634 /* RCTVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B987FEE83345F7C546FC3C8F4039225 /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 94AFDE44ED262464B51A211686DAF1FF /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BB06CB7446BCBD59FD95F327DF028BF /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = 681DABDBBCF724F996BBBE7424640755 /* EXConstantsService.m */; }; + 6BF1678A17B31EB9AFCD005231DB87C0 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E2F8C08D8C2EEF5556A26474BBF6553E /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C22640B5700F54A8782D9863B890045 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 953D2A75134E13234152E4C9C3607B69 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 6C2ABB0CC7D37F2F79DEDFE475C15761 /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DA449C1FF61D3D80D76CB4852F13A02 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C313331E905110E725915EB39D5616D /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = C50F79225FBADCBE2EBB3B2E6528FFFC /* predictor_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6C40A4899FC99FEFCCCD3A8DB32F7ADD /* RTCRtpSender.h in Headers */ = {isa = PBXBuildFile; fileRef = ED706D302AC0048A975286FE023067F7 /* RTCRtpSender.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C50E9571D234D7FB4B03B8FDDBCDAD2 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F9998D0A4F27171329437B647B6ADB5 /* RCTTrackingAnimatedNode.m */; }; - 6C5FC117C832C9B663DE6F0087EB132B /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 02AE1E40D1648F6CEDA46218F10CFEDD /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C6F8AEC5EEB35E7732FD5687A93B5DD /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = C0E58145DBEBAE2879FFB9129FC52021 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C8A4C64FA432565E4D72C641396D7C0 /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = 41D0001F50410B45E4E336A028F1D7B9 /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CACC4EE9569138D757E6FD0DA148935 /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A1B88FD9D6C771307C9F1804DE04F464 /* zh-Hans.lproj */; }; - 6CB1E7C44AB0F063E70843E3CB4396E3 /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8954E18537096997A8D4FEBA753C6E66 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CF7CF2BB5125BB7D5A6F17E35F7DB4D /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A81435DAD7CD2A3348C7562AD5CF388 /* LNInterpolable.m */; }; - 6D053C28CD6E7D4A7A187C22D42DBDB4 /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9872016D9ED5AE2B10EFB1FCD2016A24 /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C50E9571D234D7FB4B03B8FDDBCDAD2 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F240CDA6B07F41B525AB438AAD13A06 /* RCTTrackingAnimatedNode.m */; }; + 6C59392078048DE794D920563A59AB98 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B724632B0346DA2227C3E5512C4C605 /* RNFetchBlobRequest.m */; }; + 6C697D051CA10AEDC9D9C676843997C4 /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A2269041F71E93DC3D5E4E62F1D9FC94 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C6F8AEC5EEB35E7732FD5687A93B5DD /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = C58C2D12BB4864EDCD37473B576FD877 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C8A4C64FA432565E4D72C641396D7C0 /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = DD5AC944A40B5905B0C61A7480154642 /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D0D12115FCBD55FAC3D02BEB5D8FC7D /* RNFirebaseAdMobRewardedVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 7878A0DFC4CAEB0223BB1438FC79CAA2 /* RNFirebaseAdMobRewardedVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6D6306B6CBB2485CF0C8E9A187068EE6 /* FIRErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = AE7754584504BFADAC0D66E9977C6076 /* FIRErrors.m */; }; 6D71A6D5CBB1BDEE1413910216E73651 /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 015CFA6D6C4F31AE8B86357E51479940 /* bit_writer_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6D88F77B9828718B58B8F3C1C5D7F8CB /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = A02C25A0F050BBA3C3192560B437738C /* GULApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D9BD88614888FED5C988CB1420F9CDB /* RNFirebaseFirestore.m in Sources */ = {isa = PBXBuildFile; fileRef = 51EC97EF3866E7F4A04B02D3C4B3ED13 /* RNFirebaseFirestore.m */; }; - 6E090D5A706D57BC43253E8393E17FA3 /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 773E7AF4488F669CAE4C15E126F53ADC /* RNNotifications.m */; }; + 6DDABA35028827F57A2C3549E2EF7699 /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = BD096CE739D36FD26696BB655E78E515 /* SDWebImageTransition.m */; }; 6E30F4324AE4B253140A26ECAEE5174F /* GDTDataFuture.h in Headers */ = {isa = PBXBuildFile; fileRef = 097529E01F948530BF995FED8E3C79CF /* GDTDataFuture.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E3400348EC1A3F1C9A6F2D25AD41F5C /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05342BC56BE1A25C5A2CF94DA78C646B /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6E355BA53F5FAFB7CB0F701DB1EC511E /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = F1FC2163B7A4DE0D30675A882B672C96 /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E3CC197DADDC170EBA29033A6EA3A27 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F3493479E8F6FE68508E0AE73EB96AD /* SDImageCachesManager.m */; }; - 6E40AB6CF0A80BACC8B38E08EA277FE3 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 41910E253079943F46673191BB21B1BC /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E4BF7852ABF14FA7AB8EA27DFA8AD13 /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B229A8868871E89E1F63762D51CBAF6D /* RCTInputAccessoryViewManager.m */; }; - 6E4F89D9463F896F4F5787ABCD6863EF /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 64D49FCE0BC019ACA1AD34E2A11742A8 /* FFFastImageViewManager.m */; }; - 6E55FBBBC6C40D0F914F54D9EA686E61 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EEF39F163209B9DBEEF20E98DE9CEFE /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E7E99C1CDF7906A6C971DEB2783C0D0 /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4B148D97AACF0F13E77EDD6FD6AB019A /* QBImagePicker.storyboard */; }; + 6E3400348EC1A3F1C9A6F2D25AD41F5C /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 775C5F2D9351588B42DE522662B0967E /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6E355BA53F5FAFB7CB0F701DB1EC511E /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = A7E0F0BD8AB70C2E21CB1571171730A2 /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E40AB6CF0A80BACC8B38E08EA277FE3 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 383A0666D89BB6A1BAB1CF830C29DD47 /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E4BF7852ABF14FA7AB8EA27DFA8AD13 /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 621E02A8CCE771D7BDA3F07506D55844 /* RCTInputAccessoryViewManager.m */; }; + 6E55FBBBC6C40D0F914F54D9EA686E61 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C7D03E05CA0E8ED4FF67412B79F3FD0 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E840F4C79CEEE460DDC5109D3B3AF45 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 363A044359A7D9BE5F2DB4F5D8992CEF /* QBAlbumsViewController.m */; }; + 6E96BE18C55878DCE42B68118CCD01A2 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B030661A74EAF5718EE0D23F398BD614 /* UMReactNativeAdapter-dummy.m */; }; 6E9BFAD5B692CACAAC407E94819C5C8E /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 77CD8049365D030C4FA73602E6D9D867 /* cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6EC711E581E00F8C6B5FF05427D713E9 /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F2E83C96A4B51E0F11FC2809BC51F06F /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EC711E581E00F8C6B5FF05427D713E9 /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A7A8D70217A1B4286D231AF4EDEABE3 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EFF33DF0738A75F1F72C5D212E3DC5A /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 970A7E2E51EEF752F257CCFBD7300F1D /* QBVideoIconView.m */; }; 6F4258691BBFBCBACDBEB1CE07169A3E /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = B74045C89CC6F81DF35F0CEF214DA46C /* huffman_encode_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6F4E8B663EB256B775EA2F06FC361A76 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 4525C0A2AA5C85FCFE53C72A95B015C4 /* rescaler_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6F8DFD8C580C2707F7B8F04ED1E9EDDC /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 351EC724329F620BF206EBDD54080720 /* RCTSinglelineTextInputViewManager.m */; }; - 7054AC994B724BCC6232E9DA86018A3F /* RTCVideoSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 26BD4EB705D121E99953420BC33E2420 /* RTCVideoSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 708413DCAA0BF70AA7E279ADC4B3712F /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = ABC469483E8FAB36B0D21EE3FC9D77CC /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 70AA17B10005054196FC7B841940EE9F /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 48866415580354FBF873DCF0211B4C84 /* SDImageTransformer.m */; }; - 70C118C7502A16753C746515F819E801 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A0E5BC1801769B8E6FC0F6F029AD07B /* React-jsinspector-dummy.m */; }; + 6F7C5EE26D693255BC5B592724D6FF4F /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = E9C66AC9E6FA17B555C70A4A4F082BBF /* SDImageGIFCoder.m */; }; + 6F8DFD8C580C2707F7B8F04ED1E9EDDC /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8478588275F89E9EC07658D73672AE58 /* RCTSinglelineTextInputViewManager.m */; }; + 7006385B1E3B6389DD585D0B8AE7704F /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 15709B7021248CAB27E66715397AA976 /* UIImage+ForceDecode.m */; }; + 702C00AE1B107ACBF6128D5EF20CBEF4 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 748A069A3B6E2BE85C0131B2C332FD28 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 702FADAC9C38649FC1946E4A265CED4E /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 503E24161AC2E60D69DB7F568F8B2DB2 /* KeyboardTrackingViewManager.m */; }; + 70760885BA69747C330E07E0BC80A28A /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DF74E94CF9E25426B544B546E1EAF7C /* SDWebImageOptionsProcessor.m */; }; + 708413DCAA0BF70AA7E279ADC4B3712F /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 24B435430E9823DD2A245F98A5CDD4D4 /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7085F1C8FC1607E4AD06A830D9FED5C9 /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BBF326A80F02EA2256F124D42EEF3805 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70BF09779782416B25D6D16203E6E1BA /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 837F5202C5BE4A271772D79E3CFB80F9 /* UIImageView+WebCache.m */; }; + 70C118C7502A16753C746515F819E801 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EAD578E85A94351DE5F2FEB268882E8 /* React-jsinspector-dummy.m */; }; 70E4098896C59ACF3FAA501809F6C871 /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 0E4EC6F922F53CA78F7C41B907CBB6AD /* cct.nanopb.c */; }; 70FAC5BC128DFF5CD80CBAB721D7365C /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = E023552C9F195B60B63937F4756FAEBF /* picture_csp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 70FE84936E8E6EF848F3FED392048F5F /* RTCVideoDecoderVP9.h in Headers */ = {isa = PBXBuildFile; fileRef = 66529168085BF13D1F96D56C10F5BA16 /* RTCVideoDecoderVP9.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7126887785F0E65DE73E10CCF22814E4 /* RNFirebasePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = D0B2AB376B2EA106097A34E061DF4E7E /* RNFirebasePerformance.m */; }; + 710D1AA1E1D6DE3590DCA2B1965678EA /* UIView+FindUIViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B7A16E82559E08D693B1F08FCBB279C1 /* UIView+FindUIViewController.m */; }; 71563A590B4A408CD38D24B12C2EB8D5 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 8240B7DB4D18AC85BB7F2FA4D6BC7A5F /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 715E673997FBCE338AA30BA752E0FDFE /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 632D89C1E5C1CB57B37DBC3D0B402B38 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 717BB18A43554B45B82D4E9A4C671EA6 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F7069FF59F1735B403A2682F109F68E /* UMModuleRegistry.m */; }; - 718ADFEB4FEE84763396F2E3E6A02AFD /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B51E59B8FBBA7D2DE0436F431295C36 /* RNSScreen.m */; }; - 71D34459E829DC30B72D6FD945312A9F /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B45B341F157B58B3C22B654E1CBD01D5 /* 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"; }; }; + 717BB18A43554B45B82D4E9A4C671EA6 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 23C544E37E1A83449B1F225E617FC7BE /* UMModuleRegistry.m */; }; + 71D34459E829DC30B72D6FD945312A9F /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05385F2CE79AB8A20ADB02576C44CF4E /* 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"; }; }; 71E0B0239A67555DE2C0B9F18E515634 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = DF6AA8BE3AB1DA509A0AF060FAAF600C /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71ED9E8A3725C6D8E61E6F212973EC2B /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 60A0EB8011D3CA4F519D993FE79606AD /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71E29FF4F88C4F2B8D054205D3F4A55B /* RNFirebaseAdMobInterstitial.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DFD8066C7991B46A4E2656B71CC0596 /* RNFirebaseAdMobInterstitial.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7219BDA57912F639EDE3430A5F74DA01 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 26FCF70259DA5F51659A6934E776DF61 /* quant_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 721CCB80FE551F890EBFFBD7B6BA80D0 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = EC5CC880858241D52588A211BE14BCDB /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72207AF9A2D03E8CA4210385C522F56A /* RCTImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F710808415E7C61FDC6A93C1FE487030 /* RCTImageViewManager.m */; }; + 721CCB80FE551F890EBFFBD7B6BA80D0 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = CE39A51FA230D244ABE587F602D16FEF /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72207AF9A2D03E8CA4210385C522F56A /* RCTImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BDE1539A4B971DDFECD344F5B03CBEA2 /* RCTImageViewManager.m */; }; 72238A727023831852BF9A8C9B83C49E /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2211B861FAD633539913BFC2A4B64C91 /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 722BF027563B1378E4BF629A83137812 /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = A0DF0347154937771DC147662FF18BC9 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 722BF027563B1378E4BF629A83137812 /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = F9FDD43A4EBA179107314B4D67768121 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 723874281B7102822C9263F25B4E9AD1 /* common_sse41.h in Headers */ = {isa = PBXBuildFile; fileRef = 8717BC3F9FF25783B4D59A22C606CB3F /* common_sse41.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 726FD782FDB88CDECAD9C1A7989222C2 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = B51E7D4A7044362FC9E5116437F6F839 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7271CE173FDE85DAAA8CFCAE786F7774 /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 062CE919492F26377744105E3A4BB0A8 /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 727A1D2F75A19383A02497FBFB07E918 /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A1271D4DCA0FBAF6EC0F4BA51E1D196B /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7281FD9F17AEE1BC32D94733E8702C03 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 757A21D63AF87B505D7A9F48C9C6F745 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72938CE2CF79C1AB1EFD9CB2D676968B /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = DCDEB8A064D1D65C5FC47C3049617644 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 726FD782FDB88CDECAD9C1A7989222C2 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EC008EDF98EEA027FFD0D31FA3FB39E /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7271CE173FDE85DAAA8CFCAE786F7774 /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EF47FA061198F479E947CF198973DAC /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 727E906A58726A46D1633DB73CD9044F /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 230FE4A7FB3854BA37021B5666853F47 /* 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"; }; }; + 7281FD9F17AEE1BC32D94733E8702C03 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = D3F7A49D41EA1323739A8EEDF655D070 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72938CE2CF79C1AB1EFD9CB2D676968B /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = D1D9F42749D286DA3C3D85F382605AEA /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; 72BDF84A85955FC2E2BE3DBE9395CEC2 /* FIRInstanceIDCheckinService.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BBBEF5EF37F45DA5CDDB9D9B6223086 /* FIRInstanceIDCheckinService.m */; }; - 72CC4FBD6E7376CFD8A4560F28630D37 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = CDA3E71057426F69B44429BE6174D6CE /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72C0977F19EC7A8272376183490A9D50 /* RCTImageStoreManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E66BDC5F5859B5A17D0C6EC5E12EDFA2 /* 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"; }; }; 7319A3F06113062284F479942B40FC7D /* GDTTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 081D39420EF7BAE6DC243828439B9AFB /* GDTTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7330EDA8FFE2FFB6108BD38FD271465B /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = F6CB18E81EB5BBC1BA963619DEF82FB7 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7336BBE6C5D3FF126F082E3BB2D50C4D /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 94BC3376C99D8F33754A6486074CD731 /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 733DAF810B3050C9DCA127822580866A /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A1A7607FB0F59CB4D9CA4137D10A849 /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7330EDA8FFE2FFB6108BD38FD271465B /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BE7E30C650EE8CD55EB0738623C80CB /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7351B6E93BF34663CA0551A948647BC6 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE60334F434C035C97EEDC5C4FFB0B66 /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 736E35BAFB0071DECDA8619C52CD5A34 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = DFFC075B703E0F2D713B87FFD68C01EE /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 736E35BAFB0071DECDA8619C52CD5A34 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4449535CB23CB4DB2505514C5766F3E6 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73A9E454F466B065C3411F127647301F /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F45C0F33507F57DFFAD844BE18EA83A5 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 73BC222F96DC7059E988EC0D2EB7779C /* GoogleDataTransport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4612629D5516E4E170C410A4783836B7 /* GoogleDataTransport-dummy.m */; }; - 73C40A83129D4A39779C47D6F3831BFC /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 59D390ADFA929F123753582B55482667 /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73C40A83129D4A39779C47D6F3831BFC /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 83B7ACCC6F5CE0782C08320AC04EC886 /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; 73E56E4F2078B208F760010D1C081DD5 /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D3C2F73173E59C8227EDD293E235921 /* picture_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 73F2057C0D8B55FD49B327219140E73D /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 20FB00CC42A13FDD2A59B0BE7F7B1CA8 /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 741A12B997EF965E34AEAFBA94A51CDE /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1995C7EA2F0EFFDC567AED56055A0EDF /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 743B2CEDDBD3E20063924A3A069585AA /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 37AABEEC03D5F4C92AEA714FD735CD95 /* RCTBaseTextInputView.m */; }; - 7444A40B1B537F90C7C63E07F94D1518 /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = E14F6825C0F43B512C03F5A3139C49E8 /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74549267BFEFF05E61F6131068DCD5FB /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A5627F36C89EA4E324B594B82049CCEF /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 747528194EA554B8A2DCD66DA63D1541 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = F1FCB34252FEB2D78E17CB7FA3B031FF /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74D5A67AF1B5CD8D5F70D4B21B377940 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = E46B7F615951CA4250249F381CEC40AB /* BugsnagCollections.m */; }; - 74DEA86A42BAC81C3088F2E37B426E7A /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BD13850CAD53003BB20DE1F2BF1826D /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74E6B1A9117E10D900B596C8D8769C40 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B55ADC2A5496582F8AFC444AD38F7667 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 754DCA27E4198FA5758C7440843FE864 /* RNFirebaseLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = 348E429E541699FFC77CE6883744854A /* RNFirebaseLinks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 91361E707B9D5FBA8ABFB6DF0D51F6E7 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 741A12B997EF965E34AEAFBA94A51CDE /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA60099AF92CE1A9777F8B7CE2C36B4E /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 742AC97756135940B461FAC35465A702 /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 68A0586193EAAA0FDA5689FA78A48F49 /* REABlockNode.m */; }; + 743B2CEDDBD3E20063924A3A069585AA /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FDC36111855918B2B2EC72F82BB034C /* RCTBaseTextInputView.m */; }; + 7444A40B1B537F90C7C63E07F94D1518 /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 57C5AE81E490D8342312D188A1807F15 /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74549267BFEFF05E61F6131068DCD5FB /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 39720CF863C5D962B6BE9C4B0368C228 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 745908BE4109479FBBF9516820E116C5 /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = DF6A03876D41F9E85AD044DDB6F458A4 /* SDImageCoder.m */; }; + 747528194EA554B8A2DCD66DA63D1541 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = A296CB89D4EE0255ED764BCB23D25DD1 /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74D5A67AF1B5CD8D5F70D4B21B377940 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CB45FDF492ADF176D4CA9E7F079EE58 /* BugsnagCollections.m */; }; + 74E6B1A9117E10D900B596C8D8769C40 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A110981EFF71ADB3EEC0316A2294F887 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 750445F46773F685888B491894342E73 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 1108C4EAFDDFA4429E0A2F9BB6E06B44 /* UIImage+Resize.m */; }; + 7522F353E44CF3FE87017A8B9D69BCE3 /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4289A253D51A77E57E304ABD9B76AB59 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 61291D7351199DFFA919257072AE176A /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7570106BF161102128638495CAE72BD2 /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A07617C23A5A8F43832309D7931CD65 /* GULSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75C9CAE694A51DAFA1BAB1925F3D92C4 /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DFCC2AFA198C5122CF36CF241F59838 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7671DE80D363A885CCD01409AE9AB7E8 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = AFC9197BEA9A6CD03FDE80F6B71E451D /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76966825AFAC7780BEC02DDD768998DE /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DB0BA7FE57D86BCAE4AFE13789C90A2 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76AF9F9853821414CBBAF755E1EE9634 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 29456E71E5CA6F0D9A1BC45AC249B438 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76966825AFAC7780BEC02DDD768998DE /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = F80E9BD884241B5FE43821701D338F29 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76A27195FF3550B798942D53EA975E3F /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 914FDDA6D6F17E08C72950ECA22FA6D5 /* REAStyleNode.m */; }; + 76AF9F9853821414CBBAF755E1EE9634 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 04C7F7E550A95A300EA10E222112848F /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76D1C4D23092C8C69F0FB8B8A8C0F5B0 /* GDTPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 260536C3F1F5B0F24E9A959B906D07A0 /* GDTPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76F10CB96CF716082D34A52B2D7C1ABC /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 28A8445B45ADDD0D98A9B455A3D4A6D5 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 770616B87C5433432ACC19B941AADCB3 /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C2D3167765BDE5DFEF39D55466493C8 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76F10CB96CF716082D34A52B2D7C1ABC /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BB084FDA0E48D4C1D390A3924DA2D89 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 770616B87C5433432ACC19B941AADCB3 /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CC5C24EC9634242BDEBA62DCEB0821F /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 770F6A0BBA21C9FD5198F2B515D23673 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F3EB3CCAC800B73FCAABD2AB3CC8D66 /* types.h */; settings = {ATTRIBUTES = (Project, ); }; }; 773DF3823FEB72512772C62E4829E473 /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = D1177991A497DFD1BC445CBC02CA0241 /* GULAppDelegateSwizzler.m */; }; - 773FEBE5BE25C0B804379C17F12165B7 /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 6E8BD3B09A237ECDC94F116B47E18C2F /* BSG_KSMach_Arm.c */; }; + 773FEBE5BE25C0B804379C17F12165B7 /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = DDF536DF4758AB8D249D4010CB726CC2 /* BSG_KSMach_Arm.c */; }; 7767C0E3952BBC08D1308CF4E06820F4 /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 54133D9F4117665869466A5C369D41FC /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 777E12965D6624DCF1FDFB8F5C558CFE /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = B94A3145CB73779AAD6D1D47F0697C22 /* RNNotificationsStore.m */; }; - 77C74C9B2AF8379451AF689E364BE9A5 /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ECABA3C58DE70B76E43260813CBBCB78 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 784D5F9ACBF50B1E59454468C7289AC5 /* RNFirebaseMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C719A5D3B0E18AA0BBBFC3A6C0CCC94 /* RNFirebaseMessaging.m */; }; + 77C74C9B2AF8379451AF689E364BE9A5 /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E0D15A4C59B58AC5E989AC80120575B6 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7817EA94446118E43703CDB79B57C038 /* RNCSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = C209BB66E2E2B1D2C8C1D3708E183AAA /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 783EF426619838F0FD3FB53C3F501CAD /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B59CC1BAA4BFC5DB2D00452E5713ADB /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 785991A68E98C37DE3C394FCDC94C615 /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = F0FADC95915A678FB195C2730B7CBF4E /* filters_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 7879D11A9D370629FCD0CC08EDE65BC6 /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 38E79CEB859E6D1C7768634265DC993F /* RNCSafeAreaViewManager.m */; }; 7882A0C218AB456334FBE9D8B43C6D4C /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = D395A41DFE691263EFBD73A036326E1D /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - 788CAC1A3BC906B09CCFCF563D9FC745 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DD319BCE7393201FBF4C301547141771 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78BF1F947D28284C6C5B06636B83AEF7 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B7CC60875E6C101D016CB03063CBD2D /* EXAudioRecordingPermissionRequester.m */; }; - 78C7BE01307B56D8E27C8D4B623C74F0 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 10E958DE589DACD25599EE347FAEAC1A /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 788CE2762909EB513B02A469D8AB58FC /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 85E8965240E870A33B8E5ABF719BB4E8 /* REAEventNode.m */; }; + 78B94C146C412FBFD166AE49ABD15B60 /* RNFirebaseAdMob.h in Headers */ = {isa = PBXBuildFile; fileRef = A356977D978F70519D2B726F6CA2BFDD /* RNFirebaseAdMob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78BF1F947D28284C6C5B06636B83AEF7 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 68CBA4578C7148CD3AFB7735BCABCFB7 /* EXAudioRecordingPermissionRequester.m */; }; + 78C7BE01307B56D8E27C8D4B623C74F0 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E4C6A6EB5AFDE1CD3685A958B4E98A1 /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; 78CEFE0EA22D795E0505D916879037DB /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = D3FF10070C419D99AD4D822D3AAEC58E /* FIRComponentType.m */; }; - 78D7B53A0B50B238FB009333E470E5B3 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = A7D9EE39E5652C9C655C895949EC4F3F /* UIResponder+FirstResponder.m */; }; - 78F5673FB2E5D7BBE1FE9F0EC7C1D9B8 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E68B3569129D84BAD2D1D54327248904 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 793686E6F8F9D34CE66F6FD40B0AD062 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A0EB7E0F161D656A9FCBD4D8F2D82DB9 /* ReactCommon-dummy.m */; }; - 79408783455312BF09818A9821A0E821 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = A8409E0D848A65CD708D222A71A51347 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78F5673FB2E5D7BBE1FE9F0EC7C1D9B8 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 853F8F5BA89A980C0FFC570294958EEB /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79299080371B416104CF984C70D6EB23 /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FB2F527D5960511EC99FE1E634D8589C /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 793686E6F8F9D34CE66F6FD40B0AD062 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 16D8618D47B0D1DDCE5EE7A13529C47A /* ReactCommon-dummy.m */; }; + 79408783455312BF09818A9821A0E821 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D2026EF7F002044FF86490EDE632AA8 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7956F82E4FF2E7C95F619C7D46C46EC6 /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = 11A45F09153174F9C31B423F50E5CCF6 /* demux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 797DD49F88C7649EE8E4BDB9DE7FC7CB /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A8DCA5E7B4E4BB37A7FE47EA6FD5E788 /* RCTModuloAnimatedNode.m */; }; - 79B1AF5209EF8B1EE021B49C45A18DC4 /* CGGeometry+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 667BD2DD8232F3B014648070F87D419C /* CGGeometry+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79BC92FFF2F81EE004B98203FB133D95 /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FB7A9AFB2ACE00A1881442273623E90 /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79D28003D1DE5426C80BEEDDB83BF662 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = D4E04526AB5854DEF94FD076367D04EC /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79737FB10F0AE7E3362406822FB93125 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E0173234F52D540979F8C3F93C302BF9 /* REAConcatNode.m */; }; + 797DD49F88C7649EE8E4BDB9DE7FC7CB /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DCA8F72E600DEB62A52E063C1F79509D /* RCTModuloAnimatedNode.m */; }; + 79AFA010B81BF7B09AD16C1FA5FF89D0 /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 84405484AC1937B8E83364CE1E8C457E /* SDAsyncBlockOperation.m */; }; + 79CF67734B6FC4A68E93D15EAA40220E /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = C17AA84604C018DFF873285A00CC7074 /* REATransitionValues.m */; }; + 79D6BCACE308123623DCEDDC3C0657A7 /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = 69295757F6021A84ED2DFD60E89869D3 /* LNInterpolable.m */; }; 79D771190DC28CC5FA02B46AAA902880 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = CF8EFCA224A8A78EE4E46873DD9DE78E /* token_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 79DE97738CF079179CC4FD917A6BF032 /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = DF6A03876D41F9E85AD044DDB6F458A4 /* SDImageCoder.m */; }; - 7A811D78E1C0BDF618A788391D1EDB9C /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = B19B88AF805393DCF3D19841EB4727DE /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79FD2FCCEDDFE4D9D2A72C10CFFADBAC /* SDImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 8454C6D668F7BD2E0332A9BDA56550F6 /* SDImageWebPCoder.m */; }; + 7A811D78E1C0BDF618A788391D1EDB9C /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = AD4A6ABAD1BCA6E2AB7AF8AD882DEE2E /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A907775D8693790C443C198381D1025 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 27DAA7F9EA8682CF9704FE1CAFDDC2F9 /* webp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7AF108C4C97213E485D935BC53D272B4 /* RTCSSLAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 99C8458C6DA7B45E5631DCADB8208566 /* RTCSSLAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AF24937D7341C2A66D668D181E52E4B /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A279F1B542DE104E59383DE13AF1BF8F /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7B14E77AABC5F26A5B4DCE1962254933 /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 50252D537D48D9D7C2325EC5E98BD584 /* RCTTextAttributes.m */; }; - 7B1ACF015C0596D4C32457CF4A4588E8 /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = A7927F6FB82A8D8187C65539C8543078 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B55C57DA5E1D5ACA52260D3029AD5E7 /* RCTFileRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DF1A6D5E96C959D1115FD4F7297B0B91 /* RCTFileRequestHandler.m */; }; - 7B80BB9709BB2CF9B1F4746EFDDE6110 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4ADD4B3AE18C6A914C90C761F0A7027D /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7B98535A8C22F503BC7B0AC71AD79763 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = AF8133FBB15F2A5100127A7851F56135 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BB478A4CD99ADD3311CC7FE9BA90C2F /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C2B2A2F2F71687AA956FAE4982B55903 /* UMReactFontManager.m */; }; - 7BC5D031DAE944FEB8B8592C0ECB8254 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DA56485C935BBB20C05FCF19C991703 /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7C0A72C50DDCD23F71299525758DC225 /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = E212B2434BCA31E99F01A9D8A6ABA96A /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C0E098EFE7EB53DACA3FA5E93BF77F4 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1C1BE7BAC6B10A14CFE2008278BEA3F1 /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7C1D1C7794BB256107A6242FAC286FFF /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 00917972F2110A0DF17639983D92518C /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C27D668D6EE76087CFD755C4C65F1B7 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 068CE9D54301DAF6848DEB439320B4ED /* QBAssetsViewController.m */; }; - 7C356A6E1AD91EFA427CE11B30E8DE32 /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = 81ED6A414B8E02B39CC67553BB9F452C /* SDInternalMacros.m */; }; - 7C35F92C9ED2EB78D1C4BE25A0BBE95B /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0852B3F23BF2CCC5942464F363AA829D /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C8004F81A305CA2342DAC5139DD5E62 /* RNFirebaseDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = EDA00E8DA0AF10098066249FCBF72581 /* RNFirebaseDatabaseReference.m */; }; + 7A9957A725425AA5E6530263A7653A4B /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A52E170FB2F9F5EDA285B07188EC6887 /* react-native-notifications-dummy.m */; }; + 7AF24937D7341C2A66D668D181E52E4B /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C8FD51F23BEDBCAE09AE95284EA42C6 /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7B071B33D51B9356323BAF92F719650D /* RNCUIWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E2399054B0E4B1837BAAE26A4F956D5 /* RNCUIWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B14E77AABC5F26A5B4DCE1962254933 /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = C37CCC986F14F3787DD4306646D2EEB8 /* RCTTextAttributes.m */; }; + 7B1ACF015C0596D4C32457CF4A4588E8 /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EF4D7E123638224D0B51EBBA8963165 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B55C57DA5E1D5ACA52260D3029AD5E7 /* RCTFileRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FE29714349EBC1C8B0B2E825A519ABA /* RCTFileRequestHandler.m */; }; + 7B6D7E96FAE6733EB092F5A509AA7559 /* RCTVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BF2669F34E05E5C395801C5A9CACFA9F /* RCTVideoPlayerViewController.m */; }; + 7B80BB9709BB2CF9B1F4746EFDDE6110 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5846A5D53C266A75875A578049E04E0C /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7B98535A8C22F503BC7B0AC71AD79763 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = B6E097A77CACC8B14A962C736C6F7DC0 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BC5D031DAE944FEB8B8592C0ECB8254 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = D518267F621AABCE1AEEA5E4D96B0F12 /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7C0A72C50DDCD23F71299525758DC225 /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = 98756B359767BE27BD0358E2486D2402 /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C0E098EFE7EB53DACA3FA5E93BF77F4 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 27CB8C427E5B72F714A527AAD9246B11 /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7C1D1C7794BB256107A6242FAC286FFF /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FC02024978E9CA2B7007226DF9BC8B07 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C87A0BA4406932C036C25C471937D6D /* GDTRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = 50101F492CFE7EB14B22368701DA6D02 /* GDTRegistrar.m */; }; 7C9959418FC8DEFE5344262BE5E14C57 /* GDTEventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 12079D4841A499533F333EBD2126D6A5 /* GDTEventTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C9F0F588A7354BB1EB8A568061BDD19 /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = F2D58A1385CFCB5147D88A4CFFF451D3 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CC70440A76A2C6E9F08A1C75BCE5503 /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 68052A294A6D9A870EEA319286B42172 /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CC8556D44DC05010EB50BF43883B967 /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = CC82AC4D3188CAC47F92BD901916EB3F /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C9F0F588A7354BB1EB8A568061BDD19 /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BEAFC047896210B100169A94079FC25 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CA1772E3EAAAA1C9B8FB09B9EB4D5D3 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D57C5E0D20774414E41F9C226F8B089 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CB27A19EF8D431CC03C9CE96195265C /* RTCMTLVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8196CE0F013D59D198A59D107C34807D /* RTCMTLVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CC70440A76A2C6E9F08A1C75BCE5503 /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 430FAEE37CB6FC021358D4C4277397B7 /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CC8556D44DC05010EB50BF43883B967 /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 69C3CC4A484D265A4AEA1BA14674813C /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CCB018908CDF129172550CBCBFE566D /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = F3BDB3BC30F12E913EE97723A962C451 /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CF092863CB7B6F7BA75E8B05587746A /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E63E1E88A927C1D9DF91057F3E2DF75 /* READebugNode.m */; }; 7D0FEEC462C260D07B9020311037887A /* FIRInstanceIDKeyPairStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D79D9AA154EA96EEBA66E477BF5C078 /* FIRInstanceIDKeyPairStore.m */; }; - 7D194CF9568027FE9D8F64D92AC103C7 /* SDImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 8454C6D668F7BD2E0332A9BDA56550F6 /* SDImageWebPCoder.m */; }; - 7D3AA7A70DA7DDCE7FC0B4238C9DD447 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5827FBD292A7B6B9D9D09650FB0B7754 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D819301BFE77D37A00BAAE737F55116 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C107A84188D82433218814A0E8BEC5C /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E0089C6834F13618E371CDBF21ECFDB /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = F8320C6F9D0460C60304F4EAD677FB95 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E7124056E5C06DD2D8BEC1926598CD8 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = A78D12751FF5DF3C741701E9E5013CD0 /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D3AA7A70DA7DDCE7FC0B4238C9DD447 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 37E1864EE0814F3473533188E1B48FC2 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D4CE95391C5664E3400049575CC10C8 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 44E75BF06105F11906E395759D1B7F66 /* UIView+WebCache.m */; }; + 7D819301BFE77D37A00BAAE737F55116 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 71EF16C90769C6A6B938AC12AA400214 /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E0089C6834F13618E371CDBF21ECFDB /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = C9E0424E50A3012D7F6263A201E8C957 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E7124056E5C06DD2D8BEC1926598CD8 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = FA50A86BB5BC63C01E03B1EE93E5E963 /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7EF283AB71EC430A672EF05EDFAC61A9 /* FIRInstanceIDTokenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DD0B1E28CFEAEDE4D379309B30800D2B /* FIRInstanceIDTokenManager.m */; }; - 7F1C43BC8C681386B14A43D86DD2987B /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 97BE7330857285D0663B48A8768584DA /* SDAnimatedImage.m */; }; - 7F6B1DE969ECB7758AD1F8339724ABED /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = DB08456747702BE39CD8803E11ECC1A2 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7F915702EDEFCC5EA2E1789A76B5E8C4 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 4041BF4FA2D93438B9C7A71F7CF3F4DF /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FC3D1DFCBF45F71109CE0CFD3B34BAA /* SDImageGIFCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E7212AAC51502DF738D2A093B0A145F /* SDImageGIFCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F2CBE5C49448337784F3F47091DF2AB /* RNFirebaseFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F89F26A34B724335D974518272834CA /* RNFirebaseFunctions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F53B050911BF480CCE8838E0529058B /* NativeExpressComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F48DE3A5D6D619A6A2F5633222411D1 /* NativeExpressComponent.m */; }; + 7F6B1DE969ECB7758AD1F8339724ABED /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = AB81A377426BA316EA4B0473C0E2B276 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7F915702EDEFCC5EA2E1789A76B5E8C4 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DA225ADFC08E7BA3A023A5869183C39 /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7FDA2E290B7302CCD1F95EDA0B57AA51 /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 0822720AF0B66D3F1DCE5F03FAF7A2EE /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7FFE3E50F543939A64CFB94D5314A518 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = 270D7865FAF7BACAF1945F47F7F36D69 /* yuv.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8015AD1F6017BBBD6D2B2F7AF5A56630 /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C003927BED9B0875864595A388D43FF /* SDImageCachesManagerOperation.m */; }; - 803053E81096BDE4B074A94A935F84BA /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A63DE8A3379062D18CF30247E1CB042 /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 803E1940687F149D1C816AEB8868462E /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FF434B46706119411FA61825883242B /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8075DC731E37445F52255CAA3A228522 /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A1A02A4104B810AC0CF0B5DE179BC9E /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 803053E81096BDE4B074A94A935F84BA /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = FCF241689B409BA1AEDCA04357CE6637 /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8036266653E825685FDBEFB521DEDBCB /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 49C1F0D487D2C5C5224F6F55109DC4F1 /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8075DC731E37445F52255CAA3A228522 /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = AAEC73E51FE755C6D8131E5F0763D72C /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; 80AC5B0498F2D2CCEE4DEA1CA335C6A2 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0B98B838F454890B4210EEDEB4FB0FB0 /* enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 80F21A2AB9B29C62BF6D8A543147DA6B /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EFF26FBF25613C65417375496B5A684 /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 812E270BB7C579EE965F341B7933F3DC /* NativeExpressComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A85025A7F35F2E213BAF098AAFE06DC /* NativeExpressComponent.m */; }; - 8137F4B4E4C8DB968926C58ADEC3F896 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C1A75FDDDF0E5191D973435550A1D43B /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 80B866A62687B098C6110AC7674044D3 /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 655E7BA07A314B76CEFD1E46ADE069FE /* react-native-document-picker-dummy.m */; }; + 80C5B20198644D959E329F9825CB1059 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EFEC6AFA0FD6CFDDB6A7F67BECD0216 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 811235B35A41301ECD93CB42B7B4682B /* RTCDataChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 2620BB440055C702856DCB12E2D269B8 /* RTCDataChannel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81280D0F07540993A5D89B8C4B1A4559 /* RNFirebase.m in Sources */ = {isa = PBXBuildFile; fileRef = ACA988A2705A99F322CDF5F267D96658 /* RNFirebase.m */; }; + 812C046882DA68E9755B2CD5360305D7 /* RNFirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = AACD188B8847DF291AD28198CAFCCB5C /* RNFirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8137F4B4E4C8DB968926C58ADEC3F896 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84A416E1CEEB334471208B7C9D1D53B2 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 8182F2E263B427AA12C4AF390B885D17 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = A93F446AD7B620C126913D53D66C7C99 /* alphai_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81E847066AEEEFD5A93ABBB698F89CA4 /* RNFirebaseNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E9D98E671C391AA6ACA3CD80C82BB92 /* RNFirebaseNotifications.m */; }; - 822708633940172314602DF0134F63F3 /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D594F526CF6E386A6493F8062D99430 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82604B7ADAE3AE58493DD4DC52258BC1 /* JSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = A4E1C2F46C1D401692B96DCF26FE7F23 /* JSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 827146C90C978E49EEFB92000D067B59 /* RNFirebaseFirestoreDocumentReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 228757E2E77951E3C66ED6C9A23D1083 /* RNFirebaseFirestoreDocumentReference.m */; }; - 8290D0899E3D72166D1EB1C0DAAEA583 /* NSBezierPath+RoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = FCE7F753D100418B4F0A16876E5708DE /* NSBezierPath+RoundedCorners.m */; }; - 82B8D5F4A41602BBF90946E07B9F09A5 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BAC264C0D1E4AC72A9FA35D078D6312 /* SDWebImageManager.m */; }; + 81B3ECACF5B3FAE1F22BC792E4403333 /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 59E71DEE276ED052E4EA48DF3D8B82B9 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 822708633940172314602DF0134F63F3 /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C5D0B1E26192BAFC79DDEDDF5A11BEA /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 824551D5BAD59295029E27B9A70093C1 /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1542E51DBFB43DAFE233E3A9BB2DF524 /* rn-extensions-share-dummy.m */; }; + 82604B7ADAE3AE58493DD4DC52258BC1 /* JSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 00B5EBAA909399655E13F84F09ABB65D /* JSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 828C92E88CE108C7543E195B5B0862BD /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CE5605A2B52D2836D68F8BBDB58B1C2 /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 82F9B54A62E5D0DFDF2791B03C17993E /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = DD79AADB303B0977986710BC00250C8A /* bit_writer_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8300E2892C39F51ADA2B78FBF554160C /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 07D3DE767B9D147CC4E77CA01D1E2A8C /* RNPushKitEventListener.m */; }; - 832186AEEE8A6301F29EE2778DCA504E /* RNFirebaseInstanceId.h in Headers */ = {isa = PBXBuildFile; fileRef = F1EFC21480087690BD0D8C6047843BF1 /* RNFirebaseInstanceId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8316A4FB88627BB6EDF48C6240FB99C4 /* RTCRtpSender.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B16F16A8A8155FB0E670DE07E555915 /* RTCRtpSender.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83408F01EBA71440E6C97BDAC6DFD142 /* GDTUploadPackage.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AA86202C2FEEE33586E1C460F5EA749 /* GDTUploadPackage.m */; }; - 835E28E6AC8654393480EBE31B99BBFB /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 78B3B6AE784BADDD5D758437222C65CB /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83761E62E577F2305290E3E62A0B92A5 /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = 65A3F669B437D64C46731A571F815F4C /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8380136AB55273398BA56CF399200291 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = E0940ADE07D8CBA6B2FC95ADF0740055 /* SDWebImageDownloaderOperation.m */; }; + 835E28E6AC8654393480EBE31B99BBFB /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = A5DE7320F90848D843384F5FDFC19752 /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 83761E62E577F2305290E3E62A0B92A5 /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = BE93B899C253772825175374604B9224 /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; 838FC3FEE030FC85C632A5D99A7F80C5 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = 636B396301284754A0C275A5C8C6D19B /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8392D2B78CCAFDFF0BF01136BE4D4601 /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = BAB91F51218CD9E1189A982C836C982A /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8392D2B78CCAFDFF0BF01136BE4D4601 /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BB52A32742ED761DA76CEBE97ED18A2 /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83CBD6741F2817605776207A9D4EE8A6 /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 9DB568250FFAF8EDCED8C4C5C3756ECD /* lossless_enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 83D2C390DA0781291D0958C40AAB449F /* RSKImageCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C4D7FD9F2DCB559C2D75CE9217CA668 /* RSKImageCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 84003E317DFEEE51A73780169483DACB /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 68C5CE98BC85CE82C28A22C9EB015CAE /* GDTCCTUploader.m */; }; 841BD4293BD63E749D78D404D4E2718B /* FIRInstanceIDTokenFetchOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = DF4CA748C792A657820465D46282135C /* FIRInstanceIDTokenFetchOperation.m */; }; - 84567489B64D38C3949918A3BC2C7EFB /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B5D6FCFFBDA61485998DCAECF09BADD /* UMReactLogHandler.m */; }; 845A994AD06C3A97A7E1B733653C29E4 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 466AAC20CA13B094A23729F39FCE7B46 /* vp8l_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 848E360DEDAB6A5661F407BDF4257129 /* FIRInstanceIDBackupExcludedPlist.h in Headers */ = {isa = PBXBuildFile; fileRef = A8383AE4B85D593EDF8335F75E018DDC /* FIRInstanceIDBackupExcludedPlist.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85233251D8E6162F3BC0BBE816ACA76D /* EXCameraPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 86005D6419ECB39F0D79A272DEB26A5D /* EXCameraPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 856883661D0E61CBA3FE13895FDCF032 /* RCTAccessibilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 32A35499ECD9E27A86AFB49950BE9B92 /* RCTAccessibilityManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 857C450571C28E2C63C29DF17692E758 /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BE78F517CB60485F9C194F3F800EC3A /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 859B985A52815D5B3710FCC5292CE486 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FA8BE1C77A9C04D22CD0E48C13C95F1 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85233251D8E6162F3BC0BBE816ACA76D /* EXCameraPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = C4B661827E16398E09A42FB39A99CAC1 /* EXCameraPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 856883661D0E61CBA3FE13895FDCF032 /* RCTAccessibilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 841A0C9988820216A7F53DE45B312417 /* RCTAccessibilityManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 857C450571C28E2C63C29DF17692E758 /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = D68D5FA26C31018142C8B1561C2C016C /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 859B985A52815D5B3710FCC5292CE486 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 6932E428340E10D46E9AE22CEE1C33A4 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 85C2EC99B56CFD98C2CCC5F32FA58F0A /* FIRInstanceIDKeyPair.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CE7C17AF0DABC49445CE80EBA378574 /* FIRInstanceIDKeyPair.m */; }; - 8602CCD0C12D4FD780963C9E743D19B3 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C1E4B4335F14E33F3FDE9C641C2237 /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8619C76EE9C70B2C7B1A34946ABE8049 /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DFE376C1EEA06E6D124C9CD593D2B29E /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8626A1CFC0742525F9CFF31AFFA90D09 /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 52CFC8319E55A485B1CFA0F4F6657FD0 /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8602CCD0C12D4FD780963C9E743D19B3 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D35C46F3C4D2A2C913E985B6DC331EE8 /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8619C76EE9C70B2C7B1A34946ABE8049 /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 258B401F49795B5516F76F11B529A247 /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 861AD5FADB4318A970D0B355F05F1504 /* QBImagePickerController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 302669C528EB41EE070FE1C234C7D7D4 /* QBImagePickerController-dummy.m */; }; + 8626A1CFC0742525F9CFF31AFFA90D09 /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = ADDBFF7060BE74FD5948ECC3794E84F9 /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8637928C8084799D8987A22308A40B37 /* RTCAudioTrack.h in Headers */ = {isa = PBXBuildFile; fileRef = 714F8966B0022C25EFB19C8121C8A1AE /* RTCAudioTrack.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8649A76A297D2E21447A67155DF34A79 /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 13BBC2A6239557362F341AD5F1BF62A8 /* rescaler_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 866C0CCA1929E5DB05B40CE5564DDB3E /* RCTImageStoreManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9063165C93B843CF16C1945AA3DB42CB /* 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"; }; }; - 867BF4180E86B2C5639CA928E0621152 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 840BD5098C73C7B81F7154F994384FB0 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86895B29F6437357E34F336C11FE57EA /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 42473D7B6315F204506E7D10817318AE /* REAConcatNode.m */; }; - 8693629097C6317357D73FBBC11B68DB /* EXUserNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DBEFBE3BE1476688DDA1ABBF2F7916A /* EXUserNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86AD40358DDB91830D0A460517F0C1CC /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E8FAC6307468F60320136F1F3A70E464 /* RCTDivisionAnimatedNode.m */; }; - 86C2CB198936AC2FA3B2B21E0703A1ED /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 4094D81B29332EC52EB4A114E806C8EA /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8664D8B1FA54FD899589F9F5F35EA0C6 /* RNFirebaseAdMobBannerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DC5D55CF69CD3E09C5335B4D17E7BC00 /* RNFirebaseAdMobBannerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 867BF4180E86B2C5639CA928E0621152 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 6903BA9656FA1FDA362025E8D4A82097 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8693629097C6317357D73FBBC11B68DB /* EXUserNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BFE0339FC1076B393F8B6AA933B3402 /* EXUserNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86A23BD529539188DAE159FF2D8B827D /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = A3AE96A6C5ED8CD28D8F9C82C8CAD319 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86AD40358DDB91830D0A460517F0C1CC /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C877FDEA02D041D94AE39EA4AC49B00E /* RCTDivisionAnimatedNode.m */; }; + 86C2CB198936AC2FA3B2B21E0703A1ED /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 78C3C493F439F70521EF694EB3035D60 /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; 86DAEF8820731D1C15928424330BA767 /* upsampling_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 7289C8A37DAFE930F15415D6FF046AC5 /* upsampling_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 86E13E7B5BCB2E1F8295C5A07406405B /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DBEA20B2096FC481FD953A7C7B9B4C73 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86E5D60C7FFF21EDED11E21AD50A0DC6 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = E3E2EB753553604B5574D4108338A793 /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 86F8434EB8DE15DF6DEC783682DC831E /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = B866269727FE8475702C65D5D6A459EE /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87009DD74CA4C1C0163A8EE3A26726FE /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 84405484AC1937B8E83364CE1E8C457E /* SDAsyncBlockOperation.m */; }; - 878158ED23BDF684A716C90F2C6309BF /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A2AE3843922E718F0CA15A9E0C542F2D /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 879AF62492BB818164FB39048C9533EB /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 817EFFEB546086A172FEE639D26D7DEC /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 86E13E7B5BCB2E1F8295C5A07406405B /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A3F8F0FCC5B1C0A31483BE6787C7D940 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86E5D60C7FFF21EDED11E21AD50A0DC6 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 84CF16E9D2A4A246B3CE672C6BDC2686 /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 86F8434EB8DE15DF6DEC783682DC831E /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = B699A1175DE352460EF2B0B142E1298A /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 879AF62492BB818164FB39048C9533EB /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C34ABEBDE4D8492B795DDD2CA747380D /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 87A37B963F458EC671B112D8B216C59E /* picture_psnr_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 532A3924AE2B062FC4E6FAD7612CB25C /* picture_psnr_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 87A62425770DFDA0D6DDE71681E5DCA3 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D5B4A7C41A1AD10FE39999F4AE5BAC4 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87AF411D0D7BC2530CE0D12B674E60A6 /* SDImageAPNGCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = A3DBD6D4B64099330ACBBF9E0560ECDA /* SDImageAPNGCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87A62425770DFDA0D6DDE71681E5DCA3 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D40F6A39BDA61424A9DDD375D53593B /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87B47351516A3CDD135C525A6A683C35 /* SDImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E584394E9D48C593E4B7909B5016C90 /* SDImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 87C77CE28E3EF45AEFE750BB7575FFFC /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = BBF84FD0D965475766D25A1A9B273BEA /* muxedit.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 87D8BBF0064409F1D4F7E1F77121B8A2 /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BA6B140BF6627ECB1A97E9D21CF1B175 /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87FF7677BE6B422ACFD441FFEEAA1170 /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = 595BF48F06D1D9107E6563EE99FCFC18 /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 880B4DBE9A17E1C2EE6AE7EE57F17B86 /* UIImage+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = B4ED747092A1D20754551030B7A387CE /* UIImage+RSKImageCropper.m */; }; - 88214E5E2A114ADD3EE51DEAD80359E6 /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = C0B0D9A66B925A38ECB551B6EECA7B61 /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8829D5ABF0FA447F72266B8F78FD4478 /* RTCVideoCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = 074695E8C64F1E757B5174980557B465 /* RTCVideoCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88137405BDCA92DAD3DD33E8A7368EDD /* RNFirebaseDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D8CE0AD862A1AFF966B3FB620E011DC /* RNFirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88214E5E2A114ADD3EE51DEAD80359E6 /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = FCB906867341E043954FCACB47B1F999 /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; 882B46F5C2965C2DD4C1F4916EE5E1CF /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 73F3B335E56A3601DABA0FC0776BC8F9 /* FIRConfiguration.m */; }; - 884404D6B4E2B38BCF798BE9E4B5212C /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 313751F77B96E015612CE89641D98470 /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 887B19E94CE661A28C81A9A3CAC7A071 /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B812627CACF8DB5A9A6ECEF2B6BAFE /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88902F9738770E60153CDC8566F6D068 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A20A9F426CEE2F5DA1B66C3D6C9BAAE /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88902F9738770E60153CDC8566F6D068 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BF9B218C823C2D271138977982DD3210 /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88F20E46B225883D2B2A5457A006D8C9 /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = EA1D083FEE448CFEB52F774D6EC6F005 /* FIRAnalyticsConfiguration.m */; }; - 88FA13F1D8FA8BA39D35E071FC0A86AA /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D43C5BCAC7F99C5788577978B003C422 /* UMCore-dummy.m */; }; + 88FA13F1D8FA8BA39D35E071FC0A86AA /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 590D474B2C21D751DEFC6E01EAA6C8AD /* UMCore-dummy.m */; }; + 88FD78AE2126F86D1D08A12C917A2EA2 /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 29ADAE6C90F175E647FD94E4E13F786F /* REAModule.m */; }; 8930132E132D64934AF6AB53407AF4C0 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = 517AAB99067CE5090E7DA2368B77BE6E /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 89716308A515DC8796C6BEE0B1B84F9F /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A65FC483E3CEEB1485F55F67CD8811A /* react-native-orientation-locker-dummy.m */; }; - 898B86759EBBAA914DBD50CD1736B3CA /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = 879E71F60960AB44AB4A2A8F7A2618E5 /* RCTTextSelection.m */; }; - 89A5DDD772F5F5BC15BCC1F33D69CB2A /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 66CD69948C7F4149204906340EBB5ED0 /* FFFastImageSource.m */; }; + 8940E75F71586AC262E3C101AF8DEB53 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = A355BFFC5DB9F1BDF85A32D211C8ECDE /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89471DD9DFAFBF2E8502A47E8AFA7F2D /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 238FE67EDE346139DFEEEB5E6578B6C3 /* Orientation.m */; }; + 897F9F02A17FA8FB1DC221C47990E6AF /* BannerComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = FF75650F65D87DC6FF88532D8B457B9A /* BannerComponent.m */; }; + 898B86759EBBAA914DBD50CD1736B3CA /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A3D59CAD2355BFE231F5BC7D309BB2D /* RCTTextSelection.m */; }; 89B1C58AFE4D079F1775D9AE2589B02E /* GoogleDataTransportCCTSupport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 834AE62042083B620B37F4038109DB0E /* GoogleDataTransportCCTSupport-dummy.m */; }; - 89CA75060FE539EDBE97F3994A88E83C /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 75567E55DDA722B80AE4B76A5CB50B55 /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89CA75060FE539EDBE97F3994A88E83C /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 12049F88E61618B162C3F7792912F53A /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 89CDAEA204DA1341B986C199502BC4F0 /* FIRInstanceID.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DAC87828ACF9D8AE537F72FF4A4F57E /* FIRInstanceID.m */; }; - 89D3C452A34A703CA62770C2A9ACBD0C /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D188B3A994EF48492D596334DAB83E1 /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 89D7D74CD55EA011F6710173BC8B653E /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B66627996CBB958C82EA874E48CA93BC /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A7E5F8D87A28E42B2C57B5A506240F1 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C3048BA25D9C7F05C9E07E5B74D946A /* QBSlomoIconView.m */; }; - 8A854E07076B55A5DF71A9116BCB4B46 /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 74E21148DF38CF77BFB90D2B15301B85 /* RNUserDefaults.m */; }; + 89D3C452A34A703CA62770C2A9ACBD0C /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = D56B003B00CF06FDF9A497D77B0EEDC7 /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89D7D74CD55EA011F6710173BC8B653E /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C14A5062CC867D03815B2265B53E7E5E /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A885CA9B621D1B647CE2A6E5365DE12 /* FIRInstanceIDTokenFetchOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 09C65D88BB93F4A0E524F9B5475F0FF4 /* FIRInstanceIDTokenFetchOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AA3113428ACBB1F73AFBE11898D9F53 /* JitsiMeetViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 46935949380002F57FC1F47D09E7E074 /* JitsiMeetViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AB9F935C4A7BB1ECCE78959FB6D08BE /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = AF3F49AC7222558F70BF96377BABF58C /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AEDAB6C56143F3E1C0DECD71DED9F34 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C1D568902C1B68AB0BFC0BCF1F6A1A44 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B607A94E30E24C67C5166B4F09875A3 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 886232F4032E6259EBE730AE77517D3F /* RCTImageUtils.m */; }; - 8BAC915198C76060764432EC7D5D76A6 /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E48C528D89C280BD3AB34ECF081E506 /* SDWeakProxy.m */; }; - 8BBC06827C654B4FE81138B01A00F628 /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FD5C53F9420C953E97968EEC277D3F3 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BF25177F34DE2E55922A7CDB26D6725 /* WebRTC.h in Headers */ = {isa = PBXBuildFile; fileRef = 5649BC01BD083848350299D96C614D5E /* WebRTC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C155BF7EC9EC0C6DBFAF8482A797A91 /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = C568C9E312BB4CA565C2595AFB054FD4 /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C26C66BE52E4E52ADE666FB7506D039 /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = 9E24C028D631450C5BB0BC6181E012B0 /* BSG_KSMach.c */; }; + 8AEDAB6C56143F3E1C0DECD71DED9F34 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FBED8C2E11F36E422C722A4D52E7B5C /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B607A94E30E24C67C5166B4F09875A3 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F4FE60494185612D06775A177512938 /* RCTImageUtils.m */; }; + 8BBC06827C654B4FE81138B01A00F628 /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F090BE13F20793DFFACEF7AFEE442987 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C26C66BE52E4E52ADE666FB7506D039 /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C8316088184A89BF29CC5B7DB57B3B9 /* BSG_KSMach.c */; }; 8C3844F23E883CC4C3AFA8F54BAAAB69 /* GDTUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C13C29DE2089FADD1CD243A263A244D /* GDTUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C7A15FBAE7271D2AB49E08463F5BC95 /* EXContactsRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 70D53277BEB6F1FD7F8214279B63494D /* EXContactsRequester.m */; }; - 8CAB262D594C9CA4031D07B5DCF543D3 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = FCEA8442C0547AF1CC36C240A7D135E1 /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CC4A31DAE15C7A8F766DD6973D25032 /* RNFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = 17B13C774AB503B6312CDE26CBE9CA5F /* RNFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CCFAE8AD413F51A5E12D9BF2B2579E3 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = BF086C25B52612E2A5B9BEE973A32C47 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CD8228C936FD255CD294290118A29B6 /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 53ADBB31A8997EC58CC2A4D300371A98 /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CED141149EFFBAD701E9AAF21C0D03C /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = E9949FB7D742FB22FCA1B47A33AC492B /* UMUtilities.m */; }; - 8CF595FE626314CCFA783699D5A3AD36 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = E477EB4A4C992E646A28623B39AF83C7 /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8D220C34A63C202CC199E15B400F33E7 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2988B8EA02EA11C3A0953656A52D4A0B /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C441CE1112B71C027157B0B4634076A /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 90B7BEA5F009D938BF5F5F71F697E182 /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C4F376F739E89A46CCE0F967F7186BC /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A8CA3243355E388ECA7BC6845078189 /* RCTCustomKeyboardViewController.m */; }; + 8C527E904BFB1665987E6E4F74A43941 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 632D89C1E5C1CB57B37DBC3D0B402B38 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C7A15FBAE7271D2AB49E08463F5BC95 /* EXContactsRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = C9FB08E10264668CCE3268D50ECB2CBE /* EXContactsRequester.m */; }; + 8CAC181D3BCD54B1015A2AFB60308F4D /* RNFirebaseAdMobBannerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DB48D08D4C5DE12205EDBA56D9A5C5EE /* RNFirebaseAdMobBannerManager.m */; }; + 8CCFAE8AD413F51A5E12D9BF2B2579E3 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AD6434F0066D51DF829BA58F4EFEFF2 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CD8228C936FD255CD294290118A29B6 /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = A650C8652681E3C5CDF27E082D957EB4 /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CED141149EFFBAD701E9AAF21C0D03C /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 89F1EAE3BEFF77D4E4D61071E8192112 /* UMUtilities.m */; }; + 8CF595FE626314CCFA783699D5A3AD36 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 21038089BD01CF650CF1D6BB75EB5BCA /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8D220C34A63C202CC199E15B400F33E7 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B83CDCA7BE8BB67105ACC12019F5CC2 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8D8C90B91DB286AC93C129B102A9BFDA /* FIRInstanceIDCheckinService.h in Headers */ = {isa = PBXBuildFile; fileRef = BB5F2196F1F6A0EDEE597A6832009041 /* FIRInstanceIDCheckinService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D9F73FCA17EBC74DD034C437BF3EEA1 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A5330E8B9C4BCDB319455957A98B8D8F /* UMReactNativeAdapter-dummy.m */; }; - 8DB7844E4B975A1F958E512923CBA4F5 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = BEB60AC1AE5D6655DE9A4FD9F84B297D /* RNLongPressHandler.m */; }; - 8DCBFDC4834E63FCB883152F1F6B5312 /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DD54DCB986E15163233721E9EEB78F73 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E010A24AC0D9BA6D5A4A5CDE01AB82B /* RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = BFFE931B07A9A985A20E831637607803 /* RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E12F102AB2E9838DDE6962237785645 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6060F8FC98DC79960340C414B470DCC6 /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E412E8EFFF7AF9D9DE06F5741936067 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B45E38A956BC0C34EDCA95019C0E090 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E4CC3D37EE715B039C6809126E738B0 /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F20C525FE5B14C489A413BC154DE404 /* RCTInputAccessoryShadowView.m */; }; - 8EA3BAC84ED1357FF307A8573139EBCE /* RSKImageScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AC5E071A78F24A2A29B9B0D6BFEEAEF /* RSKImageScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DC2BFA747E27D7E62F16264FC19D063 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 577F3CEA612E64199FF56159EBE2DA0B /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E12F102AB2E9838DDE6962237785645 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A909E30365AD747E8B59F723B160C95 /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E412E8EFFF7AF9D9DE06F5741936067 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = F43EAFAEB8C9C31F3BDF9A39DF0FCFFB /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E4CC3D37EE715B039C6809126E738B0 /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = D3DCBB875E7F31DF611DD837CB4C9350 /* RCTInputAccessoryShadowView.m */; }; 8EE80AB91ADA3A9A2C6253A49BE3664D /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 32CC9D017DB6C7A3550D95D367BE7155 /* filters_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8F224476D1EBF85E0ED56DEABDB859CA /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = B847A379045027BB5863803B549968A4 /* UMModuleRegistryProvider.m */; }; + 8F224476D1EBF85E0ED56DEABDB859CA /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E41673C909C08709B97EEBC55CA72A2 /* UMModuleRegistryProvider.m */; }; 8F2FFF7829D53299777DCF5ADBD4E4F4 /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = AE9C522BECF62823BF32C1C310AEA94B /* syntax_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8F3B79F769C77B1242AD6920F841972E /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = A474ECFEB4E81748E6FFA85CFDEFE7CF /* vp8l_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8F3E78E2DB7AEB8C9FB6BFCDDE9C7089 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 25EF2FBD2D73E734BE8605878ADC7B10 /* bit_reader_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F467DF6B02968F89BEF4985911982D2 /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A3D63B612126AE138FA17F713BDDB8B /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F598BDDC89938BD5CD65EBBF63288DE /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 7181FFCDB07FE21BE0EE00B5DF442033 /* NSButton+WebCache.m */; }; - 8F6CB9E0DB86EEAD23B6D15AA3A1A546 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 29456E71E5CA6F0D9A1BC45AC249B438 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F8DF2AB391450AF3D2D985FE58263B4 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 20611BEADB31DCF071E90214DBE2CE55 /* UMViewManagerAdapter.m */; }; + 8F467DF6B02968F89BEF4985911982D2 /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 34CB8816E5B81DDD6A7DBD078039E80B /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F6CB9E0DB86EEAD23B6D15AA3A1A546 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 04C7F7E550A95A300EA10E222112848F /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F954BFA8C27E1B462B557A6C591B8EB /* FIRInstanceIDKeyPair.h in Headers */ = {isa = PBXBuildFile; fileRef = D21280F8727253B2C9655BF79BCCAC51 /* FIRInstanceIDKeyPair.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F95C811580055653F64AA077EBECEB0 /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CB3E79D22D106F3C4450980C3272322 /* vp8i_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F9B46ACE8331F537048C4F1D64DB2B3 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 337C91820DCF429BDF552DD61942B319 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8FE04A0459B6CACFE4ABBE0DE4743CA0 /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 860A8DB78BC5A5FBF3473CA31B3A10F9 /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90287943AB6D42E3BE7F894BF9DDF248 /* RTCVideoFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 883E1317B6A54AA5F1A5636AA294F53C /* RTCVideoFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F9B46ACE8331F537048C4F1D64DB2B3 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 0272CA1547397114B32AC9EA0F0F2EBF /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8FE04A0459B6CACFE4ABBE0DE4743CA0 /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E5039680E7D9FFB87016EDB262CBA55 /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 904EF2792735DA3A0377963CF5344EE1 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 621455A6189A6D813A2BF66B2FB2B919 /* SDWebImageDownloader.m */; }; 9058DE52F6CC41428189AEF7EF397B2C /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 19D604C2576BF318DD3980220AAAE424 /* random_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 907C49E950B2BA64EB3382E6235B4BFA /* RTCVideoRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9344AE9ADFE5AD5A00956E2CF06B2281 /* RTCVideoRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90891F4884E27C8201EE582CB7949F16 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = C4F52BE8C4C32DDDD82F9A4E0F1C97D7 /* lossless_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 909311DCD5AC14FA25CFC5F733A46BD9 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 783C6A2F05BA0C839F198CEC78F9CAD0 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 912C9C31F4DDC1C7A24089B645A5ADDF /* RNFirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = CA596E9C3B1274ADF019ACB51905326F /* RNFirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91446633BDBBF72BFFE0F45182D49D33 /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C400593276D21EC2C865491D1274841D /* EXFileSystemAssetLibraryHandler.m */; }; - 919CFEC7B6450ECF22844A35E0256B16 /* UIColor+HexString.h in Headers */ = {isa = PBXBuildFile; fileRef = E4F955CFBD57187BE53C9B28D12BCB5F /* UIColor+HexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91CE90410CE67344FD8186B34DA73AD1 /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AD1DB4D3A9AAB54F4AF5D59F857A062 /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 909311DCD5AC14FA25CFC5F733A46BD9 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = D063788FC833FCA78FF39E3EADB973B0 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91446633BDBBF72BFFE0F45182D49D33 /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 64ADA5A37C6C80A0E4627AC0385FF7DA /* EXFileSystemAssetLibraryHandler.m */; }; + 916D73A52FA1B267D625DD6FE9738F59 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 06F3E00F0148BA34E169ADA74D7E0DD9 /* RNLongPressHandler.m */; }; + 91CE90410CE67344FD8186B34DA73AD1 /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = DDBB81227D8F406C312DCEA9C812FB99 /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 91F98C0368F0FCC6306D4CA7B4CE4131 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 44C76917613733B052AA6184773C735F /* rescaler_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 91FD01CCAEB23BD7D2E398810DA2457A /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4879320CF6BE6C0D063B667FE9A18098 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9203BCD0B116F6976200251A5B486DEC /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 90C5F94C259D127985F5504AF6F1AC53 /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - 9218C8F7BEA79C4D782778F9F35203E7 /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C7987CBEE2E31983712A75CDE006A2 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9221EBFF705DEC82498E5FD3C8356E3E /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 62A1499BED17DB9F3F41D75009D9E620 /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 92240F46854CA8BBDC36758464E9CB46 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6F1436153B58436CB30D0D8DCF949A58 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9224A3884DD4CB825C7274874C350B68 /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = E96690B495455960F79E39571CF51FF2 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 923FF066BC581F2DD154E26A802290BF /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 485E068FB316247945A2F317A3D5F413 /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9258086C822B13C25DE00563EE085101 /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = C9D679CE046C913EAB6601E75F437777 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9218C8F7BEA79C4D782778F9F35203E7 /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 083240A48F5F633498F445DC5EA39E52 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9221EBFF705DEC82498E5FD3C8356E3E /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 657BCBBEE8A0A65B04A2205AD86978DC /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 92240F46854CA8BBDC36758464E9CB46 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5FEC669E3BD8C866C11286114FB510B /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9224A3884DD4CB825C7274874C350B68 /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 055D2EC1896D136A082351B73778FD2E /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9234559CD3C19B2CCC5E6E35AC8E6EF4 /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 9367F3F80FB4DA9DE9C2087A02487CCA /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; 926DCB75CDCA4224082A5557643B8340 /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = A2FC07DBC2305E98EC8F83EA5D42FE4F /* FIRLogger.m */; }; - 927064FC2115385FA31FD9F4FFC99E36 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = FC562846411B4AA70DBE8BCDB00D0CFA /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92B728E7535FC4E71B88CCF542D0F202 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = CE0C0E79F56FCD18A2B573D45426E2B7 /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92C47060A7FA2A54595556C87BBC5E08 /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 94A3367D6B7EC2F152005C37DE694F99 /* BugsnagFileStore.m */; }; - 92DEBEA9A386D7889CB3E74FC7704DA3 /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = 60F75C2B510F937A8D6A966D1DB9567F /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92F3DB9D5A0513868F3EF6B2D8A51C60 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B39C5CA19C1C193728E947F3C113B539 /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 930358F2C522A162E3A667DB2122A975 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = E3CB2E86953B06D0BC70EC78B4128E41 /* RCTNetworking.mm */; }; - 932C059F1E0DFDA1F7D192C2E8056114 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F62B220D58A201F449412D9D6D89F08 /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 927064FC2115385FA31FD9F4FFC99E36 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F67251E9C29873713656C6A8938E171 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92B728E7535FC4E71B88CCF542D0F202 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 9069BCB3F237CC52A98F1CD4752DD845 /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92C47060A7FA2A54595556C87BBC5E08 /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = DA6DAB4FCEF17B8113C896C04CB7A020 /* BugsnagFileStore.m */; }; + 92DEBEA9A386D7889CB3E74FC7704DA3 /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B015137E16FDE24F127142346BBF33A /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92F3DB9D5A0513868F3EF6B2D8A51C60 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4957DCF776385665BE1CA74C4C1D0F3B /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 930358F2C522A162E3A667DB2122A975 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = EEB803993C7891416F4F9E739C8CAC4B /* RCTNetworking.mm */; }; + 9324B5F7D5C79C133159F2D0BFE86D94 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 0758670A7E484A0C42277136C96B76F2 /* RNPushKitEventListener.m */; }; + 932C059F1E0DFDA1F7D192C2E8056114 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = F1D17E7B56514E79F11676629AB13EC4 /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; 932C306F1F748B77A388E1D22BFB051A /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D7C5FD4A2B413F2340C28CE67D1E39FD /* glog-dummy.m */; }; - 9345158D3817D800586341BC8FF90A52 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 3721E77C21FA3733E371C4BD0D42FDAB /* SDMemoryCache.m */; }; - 93CE32A20E5A7C1A793E1FB529882268 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 05FA73B7AD912E4AB625D716CB4D0797 /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93942B64443805E66FC19E382EBE6BEC /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = 81ED6A414B8E02B39CC67553BB9F452C /* SDInternalMacros.m */; }; + 93B16D78FDE6086CEB3336069148AF5D /* RNFirebaseInstanceId.m in Sources */ = {isa = PBXBuildFile; fileRef = AC927CC5D5DBA2EE28F31A2BE9E5B4ED /* RNFirebaseInstanceId.m */; }; + 93CE32A20E5A7C1A793E1FB529882268 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = E9F0B0D0B818BFFA969FEE61400A5B98 /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 93E3441ABB65B7C821BCDA662B2768FB /* FIRInstanceIDKeyPairUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B493F2A960542CBABCBA009D697382B /* FIRInstanceIDKeyPairUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 94013824F6693C27E33A308D811AA546 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4AD75E49E586BA3AC46DB981A0883F25 /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 9404963E6D9C501EDE2BCD5BC72FB37E /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C384724752D5B87BE1CEDC7D2F75D81 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9443D841371B81DDCEE8703241BA0BAC /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 5DAFCE1971931E9347AD180C001F8B3D /* RCTProfileTrampoline-x86_64.S */; }; - 944C86F14C0127649AE14497D7D8BA0A /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 712ED9A35982875967AA9DF2575653AB /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9404963E6D9C501EDE2BCD5BC72FB37E /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 675D575BC3EE510D8A1B018AABC11E10 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94102D4D4A27646284EB103746E379BA /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = ADDAE7B9267275AA800A5412D584638C /* UMModuleRegistryAdapter.m */; }; + 9443D841371B81DDCEE8703241BA0BAC /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = D724DB8C18F240D68DE0EED6767CF761 /* RCTProfileTrampoline-x86_64.S */; }; + 944C86F14C0127649AE14497D7D8BA0A /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = FE68A9C711BE0042E8ADE867539ACC62 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; 944FF9384860EA20586A25FE9FF6C62E /* FIRInstanceIDCheckinStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 97DA18D9EE387290D486E736823D7603 /* FIRInstanceIDCheckinStore.m */; }; - 94629AA299477F3F9E3ACD77E8AB0ECE /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 26401B6DCFA787B64E545ADF40CB2C26 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9520C4E8B3CAFB9B75AF6B13BE6EB60E /* RNFirebaseAdMobInterstitial.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A2DFD80C3997E0ABB7FFEF51C612BF7 /* RNFirebaseAdMobInterstitial.m */; }; - 954FAA11447755175B6B51D498CBF756 /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E95A35F60D69F40CFFA03284CCA52BF /* SDWebImageCacheKeyFilter.m */; }; - 954FE445339ECBB6E7129578A9ED98A1 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3C7D4AF74DA7A1D48531684DFCC1287F /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 94629AA299477F3F9E3ACD77E8AB0ECE /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = D6A27DC29862C40909025D3F43963B47 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94A1F2AAC597C0B0F4D10AB57823C7A8 /* UIApplication+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = B41EBDD1DB022AF9820E6B5214C69976 /* UIApplication+RSKImageCropper.m */; }; + 94FD8C55242CFC903DC3EB4EBDCADC13 /* RNCWKWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D5C217DC7786CC50A2634CEC5E4211A /* RNCWKWebView.m */; }; + 954FE445339ECBB6E7129578A9ED98A1 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1F4923AB50899980C9D097B503026412 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 95559824769C8A828EE38FBB74F3F973 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 77D4F80E797422D53F0251EDAED100C0 /* cpu.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 95F7FB66C4F21BB1779B050264EC5EB7 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = B87FA68E472648622BCFBBBB49B59E73 /* SDImageIOCoder.m */; }; 960BB6A747C122E41D0F93EEA6E0624C /* GDTTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 341248537B532E1C3BF8A28CEA019E6A /* GDTTransport.m */; }; + 962C1BC6D2697D2787C53886360DA2BA /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 71C363E37185BB4997E2F5DB99601DBA /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 964ABA3C96E97D837CF19EF6ADAC7E3F /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 0F8A7EF910DC8670B6204E30CB6D451E /* enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 96524DB391FA3D7058641F02E5B32F58 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FF0F846D3ED3A74F6BC6CC6B55D540C4 /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9683C31826946F3BF96B99A025D056FC /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EB7EB53901A20B1B293078861868CD7 /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96B4F4E21FCFAA146F6F5F35DC41CA71 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = CB998E12C45F314505BC27A76C415407 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96B98E1B9F5AB6BED217E29BAAF82FC8 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 59CAA48CCB157B840654CD64DE39DC0A /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96D1F45BCCAE2836A1FFFECE8571FF27 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = 54A1941CE328BA47B2753D09B05841F3 /* BugsnagHandledState.m */; }; + 96524DB391FA3D7058641F02E5B32F58 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E34DC08E8D751B379CB53B3B62D64F7B /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 966D57E6283EDA3DB6887FC4C61F115F /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = E0940ADE07D8CBA6B2FC95ADF0740055 /* SDWebImageDownloaderOperation.m */; }; + 96788C13B5A15E887EADB8033EC2FFFC /* RNFirebaseDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D394CCCEB2D06D8EB3288BB13FDC37E /* RNFirebaseDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9683C31826946F3BF96B99A025D056FC /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 269DF2E852964BEEF2A57A04741F494E /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9689158560CF9444E9D7E3E1E0EB2AD6 /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = E899721F07FC53C17F67E4DF4059FE2B /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96B4F4E21FCFAA146F6F5F35DC41CA71 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5772B55631A745C37783EC7C709EF79C /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96B98E1B9F5AB6BED217E29BAAF82FC8 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 227B079101349A1247C9864F6D0702EF /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96C66E18E4BE885E8B442EF149A77E6A /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8529DCF7E86805C170FE18B61426189C /* SDImageLoadersManager.m */; }; + 96D1F45BCCAE2836A1FFFECE8571FF27 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = B693AE3A3EB76E15F666A0B208831A5C /* BugsnagHandledState.m */; }; 96D3ACDC9FE404F697EF785FAD078FD3 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 09EF4E232018666287D6E19D9A6F49DE /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96F48986ACA0DDDECA750B733AD58D5A /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 758CD3CD79E5DDB960072B757A0FB978 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96FCB6620F11BF5DCCC383E13F70DD53 /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = 17C34550067C826AF77528EE0599DD07 /* RCTCustomInputController.m */; }; - 96FEB9F17F3553A3EACC3D455D3DD5EE /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 38EDF0A73A526AAEE884BC13CC53EDC2 /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97996DA30052F6483AEED2C310993D27 /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 993E5DB4379D6FAB1D2531716CD6C196 /* RNGestureHandler-dummy.m */; }; - 979FE135AD6F5501E856E33EC5CA8E15 /* EXAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = EBFDCE06E15F8221E156383918A0D9DF /* EXAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97B13A3AD8AC7ACB15086E390558CD9B /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 311E9C6BB31C044DB983AADE5A2521F3 /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96F48986ACA0DDDECA750B733AD58D5A /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 8298BA69BCBC06B0BE4E721050B5C4B2 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96FEB9F17F3553A3EACC3D455D3DD5EE /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 77740901B2C87FF8651D4854A7827888 /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 979A16BE12A028FC693C00F92F1CAA4A /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C3048BA25D9C7F05C9E07E5B74D946A /* QBSlomoIconView.m */; }; + 979FE135AD6F5501E856E33EC5CA8E15 /* EXAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = BB6C2548D64FF0D2DBE6E2F45A38BCF7 /* EXAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97AAE6EBDAAF74140D47F217CFA9D47C /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E5E4FD23C890B1B88DE04733581BC33E /* RNPushKitEventHandler.m */; }; + 97B13A3AD8AC7ACB15086E390558CD9B /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 880750D15764CF01F47D658AE99A3E12 /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97D064D865A60353B7C736205A370BBD /* FIRInstanceIDBackupExcludedPlist.m in Sources */ = {isa = PBXBuildFile; fileRef = 710A21C1D548E46534D46ED9326EBCB6 /* FIRInstanceIDBackupExcludedPlist.m */; }; - 98018E40ADAA6790B235AB57C3513983 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 777BA992F56DD7BFDCE64AC3949B86EC /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98469F2152D28A08969776F6A4092C8F /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 28A7D9EBA92D7AE9DC68B73FC5D3E56E /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9875D0858E48960BB7CD31B152B7B855 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 91705702AE66D8DE8A2D8A2B1F6D45F5 /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9881AD8E99F516C2926C290955EEDD8C /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DAE019E7FB1084DCF73588086F535FD /* RCTFrameAnimation.m */; }; + 98018E40ADAA6790B235AB57C3513983 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 19E491D0C674ACE6B77CA31A6678757C /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98469F2152D28A08969776F6A4092C8F /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = B2A3911AE8735FE0579B57BF38C415C3 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9875D0858E48960BB7CD31B152B7B855 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 422E26751C13F3B4CED072B749D894A8 /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9881AD8E99F516C2926C290955EEDD8C /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 11E25508F92273B8104AF7DE3CB82098 /* RCTFrameAnimation.m */; }; 990BB1DEB3F600D896D5B6CDC343E258 /* FIRInstanceID+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8879B74BE4D8A9EE581BC7191B2D3513 /* FIRInstanceID+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99249B6F723586DB53A231CFD292CC86 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = D001D3E7D0B62F8B5028556C2499174F /* UMViewManagerAdapter.m */; }; 993B1B14E6A0E34BC5DAD43E7AE297F0 /* FIRInstanceIDURLQueryItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A785C0A08BEF4A7671FDE7C7153BF55 /* FIRInstanceIDURLQueryItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9966221A016720B9EE0CF33068086756 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = D81EAFF97C6B2431E7B66891FA606C38 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99DDDDF4A2E5D42BDD113695B814D0E4 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = CE7F716DAE1FDA0CCC81EA4CA285A622 /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 99F5B542BA327F7EA6E4D9BEB1DAAE8F /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 816F58046DFE66F94DAEA4107A443B86 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 995E0DDA6DA5016C85B3F67F2086A532 /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = B9A6D143DDBF9DED4488D4740350DB72 /* 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"; }; }; + 9966221A016720B9EE0CF33068086756 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = AB7209CB15AEA1D836B43B0BD1EA9EC4 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99932AEA0E05B339FC0B5234B230914D /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CA2DFB549BFC30949D3D4AE605668DEA /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99CAD0E72733FCC187C2DC94FCD85C37 /* RSKImageCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C4D7FD9F2DCB559C2D75CE9217CA668 /* RSKImageCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99DDDDF4A2E5D42BDD113695B814D0E4 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = 28E86485C9C373DCCDE0F272759FB94E /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 99F5B542BA327F7EA6E4D9BEB1DAAE8F /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = AFB5EB027E8657AFB4AC3F2D2AD1036C /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A2840DAABE5BFDBD24D21E7835148F6 /* RNFirebasePerformance.h in Headers */ = {isa = PBXBuildFile; fileRef = 38AEF83E084F9694EBD0F9840EC668F3 /* RNFirebasePerformance.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A3099BF1A3303D97FF4B77EE8FA453A /* firebasecore.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 4B245045CF92F0E6C10BF9A8D1AF8395 /* firebasecore.nanopb.c */; }; - 9A6481D9DCD65EB64BBBBC5B69D5A969 /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = FBB72E8036204ABAACC2897F21840FE8 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B951038237159AC22318AE21C572AA4 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 614A73D88C1380781FFF21A62E788F4E /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B951038237159AC22318AE21C572AA4 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E63FAD4665FF5DB554FDF20534BF8E6 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9BDCFC848F4DFD1BF8A53CF29164196D /* GDTEvent_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 43438266D6833B9B80862D52E641C88C /* GDTEvent_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C2121F5D96BDE54DA8B179237762DE2 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D11595D8227CD30F9B941E2A0FAEE55 /* EXHapticsModule.m */; }; - 9C75A78B30DF7E6F46A8D7DAA755F9FB /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E33A601ED837702331CA7F45EC0A5A1 /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C13E06E4E2F628D53B3AE58B44DA9F2 /* RNFirebaseAdMobNativeExpressManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 744B7771C2A9BC9034B5B75DC4C0FA68 /* RNFirebaseAdMobNativeExpressManager.m */; }; + 9C2121F5D96BDE54DA8B179237762DE2 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = ED4322EF065334EF690334E729C2949E /* EXHapticsModule.m */; }; + 9C33A3B2165B2446665C9C08957E018B /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BD13850CAD53003BB20DE1F2BF1826D /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C75A78B30DF7E6F46A8D7DAA755F9FB /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 040AD4918C2FD2E9E3E8F19F3759E798 /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9CC8AF94995AE4B94A792BD1BEA1358D /* GDTUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = 48E310BCE6CEE84413B0F6F4C8E4D4F1 /* GDTUploadCoordinator.m */; }; 9CD9716DD336B98D69841069C775A17B /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FE0430BB8897862A9EBDB1A2FECD649 /* thread_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9CDFA0146999D7C28645CB9F90B05188 /* GDTStorage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E863253CD22A2DF5CB3D7E9F6FAB3584 /* GDTStorage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CED9EE5CB7376FF7FB07C9F43879FEC /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 25EDD027BB1AF044CBE6A9E47513186F /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CED9EE5CB7376FF7FB07C9F43879FEC /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FA6C91032EBF0342AE414E3FD255BA8 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9D37DEF72A22FD1A72198F1C269F29E9 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = C05C6C734B7E36A49D79E4340E2E1A98 /* lossless_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D4DA5CCD9789CDC216D8BB48695CA4F /* QBImagePickerController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 302669C528EB41EE070FE1C234C7D7D4 /* QBImagePickerController-dummy.m */; }; 9D4DFE39AF6C01860D2AAE22FA3813B9 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = 72E543745F2C87F5282760789265CBA9 /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; - 9D7C8CAF0D2C4EE85FA801C666012CD7 /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E482EFA0E65870EC4D10D4807F35DE46 /* RNCWKProcessPoolManager.m */; }; + 9D96176BAD32664F930AE8292F771492 /* RNFirebaseAdMobNativeExpressManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DDBB86A5F6C876477F97ACC5F79517 /* RNFirebaseAdMobNativeExpressManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9DA03626CB8941609E390C7618C2A9E7 /* GDTRegistrar_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C6793E23D4CB0376854683D7A0AD0F7 /* GDTRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DA7EE268BCE3FF43F201EF8D4B6955F /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B5D0AAE2F91D85D579503AD68DB2F6D /* BugsnagReactNative-dummy.m */; }; + 9DA57D3AFF7F4F1D1950531959A36DF7 /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C003927BED9B0875864595A388D43FF /* SDImageCachesManagerOperation.m */; }; + 9DA7EE268BCE3FF43F201EF8D4B6955F /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BEBEEB2BA458978D5205A4AC168DC5E5 /* BugsnagReactNative-dummy.m */; }; + 9DDCA6CC02895AF92FE4FDECA8A91BC5 /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 40679C865AE0F12EDADDED081DA55A5C /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E1B95C86133B7162A822F044D8A3C76 /* FIRInstanceIDKeyPairUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 4892E2CEE10C1961753364F628FDF10F /* FIRInstanceIDKeyPairUtilities.m */; }; - 9E30093D2EB07DA80287548807D526BB /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = AB2DA7EA4AA7965B657836614D3A0711 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E6FAD142C6D05FE4CB70FD6B912C89E /* RNCUIWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 81784DAC436ED67FD954E0ED8A08A36D /* RNCUIWebViewManager.m */; }; - 9E7796E429952562164E5A9B6C387E79 /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C6B478B9015F5BF081FD0D8BF2DC3F4 /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E7E3ECA43817F2533DCF75144D453E0 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 757A21D63AF87B505D7A9F48C9C6F745 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EA2C71A2C05B632021CD234D35C7B69 /* RTCPeerConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DAB2A845217DBACA89044C4BE1B7019 /* RTCPeerConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EB2B267750F940F29A01C67EB02A21A /* RTCRtpParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = D81D2902FAB494BBC793F02E38E114FA /* RTCRtpParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9ED509214D9902A26629B908DD863808 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = F9AA815341F1D7613002795B68AB9D8A /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9E30093D2EB07DA80287548807D526BB /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = AAB306730018053E74B9836250BF383E /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E3BC2323DE9A5726E003C9B8E37F38D /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = C0F6CD9EAA9363E8E921B4ADFB253D75 /* RNDocumentPicker.m */; }; + 9E7E3ECA43817F2533DCF75144D453E0 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = D3F7A49D41EA1323739A8EEDF655D070 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9ED509214D9902A26629B908DD863808 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = AE66BE0D44B60906D0DC2D20925597D7 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9EEFFE4F5B6FA066318BDF0BCD0B12BC /* FIRInstanceIDTokenDeleteOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 91D7A68AD46162DA04278DAC058BCF3F /* FIRInstanceIDTokenDeleteOperation.m */; }; - 9F18ECCA1790C924472C0CBDFB421C08 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = FC96204E58C3433EC0EC724E81C61994 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F59B5E787DCCE4694FA7FDD16599DA8 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = FA64AEC496DEDDC824442361226DA962 /* BSG_KSCrashType.c */; }; - 9F6B46D47365580C8234D385118DB36F /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = B64278BFA907F143E534AE7A299EB104 /* UIImage+MultiFormat.m */; }; - 9F87EC2899A32885BC96D1F73A78357F /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 21430C8D5EAB9BE7EC7DA6C7FCDAA0B8 /* RCTImageCache.m */; }; - 9F9500DD72D147897FF71A3FE891A5E5 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 053E019BD1912F57172168BAC0F1A82A /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EF0351744849AD5902CDADFE0806A35 /* RNFirebaseStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 26302D552DCDBD054E070D7DD51F39B8 /* RNFirebaseStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F0BADAA46BF5E53B1242BC8A10B1F03 /* RNFirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = F2C62E018E584D4B4A97E1F0C5422722 /* RNFirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F0C4812425C43FA26A9C48A388B88F5 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 456A3704E8A9C2DB6783707ECE4E8B64 /* UMReactLogHandler.m */; }; + 9F18ECCA1790C924472C0CBDFB421C08 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 62DE8DD76FA9B8FBCA08B5A0ACE36356 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F59B5E787DCCE4694FA7FDD16599DA8 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = 84CC73B6A0DE06B149849CBA767FCE1E /* BSG_KSCrashType.c */; }; + 9F87EC2899A32885BC96D1F73A78357F /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = FA59AF698FC39EDC77B09342B24F02F6 /* RCTImageCache.m */; }; + 9F9500DD72D147897FF71A3FE891A5E5 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 52BB84C18FFA26A6BF6F78D149F2F769 /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9FA9B09A0F43FCE11A2099C32933A9F7 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = A64FD5C333796C3016A136E4CD49AE48 /* RNLocalize.m */; }; 9FB5323418E1EAEB28FCF70C427CD296 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E2147BA514227BEB53E26EDBE8254DE /* backward_references_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9FFD8F1095860972C91388E79894DB12 /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 434A1FD0BB70624CEC889E7AA19462B4 /* UMLogManager.m */; }; - A08E5815667FFF84C4B9314B47BCA3BA /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 059E17E06D2458E7B8041E0D6B598A40 /* 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"; }; }; - A0AC33EB183729791B9DCF48840B9E33 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 234A33960E097982922091DDB5DD6913 /* UMReactNativeEventEmitter.m */; }; + 9FFD8F1095860972C91388E79894DB12 /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E8299F9BCAFD9D1CA89725FB5F9F8FF0 /* UMLogManager.m */; }; + A01EE4DF6EDCCA9BCF3E5FB9DE797139 /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D278C02A22313007EFE6AC57486A6B89 /* SDImageAssetManager.m */; }; + A0233EA52300499F172D67F50DC41886 /* RNFirebaseCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C08D4DD60D8F74867221103124930A5 /* RNFirebaseCrashlytics.m */; }; A0ADECAF3438ED32F69B08DDF30BF4D3 /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E31CEB7D87267B02F5519491B8045ECD /* DoubleConversion-dummy.m */; }; - A0B88D46A78F2FF5E0096456B6408FFF /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = BEC0A2B51B9A055AA354B9F7C0FC8672 /* UMAppDelegateWrapper.m */; }; - A0EF8DCDC1591E13692B28C9A9F34F11 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E2CCA3420B30843EDAC5AE8901604A6 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0B88D46A78F2FF5E0096456B6408FFF /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 939D3B59085756A2F61F6BF7B7E2406C /* UMAppDelegateWrapper.m */; }; + A0EF8DCDC1591E13692B28C9A9F34F11 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 079CC5253806AA3AC76B266B04373242 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; A157CA36BC537CC9E89D6DA27974AD72 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 21D2519EBB681F820C4C705B754DEEB1 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - A17F3275729078AD008C25F8F2C7F77C /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7020C0643DD3F4598728470F8C085BB8 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A17F3275729078AD008C25F8F2C7F77C /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = B63F605A34DABD21A4CEC821C3CE2AE4 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; A196C02C3B3FA339D33D46ED6BA072E8 /* FIRInstanceIDUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 4023E271B4A414D1A43D2BA7B0EAA00E /* FIRInstanceIDUtilities.m */; }; - A1B06EA50F276D2CD90D664F7088C959 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = B689AF58C3DD12470EB05FC02F8EC95A /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A1DD6248165A14E9BE84518A3DBDF6E9 /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C7D2DDE0A07033F8C70ECC67FD49A26 /* BSGSerialization.m */; }; - A21406DD08E735F678E9F090099C47E0 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BDFD734CCC15D9C7CB26857B917EDF7 /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A253793DE53972266348B39BED07895F /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 436AE389A1F083361C83674F71CE60FC /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1B06EA50F276D2CD90D664F7088C959 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = D59F5ED7689ABD2E0ACB3E04628C60C7 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1C22F94D8C6F2B308B1A8AB67474519 /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 285C10879981A54909D0F796332831D1 /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1D65100F35FAA829CF2FA5D09859649 /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FADE7C54F900C8DEE5447960742499C /* RNFastImage-dummy.m */; }; + A1DD6248165A14E9BE84518A3DBDF6E9 /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 26186657DACDF70F963F73FBD86FEEC3 /* BSGSerialization.m */; }; + A21406DD08E735F678E9F090099C47E0 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = E780D0C91A7743756755AFCB5C027CE8 /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A261D1444B1E8A76FF80961913092EAC /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = B5914966BE28AB5DBB32C58DB776E87D /* rescaler_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A27EF607EF11107887ACB1B2B805275D /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 26401B6DCFA787B64E545ADF40CB2C26 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2A70CD096FE24B7E48EA8C86BC112BD /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 11C1FBB4350B2D08E9EE4A6F11913624 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2731A2BDC9E3CAFFCDFFF458C9E217F /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CEFA9FAB49EC1AA776F01C2C2163C68 /* Color+Interpolation.m */; }; + A27EF607EF11107887ACB1B2B805275D /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = D6A27DC29862C40909025D3F43963B47 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2A70CD096FE24B7E48EA8C86BC112BD /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 941C8875415900AB99411B734F554781 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; A2B1FFACE7567768C3FC2CEB3CD9499D /* FIRInstanceIDKeychain.h in Headers */ = {isa = PBXBuildFile; fileRef = 86F02BBF388BBC67B309A02A2AFC7A1F /* FIRInstanceIDKeychain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2BB5FDD99C8D8A31F91D6698801CC6F /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 38448BA7043409609588CEFB91FED396 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2BB5FDD99C8D8A31F91D6698801CC6F /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC17B2AC17FE48D56861DD5EAD666A0 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; A2BCACD8EA23E21607E2B81D655C81FE /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = D418A9B1C95E6D0B846EF2FA2D37FB61 /* upsampling_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A2E4E101249D54A5B681F2626A7F22EC /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C6FED9F0BE14108E4CC6E139F97D40D3 /* SDImageCodersManager.m */; }; - A36AE41D52A9F968C8688EB5B2614D14 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 32A58D33C411245EC750F5EC30D1E527 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2E914DB0829145BEBF1F96705A3C1B0 /* RTCTracing.h in Headers */ = {isa = PBXBuildFile; fileRef = BF50473D16917383025432A8E6223ABE /* RTCTracing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A321483B71FB462C9BD1989B4AB3D466 /* JitsiMeetConferenceOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = B61FC0166F0344183236C8004643AD87 /* JitsiMeetConferenceOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A32BBFF4DB4116EBD11D77147C802EFF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = E974EFB1ACC03ABA3E4B9C5BD13871C1 /* RNRootViewGestureRecognizer.m */; }; + A3403146E2AD4F285F137A0680CF0C71 /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A0786DD9557387B23E4AE8C3ADA815E /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3435E902A92D6745338D1D8BDFAADA6 /* RNFirebaseLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E2424D33337A4D5F5D68708C7C3170B /* RNFirebaseLinks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A36AE41D52A9F968C8688EB5B2614D14 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 855024D7F3AAE1182BD2FCD1CF4EDBFB /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A372C765DE4CBFD1344C138500A06EB4 /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DE274C24107961E9EBB96060A1AC2EF /* RNFetchBlobConst.m */; }; A3899A422351CF681012352754EFDED9 /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = DD7A713DBADAAC11AEAC9CBF5714CA91 /* lossless_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A38AFB22CD5BB6723888E83712F97FBB /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B2B6CCD6199BC227927A6F66F1C4B676 /* UIImageView+HighlightedWebCache.m */; }; - A38FEF0CD3E30E7CFF18870BAFC1FAF1 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6A678F724671CC0ACFFB2FBD3EC35014 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A39DAAE063775ADCAAF949DD9BF31976 /* RNFirebaseFirestoreCollectionReference.m in Sources */ = {isa = PBXBuildFile; fileRef = D0A089E9E699BE7D954D659F8DA9F0AA /* RNFirebaseFirestoreCollectionReference.m */; }; - A3A4A064100A12ED2387C3EACE12D7C2 /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 8333CE04D1EF8F103AC4FA080A8529FA /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A3B33574C82F38A9087B056DF9CED726 /* EXRemindersRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BDBE883674DE8582992A71F9296394E /* EXRemindersRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A41CCE6BEBBE0CA021C67C1D69BE8DA7 /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E8151146709C4C6EA979DAB61A65085 /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A38FEF0CD3E30E7CFF18870BAFC1FAF1 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 15B3028E51A54607A96235CB7D1DFA44 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A3A4A064100A12ED2387C3EACE12D7C2 /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = CB9E8D5136D1764600472CAF1D5FC1E3 /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A3B33574C82F38A9087B056DF9CED726 /* EXRemindersRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 76A8100CC7BB9C534A18A8310DE1F11F /* EXRemindersRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A401020CF5EBD87A38196B5792A4FE50 /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = AF3F49AC7222558F70BF96377BABF58C /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A41CCE6BEBBE0CA021C67C1D69BE8DA7 /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = DD629E21B521B46FA7B96D55086A5F1E /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A42C65B4F89B0EF59FE73B0DC1EC1FB0 /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 361ED24B795D598831F92950AAE3106F /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A45F6FC6D0A124AB8EE9D0CB70AA74D4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 11B6E5A24E63214705CAD00868E11574 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A471A1AB3DCF13E62151136F677D3015 /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 301284AEE036F0F9F9F8C4DD634126A1 /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A478B88053C971FA3749431C59577E83 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = BB55D0A7ACC4018444D830964E5ABB33 /* upsampling_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + A481931853133798CB7677DB8B4F088F /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = C71CC85EC1E8456E2822BEE4773FC8EB /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A494AF91A61A45C70482BFBA77ADBB5F /* RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = BFFE931B07A9A985A20E831637607803 /* RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; A497FB482F032365646003FF4688764B /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2587AABF22732CC81C58D78D9EA845A3 /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A4D727E9415CB195975F272C0AD68D31 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B87E594363914C08F60E7F87BC3C62F2 /* SDAnimatedImageView+WebCache.m */; }; - A4DCE185030300E41A470AE199ABCB22 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3814F84755388AD1C8BE044F65536D82 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A4E0BF76E3B4D9CD2721EE55FE43A0B4 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 90B7BEA5F009D938BF5F5F71F697E182 /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4F00AD2992CB6CA59FCB589608C5E7E /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = C343C860082F1FEE952201B8C2AF754A /* SDImageGraphics.m */; }; - A51BE3A7415A218301DE130AB7EA7150 /* RTCVideoEncoderVP9.h in Headers */ = {isa = PBXBuildFile; fileRef = 81EAC4862520863E3A386A873685068B /* RTCVideoEncoderVP9.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A53EC7CE8F548F3555CCAD984187D8FD /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EE4EC581FC8ABD5F70E10BA7F595D5B /* SDAnimatedImageRep.m */; }; + A4DCE185030300E41A470AE199ABCB22 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2A5323626069A0FF9A17631E5CCC31C /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A55A2AA9ED8DEA86F1FAB5D7D8903F2C /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CC1F595BAE2B9941E1DF118CCF7EED4D /* nanopb-dummy.m */; }; - A55C24FA208312D46CF87FD5853FB9AA /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = 373B25D2F3A552C16DEDF3EDBD8D2EAC /* BSG_KSCrashSentry_User.c */; }; - A56D474B2B75A4FFA4FBE9F69CF5437C /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 49B84496FB17E2566D4A934E487B8B85 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A58F08F163593B4D07A2AE698F990BC9 /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = 59EE6F1F21B6DE160F6718AF2B0B88AE /* BSG_KSCrashC.c */; }; - A59BB1F31F21D4D8A649DE0F022A17BE /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = FFD62DCC16E6B68D561EAA50BB6336D7 /* RCTProfileTrampoline-arm.S */; }; - A5A3BC69FC6183EBF49E6401387896C8 /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 55658354B353F2230FBBC65FA8D1D406 /* RNRotationHandler.m */; }; - A6284294E40579F2DA118DF27AFD97F3 /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = A0ECA59A83A655CBC05E2FD344902F68 /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A63002202167319878EE8A8DF68E0A18 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 548D093BA6436E28D5E64ABEF5BC20DD /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A63FEE2D803BCBAB24BADA5B88EE49C4 /* RCTAlertManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C18DD10AA225D10340E87E9FDB0D2E52 /* RCTAlertManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A6485E16CD304950F41C08C84960F353 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F96429BF5F61D23BEF9CBA59ABBB572 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A68565AADFEBC8691EE1D2861E45AEF4 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = DBD5AB1191866F85728382E4C44FBEA1 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A55C24FA208312D46CF87FD5853FB9AA /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = 0D49CFFCF95F78AE76D73E2FDFBDD89A /* BSG_KSCrashSentry_User.c */; }; + A56D474B2B75A4FFA4FBE9F69CF5437C /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 371CD386942A4D743EF18E859766AF3B /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A5825ED3780A31FA1C8B2A66A8F1340C /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 94A2DD95CC4EB6EC7600FF0B58EC17C6 /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A58F08F163593B4D07A2AE698F990BC9 /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = 0D275E3FEE0C750269FC1DD63B244748 /* BSG_KSCrashC.c */; }; + A59BB1F31F21D4D8A649DE0F022A17BE /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = E563354BBF88A993DC96BDA59F1ADBDE /* RCTProfileTrampoline-arm.S */; }; + A5AE8BFA8866C7771EBDEF5F234BB684 /* RTCLegacyStatsReport.h in Headers */ = {isa = PBXBuildFile; fileRef = F8A365D0B4E5F0314EDC622C963F016A /* RTCLegacyStatsReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6284294E40579F2DA118DF27AFD97F3 /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = FE1D6E92C60A564E1E4F7A261072F192 /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A63002202167319878EE8A8DF68E0A18 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD5C0DA7F535E3ECF324E45733E4DDC1 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A63FEE2D803BCBAB24BADA5B88EE49C4 /* RCTAlertManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D881F1F572362DDBC3778325671E1A1 /* RCTAlertManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A6485E16CD304950F41C08C84960F353 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 42862E86EE85981EFFC2A0BFC1FDABAD /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; A68A07EAAAC0205BC3CE6313B6FA44AA /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = EA2C8B7803631E9D7E122F15A966F8C9 /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6E5DD6C43D8133B6E8C7D9532F8056F /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D655208670B9B0B89F964EF6F197D10 /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6F29F923CD8B7663A3B1446BB8F4192 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B099DD6CF385627ACAF7A6055576885 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A77F4378C4F7BAFDC18E620249B58B35 /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = C37A7FADF2B9750935F109A6BC2C818E /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7860E2CF882B23ED6356BFC6EABEFF9 /* RTCPeerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 845D89D4E6DAE1558B7ECB0B0D64582E /* RTCPeerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7982DB633C44B2D35E1D3F0B09526CA /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 4669C01EEAD59B56C2E8AFA01735044D /* Compression.m */; }; - A799D2769C65005F19BEA2BB6DB53B70 /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 167EB89C479F244A70B6CCB4DC9C482E /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A79A602F78211A8FD8EDF912C0B757F1 /* RNFirebaseAdMobBannerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C7C1DBD658BA3453095200CBB9367C29 /* RNFirebaseAdMobBannerManager.m */; }; + A6F29F923CD8B7663A3B1446BB8F4192 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 64767E09B935FC6198E25614C280E48D /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6F6F839D70066890E5106A6A744076E /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F711E618AFB99B1074C4BB7E7C2A6D1 /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A799D2769C65005F19BEA2BB6DB53B70 /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = ECC8574ACD8B682E7BD00CD19CC347D2 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7B3CE7889D46E3ACC39E6A3679F8E31 /* RSKImageCropViewController+Protected.h in Headers */ = {isa = PBXBuildFile; fileRef = 60ECCCC43690D9CB6A582FE619243E25 /* RSKImageCropViewController+Protected.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7D325ABA622F9D7D56799439D272EA2 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = F46F19ADD7D5E644B1C2C9288E4917C1 /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - A83CB848E6282F748F9EC71568018A4C /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6576A3D11BEF41D5FA17A26087FF11EE /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A850323E93ED4EEFA8FE1A1D774DF7DA /* RCTKeyboardObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D308E0C724DEA2FDD523243CAF81234 /* RCTKeyboardObserver.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A8561ACC0F8EE4AD506C0806EDD28E5E /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 784D2F08FE23F7C23D2BA6D6521E1391 /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A874F38FB572811F49B996D76A7E1D35 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A20A718551EB736421C04C18825176AA /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8884B64FE7F01C2BC171BA9721A8281 /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = E380014D1CD129168DF8BE782A0499E8 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8968682E0FA6CE487A329EE245CE866 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = D8E0DF98A1C17EC204E1F71B85650A9B /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8A4C58599FC553160B594E4A6BBD860 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 61A2A4C72F57C043E31C91AA839CF6F5 /* RCTDecayAnimation.m */; }; - A8A648552B907AB12CBB0F0988191FB2 /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B82D6AFE4BCDD34B347280D929500FF /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EEEDE07325592D7EAD9DF13A69BB6DF /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8EB563D1363461F3B11A4BAE2BD6E18 /* RNFirebaseAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = FDED1D2382C2F45475EC907B6495AF6E /* RNFirebaseAuth.m */; }; - A8F813367283E61EF989A9161DC3F79B /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = F7542D38FF209FBD4AF03957055F30DC /* BSG_KSCrash.m */; }; + A834C5CEFF575724D50EA68CAFF91810 /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 23C3C8576643739158D4836F21BF7FCE /* RNNotificationUtils.m */; }; + A850323E93ED4EEFA8FE1A1D774DF7DA /* RCTKeyboardObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 11D8FD7A94DDCEF03B802B1347891927 /* RCTKeyboardObserver.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A8561ACC0F8EE4AD506C0806EDD28E5E /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 566D1139888E4299C0F78272DF7FCCD5 /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A874F38FB572811F49B996D76A7E1D35 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F687D158AB84629B6BC16F908CCA02A /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8884B64FE7F01C2BC171BA9721A8281 /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 1648671A030BC5711F00B16227E49F17 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8968682E0FA6CE487A329EE245CE866 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = A8263F03B479348793C88F15A0990388 /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8A4C58599FC553160B594E4A6BBD860 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BE2EDAF428C0889ECA70E4294B600BB /* RCTDecayAnimation.m */; }; + A8A648552B907AB12CBB0F0988191FB2 /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CC172B850C2D53176C545D094C4010A4 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A737DB17929F15A37BFBD246677EE5D /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8F813367283E61EF989A9161DC3F79B /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = 344F115A95B229C2F0D983DABE6C40EA /* BSG_KSCrash.m */; }; A924B55918143BD56D787E62B2FD3129 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 737B25AEF6C3F7B8C25EF3D58017DE68 /* GULNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; A9259A030B103BC6C003F7809B560F9D /* FIRInstanceIDUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 60AA22BBCFCF2B724A33960D8EF6F64C /* FIRInstanceIDUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; A92C327E57D9A9746F7176FAE308E23D /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = 55BB3DEAA86586C11D4ED2FEB26A0794 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A96B0662413D76900616898DE7022E72 /* CGGeometry+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A75F46F02E1A2C5721662F565E64167 /* CGGeometry+RSKImageCropper.m */; }; - AA0C7390010136B9FEB8AD0112D8C60E /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = 8127F159B44C1EC405717579C084C4AF /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA0F716DF4C2907DEC44755CDD57AC23 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 2165E7F41FF05854F25D07BB91F328E0 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA37665ABF39EABCF4356FEEDD2F47A3 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BA859F8B13928A5192F098B418266DC /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA5B9D0DD16940B77F4721085C9ACB50 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AECAC593EDC245BC0F0D174C0B21B8E /* RNBridgeModule.m */; }; + A96FA15E11B98C646107DC5609E0F4A3 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A7C3E173B755347C9AF5941C40E03F5 /* rn-fetch-blob-dummy.m */; }; + A970F6BD84607066AD080F486A4C9BEF /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 88836057AC917E1A9EDBD574E385C230 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A9979A458B6570F794BBBF11D3C7203C /* RNFirebaseAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = 81B045DF98DB06AC327DEB44AF93A324 /* RNFirebaseAuth.m */; }; + AA0C7390010136B9FEB8AD0112D8C60E /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = 201C524D71C41C36DDC74B7D168B99BA /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA0F716DF4C2907DEC44755CDD57AC23 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F4092AD5BED4EDA89AE141BA29865FD /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA37665ABF39EABCF4356FEEDD2F47A3 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 651BADE3C93BF8E5CAE87709AEBEF393 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; AA6FD30C2E41C5828D10AC115BF0D278 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = FE7F64D90DC09D7E711A4F454299CDC2 /* alpha_processing.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AA78A3D95AEFA991A1D04CD8150B96BE /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 87D85EEB99234929D3C3B840B4842934 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA98A648CB3B804C4184DF32EB174F06 /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = CFEA128847EF8ED3C06427F753FB054A /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAE231F856E47555226D8B1BEC2E292C /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F26F45688CA40CE62BD4A01EFD5C2A48 /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA78A3D95AEFA991A1D04CD8150B96BE /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0634E471C8D2991463FCABC1359891F4 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA986F76CDA695810C1290987BEA9B09 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C194D9BA620CBFDC4E35208A1B0FB7F /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB1226A0DCFE6A926C88AC6DCB647095 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = ACD9D744C521C1246AA89B34FB235398 /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB135DF9642F966197BCCC01EDAB267E /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 97719D4653AA92D70917B72DB87C02D4 /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB17B27EE83377D706D7B16A334B1D16 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E07F75C2202CCBB305FAE378EA75B5C0 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB86BCB2269C408A867C16E19B0F615D /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7849C1539ADB91DA05CC853D3A02A4C3 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + AB135DF9642F966197BCCC01EDAB267E /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = DA26D204A30ED51CCE0BD106B23C0230 /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB17B27EE83377D706D7B16A334B1D16 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = B2C9A34370C9237B9740314606719BEB /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB86BCB2269C408A867C16E19B0F615D /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 19C0923D251D5A2B00C357AA7B9A6264 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + AB9CB790EC7FD4F78C3CAF4553ECAB0B /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 03F6CE6F3F15D04123FE13807A1C40AD /* React-CoreModules-dummy.m */; }; ABD5CE7D3CED819A1F0A08FFACA97498 /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A851005AF38D640F29903269B8A7FE4 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABF126106FD8D877441956C3AF553EEF /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = FAE603A0CD507D06532535671E545333 /* pb_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC00F1CF3C1199A7E7E7D95E1453B4B5 /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = D3267B9CC7B825EBB5EF6F0BAEC6DE20 /* RNNotificationUtils.m */; }; - AC0B847E306B3BE7451CA34B80D57CD8 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 44E75BF06105F11906E395759D1B7F66 /* UIView+WebCache.m */; }; - AC1FF736492260BBE0C5ACAD12BB2B5A /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = D0F0CDDFC37CF634DEAFF325946238AC /* SDWebImageError.m */; }; - AC3D0C5CE1A3373A92A08FB233837183 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AC91388E5FE2A91C9CC93F6095B699A /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC3D0C5CE1A3373A92A08FB233837183 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 60169723F416C6E12FBFAC63CAB57B8F /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC6AC70E3EC8B0747B28E02CB723332F /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 024D869151AC258B0D9D954728A85828 /* tree_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - ACCFA8651243A8B66223A58FB5C4D7B1 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EB180F2C926BB44BE91322607071BF4C /* EXVideoManager.m */; }; - ACDEB9203605A36E054EF47C59FB613D /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = CDA8ABFACDD3F2E8D6E195044CD8D4DB /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC8869F1082D903914BE957FF5EEF118 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = AFBABD959DCD4A0D8253FC9CDB065456 /* UMReactNativeEventEmitter.m */; }; + AC93D4A9B2755B711C4B8724E0A5533D /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 81B07643B402ED0516D25F7EB0DE7F3A /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACCFA8651243A8B66223A58FB5C4D7B1 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 06865963575AC15785519AEA22E48E00 /* EXVideoManager.m */; }; ACEF93717CED6920932D1505DE58206C /* GDTTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = DAE138DE274E387CB5BD5A4785EED9E0 /* GDTTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD105DDE250F35AB653EB30D00FBE1EF /* RSKTouchView.h in Headers */ = {isa = PBXBuildFile; fileRef = BE94543A04B8947916F72F33F5AB59B1 /* RSKTouchView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ADBDB3338CAF800EE3CABB296FA4AC34 /* RTCCameraVideoCapturer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7595D7CC61617FA498C9DDBD523493F2 /* RTCCameraVideoCapturer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ADD2AEEE5548989C3234C0401CA7E38E /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = C3DD38C706C10C12E336FB35A6B38724 /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE0DA7567047964FE237245111052C3B /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BE9C00A0CD1A096CA768B9072AE457A /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE1666A5931F876EA711E4C94CAFFEAC /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ACDEEA55D44FB38E92FBEF46803F44C6 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE16F2E116CF727AB4FBF36B47FA7D65 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ECA6E6DF5E16E4BB3513AF26C2F14F3D /* React-Core-dummy.m */; }; - AE50881383D99425658602348D1744B0 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ADEA1A8FB531F75151FDA17F7DF56FF /* EXHaptics-dummy.m */; }; - AEA0571AD000EA6F97808A38CED466A8 /* EXRemindersRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BD1965691774F7E02916CBF3984093 /* EXRemindersRequester.m */; }; + AD037BA860C2D671FE120400CB68A798 /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 831F0D42D039450010FF6956E3E56C03 /* SDWebImageDownloaderConfig.m */; }; + ADCF3637970773F99D4D3AF15CCB8D60 /* react-native-keyboard-tracking-view-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CCA435F27CDCA26C481E7FB9BCC5F889 /* react-native-keyboard-tracking-view-dummy.m */; }; + AE1666A5931F876EA711E4C94CAFFEAC /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 456C30AC5F32F800AF4873C26968405B /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE16F2E116CF727AB4FBF36B47FA7D65 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FC178F385C4B458AA797C2F4281BA561 /* React-Core-dummy.m */; }; + AE50881383D99425658602348D1744B0 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3503FCE61F9999AFC779E2DD3D376D8D /* EXHaptics-dummy.m */; }; + AE6CE0B10CBBF6DC3BB9C6994E3F4B6D /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A2895436FA26C0B09A11F511F4FEA0DB /* REABezierNode.m */; }; + AEA0571AD000EA6F97808A38CED466A8 /* EXRemindersRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E2239B2640BA20A1F0D9104DF434E8F /* EXRemindersRequester.m */; }; + AEC5875F3240B7BFC3CFD21423E02AF7 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = A6AA2C2FBD336D17FB42F18566EA0AF8 /* RNJitsiMeetView.m */; }; + AEDC1AEB75E3E4C3284F50F47CB95840 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C3B34A1681B0CF09D087F28BE5B198B /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; AEFDDCD92E687A0A93BAAA2AB9DAEFFF /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 63AFEED08855FAF445DD96C3C4FFCD3F /* cost_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AF07DC460999AB4BFF7D68C7F4CDCC3B /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 2788D2D3E0705C7D482B0C43FC112B69 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF2C1ABC93380B8C774D3C99BF7F62BE /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 278476170389242F3A608B71E41F158D /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF4FE70F938428397637FCC5003C6BEA /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AC3E9AB7EA1AFAFA6A6A9A2E9935951 /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFBFD987525C17211186858162272071 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 921DC920EDC43C4EA33F72CA7A27AA51 /* react-native-webview-dummy.m */; }; - AFCA74623EDEC42F96AD4C422BB9F6C3 /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B91DFDA9CE811D7C6C0DE77527650116 /* RNForceTouchHandler.m */; }; - AFD60F1F9A071A589DEB71457DE0E5BE /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 93D2F70E0C2459107177CA5B393A881E /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B064A8622C91C82E64FDD2CF08D54A68 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 93F053F69AE35C9369F8919C3447F1EF /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B088FCB60A195E4353A2905299393ECB /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F4FAEA848200B94F5DBB61ABD25BDA58 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0A3F483128FAD74460167950CF0D0EA /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = 8500A2F6A0B08C5589B563C3A2411189 /* RNFetchBlobFS.m */; }; + AF07DC460999AB4BFF7D68C7F4CDCC3B /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = B3E2EA32BCCA958A61D82BEE7A7A9B6F /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF084E0D4BA789FD4C8A1BDDDEDE5E05 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E8F81E3C3F2F1EDEA6AC5CFF69EA10E /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF2C1ABC93380B8C774D3C99BF7F62BE /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F81ADEB10A6B3A3B25B93A2E11378B7 /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF4FE70F938428397637FCC5003C6BEA /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = DFA3DFB2E2678897E390E41A3AD2E89D /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFB4E2289D5010B46576457A5B163493 /* RNCUIWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C622AAFD77A2932F3BBE4F9F22FC7C9 /* RNCUIWebViewManager.m */; }; + AFD60F1F9A071A589DEB71457DE0E5BE /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A54535212456A395C1685CFAB7AB20A /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B00B1B8F2215DD0AFFF8E2FB5E057874 /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 912415A927A22B47295DD3E49FFA3F4F /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B064A8622C91C82E64FDD2CF08D54A68 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = EE9A9A8D7FED4FFC97D7ABDC30B692C3 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B088FCB60A195E4353A2905299393ECB /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E7C7253031460B7AA52CAE1F40C73664 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; B0B0B766093210EB3266CFB15B7F110A /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = AF59AAF9C1E17F9B17CD706F50F80B69 /* mux_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0C085A3F810D1DA5D4D8A71E7C82093 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = C5D1A6EB84C7A61CB1A61A0195830C35 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0C085A3F810D1DA5D4D8A71E7C82093 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EEC6DD11BDA673BB53D139FF0BC846E /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; B0E28F82AC12DAADBCC201F6E686F0D8 /* FIRInstanceIDAuthService.m in Sources */ = {isa = PBXBuildFile; fileRef = 606428EC8C93FD3C60C0FD77CFCE5C62 /* FIRInstanceIDAuthService.m */; }; - B11E7BFD70BF2509FF20701AE2B07C3F /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = E16B6C34322A45B7EC5714D08E52E257 /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1562C94F7F2F8FA559A33B3A7EEE92F /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CAE1E12567C4AC8AAB010F5B5299EF1 /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B1852295BC692028AC2EC543F325B5B7 /* RCTDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = FADD7CA66FCF85647A9C4B1C87617E0A /* RCTDeviceInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B0F8F4E86DC43568E124BF8E900D2F0F /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = 96206F808402F18E47EAB412A4DA7456 /* RNFetchBlob.m */; }; + B13476652C0D2D610E8D3596BF26F1A0 /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 81DC36E08CB987E699DEF80CF74F8C3C /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1562C94F7F2F8FA559A33B3A7EEE92F /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 039E4B207B51A177D92BBDF7985D24F5 /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B173F07AB3C49CC5EDAEF3E1627EBBE2 /* react-native-video-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AA2D60A70366B5F533E720EE05F8728F /* react-native-video-dummy.m */; }; + B1852295BC692028AC2EC543F325B5B7 /* RCTDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F17C21DCA9744110D947283A8152F82 /* RCTDeviceInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B19F2B637F6B23E5352C351E7F9D5AEC /* GDTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = CF2DE2FBC85F5A7C4B91A1843E653A85 /* GDTAssert.m */; }; + B1D00F5799C6F33A7F6B639FAACEE060 /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 43A23B7AA3F12BB5CF8EF2B272616200 /* 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"; }; }; B1D79119AB2B168F02963667EC88474C /* GDTTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A3360793B80DF3E76FB7C19901A69DE /* GDTTargets.h */; settings = {ATTRIBUTES = (Project, ); }; }; B1F0D8BF7A1CE374F9985295E86695C3 /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 3A465BE307F659E6500E34CBF82517D7 /* lossless_enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B210B05CE757D6B2C0CAD0004F0580DD /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D09CAD783A0155F346BC9342B8C32F38 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B224294B74504C684A1E3F27DE4E9B72 /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AC0277131A82F73F6BBC1D2EDC09CA9 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2295148125F526C413FF432782EAA32 /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EC26CD16A3EAAA3CC3515C4F8DBEC92 /* ObservingInputAccessoryView.m */; }; + B210B05CE757D6B2C0CAD0004F0580DD /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8053259662D09AA8415EC0F35ADD8FDA /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B224294B74504C684A1E3F27DE4E9B72 /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = CBAF33463FC49F8D88BE7292369B2888 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B254218CA562A970C477A3A91D343A27 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 3721E77C21FA3733E371C4BD0D42FDAB /* SDMemoryCache.m */; }; + B25AE14A7ECFC93FA1DC0A45FCE6C031 /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 867460556219C1066B4AEBAE5DD40420 /* RNGestureHandlerManager.m */; }; B263A4FE744BB18A7C7B543C66725FA1 /* GDTReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D2ECCE0FD4135BCA35DDF813D86DBFC /* GDTReachability.m */; }; - B272B8251BB36633F22FDB672A7A408D /* RCTClipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DC040E976AC0D325774D6A3FA856F1B /* RCTClipboard.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B28B53D498BC5EDA6A609EA8F6CEF053 /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 79B70559438F12C7633C0677BC9192A4 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B272B8251BB36633F22FDB672A7A408D /* RCTClipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F96E48491E8310AE926BB152CE5182 /* RCTClipboard.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B27679D7BB32E8D0760DFD440253E723 /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A1F2DCABC435441BFED3F2D05B8E482 /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; B2CA11C70BAE56E96D0654BA8607AC75 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 2BA2ECFCD04DB9708EA2504DFF8341B0 /* utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; B2D6499450888707D3DFC50BD9E94F80 /* FIRInstanceIDConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 79390E2773EFA92858139BA9E4C71C32 /* FIRInstanceIDConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; B2E03206695085DC3C168497F94704F0 /* libwebp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F4DB41E421719A4A01958C93D7A94464 /* libwebp-dummy.m */; }; B2EA82D8CDB5F846D0716ED5A1804CC6 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 773D989862F7804EC138068C0648671C /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; B3115B87C80669BE7BCEE8EA9E0B631C /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 58FE1C5101D64A38EEB0E2533961D856 /* alpha_processing_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B36F0C10FCF0FF9A3B8DCBED999BC250 /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A72763C0DC542C39E3298476D2324D8 /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B32F985DABDA929FE0A0E8EBBB9852DC /* JitsiMeetViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 99F54E94C08A7B8AC9B55141B2455814 /* JitsiMeetViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B36F0C10FCF0FF9A3B8DCBED999BC250 /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = EA86E092BF51DDFE44B603B6D14E3642 /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; B38A6F0A02BF1929884827243D4A23E6 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BC88FFB0422846AFE4E6A298FADE780 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B390BD68076518967ABFC3435372468F /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = FE49D72798C7E925EFCDDBD0DA890D72 /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B39755CA8A7B816B6A57EC29087BD956 /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = E3544AA17D2941CE45A9B02FC12E622D /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B39C95558EA3989B03081A2253FB1C98 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 87D6D5A6D51FF6A8D1536D2084129B4C /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3C9CABE9208309E247C6061E782E960 /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = C2FD0D14DD20B6638244C38BFD0838C1 /* REANode.m */; }; - B3DFC49CD5F1B7D91916567EAE8F3306 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = F1F724C9FC2FB1766FCE69B75AC8861B /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4300BF68D8E5E64E24CF0A04E77F888 /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = E84473C6E9D1249733F85BCA8A49A849 /* BugsnagCrashReport.m */; }; - B479CF11BEA5A71A03AAF37385513FDB /* RNFirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 9188D61061A6B13F5513EE916BD4E44D /* RNFirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B480BFFEC12A900116E4600D0AF1F5E3 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = B9679A8EA1775A60748680631AD4E02F /* BugsnagUser.m */; }; - B48F0699A2146884367D34434CC96280 /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 324A9FC4255F80E0335160E098E2ADB9 /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B390BD68076518967ABFC3435372468F /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = E3840C1128E2D918D5FD34FD02BA879C /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B39755CA8A7B816B6A57EC29087BD956 /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 5196FE966ED0E6E91746B450DFAB0838 /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B39C95558EA3989B03081A2253FB1C98 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = CAA40A664C3D4C732482D9D9E78269AD /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3B3F100ABCA97466DF82E44B13B9FE7 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = EA23EDBB8449E1237AFF6A536AC09EBE /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3CBBB770AB8BC92706790ACC6EF47BF /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F5DC2C599B897F3BEA50CCF17E2A4CA /* RNVectorIcons-dummy.m */; }; + B3DFC49CD5F1B7D91916567EAE8F3306 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 454A857EA45FB1275370686391B3936E /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4300BF68D8E5E64E24CF0A04E77F888 /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FB925A9C6C7A5324D5B20A7BA0AA7D4 /* BugsnagCrashReport.m */; }; + B452FCB6AFFA2A25D237085FB920EBAF /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 526CAA4479506B054FDD902FC6CF1464 /* RNDeviceInfo.m */; }; + B480BFFEC12A900116E4600D0AF1F5E3 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = D5E388B2F109F2CAE5E43CFE21637BB8 /* BugsnagUser.m */; }; B4915265CA25AFBEF72EEDAC5372E840 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 7ACD3C43D9E249F86725376237B43D64 /* io_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; B4CB74E561AC6D58BF7F5AE56B71DBFD /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = FF283621AE4C8DB2E3F7FBBB1BEE4F25 /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; B52794F72404F5BA7A79A2DBBF596CB3 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B49603EB3034DABAB10F60382C1DD4C0 /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B542243C6D641A7F17F389530CCA9DBE /* yuv_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 650AB6A4960DB8AB8EC84DAA3B673C71 /* yuv_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B54942BBD25A3BDDB5B490EE1828291A /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F69A269B0A8A2E08861D3BE3BC48F1DB /* RCTBaseTextViewManager.m */; }; - B5537025A1BA1ED1E9C4C097F4F46BFA /* RTCLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = D9490B260356D5DD04A0A98DB79CF269 /* RTCLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B58807C392160EE39BC7AA15605D3A44 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BA667A7AF2D5B4AD9BD9CA5982CD70A /* BugsnagSession.m */; }; - B58883761A246C8A2FD6BFEF4BD7CF06 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 55E1AC173553BFDD838D58A54A2D1E42 /* SDImageAPNGCoder.m */; }; - B5BA092A1B9CE09C508B93055433AABC /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = CFC16F106B3905E77911EE2CD8D20F1D /* RNNotificationEventHandler.m */; }; - B5E0630C715C75293DFA96943823ABAC /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EDFBDF41CED6FAE41BB61442F0B0095 /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B54942BBD25A3BDDB5B490EE1828291A /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BB8826901BD569F68A1CFE865DB78A6 /* RCTBaseTextViewManager.m */; }; + B58807C392160EE39BC7AA15605D3A44 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 905D308C527F25AAEC313C2FD4878D6A /* BugsnagSession.m */; }; + B5A3D1D62502E51CEB944C5C4F406C2C /* RNFirebaseMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = 39A8C39D881D622C2CDAF651970352D2 /* RNFirebaseMessaging.m */; }; + B5A58168F911ADAFE5452E239ABD62AD /* UIColor+HexString.h in Headers */ = {isa = PBXBuildFile; fileRef = E4F955CFBD57187BE53C9B28D12BCB5F /* UIColor+HexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B5EE178373ABDB48583FA1CE04FD9A05 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 0844A5E812C2B4DCD793BCD90067E0A8 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B61A094A67214561D654239733B41566 /* UIView+FindUIViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 324C5408958D3B7B930547B24B5DE6A4 /* UIView+FindUIViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; B64FA42E184A0EE28D65B959449C49FA /* GDTPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = E5F9BC99B025FF83A85BD63F3682C6D2 /* GDTPlatform.m */; }; - B677EB807350B4D77ACE0EB110E3A601 /* RTCAudioSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 831AC8636A034EA15EBB3C98700524ED /* RTCAudioSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B67A4BD98A9F686541789C0D0889AFE4 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BDF73D0B3870AD69027A5399EB6AD8FA /* KeyboardTrackingViewManager.m */; }; + B65816D07C5EADBF96ED3BB03DD3CE4F /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 73C96F87183854B9403A7A28CE021A70 /* ObservingInputAccessoryView.m */; }; B724AB793386F487E48DAC082B773D56 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = D38F9EBA512377F8AD6195CAD24AA076 /* muxi.h */; settings = {ATTRIBUTES = (Project, ); }; }; B7253BE61EBDD783BEDD27B260F45F72 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 32BD5AFB9D2CF33C5166AAB7695AD8B2 /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B7417F01EDABFE5CCFF4EF244182537A /* RNCWKWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0704FC21B1B8C2BA8E1329975B5FCEC2 /* RNCWKWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B751A02B30D18743B395748B47369240 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DE4385F483B2F25C810E9173F642BEA3 /* React-RCTImage-dummy.m */; }; - B784E1D1A5FE71DA118DCDCFAA47CA79 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E2164313A0C0905C5B30EACB4066FAF /* UIImage+Transform.m */; }; + B735D33E82232BAADEA15DD0F051EE3A /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CA3557B85A6351B8B481AD7B98A54E2B /* react-native-orientation-locker-dummy.m */; }; + B751A02B30D18743B395748B47369240 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A7FFACCD0A9D24295B320FAFF43B1135 /* React-RCTImage-dummy.m */; }; B7A4D50989E610028B3EE3816B474C3F /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = BA7B1ECB0A999AE1D6894D31557E6E88 /* msa_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7AE915798FC8A54F00BC4C5A1AE2C16 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7309A97BDAFFC8413AD37EDEFEFD3C75 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7B34A392B6BEBA270B4F0F1D677AFBB /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8CD097EF1DD8D29465CC59BFDD5C8E2C /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B7BE7365C12CE18D05FCF973032A5288 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC47C8B3C17EB30C5162268DEDD5657 /* UMExportedModule.m */; }; - B7E191713420F3EB03D1836E0997B08A /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 8123E787639BFD2900C6AA7A76A24C96 /* UMSingletonModule.m */; }; - B7E3983B43DC39D349CC5B9134F905A7 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = EB2F3DC5822BA6D5641A4C9806F92AAD /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7E92F65D6D8DB51A87741D0D3B8A641 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B3D2AA05E5984B03DF83A2AEC254AF74 /* FBReactNativeSpec-dummy.m */; }; - B7FA0ABE9FF6410AB4C6D1EE2F9E2019 /* RTCRtpEncodingParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = 5040BD35048B8F691BA62F2531461875 /* RTCRtpEncodingParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B832AF604B54B0734598D42E2A33EC6C /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 09194B6B9B3142164C311680EBF2F1F5 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8489BFBF9A4734A20EF91A499532492 /* RNFirebaseCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = A564C2ACC37C3AAEB186F8681DC43565 /* RNFirebaseCrashlytics.m */; }; - B877D8EAFAA81B89E513FB5A0E30B97E /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 64AD98C457C1EDB766B2F16343FE2A0C /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7AE915798FC8A54F00BC4C5A1AE2C16 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C5DB173570F328FBC26131203F7BDC19 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7B34A392B6BEBA270B4F0F1D677AFBB /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = B494ACFDE55946CF40551A1829ACE47F /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B7BE7365C12CE18D05FCF973032A5288 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 251F94B663BD2ABE2DB4601D2EBD781D /* UMExportedModule.m */; }; + B7DB24D19932A889B74EF2FD1E1B0FE0 /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E4D3A8243738B05FCFDFD8E899E5256 /* UIImage+WebP.m */; }; + B7E191713420F3EB03D1836E0997B08A /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AB8BEDA02B948B9CF3D16A5FA07FB63 /* UMSingletonModule.m */; }; + B7E3983B43DC39D349CC5B9134F905A7 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = EEF50949FFCA38C657C9B02B45153405 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7E92F65D6D8DB51A87741D0D3B8A641 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 54F9E394F39D66C80BDDB1EEB2D34068 /* FBReactNativeSpec-dummy.m */; }; + B828D8AC1935D45391624C8C3A37D77F /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = A430EBC5245691D9ACA012F7DEAB02F0 /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B832AF604B54B0734598D42E2A33EC6C /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 106CB78B1A5A36AAB5A3359AF69C107D /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B836861178E85DC6FCA34D851DC41DB5 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 24AF0CEFAE4F634EACCB528E4D7EB495 /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B877D8EAFAA81B89E513FB5A0E30B97E /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D1E191EE8D6006F67565325E787A2D /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B8790CB076B823D920934CAF2D3D7CBF /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C9F171DE6D8B89954C60A824C6BC6524 /* REATransformNode.m */; }; B88A0A26402BC9E1A8E97FE2E26AC658 /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A19CB4381EC8DE430707CC50BC15A1E /* GULLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B89B48C8C6AC9E45E892B0C80469AA01 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 70B970961C2F3B5000B0EE8ABF17A2C5 /* RCTProfileTrampoline-i386.S */; }; - B8C0F8DE132DDA4B2F67765BBDA8962B /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DEAC625D17C923841ACC83C2FDCDA15 /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B8D54BCB392771F1341A446EF705A11A /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 68AE9021618AEA3A3835498E11CB6E1C /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8FC1B327013E2D189784307C365AC4A /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 23E3C8E3DA32F49A12C06A02E61C9834 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B896AC1D6D421F34FD7117767BB06EA7 /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B299FFF600468CC5F031359F11529C30 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B89B48C8C6AC9E45E892B0C80469AA01 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = C99BD064EAD25CEE5509438F9BFA1FFD /* RCTProfileTrampoline-i386.S */; }; + B8C0F8DE132DDA4B2F67765BBDA8962B /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 36B6ABBD0C9C111C4CA22D0C6164C4D0 /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B8D54BCB392771F1341A446EF705A11A /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DCB68C86318A2920137BCCCA69BA554 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B90C5C0F65B7E3A8A3496E443FB57223 /* RSKTouchView.m in Sources */ = {isa = PBXBuildFile; fileRef = AD102486D88241996893F8843CA86F6B /* RSKTouchView.m */; }; B91C99470A466DCB57F620ADB4FE86EB /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE9A3B6BFE9643DD7B8ACFFEAC71AF79 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B950C322F3047EBBF4113A72B21A774F /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 889D0D42674C5E6CC9DC2A462C90D239 /* alpha_processing_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B96CA01A8E9D8453E2762316D66666E2 /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AB43F689F040181E115C156BD705810 /* SDWebImageDownloaderRequestModifier.m */; }; B97AF74B8C78A7B156347B3161BFAA59 /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 534B020E4ED8D612FD4EE4FE6597FF40 /* FIRVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA2BA93F45BF4301FBCAC3F28C14D5C6 /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 15A6BB79D8E29F4F7A980408E1A4A74C /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BA2BC83095E22C1245FE705A08439438 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C85A56AD116BB1363176296E8C76E8D /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA2C02AA76F1FB2454B36184BBF289B7 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = B2E1BDC3A338EFC910A3C5C6A89A0531 /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BA6817D3B3F46CF3BF20A6BF5EF13860 /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E52E0E9DB232F8BE40F074B56A453EF8 /* SDWebImage-dummy.m */; }; + B9C8CE2CA4EB322385296D22A8A3E01A /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E27183475FF0DBE7A188184F39DE0204 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA0336AC9891C2DB111855C7BA5F3C0D /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D8DF8B24F606695A090B67DC289233D /* SDImageLoader.m */; }; + BA2AB4C7D8C0577E6A2CA5B006FB48A2 /* RSKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 4947D5C4E29AACBE0A9E8E2A8B476931 /* RSKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA2BA93F45BF4301FBCAC3F28C14D5C6 /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = FC807660334318CD2F7366195244BD17 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BA2BC83095E22C1245FE705A08439438 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AC0B5BB1CAA9498E6514E0CAC55C6C8 /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA2C02AA76F1FB2454B36184BBF289B7 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = A0E6BC76AEB9A75EB1DA9E6E7966382A /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; BA95A5A4B386EF1F87E97D4723CE4816 /* GDTCCTPrioritizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ED8C8A00B509170203FB4A02642BFD6 /* GDTCCTPrioritizer.m */; }; - BAAEB56CF1A1C6D7A438B3FF975AB675 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = 26671C519571A72819B5664AB739BA59 /* BSG_KSCrashSentry.c */; }; - BAC002FFBC9B1606318D4D232F2599FA /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B2C58D6A70501D55F5962177C44D3E9 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BAD934141AC43CAD1092B240F575E77A /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = D11D5581B4814C0A6DD0BBC33AF5A3EC /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BB18BB236876B5B16E190ACD6CFFF443 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3685360A7BD99E6847628EE5D1FF83EA /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA99B58D3AE5FA4B06EA9065A20127EE /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8954E18537096997A8D4FEBA753C6E66 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BAAEB56CF1A1C6D7A438B3FF975AB675 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = 79DD40043775B63252A205F78915973E /* BSG_KSCrashSentry.c */; }; + BAC002FFBC9B1606318D4D232F2599FA /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = ABCF9492809DCBC6AD61CB4CE4A3338B /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BAD934141AC43CAD1092B240F575E77A /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = DACDAAE921F8AABB62702B5329E67DF1 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BB18BB236876B5B16E190ACD6CFFF443 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A3F35EEE02E752F06C8D29DE4F1E003 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; BB28C8FC324F6E7DC7CBC08C55561AB2 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 6ECD9699C19C8C6F431640ED88152EFA /* lossless_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - BB68D8CE4C2514AB303A6456ECB02E10 /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = DCC2396290513A2898C8A429CEFB1F69 /* 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"; }; }; + BB68D8CE4C2514AB303A6456ECB02E10 /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = D5668FBAE8B2362798A6E63208DC49B3 /* 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"; }; }; BB7D75B8EF99A177AEF43F4ABDB6BF6F /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 156B3CC133ABAC42F77BFF7E0DBCA9B2 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; BB85D8BC19BD7BB07CD824693B033C0F /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AD8F59977EC8DDDFA47B22811A38C60 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBB3AF86D9A57584E0DE9F9AC94D6F1C /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4BB49182ABA6724F004AC43D7881FEE /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BBB45DECD3CC6B6572AFA48E286727B7 /* RCTAppState.m in Sources */ = {isa = PBXBuildFile; fileRef = 18DF4010656CAD060057D63A7A33B9A7 /* RCTAppState.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BBC7090E65E274BB9D606AA26026F15F /* RNFirebaseAdMobNativeExpressManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 049165CF7A13EAFA3995830395BA091E /* RNFirebaseAdMobNativeExpressManager.m */; }; + BBB3AF86D9A57584E0DE9F9AC94D6F1C /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 346213A86B7D47591B84F49573F50053 /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BBB45DECD3CC6B6572AFA48E286727B7 /* RCTAppState.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F007CD62A49E9DCA8495377094A803B /* RCTAppState.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BBCD5D84BD786D42F298740F80EC9D7A /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 451AF79F46F083B22E4B8C47FC32D436 /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; BBE39282FC1B75D6C1F0D8D0EDFA356E /* FIRInstanceIDDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 2213FE253CE86E4A6B417F320CE5C9C5 /* FIRInstanceIDDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC0292F8A6EB1B807B1DAFBA3D31A3FA /* RNFirebaseUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DF51D0CC454A66F5E3CC78310A27191 /* RNFirebaseUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC3429185C81201E4F9AC011F09EB015 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = DABF64C8CA637730EF217FF4097BD858 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC3AEC8DE083424803C1D951FF0E8DBC /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6FB5EB38561E65D3EF4253AE425990DB /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BBFFF7416BC1C20A1B8BD87257F13063 /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 46CF012EACDB97270CE8BD37584A6C29 /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC3429185C81201E4F9AC011F09EB015 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 406AC12A65E4004888E089CCEEC1C49F /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC3AEC8DE083424803C1D951FF0E8DBC /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 020A6B2EB8E76E9D6E47C3E946F29E95 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; BC3D81134170ED1976402FA1EE7BA66E /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 14F2AF67D939C407B4E0C830C719EA35 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC77CFAEF4561885C14A76F36FF939C5 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FF518877698CDD8197DAC93287BF22A /* RNScreens-dummy.m */; }; - BC7823D69B7FA18696F5C13C6A9149A6 /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F0FBFC3F758F52FBB7574BFBA8C795F8 /* EXWebBrowser-dummy.m */; }; - BD226B5FFD7A515527D472528F5E7555 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = E68F7FFA01C75EACE6292ED98DA7153A /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BD35B7BA8E51058AF1E912577253475C /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 34FBD3EA4B00CE9AA517B4E7CDA4F792 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD6DC23F7C3DF8D8DEF86073146F7E16 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 646D4FEBFFC5D41B5F6A181726F6CFB5 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD8944E7BE58503B26E9650876DF3A10 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F1BEB586B4D73B7397166B74493B0FF /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD91ADF4A736023C776F039224DE9069 /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = E51D207B847CEBEE94542C146B1A0C3F /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC7823D69B7FA18696F5C13C6A9149A6 /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 563822FDB79137D0421AAFBC6FBA7A59 /* EXWebBrowser-dummy.m */; }; + BC8F5C98F8601EFE16EA2CF4B8D92476 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A88FD8114BC9BCAEA646DD2C5C88977 /* SDImageFrame.m */; }; + BD226B5FFD7A515527D472528F5E7555 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F333097B7E3C4AF4420A6FCBF44668E /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BD35B7BA8E51058AF1E912577253475C /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2144AEAB28A632FC82A2A3491D89393E /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD6DC23F7C3DF8D8DEF86073146F7E16 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = AD8A98521675B415BA698C2B16F94E0C /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD77D5AFD6CAAE0E4E9C3A6A2765F5B2 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AEB8F93FF15D9E4E046432B41A1053F /* RNSScreenStackHeaderConfig.m */; }; + BD8944E7BE58503B26E9650876DF3A10 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 44F20F42ED840CC498B7D42A814AAA36 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD91ADF4A736023C776F039224DE9069 /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 87887BC73463CE749F46AA1D1A817187 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; BDA73F2EE1C869F55AA9D921203DC75B /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 99D24984BBF170B57735B5826C92C907 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; BDF6D72BABBBD8B0C3C90BD616038D57 /* GDTReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 83AABFEE9F4C757101D5F846CC4BC144 /* GDTReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDF76F6203FE59FD8D6C6291ADDD533C /* RTCRtpCodecParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = 814FAF3CD3BE0AD73BF417D24534210B /* RTCRtpCodecParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE0913DC51C23EAB2DC7964C76029B63 /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BAB9FDF47570C4513C24F97CB70A1534 /* EXAV-dummy.m */; }; - BE4F2F4EC40A2DE9C8542BDA0081019A /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 776F39EA259FAAA98436B0E6941D9539 /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE6384C0088831B334B12F2D831D92DD /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 7997276F6893A14A22CA551705B8F16A /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEAAD2FF8C5C76F65BC62A458856F9DD /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 9CDA400FF10058D7984BC78BE308E138 /* BSG_KSJSONCodec.c */; }; - BEC35B978A5BB5B366E2D5DC53DDC6FD /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 071768A3EFC150AC3C110ECED47803C1 /* QBAssetCell.m */; }; - BF1D5170F7973D80FF67422D861904C3 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 72C34B123C348D7C5AB4218444FF9E56 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF3C26A7BD11F4354DAA8D2E9010E530 /* RTCMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = C54D07D5CE862248ABE7CAAE0423910D /* RTCMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BDFA16C06AB2DD941EFB13062F61CBF1 /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B5CACD3CC824D102D17D83A52815ABB /* RNRotationHandler.m */; }; + BE0913DC51C23EAB2DC7964C76029B63 /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F95983EF6C1E121763468A56EFD9AD74 /* EXAV-dummy.m */; }; + BE0D5439AE9AB86A8675072840B4174F /* RTCMediaStream.h in Headers */ = {isa = PBXBuildFile; fileRef = C382E44A54CE80939AA8A0B167D84862 /* RTCMediaStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE4F2F4EC40A2DE9C8542BDA0081019A /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BA90E5CF1AD526DEE8E4F31EF6C571B /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BEAAD2FF8C5C76F65BC62A458856F9DD /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 1C7EE72423A02CA0502FB138F6D16627 /* BSG_KSJSONCodec.c */; }; + BEF9014758C3810060AF5ADC0A1E1A82 /* RCTVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 572715EDC500FF86E4F453FCD27829F4 /* RCTVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF1D5170F7973D80FF67422D861904C3 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 67FE47AF8F3230485D48E64D18C7FAA4 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF1D58DA635D64D8FF2279CC338B9966 /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D238C9ED535F24952D58157229FCCE /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF9698CA6FFCEC379E28E8185F85DF88 /* UIDevice+RTCDevice.h in Headers */ = {isa = PBXBuildFile; fileRef = A073A96BCF15355311D8FADBE1A10813 /* UIDevice+RTCDevice.h */; settings = {ATTRIBUTES = (Project, ); }; }; BFA4A4BB1C3EAD3C592403CE215F3BD7 /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 5A4DE8C9C9112596CBEA853A84555850 /* color_cache_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - BFED0E108BCCB32ADC7B04527528CB87 /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = C0A06E253AD3D4FA7736DB1E5C6EA5DF /* EXConstants.m */; }; - C0038DF8EB5666DEC259C37A978A8737 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = EE87301A2B40FBA63B66EF0AAE2E4462 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C00AE7D932CF9F7617728F63E779B97E /* RTCMediaStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 859729F5482B6F35A5D91DA533BF872C /* RTCMediaStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C03CA28B116045C383FF1990E5408F62 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 54D57F9A5F129DB563DB63D2EF975180 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C09E6D962169E80BA183543F54F8B386 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CA48834F4057D3E1182AFD7984E142A /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0C722C84427618D9AC64660008F2CB0 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = C5AE3FE00396E6932F0970D875D46BDD /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BFED0E108BCCB32ADC7B04527528CB87 /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 759DAB5BA82296E5F3DBDB47BB6E1F87 /* EXConstants.m */; }; + C0038DF8EB5666DEC259C37A978A8737 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 654CC2EE2389DC0BF9C429CDD23315EB /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C03CA28B116045C383FF1990E5408F62 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = BFC4BD1915416680E595CE59E15913DD /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C09E6D962169E80BA183543F54F8B386 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = EA2B79A275424C62EDE0C7976DEBF1A7 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0B87D1CD0BB2ADF279A46728DCD28F3 /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 0594FB0A915C130560EDA762CB22435B /* REAClockNodes.m */; }; + C0C722C84427618D9AC64660008F2CB0 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 119643A8F1E2CEF5A7B405DDB6C64AE1 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; C0E2071C1ECA238C47C90E7041CEB933 /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = EA1CA2995BD4B69E64862FBC8B4A4419 /* filters_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C109ED916C6937AC2D8340A1582B920B /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 409482F50DB4534EE8059682EB3F83DB /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C1245AD94BACE0CF7931D4958079246E /* BannerComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C422D52F8F58884A8BE9682408FA64F /* BannerComponent.m */; }; - C1276EECE6D422B68E13E47C7B81E35C /* RCTVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 34F05944C734CB2E459FB131B71D8264 /* RCTVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C16235A0EEB806964287D284F7F2A003 /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8275CBB6A37B52F3186AA519016042B1 /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C18D8E34DB1582FC5FDEF7E48C3EEB8B /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = EC8C659250092F28C97385344E6E30C4 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C18EF986E95F296B48B6DDE56AE93411 /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 73F22E8B31686E17D1206A0A698338E7 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C198AB42A29594802AA8D6276A808FD3 /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 94DA163D427AA3C82ADDF6C8A197A7BA /* EXFilePermissionModule.m */; }; - C1C8C903BECB2B56ECD7BC65E0236380 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 964C2E3CA56634EA8AE6821E435242FB /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1DAD0BCC7E1FE86077635C0E97CF1DE /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F08060C005CC41632EBBEFD89FB9DE7 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1E124452174B7CF949C9548EF1B9FDA /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD04BBFFD98E6CCF56F6DC88D27CBBF9 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - C2006A5D2895FF6D8ABB1DF9BE4E1442 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 301700A7498F4770349055016170FED9 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C22B81E28527295AF6577A21B4DE45BC /* RTCFileLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 021B9DC548910DED65B01E56976E107C /* RTCFileLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2CE5817E5A3F269A0FD553CE3680CAD /* RCTNetInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 40395B670155BDF3C22C04B25B743A69 /* RCTNetInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0E7EA2D82836EAAD33A9C1BC6F9685B /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = AF079B678CB2895C68C623954775C232 /* UMNativeModulesProxy.m */; }; + C109ED916C6937AC2D8340A1582B920B /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = E4426E25538C8C6CFEC721B5AD10AB6C /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C12166A2A19FCDB6ED6DDF26F5798ADA /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 436AE389A1F083361C83674F71CE60FC /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1219DAEB82B1A9799B6CF07BDB08DC5 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = AAB6B2301A1A2F3EA0CD228181C5EB93 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C16235A0EEB806964287D284F7F2A003 /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 98AC32DE2B9BA325657E54DAD7670FF2 /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C18D8E34DB1582FC5FDEF7E48C3EEB8B /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = E113B65AFF6BD28BC6054B313D106D16 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C18EF986E95F296B48B6DDE56AE93411 /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = BEA60988EF7B325B39DCB6D15B7CBE9F /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C198AB42A29594802AA8D6276A808FD3 /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = CB9DAACEDEC6F23F306D137EB7802662 /* EXFilePermissionModule.m */; }; + C1A596024626AA622A4BC843C83FDAEC /* RTCFieldTrials.h in Headers */ = {isa = PBXBuildFile; fileRef = AE52CA7F96D5E3CE8B46C31F9E414FA6 /* RTCFieldTrials.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1E124452174B7CF949C9548EF1B9FDA /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 600EEFADE871FC0F701B0BCF50793CCA /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + C2006A5D2895FF6D8ABB1DF9BE4E1442 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 11850B42DBA9FE3A57BB0F333BC878BD /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2192739C101151181B60E4F7AB59930 /* RSKImageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 49EDFEC01407C66949E4CEDEB9038890 /* RSKImageScrollView.m */; }; + C22AC2258E09924FFE5CED63C14620E4 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = CDA3E71057426F69B44429BE6174D6CE /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2CE5817E5A3F269A0FD553CE3680CAD /* RCTNetInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = C7F9421C8E92E1B5B91EEA501EB4D352 /* RCTNetInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; C2DE26D47E707CAA4589E78A87278B68 /* FIRInstanceIDTokenInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 570EC5C510253E37038C8008EE1F4FF9 /* FIRInstanceIDTokenInfo.m */; }; - C304D7E30AA471BC7CD95868C479A6C2 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BB183ECE5FB81679146D0829623CBF28 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3452B1D351D9AED0D75E763E3F0DE01 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F479A81017385443C1027B3BB11D4A8 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C36018DA6269EC71A36BDFF60765A3DF /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = CF34934D7B6EF5A185FBAF6BF9CCC504 /* UIButton+WebCache.m */; }; - C378199B2A1553A91F63D0B0EF654810 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = A931FDF2119AEC8264E53F485E9E618B /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C387AF6A6FCD4C3D2605DA9FB258ABA1 /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D32CFE4017C0FEC790568575C16997D /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3AC791C401B6C45669F8CDD7DA69904 /* SDImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E584394E9D48C593E4B7909B5016C90 /* SDImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C304D7E30AA471BC7CD95868C479A6C2 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 066664EA37D87CA5AC0E302AD8EF0152 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3452B1D351D9AED0D75E763E3F0DE01 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 278DEF1C4576075250821C4A53615C20 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C378199B2A1553A91F63D0B0EF654810 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 591BDB34AACE234EF9AE85B17E2C976D /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C387AF6A6FCD4C3D2605DA9FB258ABA1 /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = E20B78A3A4F66E5F6881811762EA7F52 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C391FF014019CFA849DE6636F1E38016 /* AudioRecorderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 786FAE4427DCBD8624506EBA34FC6832 /* AudioRecorderManager.m */; }; C3AEEA83F261D9DFCD9F17A8D7B37534 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E445482A429BA90997690A15AD48D454 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C3BAE7755EBB363DA6B947E5DA88D2D6 /* RSKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A5156C8465DFCBF352F718A1DEA0AA6 /* RSKInternalUtility.m */; }; - C433D9BFB557D2CB94C9E5C56C02B9EA /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 44AC4DE2C71F4B591F1CF7B13A76D78F /* RNSScreenStack.m */; }; - C438B90BF3A2FED6B786A1275F9160A1 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FF8B9A845F797E602C93951FB9ADF44 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4462F68BDE45F02AF989E67AF99231E /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 50B34085F0F13D095EF1FD8BF71002DD /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C44D49051AD4551ED6C10C78CEB7F622 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4E17146B13029796693BB08BCBD5390F /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C3BC7B071566F6448BB349F7CE87570C /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 65C1B15B22D02488D6EB60EF73121251 /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C438B90BF3A2FED6B786A1275F9160A1 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = DAF2641D9AA7A39E091124E1212FB0F4 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4462F68BDE45F02AF989E67AF99231E /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F528C63BA9C042F1E3493994696E3814 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C44D49051AD4551ED6C10C78CEB7F622 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = BF7B53A538DA71BD621E4E21A0061DBB /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C45B9CE58C772716966E57A69062A1DF /* filters_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E012CF1DB5BB794D9C5E009E1DDFACE /* filters_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + C464EDD333DE56F0415C8F3CDB3E98AD /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 772757A16324C61D46F81C91AF534576 /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; C49EDC286FDF8D55B5A4387356698054 /* ColdClass.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E0D044868E3CE3EA2B650D94AA0C42A /* ColdClass.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C4A45C69501451CF8577B44F6A388443 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D57C5E0D20774414E41F9C226F8B089 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; C4B8591049FA21E7FF731DF7A1B0EE1B /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4C913B6FE9B8FEE9A151E8CFF9CD6FD7 /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; C4BFF5390AA1FF9DB4B0D8707540AA47 /* vp8li_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 18441F24ACEAB19293F92E316C31025B /* vp8li_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4C28EF8A33B5D66709A94473097642C /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B289E7F2F15A57CC89179131BE50FEC /* RCTAdditionAnimatedNode.m */; }; - C4DAA1673B378DA41F0D51CC8F6B0AB6 /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = CFBA29F62FFEADA1B7E424BEDD68985F /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4C28EF8A33B5D66709A94473097642C /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F696DA3EBFF288A5C816CE8667952FFB /* RCTAdditionAnimatedNode.m */; }; + C4D4ECA4AF964ED87FDB0CE86DF56F4F /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 84FF900F83FD7478C8A05762BDEA122A /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; C500FB8AA7AB3E5D115E9589A148D829 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 0BE10FB6DED9B6EF06C70718C74B4140 /* lossless_enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C519CB9EED743E56774BB65931169DC0 /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EFFAB8FA462AA38356F12CFF3F9D9A4 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5751E6D88E003B8D12DAF7011B41192 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6B39B6D4C80F5220FF7B4BEB1385C8E /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C589D858B03222C265B329D16C32A728 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 9867E013DBAE0709E68B1FDD23A3F14D /* DeviceUID.m */; }; - C5BA042E6835A64D1126967625374EF1 /* JitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = BA040D64A0E9FBCBDF0150118A81B746 /* JitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5C09B4755C31B3DAD4605AA42C3A556 /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 843A1076CC5376E1B015E17656973B94 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5F7B297E0ECFAB048351A24CD44CA32 /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 9828A9961B8C1F61D324DF58BE8A2A26 /* RNNotificationParser.m */; }; - C6550E9C9F4EB89AAE698A5B7D403CFD /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0292B7CDB9E49FAFF7AC16B3319A13D1 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C519CB9EED743E56774BB65931169DC0 /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 47CB1DCBBCC5C36889C4844863417462 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5751E6D88E003B8D12DAF7011B41192 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = DA4FD79BC4C080BBAC75F57A2F011894 /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C5C09B4755C31B3DAD4605AA42C3A556 /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DD1AC6AC1DFC192A113B0CB6AAB0727 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C611C2A06B89F5C33BB025FB685A293D /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0086C4C22F3D149EAFADC1EF559A4081 /* REANodesManager.m */; }; + C62DFF6E6FE5D325AA4DB0069F0D7450 /* JitsiMeet.h in Headers */ = {isa = PBXBuildFile; fileRef = 298301BD78268EEFC1A39C4AE6C257C6 /* JitsiMeet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6550E9C9F4EB89AAE698A5B7D403CFD /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5443E20FCAF7E2D163807DE044983E50 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C66F02A9A969980F69AFC5623853E78C /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = D03C45B97B087F2A82A89A5EA3B77877 /* demux.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C6A39E866431ED3A78BA2F20114EFCBD /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9060679BFD0C09C936BCF4C7D048CBDC /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C6B6684C3D88C826389C24634EC328EC /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7AB2B342B4AC7A5E6A2972BC1BC18450 /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + C6A39E866431ED3A78BA2F20114EFCBD /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = CCC80984F81B311050BF2163EA6E0513 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C6B6684C3D88C826389C24634EC328EC /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2B19EA38D947F5749AC7F4FCD174137C /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; C6B820384E4D780B742E4436010840A6 /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = BF7E7F291CC663AB89B2147B0A97CD5C /* lossless_enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C6BC3D436B27827AEAC0F7CFF90E8DF6 /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DF74E94CF9E25426B544B546E1EAF7C /* SDWebImageOptionsProcessor.m */; }; C6C8F1AE93A24FCB0D5BDF66854A9BDF /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 3622A654DCA94A9C868CF3777A3C171B /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6E8F7C5095E82E67D00E882DE3D0F98 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E72FC8CCCF7AF978548C4BF233B2F812 /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; C6F32154918997BC7F56754265E1C434 /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3A66D67F0321370D7E120BF270FD2768 /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C73D114FBB6B71DD449860DB08EDCB27 /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7076C6B8A820759FF5146F67E4D41BE2 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C74C9D861A6CD067815C3EB190669A6B /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = D25847856E4823402A310E9043720C4F /* EXAV.m */; }; - C7553539EEFCDB6FD3727C244A243A3B /* RSKImageCropper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A4E3B80FEC459F74915B3D9B6DC2BE6A /* RSKImageCropper-dummy.m */; }; - C78286EAD4DFFDDB0C95BE21B68E8CF8 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = B679806DF758FBB0C803752D3ACA53FD /* RNLocalize.m */; }; - C794D0851E8B0D983AE793DF56C6AF67 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 993E659CE82C1BE4DA5DFE7B8A62267C /* BSG_KSCrashSentry_MachException.c */; }; - C79E3DAE37AD7FB3E0DF294C9165D627 /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = BAC41DDB0B39CF7B503A188B07989D7D /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C7A37DF658A8C7A3B3F5F30FAAB53484 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 9C3328D71E30443739271866F6E41C5B /* BSG_KSSysCtl.c */; }; - C7F22AC94EBA4B3CC96FF9B0801C1A19 /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 133E3B3693D0825DE99696BEA3A98B39 /* RCTInterpolationAnimatedNode.m */; }; - C80DD48A6CEBE5DD88FFB1CE9B33C668 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = B29AB9EEAF6FC4CB09EC27F68BE0DBAC /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C826673291431B4B0F55D945F4A653EE /* RSKImageCropViewController+Protected.h in Headers */ = {isa = PBXBuildFile; fileRef = 60ECCCC43690D9CB6A582FE619243E25 /* RSKImageCropViewController+Protected.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C845D45DF7C9C18E9F8AFD70CB2A3B2F /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 11C5BFF681786C8C07F218507E1E7B6A /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C84CCD82B9E0D241F48CB5DF44DB98CC /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B0157AE7E8148C16CDE24AA0744625C /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8BC76DDC8042224F82FC3ECDD676BDF /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 23C17C7A5587F27D2D7D801FE7DA5619 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8D6E82888926F1333C7015C81E896B9 /* RCTWebSocketExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = DF970844235792870CAED48BA5088B8A /* RCTWebSocketExecutor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C92AC2AF7DFD077CED40A20F40EFA3E1 /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = 24C1851EEB7F460D1785C271DCFC6410 /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C73D114FBB6B71DD449860DB08EDCB27 /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 572F35FF9A03047E01309659B1FFDEE7 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C74C9D861A6CD067815C3EB190669A6B /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = 83584948FF87A463B67E7CE945146669 /* EXAV.m */; }; + C74FC497940AEDC401FD45B2FA8E2979 /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = E096419FE9FDA14CD8D75711559F08F8 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C794D0851E8B0D983AE793DF56C6AF67 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = F94F5BC8E4452CEBC37F7C1371570444 /* BSG_KSCrashSentry_MachException.c */; }; + C79E3DAE37AD7FB3E0DF294C9165D627 /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B958FF11E4EBDD95E16A6757BA5E2B98 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C7A37DF658A8C7A3B3F5F30FAAB53484 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = E4F59CF3B1654F7690A58B63A6C4403D /* BSG_KSSysCtl.c */; }; + C7F22AC94EBA4B3CC96FF9B0801C1A19 /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B5BD2AE058D3B8E4EC9B105A6810DF46 /* RCTInterpolationAnimatedNode.m */; }; + C80DD48A6CEBE5DD88FFB1CE9B33C668 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 65693A67C1BDB8B6E78AB1823E6202C0 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C845D45DF7C9C18E9F8AFD70CB2A3B2F /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BF364B0B4E5D2D25C15C7188AAB53F9 /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C84CCD82B9E0D241F48CB5DF44DB98CC /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 39B77D36E4FAA4C2B8322A3502BBAE09 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C89D347C87AE41FF36A0D95688676493 /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 916D6056E826DDA75D50E10E2ED17C4F /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8BC76DDC8042224F82FC3ECDD676BDF /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C14D4FF8ABD2BD460D882FBB23B87D3 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8D6E82888926F1333C7015C81E896B9 /* RCTWebSocketExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = 6490592C6AD0F26F3931F5C713A4E4EF /* RCTWebSocketExecutor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C8D960D2C67BB7AFA6C091882443C3DA /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F24CAB35F78694897A06293B1BECAF99 /* REAValueNode.m */; }; + C92AC2AF7DFD077CED40A20F40EFA3E1 /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = EAE0BBB117E06D915B2F7CD13FDF538B /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; C93D7B23ECA16F049F11E5D081E75E14 /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4733AAE8C450C92BF1A189451161D256 /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C94247E1CB50E0A227D8359DF2479715 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 337C91820DCF429BDF552DD61942B319 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C967FD26FE20D22557BF95585DF28333 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = 13AC49A67652DE6B0E1169DCF55AD1BD /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C94247E1CB50E0A227D8359DF2479715 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 0272CA1547397114B32AC9EA0F0F2EBF /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C94F7C271BCB9B327F0FB99A429A4E89 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D95A5D04E8E6EBFBDC82D9ADB73C6CC /* RNGestureHandlerModule.m */; }; + C967FD26FE20D22557BF95585DF28333 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = BAEDD389FDB86F2C9595891300B20C34 /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; C9CCFC48ADF5F9E61EA0535ACFC2E4FC /* GDTEventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C255F4840327CC871033F4BB43C1A89 /* GDTEventDataObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9DCADD64BA0867C9E873C447738788B /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 809C5551A21A85F154BBD05AEC2776AE /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9EB3B7BD3C03FE53AD3B843B3B6B185 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 54B0BBE1032EA46D33D5ED1F029C0B1B /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + C9D5D405DB6E32722E9B718D5ED7F70F /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D3114FED85A6E42DF24CC1F44CD66E4 /* RNPushKit.m */; }; + C9DCADD64BA0867C9E873C447738788B /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D22F4EEE707E99AF2F0374BDEBA5944 /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9EB3B7BD3C03FE53AD3B843B3B6B185 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = E788DB650A2F048C9895E115E28DAB84 /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; C9F6FA78C31CA00B5CB0BBB00645A435 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 8FF638D9ADE0824AE128CACB3A645A86 /* filters_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CA17CE2B9CCD3AB56E8F53E93DF87A75 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 811757FAB06905B7FB9660C497BBC927 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA29FAFEE2943B85A420B91A6EF02240 /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = EB4B68395005DDC314F908569392A5DF /* RCTConvert+RNNotifications.m */; }; - CA6273CE848DD9203B83E8FEB56D6750 /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = 54B5CB36DEBB42F4E0649F4F12104DA0 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA17CE2B9CCD3AB56E8F53E93DF87A75 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A2B6E61A4C49F83E6022AC2D08049CEB /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA23126A2ABFF722D6D73A8A569D70F4 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 98473CA72F08DFCE7A232FAC89E9E474 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA6273CE848DD9203B83E8FEB56D6750 /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = A809C4E62C93E7DF9D89DF40F13834EF /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA9EF0BEB6DED07C10AC4FCB9AB9A6E4 /* Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EF4EB9BC1AA0355FDFD7835B38C5896C /* Folly-dummy.m */; }; - CAA25862E9273B8EA873C285E2EDB605 /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 40679C865AE0F12EDADDED081DA55A5C /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CAD2FEE94308EA6D6F66AA1E5BD2E372 /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E5E6A269FD82280AE52486F1B37AF15E /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CAD2DA1F3EBD1737A6677D85D057C5AC /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 302B47BE89AD1F6DE4C2B9F0736D33A7 /* RNUserDefaults.m */; }; + CAD2FEE94308EA6D6F66AA1E5BD2E372 /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 09BA6B5F4933A9065D79D5E807AD54F3 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CAF743EE99EA16768C29B1D1F07CCAF1 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 444E4ACBE9151BC990478E19774A356B /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB1127A963A8B8B8A7006A4BEDA0CB96 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F8BC5A153E7952870D12E407DCE43B8F /* RNImageCropPicker-dummy.m */; }; CB451FBD339977E44FF2FC313068B5EC /* GDTStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 770C7186739996D7082568CCEFFA53BF /* GDTStorage.m */; }; - CB9ABE8B1B52ED2580748DDBBB6CF552 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 261ED9FFD6FD1DEC0D64A456013B3C33 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB948F430FFA0D05096F036A65DDF47D /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 42076511B6CA8354982B1E02FA428877 /* SDImageCacheDefine.m */; }; + CB9ABE8B1B52ED2580748DDBBB6CF552 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = CEA6DC59ED78B3FCF9A7C182534BA84A /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB9B4086D0929208AA2BEC070F8FB687 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 8479ECEBA351866C6C0847745B1475CD /* cost_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBB2DE25841E36F0C9FA55881DE5D2C5 /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = E3ABBA63C07AE6739FEF6B4BF5EEF596 /* RCTAnimationUtils.m */; }; - CBC8E6DC1EA72C467D818144735AB115 /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E27F6DE823CA3EAF16EA4D8E1D12EEA /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CBCBCA8E4FD4106C4E92298C22C5D3F4 /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = F54CB77B77D5EDDCF2C4F8D82E5CA667 /* RNRootViewGestureRecognizer.m */; }; - CBDB6C6D47FD2A71AE9FA22E8AC9909A /* UIDevice+RTCDevice.h in Headers */ = {isa = PBXBuildFile; fileRef = CE69E32D582FA333BAC513CAD8D4B09E /* UIDevice+RTCDevice.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBB2DE25841E36F0C9FA55881DE5D2C5 /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = EB06C422D9B67EBB917F90449B3F9505 /* RCTAnimationUtils.m */; }; + CBC8E6DC1EA72C467D818144735AB115 /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 2925A82355DBA63FB212E614028758DF /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CC136DC5A3C7ED75BD7DFEB71259EFB4 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = ED2BD888CFD64EC8DD95A19530AADD12 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC2951479ECB3E208779F6F65C3044B4 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = 925C0A8084715BB08C5E52CF23FA5ABF /* EXAVPlayerData.m */; }; - CC686A66420A3DA0F5F812E453C41597 /* RCTVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ECEA362BA726887D4D3869E86397B90 /* RCTVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC2951479ECB3E208779F6F65C3044B4 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = 68816F470AA9306413FF3B71D165AB95 /* EXAVPlayerData.m */; }; CC77D119CAD95C17FC96F9A40FDBB52E /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = B72212531A17E04632758E53C8B378B8 /* FIRVersion.m */; }; - CC98D8D476BA9CC47140550A6075FC8A /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27CA2C38E38208FEB8B0821455E60FAD /* RCTTextShadowView.m */; }; - CCB72325644FDA68D3156B56CFE29086 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = EB40941859B6BF085262A4AA891C2C82 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CCBEFC47F72009012A9399D8A59DB879 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = E427651E7E91747BDA13455AE366AD34 /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD36A5AAB550D3BC1D6A3D332173F9D3 /* RCTLinkingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6140962E25427DD94594E5C9A8736E2F /* RCTLinkingManager.m */; }; - CD6152400D958AD525D4A40BE6762532 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = BFC13C3F24BC248D0401305095B8EDE0 /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC98D8D476BA9CC47140550A6075FC8A /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FCF9CA915859F501DE422C13B80B49D /* RCTTextShadowView.m */; }; + CD36A5AAB550D3BC1D6A3D332173F9D3 /* RCTLinkingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EF651E0B9FDF0C45A5C81D3FB744B69 /* RCTLinkingManager.m */; }; + CD6152400D958AD525D4A40BE6762532 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = 27613BCDFA06C2A212ACBFB07E1608EB /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; CD79008D1F8A28F701291D1C15A00AAD /* FIRInstanceIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E89ADE6086B260D6061AC9AA0677350 /* FIRInstanceIDStore.m */; }; - CDA6C3FEF27D2E1EE78C69784F828575 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 04FCB3B53F211ABF7F5D1CB9BA5BC072 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDA6C3FEF27D2E1EE78C69784F828575 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D59133B6C7357C885B8060F20D80884 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDCC25A566AA7F8A7E999391855CA6DF /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 75478D68F54983EDF815FD6B21AB4D88 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE1AC1D3FB716EE5B282B086AA1EDE20 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E09B42B565466629F7C364D9DA2D8CC /* quant_levels_dec_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CE399A301E038CE8427A92FD187093C7 /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 25C29B126F25A01E9276C8B99E0B52EB /* EXReactNativeUserNotificationCenterProxy.m */; }; + CE399A301E038CE8427A92FD187093C7 /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = A8BF8A5621396B927744FB5B09021DE4 /* EXReactNativeUserNotificationCenterProxy.m */; }; CE72EF385B8B27FF89B34D0E2D52513D /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 72B30F1B5D2D3007CC2F16BBAF746599 /* cost_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CE73FF87B3497B9C2E47CA1E1DFFD327 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D3DEC355A295A702AD939CBCA570CCF /* RCTTransformAnimatedNode.m */; }; - CE860D19234F4C89BC7BB3532BBFEB27 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E31F1E5B4E4DA3366E0B7FDE21835F1 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE914509B01236ABB20E6682E2829DB7 /* EXAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = E88294587B5C2275DE92123388A5C415 /* EXAppLoaderProvider.m */; }; - CEE69566E821BD56E1A6E07B12F5A66D /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 423819A3AB14312BA59EDF8E2AA24629 /* RNTapHandler.m */; }; - CF0286A6E0CC7679CF99B308E04E4ADE /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = A8F62D82A5A85DCA86571FB4CDC441A1 /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF0E67DAC4A754BBF45976C68070CCDA /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = BD69311CDB472762AFE70B71C60777BA /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF1AB10E419D45F4EF401BC0323BFDE6 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FCD538012C243D0B7FE34C682AAA6698 /* React-RCTNetwork-dummy.m */; }; - CF211E8ADF4C562FBD594AAACE6CF640 /* react-native-keyboard-tracking-view-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 52F89AE914D50068C9FE8BF233C8C28D /* react-native-keyboard-tracking-view-dummy.m */; }; - CF776A5D0310FE6150530DB1F5AB089C /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C5C1FF090A33DB8187E44A8C45E2F500 /* REACondNode.m */; }; - CF7D242A429C059ED8D340F6AEF5E1DD /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = DBA4B7775EE344D3605443272F244FB9 /* SDImageCache.m */; }; + CE73FF87B3497B9C2E47CA1E1DFFD327 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4777AB381CC1284EDA0E611BE4614020 /* RCTTransformAnimatedNode.m */; }; + CE8571E993F17DBA1BCCD82FC78157EB /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E2164313A0C0905C5B30EACB4066FAF /* UIImage+Transform.m */; }; + CE860D19234F4C89BC7BB3532BBFEB27 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = E8FAE4D218F2A1B60EB6DC23FB89130A /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE914509B01236ABB20E6682E2829DB7 /* EXAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 8758F2938DDA0D727485CD838FBA1ADC /* EXAppLoaderProvider.m */; }; + CF0286A6E0CC7679CF99B308E04E4ADE /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = FCF0C886BE92A39E64AF450364C3A295 /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF0E67DAC4A754BBF45976C68070CCDA /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = CE45ABEFBDD5053A4586A48B1F2EC826 /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF1AB10E419D45F4EF401BC0323BFDE6 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 06231FE790724419459C5E614277CF63 /* React-RCTNetwork-dummy.m */; }; + CF209A2048CD520F7E9220E28AFFDD37 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 354108294849DABE3C6AF4F97BEEDE83 /* RNDeviceInfo-dummy.m */; }; CF87AB953CDE4EE55C8901F12A14A823 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = B18BFB5604EB58F3ACB30DAC9D272B5F /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF93E498CC6BAC3062EC7B41276187CA /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 72E6BCA3D7306CFFF701D26766498A5C /* BSG_KSSignalInfo.c */; }; - CFA641417AB3CF2E56A2D1AF4147DB84 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6893302EFE047A8E68B0ECEB7CAFFEAD /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF93E498CC6BAC3062EC7B41276187CA /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D8616AC5F1A68099E836657BA35100E /* BSG_KSSignalInfo.c */; }; CFAB74EAFB7B0A0A423B9306F3ACFFA4 /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 75B59D8ADC023FA9E188930F999F3929 /* quant_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CFB205F189F2953E75114499C0BB7C3E /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CD0C0E15FE92C2CD6C99AB6482A37F6 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CFE2DB69A9C2653F8E48A4CF2AB40CDB /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 81B07643B402ED0516D25F7EB0DE7F3A /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D04292604803241603C6E6B247EC9D92 /* RTCPeerConnectionFactoryOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = E7BBDD8987640335ADD37D376E0B6811 /* RTCPeerConnectionFactoryOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D090FB52E9942246C55C18C6053FD92F /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C7CAF26651F6B5039A6B632F237DCC4 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0A654F2A571969819017224D87A8175 /* RTCDataChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AE0955C20775F95D5770B29EABBA3D5 /* RTCDataChannel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0A9CA55F68A2F9494660E78305F2EE0 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 273C2DBB8D2A77E862429B26FC3A0DAA /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D103EE6DBD1F76AC996913AD4E420086 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 893CF7C62DB6E217ADF4DC9828608CFF /* RNDeviceInfo-dummy.m */; }; - D12BE20B8296A82DDB11C7787F9EEC6D /* RCTI18nManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 864DFD0B4DB12CA9815E25CEE7E84D82 /* RCTI18nManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CFB205F189F2953E75114499C0BB7C3E /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E1ED6FF5B003DE56EABC082DDC2D039 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0686181820E61D68086E78EFC94D050 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 9282F75429284316AAC6D588AB6D4C7A /* RNNotificationsStore.m */; }; + D083246508465E885682A8AFA104AD86 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = DB356D244D73F77E110E549ABD8161AB /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D090FB52E9942246C55C18C6053FD92F /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 1450A29A2ECA7F7F52819FBF1080E96D /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0A9CA55F68A2F9494660E78305F2EE0 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 96E1773C4F45862B86488DFD4AF17A1B /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D0E49496CC8E3693A8C4B9444EA8868F /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 797D106FB4A2A1743CC04DCBEBA74F92 /* SDWebImageIndicator.m */; }; + D12BE20B8296A82DDB11C7787F9EEC6D /* RCTI18nManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 870F559C6ACC8EE1A323123B26A154A9 /* RCTI18nManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D12F6FDBE47E1E7BFC5B3DACC4027A58 /* ssim.c in Sources */ = {isa = PBXBuildFile; fileRef = 896953B31142010857BD9071C6C3CD1F /* ssim.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D16439EDD03A01F79DAD484F20688D80 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 39575354205DC74A3674EACF0EA9A8A5 /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1A32A5EB8B9D704912FEFA270B4A62E /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B7B349EA50F8AE8B9F99371816BF896 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1BD50A58983FB0A7E47454A87F91C15 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D3C7D5AF6CF5C9445A36E6DCDCF0A5B /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D1A32A5EB8B9D704912FEFA270B4A62E /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 61E4C6ACFADF5F0FFF6A5B865C0C8092 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D1BD50A58983FB0A7E47454A87F91C15 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C7B596E3D4744EF24AC44C32E9E362CE /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; D1F4F693CF545CCC290595DF6EE686D6 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 434D227E739DDA39417063C143A8A051 /* yuv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D202A39393002CDD09E58F652661FD4F /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D1C019BBF979173B6FA5AA9F9B7E0D9 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - D210982D916B651CD6DD871EE6D77681 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BC69F90B2B7A23844026BBEC474CBC8 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D213E26583E236A858E085926F5BADF0 /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 16800BCAAC50F56FC05877E6CE6E9F84 /* BSG_KSCrashReportStore.m */; }; - D217C7E5B52C2C6702490ACB0DB34308 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = F6CB18E81EB5BBC1BA963619DEF82FB7 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2209C0C3FCBCB80F35566F5D0E21B77 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = E99900E603189BB46294B0E8E87D9E8D /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D23DC736BA88A20872832E48415D86CD /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D434AB16BAD26810248208878A0AE42 /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D202A39393002CDD09E58F652661FD4F /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4C8BB816382BD725C1AE458A02512CE /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + D210982D916B651CD6DD871EE6D77681 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C9C08DB769E4D178116F8D4FE162AAF /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D213E26583E236A858E085926F5BADF0 /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D317F6BA0B1861EFE7E02E59B753FE4 /* BSG_KSCrashReportStore.m */; }; + D217C7E5B52C2C6702490ACB0DB34308 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BE7E30C650EE8CD55EB0738623C80CB /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2209C0C3FCBCB80F35566F5D0E21B77 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C8FDB233D42D9B5E81028A145BC44AA /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D234F53EB537C06EC1ED1BE979829EAD /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AB43F689F040181E115C156BD705810 /* SDWebImageDownloaderRequestModifier.m */; }; D254799F912BAF289D21E7D8B98F46F2 /* GDTLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FB16BA3DC25064CD60A2F569316C1B1 /* GDTLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D25FA9A9D5414F9A8060A8D6BAED0626 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 858A80AC98FE571D286A65CFEFF138BC /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2844271E16D76E18BFB104A0E3B888F /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F54ABAF5EC48A86E45E71E8BDB6CA43F /* en.lproj */; }; - D2DC7C33837CFABDD27C12D7800DF38F /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = B430B1A49A0DBF42AEB177D9A9396E4B /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D25FA9A9D5414F9A8060A8D6BAED0626 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 421D3D8FCABB7A062F1697390A469AE4 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2767B71738BD4DF7655C02285FB55EE /* RTCPeerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F50A9C5FAE8F3DCD54A64C1685E8428 /* RTCPeerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D288BFD8E11918F93E9524A634F47E97 /* RNFirebaseInstanceId.h in Headers */ = {isa = PBXBuildFile; fileRef = FB8115753F4704FE108290195CF3D86A /* RNFirebaseInstanceId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2D90244ADD0315731955F8A4424B26D /* RNSplashScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C2292F1CE7237AD035A7F47CB460D3F /* RNSplashScreen.m */; }; + D2DC7C33837CFABDD27C12D7800DF38F /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = E376D3A069F7F744D16D2109BB79B45E /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D2E11DF07AAD7072CC507F7E383B4FE3 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D5899897AF05F4099CEFED7C39DF498 /* pb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2EEBDA9BCA01102E3F6ABE6C3A97AE6 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C05EF2452A2C2DB0E3675D2310BD554 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2F98859A35CCEEA5B597B270B2DB74B /* RNFirebasePerformance.h in Headers */ = {isa = PBXBuildFile; fileRef = 89A4CF8AE47DC2DBA2A6C727BE40BB45 /* RNFirebasePerformance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D378A9786AB4E247E08941965BA8D894 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = E9A7362D0B4592165074C69EECE25B16 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D37E2B15A6B1B4104E0549EBD94BC4C0 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 50B34085F0F13D095EF1FD8BF71002DD /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3EDB5D45D9206742CB0AE433965FCAC /* RNFirebaseFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BF6BC505449748853B04AAB02DF4BAB /* RNFirebaseFunctions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D40336CAFE29EA9315EFC086C56C1ADB /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = A1C0E2D38A464972E87853ED7297DCFB /* SDWebImageDefine.m */; }; - D425FF56C2494DADF95484EE83FFF941 /* RCTVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BC7FD67FB7FDA576DB65137D10CD278 /* RCTVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4383BF3CA8D6EFA7B78FF902C4BAD7C /* RNCUIWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = E9264D11530D03447BB65495F6EBA22A /* RNCUIWebView.m */; }; + D2EEBDA9BCA01102E3F6ABE6C3A97AE6 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EF81128ED49AA0A65A48BC4D5D532AA /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D378A9786AB4E247E08941965BA8D894 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 11D07A6C8C17178AE2756E9C5C3FB189 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D37E2B15A6B1B4104E0549EBD94BC4C0 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F528C63BA9C042F1E3493994696E3814 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3DE888FC11177BE173054C3C9AC9176 /* RNCWKWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D3601F1890A13AE99FA8ADAA2C18995A /* RNCWKWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4031BAF5AA8F4510D2C6AC07894B197 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 83454D1C2F4F7652AD5FC8DAB5443EE1 /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D43D0DDA67795E56C54E69AEDA13DEF4 /* RNFirebaseAdMobRewardedVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A8998B1E2D3451AD0135D3A738035A0 /* RNFirebaseAdMobRewardedVideo.m */; }; D4459E62F87603773F4B27E19B2D780C /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = F3FB3E9F32323F9E92F2DBB8427B34FD /* FIRDependency.m */; }; - D45D4794468B8E9A5B5A517A6F312354 /* RCTSourceCode.m in Sources */ = {isa = PBXBuildFile; fileRef = 39C4F0E77856CD00DF096646A8A3CC0C /* RCTSourceCode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D464BCA6658B187A90D6C3028D353EDB /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 451AF79F46F083B22E4B8C47FC32D436 /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D44FB64DE7B5EF050E7271802BD20AA7 /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C5491EE4ACB398BCAE280CA7D30FDEC0 /* QBAlbumCell.m */; }; + D45D4794468B8E9A5B5A517A6F312354 /* RCTSourceCode.m in Sources */ = {isa = PBXBuildFile; fileRef = 15A6A50F4E3A83C18811BA90B7E6F5AB /* RCTSourceCode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D48077AD3B49A588423560183A9FEBAF /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 6E0D257A452231D9919F802CBB1191B3 /* thread_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D4AB924196AC6EADEE97022E181A83E8 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 82FF44CFDFA9C8B491E83A8AED6962D6 /* RNGestureHandlerButton.m */; }; + D487A224E92EEC34B054B73878BA05AA /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = 496C136B3E821FA2E95DA9B0665C0FE2 /* REANode.m */; }; + D4B552CF0D3A81C87DAD3FE4C89019BD /* RCTVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B2020F34DC8A5116138E0B69E1B5CA6F /* RCTVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; D4D31AC4B663B98BC3BDA691706B54F7 /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 371BCCE6DE6C1C5F6E933AC8F0CE13F7 /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - D4ECBFB97245592DB4156EB77244A90F /* EXUserNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C538B065EEC8ED1BCC75BD8E92A6DE7 /* EXUserNotificationRequester.m */; }; + D4ECBFB97245592DB4156EB77244A90F /* EXUserNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F45B0989A216BAFB685127AE4E0721 /* EXUserNotificationRequester.m */; }; + D514590925D9FEF069143671B260ECEF /* RTCRtpCodecParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = FB188CD9E28A724A10E631C1CBF6F8F0 /* RTCRtpCodecParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5230DFEB5E2727DD0F73FC3F869AB43 /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 536E085AFAD167F6CAE31F62B9700186 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; D53F382A3D3DA2FD3C31DE200394F712 /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = D0D90B0B3AF47CEA448F326F55EED569 /* enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D5564204A7F5D87194DB1669E7DB1AFA /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = 520616552F4CDC6711A250D688991868 /* BugsnagBreadcrumb.m */; }; - D5572CC55E6427EC870C39658169805C /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 960E0C71600CDC13B81D851EFBD7FF42 /* rn-fetch-blob-dummy.m */; }; - D5738A71F184742779E1DCA4C168C0D0 /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F349ED663509E3BB573D7629FF2E65D /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5564204A7F5D87194DB1669E7DB1AFA /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = 7695A58E398410B2FC07F8D42181A8D4 /* BugsnagBreadcrumb.m */; }; + D56B854FD926E461E3C8BB397EC99324 /* RNFirebaseFirestoreDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 84A515EDC45D731291A758AC98682CCB /* RNFirebaseFirestoreDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5738A71F184742779E1DCA4C168C0D0 /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D6227C6B085AC5019169664CBF57DF8 /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; D5904C11D3F52C440DF5DCCCE833DE71 /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = A236B2D72366F344B655017EB8EA9D98 /* FIRComponentContainer.m */; }; - D5984168E9066237F6EB8B51D45C4BB8 /* Bitfield.h in Headers */ = {isa = PBXBuildFile; fileRef = E4643ED4C614DE3BB7895CEF96737F6C /* Bitfield.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5A1F0739FA2E7580ABB46D628B6566C /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 14B18C479D8A99EF20249B4EDB5E82C8 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5B631AEACDEF391D28BCE06F05CABFB /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DF94B228DF9ED4ADEB286D2A78FFDF34 /* RNUserDefaults-dummy.m */; }; - D5CDCC6CC59E312C8FF44F4CBE53DCA1 /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BA843B77D141E7E5EAD6639E82FFA32 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D5FBD20D854A8276A9E6B76B9E0223AC /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = B927CA7FE290FDC81A3D3CE25E8BD65B /* RCTAnimatedImage.m */; }; + D5984168E9066237F6EB8B51D45C4BB8 /* Bitfield.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BFC05CBC4F80A336A29147621E8D237 /* Bitfield.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5A1F0739FA2E7580ABB46D628B6566C /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D5D2C48B3820BBC9C8938CEC83480C1 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5CDCC6CC59E312C8FF44F4CBE53DCA1 /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 028E448A52B65C9FAFEC5C782B01D7C0 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D5FBD20D854A8276A9E6B76B9E0223AC /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = B2B936F67466D9DAE4DB945CE1F31B59 /* RCTAnimatedImage.m */; }; D602CA83D7A250B11256793383883037 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 33653E86EB98AA1A2E65EA48E08B3257 /* dec_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + D62E7A895678B19D51AD7BE078C1835F /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DCE00F225205C0C0644ECCF48934E09 /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; D63E0FDC977B7D37E5E7B0FCCCDAA112 /* FIRInstanceIDTokenDeleteOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = C7525067550F4AE7BD3A6DBF95FFF0EE /* FIRInstanceIDTokenDeleteOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6521E20710443E45EBD3A97A4A4F3AB /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8593DBD017822F6D970D1829CB6D34BA /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6869B73F40E6FA4A63D140138EB7758 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = E23A1147D0F357AF3303C538FF40F94C /* RCTProfileTrampoline-arm64.S */; }; - D6932A9841270C9656235F236EFF4D9C /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E057C522C49DFB6F4247183BA32A315 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D708A1E0590780EA89DED3FDD3C846A7 /* UIView+FindUIViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 409FEFDD8115DD42A4354CE2DE318713 /* UIView+FindUIViewController.m */; }; + D66D9B7560F0FACDF1D4DC4E2950C328 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2009DB4374CA5FA1CE6320D16B46D5DC /* UIView+WebCacheOperation.m */; }; + D6869B73F40E6FA4A63D140138EB7758 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = 940DE94715EB27ED225D02CA6BDE4045 /* RCTProfileTrampoline-arm64.S */; }; + D6932A9841270C9656235F236EFF4D9C /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 55FFD76EB09D336F689900DD9663CCE2 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7182C0FDCAE8B97CE1BCDC7866C69FE /* GDTEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 8436B95314D136C946BDF183E8FC4FCF /* GDTEvent.m */; }; - D71B1565BA5D8F4829F30D0077517342 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 024D68F3AF64EF33F322D61B7AA13697 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D71B1565BA5D8F4829F30D0077517342 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AFE60A615ADE23BA85FC290DBE1A765 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D7929B673E4C44FD318E28930BEFE219 /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 905999CF1DF343E9D5B6BB71E24AC87F /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; D79FFAE4EAC3A02B6B035E2C6F0E6004 /* GDTStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 843409D13E830EA31C283FA0AA1903E7 /* GDTStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7A3D6DECC6A88ACCF265FBFAAAE55B2 /* FIRInstanceID_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AF33AF7A1FB6D5858DB650F2BF7E98E /* FIRInstanceID_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7D7A86887D107BC1353D15FF525A8B3 /* RCTStatusBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EE69AD244370F4536E0D86A878ADBE7A /* RCTStatusBarManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D7D7A86887D107BC1353D15FF525A8B3 /* RCTStatusBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 153B8441978363A2F350EAE31600EBDE /* RCTStatusBarManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D823909993E47E39D171FB7EBE48A08D /* GDTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 87039A8D37FA24291867269E886C2A9C /* GDTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D841384CFF24EF48600419EDD4028A83 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 6436267E744D2F7B2B077E186BD29DC0 /* UMModuleRegistryAdapter.m */; }; - D858E9D688AE698E9FA9D42A50F977B2 /* RTCVideoCodecH264.h in Headers */ = {isa = PBXBuildFile; fileRef = 019963B53F9322159F9603E3050460DA /* RTCVideoCodecH264.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D868E22EEA497562B296D93433C4180D /* RTCVideoFrameBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 56AB738FCCB8FB6996AD995E8A0BC641 /* RTCVideoFrameBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8A369D660B6AE483398E45FEF78C417 /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C27F860BA508C99E69FFF02244A645B /* REATransitionManager.m */; }; - D8A9913834475B0486BAAE2F82D0ACE1 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DC179FE95DCFC03BFBBB5BA9D078E8E /* RNFetchBlobRequest.m */; }; - D8E3DF8D5FA07C3D2C2BC853F182F106 /* RCTVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = BD29FF81F5A9EC90A70EDFF7B50634E5 /* RCTVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; D931F1A1D54357CD2450DC7D8A6DBDEC /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A20D76317E3690879C32F7ABC95C661 /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9535963D2CB4BF1464E3665EBAC6226 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DC0E60E01C35B322B6A4EC0ED1A1AFE5 /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D965178447273AEB9F1772E747F8BA48 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 6959E0CA21B8E6A19ACA9DFBE7568D35 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D989A45D67FA9456F6E6848A119C5D73 /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = BE8D391CE038CB9915BF19593F70A815 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D99F6D603AF73E8B5E6D32234572F07A /* RCTGIFImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 30B0F3F2328B38797B3B0FBFC8593A2D /* RCTGIFImageDecoder.m */; }; + D965178447273AEB9F1772E747F8BA48 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = CA0DAA66C9EC6C3BAD3F6C8643FECA44 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D989A45D67FA9456F6E6848A119C5D73 /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ACC53A5021630E058E11AF3FB28BA08 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D99F6D603AF73E8B5E6D32234572F07A /* RCTGIFImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = F28149CCA82C0E65FA667B179B7297CC /* RCTGIFImageDecoder.m */; }; D9B8D3BEAB811A518074FF96EB5E2E8D /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = B690630170EE510DD6CF469596160CF0 /* FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9DA78B1DF94979A023785485229B705 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = F0D82E8B24736348178B778A501307D8 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9EA88D0007FACE31E3B32EFA264D8A5 /* RNFirebase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B0D166FD429889916B0214429CE1AC /* RNFirebase-dummy.m */; }; - DA0FA0FF36B79DED8A71F5AA5C83EEC3 /* RTCConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 540BE54E6D353A9726CE1ABAC8D0F3B7 /* RTCConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA2519929E23C30DA0CC5FC78905C490 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0714225B3E9669B358308FCD207C952A /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA337624A33B97155CEE95E6FCFD1875 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EF8264C10FAFA998ECE1459FE3715723 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9DA78B1DF94979A023785485229B705 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = EB45F1F2C2C96C1099FB7F753D6369FF /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA0C4DF27CE71C0F6425282DCDC9F6D5 /* RTCIceServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1381F6524A4168C3E8DF6856DCAB10C8 /* RTCIceServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA1B7D5781D93F355BACA6005BBE07F5 /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6ABB3832FAC78038F5CA03BB7E60869A /* RNGestureHandler-dummy.m */; }; + DA28996B00D2FCE3F9ACEFAC92EA58E4 /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 19DC805E4F75413FCE81213DEABAA314 /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA337624A33B97155CEE95E6FCFD1875 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FC9E5A06C3C4B96EE818A49E7E1C9F7C /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; DAB02821C84F2BA4426C6DD3AB7D22EF /* FIRInstanceIDVersionUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = FFE8CD910E2FD570B0E627B1FFD50D30 /* FIRInstanceIDVersionUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAB7B07E0B0FA6BB24C8EDE7F51EC1A9 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = E9C66AC9E6FA17B555C70A4A4F082BBF /* SDImageGIFCoder.m */; }; - DAB9CFEB6D5A25D239801565F53AA55E /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4811161CED5987E250343488233AD41F /* RCTSubtractionAnimatedNode.m */; }; - DAC87E56109E6DA387A5502463E43E89 /* RSKImageCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 50EC88EFB8C300264C2A2020EECAECB5 /* RSKImageCropViewController.m */; }; - DAFADAA97E53638A213F13FF37F3897E /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 15FA332601D3282C41BA50A2D8481E81 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB06DDE39D440B19AAE6D720E8DCE215 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 0ADD2993692CDDD5DC70CEA68E893CA0 /* SDWebImagePrefetcher.m */; }; - DB62D7A4AC6477F0A47DC730E0E5D6D8 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E0B7512BC3FDB975E4DC5278844D3829 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBA674449470ED2F334F61914E16C3EF /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 28FC507597E33C9E428BF771E4DCAEDA /* BugsnagCrashSentry.m */; }; - DBE32DD037F6EECADA5D0049AEE5C324 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EBDAF24F802E12C7AAB1A8C63B048BFB /* RNImageCropPicker-dummy.m */; }; + DAB9CFEB6D5A25D239801565F53AA55E /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = AEEF8E5AAEBE71DDE9CBEE820CAF7A4B /* RCTSubtractionAnimatedNode.m */; }; + DAFADAA97E53638A213F13FF37F3897E /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = B3739944967F1784A44D81785BEAE566 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB3EF78E8A1C5FA481BC90B12540EE6A /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3726AA8C7A3469B737C279CF62794F6F /* react-native-safe-area-context-dummy.m */; }; + DB62D7A4AC6477F0A47DC730E0E5D6D8 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9140EBF996CB25BBC64302FA7A506C0C /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBA674449470ED2F334F61914E16C3EF /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 55AE24A9531DFA46C30FDEA89B825612 /* BugsnagCrashSentry.m */; }; DC1370F458358C5BE438A6A0ED227DA6 /* FIRInstanceIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C93CB7E25886C1123FAC67FFB1F8AB2 /* FIRInstanceIDTokenStore.m */; }; DC158CB98CECA6B43EC601E2B84B64FE /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F6224014A074C7DF2407E5021DAF4B58 /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; DC68D05D6350E5C93111DED36C4508F9 /* GDTStoredEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E363803F2ADB3E9C7745366D24CCE71 /* GDTStoredEvent.m */; }; - DC98A913DE0A25181C2256F66B397D92 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 363A044359A7D9BE5F2DB4F5D8992CEF /* QBAlbumsViewController.m */; }; + DCA72580269373E582EE470221FF7EAC /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EB523ED45A3938CCDAD3464836C01AE /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; DCAC9CE673B917B1F1772C266A09DC72 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0D389C626379109FDA3F85D7A027AB2E /* lossless_enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DCBB73EBB05EB003A73D9DB460FBB176 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1CC7B5B63491C7977DDB0FF43509312D /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DCF91B80EE862FCF703B507D0F53E941 /* RCTRedBox.m in Sources */ = {isa = PBXBuildFile; fileRef = 799F3CA914EFC240F482FC1A3409673E /* RCTRedBox.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DD0004006C191E2E809A5E088C552265 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EB9CC6761C92510F2A1701038DB5C48 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DD8725C3B6985B7230D09C6699BAE658 /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = AF95283C3997D0287ECFAA315DA62E20 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDD9A7ADF40528228C8FB6ED7EB5CBB7 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 45A54CB7FE43EDE7F2BD864A183726C1 /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DDE345FE044D3BD64E645C543340BD96 /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F2070EA5C2939BB8B9EEF82F40F3162 /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCBB73EBB05EB003A73D9DB460FBB176 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5765E8F9CE5C4EA184E6C1F2E85CE1E1 /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DCEBD54F0337E28FE5070D1E501D61DC /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 29D0DFCB9D70457B9B48F8858EA6D2F6 /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCF91B80EE862FCF703B507D0F53E941 /* RCTRedBox.m in Sources */ = {isa = PBXBuildFile; fileRef = 2003C5C1C4DE3A689213E35D670D4593 /* RCTRedBox.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DD0004006C191E2E809A5E088C552265 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DC2762CAC29DB0CC70413E6C95CA944 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DD8725C3B6985B7230D09C6699BAE658 /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 67335C14839DACAF0F9B087343EA0525 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDD9A7ADF40528228C8FB6ED7EB5CBB7 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = F61B2AE7702422B8984E2C64C48FE63C /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; DDEFD576BF8D5977530AFF787117B3E4 /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = FABE7D30D6268CDF239DBB659220F4E1 /* rescaler_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DE156B9BDD6BDA00C3D729CBF7DD4867 /* RTCMTLVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = D30EFAFD0F4CC34AE6A89AF3D3B42174 /* RTCMTLVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE18DC12317A634A52985DEFDA7576D5 /* RCTNetworkTask.m in Sources */ = {isa = PBXBuildFile; fileRef = E261F254D70CB13AFD69F6D63DE19484 /* RCTNetworkTask.m */; }; - DE2F243B432151D971BF545FB301F01D /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = C180B32F5207D4369ADE693A339072B2 /* RNFetchBlobNetwork.m */; }; - DE4D52E0A204C7E8B0913185E7019B5E /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DA449C1FF61D3D80D76CB4852F13A02 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE6406EA03AC88187348881599BA0059 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = 81845E318AA062F0C44C0E3D1D3676D0 /* BugsnagSessionTrackingPayload.m */; }; - DE65FE3DA96EAE602A2F126B2F14BA77 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 00D638EB210BAF9BAD83745392991520 /* REAJSCallNode.m */; }; - DE75412C7206DAC0A56C33B30520DC9A /* RTCVideoCodecFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = F8C1601321E4734D957C5DE726205731 /* RTCVideoCodecFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DED0F1AB917A56A519FDA6A39BCFDC86 /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B7C9D348369639F6679B84982309AE0 /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF0872DD879C871B1A0027A72ED6F3C4 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B033295ACFFCA9AC4BC2CC5C977D881 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF2B4FFD1056894F3C09D7E80C75D4AA /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = E69F13AD5C4BB7A55D139B4594E5B26B /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF96C240FFB413BE3E3B0239B3AC1F91 /* RNAudio-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E6191C5D6B98D09D6677AF4F74CCFECD /* RNAudio-dummy.m */; }; - DFC9626E44A3BB97940B5EB1ADD22F9E /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = A63A11DFB96EC414CC42AF710C1F52EA /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE18DC12317A634A52985DEFDA7576D5 /* RCTNetworkTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 1147ABACD2097CFE4BCD031F321B1B23 /* RCTNetworkTask.m */; }; + DE1A3BD105E711453129E52EA1D58443 /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 692E0A6F538450F43E1A8386D1F00E72 /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE29F6FB307E3711AFBDC95AB34A66F6 /* RNCUIWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 93C6118077F5B0B258E1B4F26B634B38 /* RNCUIWebView.m */; }; + DE6406EA03AC88187348881599BA0059 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = CB9F5150D7C5BE2AF5ABA138C89030BF /* BugsnagSessionTrackingPayload.m */; }; + DEBA40CB1CCAC1BCF90BAED810ED44D3 /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = ADD491F2581002166439D6FCA66E2505 /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEBC2DBC6B016F4848EA6B1C7AAAE40C /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A3E8DD3B951421DD403AA3714BF4A26A /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEC8ED6E13B326E9B31B9A4CA63AD697 /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6086141A9B5A9D0197F805079033C2CA /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEC9F2380E88CC59E55679D24798D639 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = DBA4B7775EE344D3605443272F244FB9 /* SDImageCache.m */; }; + DF0872DD879C871B1A0027A72ED6F3C4 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E703F06AFDE4E65AE2B5565E75925B3 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF2B4FFD1056894F3C09D7E80C75D4AA /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = B6DBD490066F1629A9280EDBCA31A929 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF53AE786207E29079EBFE6D62BD2097 /* RTCMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ACF54C9EBE01939512FD4D0284F68CA /* RTCMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFAAE4E0CA13D4C76FA8B10CAA5DBD06 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 56AB378952DF036D49BED91E5F1F7340 /* RNLocalize-dummy.m */; }; + DFC9626E44A3BB97940B5EB1ADD22F9E /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = A06EC5D9A4081A151F5AABCB6EEB90D7 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; DFDB9C30D67ABBEE3C6D103E6B4B373F /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 13CB2608882F52C24EBF7D79BAA64A6D /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFEDEAA531D040DF4ECDF860E01F909C /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = BD8DBE269BA238914D954406B85132D5 /* RNSScreenContainer.m */; }; DFF94299EBFD53A2C967D837D2E906E1 /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 15D7FA48D8C42EDC3E26C474BCC0DEFD /* histogram_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E00A457075499BC2FAD94D41E14C9179 /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D6D61748A1D09700824E7AB854F0EA8 /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; E013C99C68F6C512DA43F88FED52DDFD /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = FDBA5810537D87F2CA2984D6E884E860 /* webp_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E02A84DFE301C23D8C24C8E3CB035A75 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = 4740CAD1208E5402B44DF7BCE39B2E88 /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E01EC29BA1FCDD8A43360748A02DA42E /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = D724AEF1D0B03B68770986BBC9C5AA73 /* RNBridgeModule.m */; }; + E02A84DFE301C23D8C24C8E3CB035A75 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = D9255B09619AC90653E8B4669EEAD8A0 /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; E08D5ED498CB4DA17CBB17B92FE36331 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FECC40A877CF4171127CA354B4D4F06 /* common_sse2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0903EBC44926604586BC4965B53E08F /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 06EB8C3D371C1FCDCD81005FD935FD0D /* RCTVirtualTextViewManager.m */; }; - E09775A8B9FB0822D18D214BB5A04E93 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D8DF8B24F606695A090B67DC289233D /* SDImageLoader.m */; }; - E09821266E1A0D192A7E389A521B1649 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 30EB7CA8BA2F24A1C99FF5190B92E6D9 /* REATransition.m */; }; - E0AB925B6B7761B751256321B9AC8B75 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 7619BCBFA21762EA9F75697F41D74C3E /* RNFetchBlobReqBuilder.m */; }; - E0C8FDD5F991FAE4512A623DBBF0F9E2 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = A1E30E49980F6EEA26508E3775D3475D /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0D5B9077D8E9104593F49480CA00EDF /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D6C7BC478AA059CF44CCA9A7269C7F2 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E126D849B2811DAB3717ADEC424D7657 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = B4B3D69A93D29E44849D09261B673E1A /* EXDownloadDelegate.m */; }; - E14135FC1B928B179065F46E98AB35AE /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 424EC02E1CD4560F59C5709DBBC52234 /* EXAudioSessionManager.m */; }; - E1752ECB36769F130B07EADF9973A2D2 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A88FD8114BC9BCAEA646DD2C5C88977 /* SDImageFrame.m */; }; - E187750FECA70688A596911DC55E469D /* UIView+FindUIViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 34BD8A20C91B6C4C7E7F635AEBD8CB62 /* UIView+FindUIViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1E935FCE6261A9AF8AF65236CE642D6 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = BEE9DE2F508BD36B0D2D9CF462B4D9F1 /* RCTMultilineTextInputView.m */; }; - E2015C18ACB4BA2E83587737DBBED1D3 /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 912415A927A22B47295DD3E49FFA3F4F /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2350E979678E34F41717CFBCAC1BD16 /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = FED232F543BF5785F6BA1CEB05E83444 /* BugsnagKSCrashSysInfoParser.m */; }; - E2973BB556B52F7BE5212BCE7682053D /* RTCRtpReceiver.h in Headers */ = {isa = PBXBuildFile; fileRef = 344C87F600D9EE9F7A992A471B2EA1BD /* RTCRtpReceiver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0903EBC44926604586BC4965B53E08F /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E4C40F79656B89558B9B184176DFEB89 /* RCTVirtualTextViewManager.m */; }; + E0AFBC27CADBB12E12855C0E75025580 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 13756F15BE86C16D7024CB630A3E8890 /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0C8FDD5F991FAE4512A623DBBF0F9E2 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 03AFC2BE50FB5217DFFBE0C31E0C76B4 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E1249F4F1421385F62A79E9924A68F73 /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B38AC74F716BF198F0AC7A81A8E82A2 /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E126D849B2811DAB3717ADEC424D7657 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = B0828B37E9C8FA2FCCDABEC6D37B29F8 /* EXDownloadDelegate.m */; }; + E1410997FF6BB3938F64295AAD8FFFB9 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6592C6645F4F6E958633DE955A707555 /* 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"; }; }; + E14135FC1B928B179065F46E98AB35AE /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A1A94FCEDB403641E8B272D81DD6E801 /* EXAudioSessionManager.m */; }; + E1AF5E689FEAA26D0B7CC2C5B003A020 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A84B5186DA58E88ADAFBBD175B5315A1 /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E1E935FCE6261A9AF8AF65236CE642D6 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 693265ECC22B28EFAFAD387255BCF05A /* RCTMultilineTextInputView.m */; }; + E225D220CEF7A3F1FDA6CAC3F48D1E10 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 94BD2A61CAFACC09FDD6901395D85696 /* ReactNativeShareExtension.m */; }; + E2350E979678E34F41717CFBCAC1BD16 /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BDFF2C70EE039818C98480435A6DB0B /* BugsnagKSCrashSysInfoParser.m */; }; + E2B1364A62BD666931200A9518124254 /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = A4D016D868BD58467CA1033C502573D6 /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; E2B7A1B54C0403C79E71E3DE34AD8B7A /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 30CD69E1B9C38E757319BE850F56DBE1 /* lossless.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E2CD9D3A8917D6DD7B74E8BC8B2AB7F2 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 83A7440D1D68C4BC4C6E0BA4AE95D062 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E30665E574F2E9D1081E636C81F287C3 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FD95955D3B4765FEBC08CF7331782A6 /* Bugsnag.m */; }; - E30727892AEF7B1ADFA78BAD69758821 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E5D1FBD6123E2EBFF4E8A8CD025B142 /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E32CCC6CF90B1E28725BFB3EDE639C0B /* RNCWKWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DFC3CE5C71F5BC9B468244DCD89961F /* RNCWKWebView.m */; }; - E366F346297EEF488244AD806BD9610F /* RCTWebSocketModule.m in Sources */ = {isa = PBXBuildFile; fileRef = DBFFA3665B7EE403F664F59B2140602D /* RCTWebSocketModule.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E3A1A4E777722D460358ACD28065361B /* RTCRtcpParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = AB862353DEEFD81FF02220B9996FC342 /* RTCRtcpParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2CD9D3A8917D6DD7B74E8BC8B2AB7F2 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A6A1A288EEA788FB0FE68D29F9947982 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E2FD855A9DF7227F70556706B0594457 /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9872016D9ED5AE2B10EFB1FCD2016A24 /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E30665E574F2E9D1081E636C81F287C3 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = 365FCC24F83C8C3D685AD3315C3B5733 /* Bugsnag.m */; }; + E30727892AEF7B1ADFA78BAD69758821 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DD6F42C117C8BC29D4DE2E8B9BE620B /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E34FF7243433E4AA97AA9DDDA2C9E262 /* RNFirebaseRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = DB92B34B35282B7C1241702C5351DA4D /* RNFirebaseRemoteConfig.m */; }; + E35D4E6EF08A824676DB7E92D68C1E82 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 55E1AC173553BFDD838D58A54A2D1E42 /* SDImageAPNGCoder.m */; }; + E366F346297EEF488244AD806BD9610F /* RCTWebSocketModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 51A9F82B4171565DEB6092151827D22F /* RCTWebSocketModule.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E37786E2AA9464D3252BBE823A7E8EEF /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BFCE6CFFEB93E37C6C3A066D694052A /* SDAnimatedImageView.m */; }; + E3A8C17A8C210EFA42096F8A31E0F9E1 /* RTCVideoEncoderVP8.h in Headers */ = {isa = PBXBuildFile; fileRef = A84DA91A56DFD58200D05FD24D67CC4A /* RTCVideoEncoderVP8.h */; settings = {ATTRIBUTES = (Project, ); }; }; E3E7193D979125C005FF9F15A1A135EB /* FIRInstanceIDKeyPairStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 023DC4F9327544C470CFE83CBA42B9AE /* FIRInstanceIDKeyPairStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E42C9A8C813E0D53EE4525F7E43074FE /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F2AF5DD4577BD5C771BFBD63198C5C5 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E42E9A01A68A527BA80C78D9969D267B /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5473EF292720C0B7F284D45EEDEFDB15 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - E461EFB4D5C63B31F8700C5137F650CC /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E381B5AAD30611617F9B25038A05E7C /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E46411FEE5DFC4B164A1A35FF2A8ECFD /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AEA06F137290DBDE0F03BB8F4A095FC /* EXVideoView.m */; }; - E46558C17D1EB54343727FF934BD0352 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 24B916F20C60F85F7360D2F3B2B64E27 /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E46A2B42C88A799049645529347F7402 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = AE444786FB6B08993DD69E5B974FB80B /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E421798B86666ED58EA554A0C67DC83A /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F54ABAF5EC48A86E45E71E8BDB6CA43F /* en.lproj */; }; + E42E9A01A68A527BA80C78D9969D267B /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B2D9684AD2A89647DA4EECE952499EE /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + E461EFB4D5C63B31F8700C5137F650CC /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 58C4A07324C9BBD9B4B95C41AFFE98D5 /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E46411FEE5DFC4B164A1A35FF2A8ECFD /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 297FBFCC72DB52AB5912D75419F57939 /* EXVideoView.m */; }; + E46A2B42C88A799049645529347F7402 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 435FCD4A0595E1A3C12E95501E50718E /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E46D352CDFF056D77C6C1B5CBC614D85 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F1E2CA5BE8776DAAAF119FD9B5F87C9 /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E495E66150F419A7860B54449A8F5828 /* RNFirebaseFirestoreCollectionReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 28216373694E431536D099ED0C16451D /* RNFirebaseFirestoreCollectionReference.m */; }; E4988068F00F7F1B67427233470219DC /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = F54F99957739819D9ABAAF28511A73B2 /* quant_levels_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E4AB22518922D98B2FEFB1CEA32411CA /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = AF6C543389427701B8E24695FBD02007 /* BSGOutOfMemoryWatchdog.m */; }; - E4B1A0B26FC926A4E8CE913C4A432BD6 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = 161E2E5E91C7FB74B68117012C42CC6B /* 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"; }; }; - E4B634ACF30454A780902FCE677FD782 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E31F1E5B4E4DA3366E0B7FDE21835F1 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4AB22518922D98B2FEFB1CEA32411CA /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E2D53DC098A62E6B032AA193144B181 /* BSGOutOfMemoryWatchdog.m */; }; + E4B1A0B26FC926A4E8CE913C4A432BD6 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = 9301B78A0D020EF63865912E1F227F73 /* 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"; }; }; + E4B634ACF30454A780902FCE677FD782 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = E8FAE4D218F2A1B60EB6DC23FB89130A /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4E8761CF2AE49F8204B4A0B904580C3 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 002676D3AC83EC6DFED207E063A5C60C /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E54B963B7A9B72AC7A62ADC7EFE64AE6 /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BFC6DD58909292500B5DF25B5138951 /* UMReactFontManager.m */; }; E56A382EFCB1212FE0C79493D0A3A9E2 /* GDTClock.m in Sources */ = {isa = PBXBuildFile; fileRef = 9556B10138E402F637746986E6DF2758 /* GDTClock.m */; }; - E59F4AFC94DF72B95C8EF8136FC5C394 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E07F75C2202CCBB305FAE378EA75B5C0 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5A9CC432046CE42AF86D16145F197FC /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 89ACC87B5AF257B9EBBDB99C686F33E8 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5ABD4952D52B981BDF0C6EA2D571A1E /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E48D87E8D14A3EAE2C05E984EB86575 /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E59F4AFC94DF72B95C8EF8136FC5C394 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = B2C9A34370C9237B9740314606719BEB /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5A9CC432046CE42AF86D16145F197FC /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = E8770423E139D2D4AD1DE99E49169C57 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5ABD4952D52B981BDF0C6EA2D571A1E /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 217BB7C109DCA46710EE41D9230CDCD6 /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E5BFA496D24713D1A9590068C297AED2 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = AACC3906679263F744C164DFF7329977 /* de.lproj */; }; E5D8C91086E97408A4280CE36D002303 /* FirebaseInstanceID-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E92474C334E840C7FADC52192C0043E /* FirebaseInstanceID-dummy.m */; }; - E5F255FF4F6E16C336F83E7BD03120A2 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 529EC12D2F101280E3C43C739F6C4329 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6317956C4C7AEFAEE35CEEF41FB1C75 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 19273CC937A393D069B4DD9B1C63888F /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6B5795FF7682CBDA63CCD59D0F77A97 /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 365218A250FD18C75E06B7403B341F07 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6D1B1C16D945352963DBBC3AC35FFB6 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 989A346A8ECBE457D21A1DCE60ED1BB9 /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6E86F3404E7AAC2CF68668C3C426B94 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D4F13081A2DAAE56F0E60ABA70DAC2B /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6EF950E4556EE54AC73FD13A8D0D62E /* RTCDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 330C6D34155334CA60162A092226AB2D /* RTCDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E71EFEBCE16C30905CD1EDF4534D68B7 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A756C9D657CF92354B71ED278B702023 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E71F59E0DA3F7D14E56DCE0EDA82EC8B /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C99D970FCA64BE40044898301576334 /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7329071AF145A5BFB2DB92B8615ECAB /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0265CE3C52A210D9B8BE76D690841ED0 /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E754433A855300E3471A960649F23ED3 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AA3E9AABC01B31E9DB6C9F889B2726D /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E75C94604E94640E41CA347FFAB5C2F4 /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 17BFBCBEDA642A7AE522A39C98031B16 /* RNSScreenContainer.m */; }; - E76FA799F90B1A9A107ED7DA42B69A59 /* react-native-video-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 37F0EECEB5F8260AF82A6AF2D0C58EC4 /* react-native-video-dummy.m */; }; - E78696D4D8178B630166499016C8D08F /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F0389F3AC245DE8A845592B00A1D0BDB /* REASetNode.m */; }; - E7A7A41616537D8DAF37284B12EB6F86 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 37E11CC366C21475A840AF9A7F291CF2 /* RCTImageBlurUtils.m */; }; + E5F255FF4F6E16C336F83E7BD03120A2 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B122D41247F6D07F3102CB64BCF52B49 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6317956C4C7AEFAEE35CEEF41FB1C75 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E6DA31649B87594C19ADE57BFBBAE0F /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6B5795FF7682CBDA63CCD59D0F77A97 /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 819E12ECC35DC9316F6D0960254C3B41 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6D04A19D4CA7107C282A648F3EFAF21 /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = 595BF48F06D1D9107E6563EE99FCFC18 /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6D1B1C16D945352963DBBC3AC35FFB6 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = D8CD7DDA6304EEC670E45CE8A7C38657 /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6E86F3404E7AAC2CF68668C3C426B94 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 922C4CAE64DB7062B27C7EF3E75EA4BF /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E71EFEBCE16C30905CD1EDF4534D68B7 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FCBB8A89C552E6D39E0C41C409BE701 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E71F59E0DA3F7D14E56DCE0EDA82EC8B /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D5AAA77C076D7EF3E5658626FD83840 /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7329071AF145A5BFB2DB92B8615ECAB /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 04E3FB7DC2C59CD8831775FFF20C501F /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E754433A855300E3471A960649F23ED3 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = A425ABC3BFD99E7D65616567518E2BFD /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7A7A41616537D8DAF37284B12EB6F86 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = A809D12346BF2C4A7B412AC3D1EE740C /* RCTImageBlurUtils.m */; }; E7C34B87DC7FCB383BC57216BEAD94B4 /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 945A9B6C6763CCF3EFBAD3658AAAA42A /* mips_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7CA73D48928C3D6473047FF478B1256 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CF31F926ECC5B6D8AFB0834962AE2FC6 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7ECF1DC7FAF27B4F468120EA69FC3CB /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ACB20F36E3467B8B419AF134154184F0 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E80F876BA044C640CB805363B37EFE96 /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D238C9ED535F24952D58157229FCCE /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7CA73D48928C3D6473047FF478B1256 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E84D1705F88764F441BF3B57EB5EAA26 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7ECF1DC7FAF27B4F468120EA69FC3CB /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D82F57DC8246D953B74B678614286FC /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E80CC09F37E12876F1D40DCE07BE37BE /* RTCRtpHeaderExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 3954AC91AC370061280233DC5CEC9212 /* RTCRtpHeaderExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; E86169365D2CF36E06692F2CA8B48644 /* FIRInstanceIDCheckinStore.h in Headers */ = {isa = PBXBuildFile; fileRef = C48AFDFD4458D2849FA11DDB2AEBC3DB /* FIRInstanceIDCheckinStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E89850E58EF9AC1E0B8B793A66B4E83D /* React-RCTActionSheet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 604563858054916C05B610693C60A4C5 /* React-RCTActionSheet-dummy.m */; }; - E8A20343B7709790456A9B7A97749D56 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 811757FAB06905B7FB9660C497BBC927 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E8785B8BB3CAF7B1CC82D17B3B3E3792 /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = FBB72E8036204ABAACC2897F21840FE8 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E89850E58EF9AC1E0B8B793A66B4E83D /* React-RCTActionSheet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 18141B471E675E44E27C6AE39EB2459F /* React-RCTActionSheet-dummy.m */; }; + E8A20343B7709790456A9B7A97749D56 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A2B6E61A4C49F83E6022AC2D08049CEB /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; E8ADD9FF1D22894886D0DBD93EAB58F6 /* FIRCoreDiagnosticsDateFileStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = E1A7EE205F60BF435DB15650AA5B16EB /* FIRCoreDiagnosticsDateFileStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8B2AA0916CBE14F3011D54182D2B3D6 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = DA86301CFF5D04DF5A63F5A98C87DADD /* REATransitionAnimation.m */; }; - E8D743770042CD9C6CF68FE5BD483250 /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DBB788C82457703874079923331D7462 /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E8F368D64FD92104A334BB047D78DC14 /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = EEB37E7D5FE57D2A934A7431F2CDFA26 /* RCTBaseTextInputShadowView.m */; }; - E97F362D0B36FBE91793B97C1132F0FE /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 13756F15BE86C16D7024CB630A3E8890 /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C6FE7BD6FE6B01D18E8998368A0640CD /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9A3CB05EA55527BEBA643F476864BD4 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = B98DE7DA0BD64473AEEE4FB0491582E5 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9E1124F01D54146BCDBA6186131A250 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E8BEDA4289FB555F62BB7D9310876DE9 /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E8BAE480F71EDE374904B064547CF331 /* RNFirebaseNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B457EAC7B9E5D1C64091C6212B8D9C5 /* RNFirebaseNotifications.m */; }; + E8D743770042CD9C6CF68FE5BD483250 /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DB542FD3D0B96A4F4391D29499D94A6 /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E8F368D64FD92104A334BB047D78DC14 /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3886881A0D844FE147AEA3539AA6998D /* RCTBaseTextInputShadowView.m */; }; + E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 54460D655C793C68BA47321861CB11F3 /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9C82F606B251E9AFD6FA23CC30C8AF3 /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AAB3FD810D6111FB3B9053D1761F428 /* REASetNode.m */; }; + E9E1124F01D54146BCDBA6186131A250 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 212293174EB51B93E49757E5AACDB162 /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EA3AE6B60E5ABF752CCFE94E2997C360 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BCD5E2D7B6E8BC0283363F8F13FDE0D /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA4EA907999C368EFFB0D9B659A32B7D /* NSError+FIRInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = FCDA51C6E6843CD4D0A0A47396F0DC84 /* NSError+FIRInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA6DD93E8511B69033958A82AD1B3B3B /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FD392D07628F0FE9008C4C7FC653FED /* RNDocumentPicker.m */; }; EA7AE374EEA24D06EBB84EBDC187CEF8 /* GDTCCTPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D79AFD7B38F36B17A576E16D20BB7B4 /* GDTCCTPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA952E6CE62C2EFCC36A3105B19E5FA7 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = DA51C24792BFABC1AB85AF381A9BFE0C /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA987062FEAB0A5F32418E727A81CD12 /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FFE160F8480C5134B62F8D18FBB2D06 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EACFA3C20D634B4751CF36B41794752A /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B6930102712EA7C18C4254CB7D1BF16 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EAD4BF96DB3424425B1AB18A97D1B500 /* RNFirebaseLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = 436D3F6D67B9DEF4EB53FC6E4B55B0BA /* RNFirebaseLinks.m */; }; - EB1CF03E2649714EEFFFC0310F7F0CA8 /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 15D869C0389EC9759DD0175E4FE58FBE /* React-RCTText-dummy.m */; }; + EA952E6CE62C2EFCC36A3105B19E5FA7 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = D9CB62457DE962F5C0BC85ED973124EB /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EA987062FEAB0A5F32418E727A81CD12 /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 8308FD9589FAE440E2FFAEB5F872C426 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EACFA3C20D634B4751CF36B41794752A /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 92728231525BE54B9499C3C4B30479C5 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB1CF03E2649714EEFFFC0310F7F0CA8 /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B94E95DDCA26855FED33A1462A4D6940 /* React-RCTText-dummy.m */; }; EB5EBE499F86CBEC104916F420C11BD4 /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = EC0223AF3A58CDB188A3F953E17AF069 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - EB5FDE0900500D251E2A58D288202037 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = F5998EDFB4EA5B76D0A18781D58AB215 /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB6E270E2571410D4E82FB2D2F677B92 /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = CC3CB154BAF16BF08628E0485999DA4B /* RNGestureHandlerRegistry.m */; }; + EB5FDE0900500D251E2A58D288202037 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = EBD55BE82C9E20E33873519B430A8955 /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; EB84C96FCA76318795D1CCA9A7E47337 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = AFA8781E13A2EE5FEDC037BCF3DE1F99 /* cost.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - EB89A1D3EF25464F1B626707704E6C99 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = E320330B66430A462BF3A29625FE42EC /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBA14ECF6325AE246FF34646A5D8CA77 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = D40926A59479A9A42CB2E7BF2E8C289D /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBA76B34F8287D18B5A0898B6FB78FB2 /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 176E24EB09806BF230DBF56B39E9E94C /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBA8B766527721E3093D2BDC6A8F6953 /* RTCDtmfSender.h in Headers */ = {isa = PBXBuildFile; fileRef = EE504627642BEB89DC972A7C34EA8B27 /* RTCDtmfSender.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBB7D00E275E9B10ED1F60E8E267AC76 /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 14EC86931A281FD42EB6369ADD7A78B7 /* BSG_KSCrashSentry_CPPException.mm */; }; + EB89A1D3EF25464F1B626707704E6C99 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = FF2561638A6DFC0753EF81215DCE4590 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBA14ECF6325AE246FF34646A5D8CA77 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = B9FD1D31B90E278FA72DAB3D57F9552F /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBB7D00E275E9B10ED1F60E8E267AC76 /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7563DB492F98B70BA9DDFC5C37BF41E1 /* BSG_KSCrashSentry_CPPException.mm */; }; + EBCC5E2232DF3060B99F3681CD15067F /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = A1C0E2D38A464972E87853ED7297DCFB /* SDWebImageDefine.m */; }; EBDA10C96D8A27B909F8DB3B0A7C32F1 /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = D2D80125EE7AF49F27704FC89CF1BB64 /* pb_decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; EBFDCBB17699B2B9EF9142B4B582D8BE /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 54BD948E35981DC92747E6BE93881C75 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC0254F1806EB104DB3FB25F248DCE18 /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 039512007FDD56FED1242A1489EDCE4E /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EC0302D2F7EEE71FBBDF53808DA6BD90 /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 712C7E7317155EDB8C02A2D38CED634F /* RCTImageShadowView.m */; }; - EC15CAE455E3FC4F59376DF02511FFD2 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 94711D5042B4505C432640758E3DD356 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - EC2B4E66863D0927738CE1D87AAC6525 /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 42076511B6CA8354982B1E02FA428877 /* SDImageCacheDefine.m */; }; - EC32DAFDA84025DDCAE462C92724B3D3 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BECA6C573D163FCBE5C394239E12789 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC5E4034C85E4881E6BB75D8AFF68D6B /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A87B08921DA1FD316868980B3BC5563C /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - ECA963C290230A90DD0EC67B25F03B46 /* RNFirebaseStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = E23DA3C75144AD5D02C79403F82F9B6D /* RNFirebaseStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECDAC834C27FE214D2F761520BE9C48F /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CFD405DA602A5C664E8B3B4BF46D8EFF /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - ECDCF64C7ED251B52033301A407A0E89 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FE5261A84C48DFD6D4E6F2D179451E2 /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED022E0E0B3B7D67D394AAB84496DEF0 /* RTCTracing.h in Headers */ = {isa = PBXBuildFile; fileRef = 56F50B475006F5C7C264F551848907FD /* RTCTracing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED09C43A4C4A0BB522052C61B545AA26 /* RSKTouchView.m in Sources */ = {isa = PBXBuildFile; fileRef = AD102486D88241996893F8843CA86F6B /* RSKTouchView.m */; }; - ED2626790A458132F88E904C665E24A7 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C6A0BE6A61147E06A4D85E602A4A10F /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - ED54271554C158A243D0D86BEADFC5D1 /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = E468CB2D7E39677577EDE1E1CD5B3AC2 /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED8457448E87C986B7B5F51C3DE39EE1 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 08F2428556DB3754851094706C1583AA /* RCTHTTPRequestHandler.mm */; }; - ED847C2F828901FCD0890B5ACD9BBC02 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ECE681DF01112622A1E85860849C2D0 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDF46B245B435882484D77489A7CAE91 /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = DA03B9B48754FCB178E797AF28333F2A /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC0254F1806EB104DB3FB25F248DCE18 /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A344931648C96CFB36A6D25EEACDD7C /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EC0302D2F7EEE71FBBDF53808DA6BD90 /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E056E05030B4395FE01370071C1A335 /* RCTImageShadowView.m */; }; + EC15CAE455E3FC4F59376DF02511FFD2 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7DD742506322957037AD4D344E1508A9 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + EC32DAFDA84025DDCAE462C92724B3D3 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BA488A9A61BC81D516B696AA827A6F5 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC543EC5B21A52160BA6449A6B6CA5C6 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 071768A3EFC150AC3C110ECED47803C1 /* QBAssetCell.m */; }; + EC5E4034C85E4881E6BB75D8AFF68D6B /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F7D69BD8F1C06A0B1517CA00901E945 /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EC69712F34E69E45C7475BA093968542 /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 11F51612DC4C27ECE62A293723A8F1B8 /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC78036D6FBEF2AF9A1F3874B4C0B701 /* RTCMetrics.h in Headers */ = {isa = PBXBuildFile; fileRef = E7237D9437B3176A161A441610C857EC /* RTCMetrics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECDAC834C27FE214D2F761520BE9C48F /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72FD36C56C7615A02CEE73E95CA1575D /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + ECDCF64C7ED251B52033301A407A0E89 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D16CB2D93478EF175BE2530948E2ACA /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED2626790A458132F88E904C665E24A7 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 68104266FCA89891569DEEB4B4E94EA3 /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + ED54271554C158A243D0D86BEADFC5D1 /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 9785AC6BF08EB7C1D9FBC44859508FDB /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED71CA87D8CFF0267430338509E042FA /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DF7056840A2903181CF83B44D463F94 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED83DD13D27F2076C118F5F26A02903C /* RTCAudioSessionConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = CF9F7DB21A2A14CB2AE384B653AA5DEC /* RTCAudioSessionConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED8457448E87C986B7B5F51C3DE39EE1 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 324E5AE4809A8C7527434067EEFF6162 /* RCTHTTPRequestHandler.mm */; }; + EDAD29849EC4BA25968338EEA0434F9F /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C8566338D0CE244B41A17EFEECB1B15 /* RNGestureHandlerButton.m */; }; + EDC631FA3291472264A0A1E0CE08238C /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 70C7E0B66AD4DEE9049384C1DEE47B81 /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDE0B20B2000084D5B8FFB3261C204AE /* RCTVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BDF5475B1198361D689EE26A49FECC22 /* RCTVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDF46B245B435882484D77489A7CAE91 /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DD54B37D563E96BEDFD08B8C912E75F /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; EE104EF6EF79C1AF1275B962BD8E1913 /* FirebaseInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E7AE6C7CA7720B8220E8123BA534811 /* FirebaseInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE8B5C2BD899EDAB90CA3A04F9D6958E /* RTCMetricsSampleInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AC98DB15560DE4A1352031D68744389A /* RTCMetricsSampleInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE8FC85778CA05C47444AC6B3FD2FF5B /* SDWebImageWebPCoder-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C9C929E0054DD6CFBA0D1A315C4E79A9 /* SDWebImageWebPCoder-dummy.m */; }; + EE3ECBDDA8E3D8E136B172138E7F53EA /* RNFirebaseStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 02C7C66DFB9DD66F620C3C8C774532A6 /* RNFirebaseStorage.m */; }; + EE9B586EB0A46A64464F5777180E33F7 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 964C2E3CA56634EA8AE6821E435242FB /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; EED6B6003D213CAE58C690B80D6A447B /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 96F47211CE06FFA8209B2321135049D3 /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; EEE61B47ECF7B948D4ED9B19FED7245A /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 89D21F51498AA6261BF58D256A261E60 /* GULNetworkURLSession.m */; }; - EF057C036B7B732BC9F983413A29C1E0 /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A6A3450BAA3F678BC74B25A04D7E5F02 /* EXFileSystem-dummy.m */; }; - EF45AD0A8DEAEE1356599F5ED587841E /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9658C75FB7BC7C2EE79A3A81EFB8E6E1 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF66715D631E83CCF8D3DD4994066055 /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = A71BBE57928DCF8B42CC78690CE5283F /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF057C036B7B732BC9F983413A29C1E0 /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B1C3566A07F3528AFA69DAC5D07CA6B /* EXFileSystem-dummy.m */; }; + EF26346E98791D8AE31DCF4413E9BB08 /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A3ACA68B4F4DC3E1D5762FC9921F4D5 /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF54116025B49769BF040DA6A1ADE421 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C895B60D722554013CC24C5691C74F3 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; EF8033FBE008CD4B0826A361DF15F3A2 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 6E73667EAB76F89D466346DF2412413F /* yuv_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - EF846229527DBF54A41091E2AB4BFF89 /* RNFirebase.m in Sources */ = {isa = PBXBuildFile; fileRef = 1016EC618A277565403F12E1051EB6A7 /* RNFirebase.m */; }; - EF99C4FEAF1FD5EB6E773216FEF60A96 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BE09A555F5A524BA8D044492D90922E /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFB4D1720D3D650A93EE3192A6015BE0 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = B31675120914B5F24A9F6CD3EFE3B30B /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EFD288EA85F0CAD64D49673283FD90EB /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8563645E75524A32F56D4EFBE53F9224 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFE2B5EE9C59B314F2A24A7D475D9FDF /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F3F14887A794592FA779F85062B2F68C /* RNReanimated-dummy.m */; }; + EFB4D1720D3D650A93EE3192A6015BE0 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = ED95570893E01E1A1E336667A3ED4DF5 /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EFD288EA85F0CAD64D49673283FD90EB /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FC5F9BCF241EF73CDFB7493D7FE5198 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFE50FAAED71B763441DAFE9D41C2CAB /* RTCVideoDecoderVP8.h in Headers */ = {isa = PBXBuildFile; fileRef = D99A9B57178C342225E779D23CB685F7 /* RTCVideoDecoderVP8.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F02A74FFB87DA6616B56795C3760F243 /* RNCWKWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = CE972CC0257D012B8D47130502BE70B4 /* RNCWKWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F06CE2C5BB5EF02B82AAC45839664EF4 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = 24782A672E657AE222951FC5890B29BC /* muxread.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F073B8D4B0C87FFF7C2BDDF26A139B69 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 80440715B10F2A9F22C602E9A6395021 /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F091BB9661A4345D85F945ED606B30FE /* EXSystemBrightnessRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 38A81B7453C5897092810D717D38E29D /* EXSystemBrightnessRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F096AA7B4567D9D99685C9CF3CAE2CF0 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D3C7D5AF6CF5C9445A36E6DCDCF0A5B /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0B4B9C6AC5F6E8F4F8E71F8E9039931 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F45C0F33507F57DFFAD844BE18EA83A5 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F073B8D4B0C87FFF7C2BDDF26A139B69 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = D48798F35DB8CC0F081656D3B6BBB207 /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F08DAA680F2C395E6489D60A9B71CC18 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EE93EA297E446D0F0B127A62699EA36 /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F091BB9661A4345D85F945ED606B30FE /* EXSystemBrightnessRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = F6D451132744C29EAF95F69B7CD13F6B /* EXSystemBrightnessRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F096AA7B4567D9D99685C9CF3CAE2CF0 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C7B596E3D4744EF24AC44C32E9E362CE /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F11F15E67165DE77897C120245B43443 /* FIRInstanceIDLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D9460157F7FDCA4BF2D95C08EF96DE5 /* FIRInstanceIDLogger.m */; }; - F1424A1293EE0DCB96A18BD776B99419 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49133F9E39E7DE84566F8F57F8499E5D /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - F14406C79BE2DD3B10F16F32546490BF /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 8328EA677FA6F030DDE99F03CEC5AFFC /* BugsnagErrorReportApiClient.m */; }; - F15C55D6FD680D88385C1C14E0E7B284 /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D278C02A22313007EFE6AC57486A6B89 /* SDImageAssetManager.m */; }; - F169AA7FC866402757061FF1F5D05392 /* RNFirebaseFirestoreCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BAE0FE9CF7C7C40B298952D713DBC96 /* RNFirebaseFirestoreCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F17430ADEAB0EA2A870632A8898A89FD /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F769D6260F9E292438D0FFD1264C69D /* QBCheckmarkView.m */; }; - F195F37E1508FB25A159A19FCF996735 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F3C2945F9B83D831E9968E314B14E454 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1E939EB07AF9ED79AABFA6CAB1F5300 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = 25139CEBB612E299D6FAD3996ED540D4 /* RCTUIImageViewAnimated.m */; }; - F1EA883FB1EB4A3E878D4CF627C09FA1 /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 67CB2C58555251A8CF370F17C38D713C /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1424A1293EE0DCB96A18BD776B99419 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B7798917671A874980962FCD53594BFC /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + F14406C79BE2DD3B10F16F32546490BF /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 527E034D119A5442CF99CA23766A658B /* BugsnagErrorReportApiClient.m */; }; + F195F37E1508FB25A159A19FCF996735 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C1DC4FF1D7C7368AE2CD9A9E2D4A079 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1E939EB07AF9ED79AABFA6CAB1F5300 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = EE9C2D73AD14BDED6EE493FCB85368EE /* RCTUIImageViewAnimated.m */; }; + F1EA883FB1EB4A3E878D4CF627C09FA1 /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = C464B95B7116CFB68C982C5AB3B74F93 /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; F1FD68E15FE818E00E17128C880C5E09 /* FIRInstanceIDAuthKeyChain.h in Headers */ = {isa = PBXBuildFile; fileRef = 26E7C3ABE9D7035639151BAC1CAA023A /* FIRInstanceIDAuthKeyChain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F20A461A387D99C9EFA54ED179F27614 /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8473A9B2C68AD12A595BE21616AA53FF /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; F214324939EEA0343308B64D185B9042 /* FIRInstanceIDCheckinPreferences+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 996ADEC2706AEE60B10C1B10F23B17FF /* FIRInstanceIDCheckinPreferences+Internal.m */; }; - F281992CFE9D066B195FADB83DF58D72 /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A126D1A914BCA2DB2EF03CEF3A07BC0 /* REAPropsNode.m */; }; - F28D98AB77ACCA579A9E7A62912FE23D /* RNFirebaseAdMobNativeExpressManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FC0A518CBA81ED329B6992F5B5E91A93 /* RNFirebaseAdMobNativeExpressManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F29B93B8AC55B9288CED1EA0E8F4BC74 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = A2048FA7569E8B0EA346BCC21379747C /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2C34A56A1C0700D6F445F3A974B6585 /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 41DF5CC62B33DE37F3359028ADD057A2 /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F2A9509EC57D2A6FD4478281FDF899EA /* UIApplication+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 86D02063967146D6A0A42CC7D323EC60 /* UIApplication+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2BE76D646E0AC0D7724EF16F4A973D0 /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E04744137C4DC860143BC52B6FB9548 /* QBVideoIndicatorView.m */; }; + F2C34A56A1C0700D6F445F3A974B6585 /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 74AC1BAACC23EB74B404414837736266 /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F2C98165A8FA083A0DDF7733AC494C84 /* FIRInstanceIDAPNSInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = EB66EC115E433A821451732BEAA034D0 /* FIRInstanceIDAPNSInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2E56EF45E808D80A02CEC738732864B /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AF18EEF141DF5F227AF06FE09036D47 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2E630BBC518CE79F8DF8A7EE1499BA4 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = D9F513E2F486762B6E230D21111C8319 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2F6F02B1856ADC0493B59A86843B567 /* EXAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CB0DBCFCF87BF97E069B6478537F9BE /* EXAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F33AEBE3286997EAD09436A9DEF418C6 /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C3110F54910A34794326F428F5D19891 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F2F6F02B1856ADC0493B59A86843B567 /* EXAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = EE3057924E53F20FBF9FC10F358D615C /* EXAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F33AEBE3286997EAD09436A9DEF418C6 /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 63138858F5592323DEE334EE1BC465FD /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F35835EF76DF0D2C2E044A8C0EFC6E6F /* format_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = C107FA2159EA63861A4318B4F213627E /* format_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; F35AE33B0AF486D966DAAE3DF3D3AF16 /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 776D767CF2D3E09744EE4E72B37334E3 /* near_lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F3686FEE5D124CF27B2FF1ACA5473EFC /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 99FF4B217358CD093EC1595F5E8E1E9B /* BSG_RFC3339DateTool.m */; }; - F3C74C887E1D8A6B86440B5F8608A748 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A5060F673F80613599FB3FADAA0EB52 /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3E692ACBD207395831D2614DAFCA56E /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = CC7084FC948D815959B7B6BD66180E9D /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3686FEE5D124CF27B2FF1ACA5473EFC /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 0083549C5FBF70C93EFDF71076193222 /* BSG_RFC3339DateTool.m */; }; + F379FF1F9E8120BAD225860153D0D045 /* RTCDtmfSender.h in Headers */ = {isa = PBXBuildFile; fileRef = 46FDF54DB236D5FC45213D38571670DC /* RTCDtmfSender.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3C74C887E1D8A6B86440B5F8608A748 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = B544D7779B342794E331D070204D03FB /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3E692ACBD207395831D2614DAFCA56E /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = C549965E963BE9FD733CEF293F5DB876 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; F40206DB1B71EDAB31FE7A4A03B7CAEB /* NSError+FIRInstanceID.m in Sources */ = {isa = PBXBuildFile; fileRef = C3F79C626B8D5DCB8C1CE936834A7407 /* NSError+FIRInstanceID.m */; }; - F41BCF9545BC61123388E136032E0180 /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 11E07CD2F41DF98D1A7576BF3ECB85D2 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F41BCF9545BC61123388E136032E0180 /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 889CAB79398BB0029362BB880C5007F3 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F43528B974BC5C6FFEB30AE822522370 /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 023644D5A0ADDE57DFBBA905D7E73BC2 /* GULMutableDictionary.m */; }; - F4374CFB8BAAC3F2966173A0480CC17C /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = F3EF8237148305F068A9321C7E8291A1 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F46B3BC4521420E067205659A1238907 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = E4B3498FD7A4E94C6C64AAE767D77C96 /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F46EB36C93128F54BDFC52437D895EDA /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B7FFC86A3526F8B574934B3A26422B59 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4BA1534E3629487CF8727A4CFF6DE8C /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = A8DB1C444982F4C3D4EBA817C963250B /* 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"; }; }; + F4374CFB8BAAC3F2966173A0480CC17C /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4F13AE6B092B61B02D70ECF69BC57425 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F46B3BC4521420E067205659A1238907 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B9CEBE1FBBDBB5D473461A39D9A65C4 /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F4BA1534E3629487CF8727A4CFF6DE8C /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = B18FB1710FB66A87E75F38690B053462 /* 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"; }; }; F4E72B5A2CB83F73E28D1E08126AE703 /* GDTConsoleLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AD6AA6698FECCEF250F192BEA0D93CD /* GDTConsoleLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F50ADE542A4B8995FA9B0C98A4A0E26D /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 96457F297518517EC4D15D5745773E24 /* 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"; }; }; - F55C44ED333331C73E6C7B38D8239110 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59E0C30FDA2D0947DA0B6405EDCEFD81 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - F5ADE4B6AF3645CB1D4258B4C06C731D /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 777BA992F56DD7BFDCE64AC3949B86EC /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5C02B679C0AD29B90D01D9FF039242A /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 05185C8282C11E5465822CE5A4DBE13C /* RNFastImage-dummy.m */; }; - F5E09ED5CEA69F68E6751F5FBC3FBF9E /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 6166575A9AA35BDB52E4FF7CB028DF04 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5FCC810114C5D2B6E6704E133FD45E6 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 6959E0CA21B8E6A19ACA9DFBE7568D35 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6265A1DCD2DC8052C15E0B479BD5457 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 84128C09D86FC2EEBEE355BA47317155 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6AC24ED7E5E3EE97DE624DF0AE536A8 /* RNFirebaseRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = C606E2C22A944930E009692C8A974707 /* RNFirebaseRemoteConfig.m */; }; - F6BAEACB20928362A0081984F7EF5BF5 /* RCTConvert+UIBackgroundFetchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = FBF0C841B7CEC6E93021BC2EC7C1CC87 /* RCTConvert+UIBackgroundFetchResult.m */; }; - F7239E0D63BB3F9D25253682BD674C2F /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 837F5202C5BE4A271772D79E3CFB80F9 /* UIImageView+WebCache.m */; }; + F55C44ED333331C73E6C7B38D8239110 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B87A79BA3A913B13AF1836349C49D91 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + F57110F4F92432F954465B13E7DD5C12 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B1D529BC11B174370DF4310A5F8B086 /* RNNativeViewHandler.m */; }; + F577DC8822344F6D392B9F105C39CC24 /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 7385A2E898653603A6A79A4F802CD2BC /* RNNotificationParser.m */; }; + F5ADE4B6AF3645CB1D4258B4C06C731D /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 19E491D0C674ACE6B77CA31A6678757C /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5C3ACBFBFE117FA0E1C4930A3C5452D /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4747D95FA389A8686826C5450A7DC4B0 /* RNEventEmitter.m */; }; + F5CC01D8358A03BD0FA6669302E862CF /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = B1D6339E901F0E921EEE73E2D0F28A9A /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5E09ED5CEA69F68E6751F5FBC3FBF9E /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F85176B1DE8CC5560AB31BA6EEC7214 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5F03C95EFB95430D346E71A8DFB4CD4 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 8680D4DFF516853807BF9B762DD1472E /* RNPinchHandler.m */; }; + F5FCC810114C5D2B6E6704E133FD45E6 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = CA0DAA66C9EC6C3BAD3F6C8643FECA44 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6265A1DCD2DC8052C15E0B479BD5457 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = F99A8FC3EF04AD607F517CCBA2846A81 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6F6FA01EF33D0CFB2D5180D96D2C26B /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A38FB0773A0290D56EA0E41B8DE6D22 /* RNNotificationCenter.m */; }; F754EE115D83928D0C65BC06781D363D /* FIRInstanceIDTokenOperation+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 60F086DA74BF133AD68E714453CF3E96 /* FIRInstanceIDTokenOperation+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F75A233D7D1082E856303D5F2A1ABB4B /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = 749FC04447D2E0DE4AFA2431D9DAB8AC /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F77EB338B29D522697682ECE82D6B026 /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 908331A76A2559442D6BF0697FE76338 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F7910EE39AB49C2F0C938CBBE12986C4 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 72F2F599E53648A85E26C4156B81AFF2 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7CE30B9E0B7EAD7FE176126E579DFA3 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = BAC3F006D6BA56E9DB9D46861DD55A59 /* RNJitsiMeetView.m */; }; - F80867468952FACA6053FA8CED3D5A93 /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8529DCF7E86805C170FE18B61426189C /* SDImageLoadersManager.m */; }; - F80D46665A750A51B0AAEE334DE788D4 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2009DB4374CA5FA1CE6320D16B46D5DC /* UIView+WebCacheOperation.m */; }; - F81E2DFA7E076498AEFA487459C13FCF /* EXRemoteNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = E9DD71D69F2C4920E78E0FF114BF07A7 /* EXRemoteNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F75A233D7D1082E856303D5F2A1ABB4B /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = 30BEBEC4DDFFB2406A89A09ADAFDD6E0 /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F76F6EF04BAABDAE549F0C2FBB07EEB4 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DF0DBF281A2D1985CD87D17A738539C /* RCTConvert+REATransition.m */; }; + F77EB338B29D522697682ECE82D6B026 /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C27E211CEB629C277869525862585C68 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F7910EE39AB49C2F0C938CBBE12986C4 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = D88964CA7660593B4AB528338DF1943F /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7F2EB9C8FCE88EEC914C520A3B059F0 /* CGGeometry+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A75F46F02E1A2C5721662F565E64167 /* CGGeometry+RSKImageCropper.m */; }; + F81E2DFA7E076498AEFA487459C13FCF /* EXRemoteNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A3CCD3747F941BFA833E271C0A8E2D8 /* EXRemoteNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F820A99E5934E0A7E0F7BA2B05A7C0E2 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D421CBCF27690CB2E19BC6382EFB0684 /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; F820FC5D04E496FF37B057F3DFCF5012 /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 2C3DC6D5B9BDAE5D38A9C3FBABB1496A /* iterator_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F82C9031DA63FF66F34349E52EFBF2E1 /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D09A24E452974C39DE955946DE3CD0C4 /* REAStyleNode.m */; }; - F840FDF8752259CBAD1B542B2F7AAC05 /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 139735F9A71CE25B9FEFC4C3B2DC27AC /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F84DB0C7CC285ED6F75B9F9D778A266F /* RTCVideoEncoderVP8.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B1F7841E91ECC7B3E771D3CD4EFA831 /* RTCVideoEncoderVP8.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F8428662653BA46C4A68322073B318B4 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = EEA207F51AB8E95B10B2C93C125AF47E /* RNFetchBlobReqBuilder.m */; }; F85DD47AB63EE9B0EEF0D8DC0905C5F7 /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B367DCE92865D3CC37D33E46A79C9F5 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F863258FEA8B8816AF99FDBE5B98752D /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = EA23EDBB8449E1237AFF6A536AC09EBE /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; F864CE3C245F1BDF3E4A177FD9F45C2C /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 9870476FA94D255E61C842DC14FAC7EB /* huffman_encode_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F8AE6C3A4F28C464C3E322BC0978D266 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = 684D0A362437383FE39B4A110A68E2D8 /* dec_clip_tables.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F9C2BB28591A076E36672FBD0442D3B7 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A3C5A069E7228C55ABB49F9E56A377A3 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F9E61AB437D5CDF5C5740CE74BA2D40A /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = ECA90C12864EB009CD6E675F76E9A070 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA6EABF83D3684185C6CC66FC2E335BE /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = A8950D4F5B76C82ACD9D3DE19D66C7F9 /* 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"; }; }; - FA7165EDC42C7CD4ABA0BB46E325587D /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D0BFA0CD89DAF8B6CEFC90EB66C88F4F /* react-native-document-picker-dummy.m */; }; + F8B88A3078AD21EEE0E608979D35E585 /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 352B3893F808BDC965571C3FDC3CB8DF /* UMReactNativeAdapter.m */; }; + F8FBF4392914A778E4F08331750E474B /* RNFirebaseFirestoreDocumentReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F2D6539530FB35C3C707F3017E23932 /* RNFirebaseFirestoreDocumentReference.m */; }; + F91C24452C6428220D5D664CEE90C4B4 /* RTCRtpParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = 663D581798F1AE2F2F2F9C435F8711BC /* RTCRtpParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F95B2C6D1DA2D50E212CC427D91D0134 /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 651B1DA5A925370B0A1EDB7082B8438D /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F999765612DB3891497F72A5AA83D9C9 /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = F7482E18D9F417819A17FE031157147E /* RNSScreen.m */; }; + F9B834F495DCCFD5ECF098EDE90F0782 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 028387FB621C70BD4C8F7688A6A4B8DB /* react-native-webview-dummy.m */; }; + F9C2BB28591A076E36672FBD0442D3B7 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D086BDC8EE58AF8B7506367350503C87 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F9CB6E69475F65B09224D238841621B1 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = EB40941859B6BF085262A4AA891C2C82 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9D8F2787331C1FD57D9905E91FE6989 /* RNFirebaseAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C13ABD3CF7DAC54F8A08323BDFFBE74 /* RNFirebaseAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA6EABF83D3684185C6CC66FC2E335BE /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BB1E26CD232CDAEBBD66781A6D18B6A /* 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"; }; }; FA904D41DDF9FE427C44CD13F361A82E /* GDTRegistrar.h in Headers */ = {isa = PBXBuildFile; fileRef = C666B2725A5A11504FE424459DF51AB1 /* GDTRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FAAA4A4381321DF8667536FFAD08EB9F /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 59C41018B72E4C05F42F13F88BDA59E6 /* BugsnagApiClient.m */; }; - FAB0EF3C18B74021B49828C6CDF8E712 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6E81E575145F6A12290F3B76FEE61239 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - FB814C556811B81A0CAAAF9564C02944 /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6271BC82171D5F738496BFD7D3EDE5D0 /* FFFastImageView.m */; }; - FBD5E9EE8D92F8CCA7E5BFF85FC08059 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D85FA90E11713E0009A994D146727EC /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBD6BEC2A103546647AA9823214F58CF /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = E00CA3DD7631C80163263795AEF04C0D /* BSG_KSFileUtils.c */; }; - FC1F7F5DBC47731A5750AEB5FE40CE1C /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 101C77344A89374DE4888F86BFBCA8B0 /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FC21BD7486444743C90C7FF5B61FE53C /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 585996EA11934C47C3280BCAF61A322C /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FC86C666D8953DFBB2A796F7A014CC0D /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = FE209222DE10C2202F74ABC2B7EF31B5 /* REABlockNode.m */; }; - FC894F99330026EE2760367CF100EC41 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = E346DEA3E37B00DB83B03FBCEAAD30F7 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FAAA4A4381321DF8667536FFAD08EB9F /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = B5BEF82643604A1AB8D994837070534D /* BugsnagApiClient.m */; }; + FAB0EF3C18B74021B49828C6CDF8E712 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4AC0560DC2E003ED62E9645B9E144AB /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + FABA2F0CA880607B595003DEF1459225 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = BD04A77FFB44B30ADFDCEC5DC75937D0 /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FAF738DA55AB64A4E987D5D26DEC872F /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D85FA90E11713E0009A994D146727EC /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB3A4B7AA59E69A00912B7872C73FEEC /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D6C7BC478AA059CF44CCA9A7269C7F2 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB91E8EA3C00D225E847880EE7B938D6 /* react-native-keyboard-input-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 08133871DFA5EF95E613E0B0960BBC2E /* react-native-keyboard-input-dummy.m */; }; + FBD6BEC2A103546647AA9823214F58CF /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = B90E8E18A14721E61AD8520D3DD4FF50 /* BSG_KSFileUtils.c */; }; + FC1F7F5DBC47731A5750AEB5FE40CE1C /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 741F8B4BE360F523AAE94014D77853A6 /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FC21BD7486444743C90C7FF5B61FE53C /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AAC8DCEBA187EC9AC3701829A82616CD /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FC5846016CBA1D120D26D1511411E46D /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 01FF454E1A26E73CEB3E4A937CB669CC /* REACondNode.m */; }; + FC894F99330026EE2760367CF100EC41 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = EF30538B0A7478C40A501B1988510D6A /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FC953880736897111DBAE679D4EE12F7 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = CAA6CA499C28225F63CDDB4490A823C4 /* RNGestureHandler.m */; }; FCA47B40E63DE30AF3C21639CB9CB5B1 /* GDTTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FED780AB8B230BC37FD0DA6B2D79D9D /* GDTTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCAAECF593AA7845E10855B364B8464A /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D0CEB6B757EBE5E0F1851DBDCF878FE /* RNNotificationCenter.m */; }; - FCC887881586BEC4B9D0A24B7E3A2BB6 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = D4A3A82FBFA472B14729790691BDBCD9 /* EXFileSystem.m */; }; + FCC34D09CC58A248801BD9A58310F023 /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = EBA48551C603648180A104803CF66318 /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCC887881586BEC4B9D0A24B7E3A2BB6 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 721566D0385A7429019E02ABB5197FCD /* EXFileSystem.m */; }; FCF21519D6B7BE358AF1AAACC5267EA6 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 8C149F45F71487328ADD24ECC317E5D8 /* enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FD6E8017D52CB54BA1578D1CC0612004 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 45570AD81EF7454074C069CE713D1694 /* RCTStyleAnimatedNode.m */; }; - FD9AA47DB216C372525255D4E02E0778 /* RCTVibration.m in Sources */ = {isa = PBXBuildFile; fileRef = A18AD87C0370C60B9D98ECF26D87DA3B /* RCTVibration.m */; }; - FDC8397D99A70AEC579195A65733AA72 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 02AEB5B754D8C2842713CC5863BF65C3 /* UIImage+Resize.m */; }; + FD6E8017D52CB54BA1578D1CC0612004 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E1A052172075B138D20CB6E0DA31213 /* RCTStyleAnimatedNode.m */; }; + FD9AA47DB216C372525255D4E02E0778 /* RCTVibration.m in Sources */ = {isa = PBXBuildFile; fileRef = F58C71BF7E379F34A5CFFB04132BF0B5 /* RCTVibration.m */; }; + FDA6DA82435CD934601CCC7690F602B6 /* RTCPeerConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 88215E29BC10030C0FABBB211469FD55 /* RTCPeerConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; FDEB2D8C64FF5A2579A04A4DB88BF327 /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = AC2CAF795431503D42B35C3E4DF175E9 /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE1AA8BC0F81A48E58066F7B85D4E399 /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 794758E19E42CCEB6330231A141184AD /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE3BC86A46AD7B4F0C59A5F38847E2FA /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 412F6BC0A1148E9E66A4B5402C5D2CD1 /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE460D353DA267534647F89E0ABB0C78 /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 70D83B3C8C752CC61DFAFE54CD30D369 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE873C965CFDB043904242376CDB4CE5 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 797D106FB4A2A1743CC04DCBEBA74F92 /* SDWebImageIndicator.m */; }; - FEC667E36C201D66E7B3E44BA18F54EE /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BA983F831A1606960AFB450FE6AC2EC6 /* REANodesManager.m */; }; + FE1AA8BC0F81A48E58066F7B85D4E399 /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 23D6FC4885DFC3F44AE8B1682D3D9DDC /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE3BC86A46AD7B4F0C59A5F38847E2FA /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F9F166DD917B5C1FDD38A522C80A4AA /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE460D353DA267534647F89E0ABB0C78 /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A874A22D7671C43E98832DCC959F89F /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FEAA132819DF88D0A05E67C065CECB2F /* SDWebImageWebPCoder-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C9C929E0054DD6CFBA0D1A315C4E79A9 /* SDWebImageWebPCoder-dummy.m */; }; FEF302FD5C2E107B2D45A7A753291A49 /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = C44017B75276DE9B206A4D82A9690242 /* huffman_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF0A4959AA4AC2A3D83BA570EA9426C7 /* RTCSessionDescription.h in Headers */ = {isa = PBXBuildFile; fileRef = AD8A160785B2C1B85BB8263EFC4D08A7 /* RTCSessionDescription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF317F39F62DC42CF68D9F743EB5A84D /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 234A07345C1BD13E73FD298F1DA08691 /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF5720C8A3C8BAA340512C69EFAC9485 /* RNFirebaseAdMobInterstitial.h in Headers */ = {isa = PBXBuildFile; fileRef = 51A48D2791625EEF33A6B66708F3CC8B /* RNFirebaseAdMobInterstitial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF317F39F62DC42CF68D9F743EB5A84D /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 6175E2955F82A4C443773B0CE97A2B19 /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FFD180C76C61F0D0080F0C85A50FC644 /* RSKImageCropper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A4E3B80FEC459F74915B3D9B6DC2BE6A /* RSKImageCropper-dummy.m */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ + 006ABF071BBF55C88D76D4EA167F20E6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A954214FEA55463925B6F6E3A27B6016; + remoteInfo = EXAV; + }; + 00A35F20241F7D1DD93FB727EEFE599F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F0C4ADFA389E9332F694ED1737F25C47; + remoteInfo = "react-native-webview"; + }; 013C8C712E31279FB89EBADB1C1A4BC4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1990,6 +2009,20 @@ remoteGlobalIDString = 7825F222F53EF434DE74A6C6FAF290E9; remoteInfo = UMFileSystemInterface; }; + 0232C3BAB7D1770DA1B2B23B7E939486 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; + 028C7FFC27D76F854B42BD906F47A233 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E07EA1A35FBB3A986F484EB01CDD5527; + remoteInfo = EXPermissions; + }; 040622B4EF3FFAC25FCB8BED372F45F5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1997,6 +2030,20 @@ remoteGlobalIDString = 426398FA61DF648ECF7C6897DFAC6E8E; remoteInfo = FirebaseCoreDiagnostics; }; + 05C1C463D3372BBB09B04967393DE8BC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 60F43D68BD7290E1B24C3BE7B3382AD3; + remoteInfo = "React-RCTNetwork"; + }; + 05CE66487B2929BEE5BCFE449E6C1645 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 63CF4D4E74D1771681263724253E1E79; + remoteInfo = GoogleDataTransportCCTSupport; + }; 0736F43E628DF211771775F69A163785 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2011,7 +2058,7 @@ remoteGlobalIDString = E13B95041FFD639523C6719AAEF55D71; remoteInfo = DoubleConversion; }; - 09611C945FBBB6581718EEF7B65D49B8 /* PBXContainerItemProxy */ = { + 099A3ACE58C86380FA814C415A235A5B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; @@ -2025,6 +2072,13 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; + 09ECBE38DDDBE216ED633A0A3DCA4B2F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2A99896D65A33A482D2D82FC436F823D; + remoteInfo = FBReactNativeSpec; + }; 0AA48B35BA7148412EA836482D3727DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2032,42 +2086,35 @@ remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; remoteInfo = Folly; }; - 0AB1F39EA1ED6EDE5EA734CE2FCA1912 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FE8C90DDDB9FCFB2290889A1F43FC34F; - remoteInfo = RNUserDefaults; - }; - 0B51E39017115DC06CFB71C6AE529D93 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 489CCEBDC649D379F1AB6CAE0B453E80; - remoteInfo = "React-CoreModules"; - }; - 0BE02342FE3A816D60ED8C26C8BBC0CF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 232D00D8ED7797390FB38004DE01723B; - remoteInfo = FirebaseAnalytics; - }; - 0CF48D58EE875B1D9C261E36545796AB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 59D5FC9202D131CDFD2E08ABCE1C35AC; - remoteInfo = nanopb; - }; - 0D6E1FC5E9598A9C9EB5129FFD173A09 /* PBXContainerItemProxy */ = { + 0B500C41490070D67613947F4257B86F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; remoteInfo = React; }; - 0E1963F9C6CD489F79F16A3FC6DCFF10 /* PBXContainerItemProxy */ = { + 0B56E37D0026F42531279EEFF8E03147 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6DE003F64B133830B9AB9321298DAAC2; + remoteInfo = ReactCommon; + }; + 0C83FC589C9047A40E1AA95715613AF5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 799B29F9D6DCE28B98CC259440382F20; + remoteInfo = Firebase; + }; + 0C871C5D38CD455E13E838CAA6D6E3CD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 09642168638DE42DDA2921CBADC48193; + remoteInfo = "QBImagePickerController-QBImagePicker"; + }; + 0D54F75D13A12C77C0EE20D6A5816A82 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; @@ -2081,6 +2128,13 @@ remoteGlobalIDString = 01B53B6A43CBD6D4022A361BBFCCE665; remoteInfo = FirebaseCore; }; + 0F327638A8DC6ED0ACBB83613620B4BD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 115FC7605B6A0F6044A879F6EEB7DD99; + remoteInfo = "React-jsinspector"; + }; 0F51677083285B10036CC0BA1E9BBB53 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2088,6 +2142,13 @@ remoteGlobalIDString = C2F81329D3C42F2D872A4B80180545BC; remoteInfo = "React-RCTLinking"; }; + 10AD64E8AA8C3A76D6806636B2A9C42D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B2D1A9BE57D1CD04D04DA1329599E7A6; + remoteInfo = QBImagePickerController; + }; 10B32C2C31A516CD0A0578144E20FD18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2095,6 +2156,13 @@ remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; remoteInfo = "boost-for-react-native"; }; + 1121E171E9D7DA8F764EC27E056910F7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 458293E00EF1C1F42778F9425AD34AA4; + remoteInfo = UMConstantsInterface; + }; 113CDDB809E5888DDC4ACE47ACB7FEB3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2102,11 +2170,39 @@ remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; remoteInfo = UMCore; }; - 11EF78A96FA8C994BECBD284F817F22D /* PBXContainerItemProxy */ = { + 11EB4C3786DBF2C4DD1FF571F07DBF50 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7DC30CA7B73824BDE446B33B5F944E35; + remoteGlobalIDString = BB5B4FB9526DC1FEC5AEBB3C4E4239E6; + remoteInfo = "react-native-safe-area-context"; + }; + 124D4D1BC04FCA8D6C15E2252B91FEEA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1CCF1D06CCFE0D0AB787DF0923C94D79; + remoteInfo = FBLazyVector; + }; + 12902B23A54F15A4E83CBCA2DA009F50 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D72528D679933334AAD7996CD73D84CD; + remoteInfo = SDWebImage; + }; + 12F31D9C87CCEFBBDB77BBD24374E50D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 86E0FD6F1E6CD55F28FDDB1D399CA7F7; + remoteInfo = "React-CoreModules"; + }; + 131C0A69C52D095CA0459BE824DB238E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BDD36BE8D4A81A3232F5093FE20B819A; remoteInfo = RNDeviceInfo; }; 13EF1229647EEDD20E086226A26C9EA6 /* PBXContainerItemProxy */ = { @@ -2116,47 +2212,12 @@ remoteGlobalIDString = 6DE003F64B133830B9AB9321298DAAC2; remoteInfo = ReactCommon; }; - 14A59580A8ED5932F976DBBF4B5D09C9 /* PBXContainerItemProxy */ = { + 15D726A16CEFAC1A665B96BE4AF69646 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - 1532234E0D65C24E6DF298E082F9009C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0CBA5F53133416AD6AD2C463B3E7A934; - remoteInfo = "react-native-jitsi-meet"; - }; - 157C9EBAE8C0B5DC0EFB7B9AC178FA3D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; - remoteInfo = "boost-for-react-native"; - }; - 15B5A9546A73584CDFEBCDE0A6E325D6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - 15ED86AF6929893564521D7E86C43FC8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 123D4D7AC3D41ABC0675B1DB3613066E; - remoteInfo = RCTTypeSafety; - }; - 1624E3FBE2E388D501443932D344ACB0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2B96BEB2DA52F32912B485D29E28C7BD; - remoteInfo = UMFontInterface; + remoteGlobalIDString = CC1AB14B9BDA80213A889CE582D91D46; + remoteInfo = RNVectorIcons; }; 163CBAEB4B1179F7E94CBFA9D9821391 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2165,20 +2226,6 @@ remoteGlobalIDString = 017AB91E1D5AB2B6096ADC666B072208; remoteInfo = "React-RCTImage"; }; - 163F9C34B80634101E3925E9BE16FC8C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; - remoteInfo = "React-Core"; - }; - 166F6C4D429C8BC37306497EAA575B67 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7CAB4058EBC116AE1A60D0CB0B1BFCC1; - remoteInfo = glog; - }; 16E39C41A1CBE1E8002EF54F741C1EB3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2193,26 +2240,26 @@ remoteGlobalIDString = 5C53A3A5621162049D9B4399173FAD68; remoteInfo = UMPermissionsInterface; }; - 188FD3D9F8B10F882F9D17C690CB0C21 /* PBXContainerItemProxy */ = { + 17DD24A0E1EC720E72F067748318EC15 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; + remoteGlobalIDString = 76045FDE22A7E6A917DFC0E5B11A9D64; + remoteInfo = RNImageCropPicker; }; - 1A7C67F6F1B9816D8073691F280F12DC /* PBXContainerItemProxy */ = { + 18E3F26869DFAE8CD866DFAF0503B2D4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 48F9CAC66FE3C08FEE3ACAA5C6FEF569; - remoteInfo = RSKImageCropper; + remoteGlobalIDString = 9B1043B9A63EAA4E2CF205B8FA3565CE; + remoteInfo = RNLocalize; }; - 1B3411570955A56DB03749100E0DEE92 /* PBXContainerItemProxy */ = { + 194261362BC80BB8370E3714FDD9EC49 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; - remoteInfo = UMCore; + remoteGlobalIDString = 017AB91E1D5AB2B6096ADC666B072208; + remoteInfo = "React-RCTImage"; }; 1BA9FE8D4FA41AD95626F63DB8C9FBEA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2221,33 +2268,40 @@ remoteGlobalIDString = 9F219ED43F3AEA000562B9BCFD624DDD; remoteInfo = "React-cxxreact"; }; - 1CF2778429E54F06CDDD4A87BA948015 /* PBXContainerItemProxy */ = { + 1BCCF166B8195A161ABD029204F1692F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2E2ABA11C27993D4CDD5DA270C4B75F1; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = 1CCF1D06CCFE0D0AB787DF0923C94D79; + remoteInfo = FBLazyVector; }; - 1D3AE33345BE4D68094CC31D1027378D /* PBXContainerItemProxy */ = { + 1EA6AA40DA26B296704AFDC7174DC66C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4B46CDE4D80107772B319E892C6315CB; - remoteInfo = "rn-fetch-blob"; + remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; + remoteInfo = Fabric; }; - 1E994C2A8CDEE992CB937AC152D9CB17 /* PBXContainerItemProxy */ = { + 1EFB07469F0AEE7595483DF16BDF16EB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B81CA3A3A63C0085E4085060FE4DD9FF; - remoteInfo = "React-jsiexecutor"; + remoteGlobalIDString = E815F092E40E6946F21899111DA998C4; + remoteInfo = "react-native-jitsi-meet"; }; - 20F31B426DB6D4FF308DB447FB7C0FCF /* PBXContainerItemProxy */ = { + 1F6945FF2619462E58188CFC94E7BB88 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3C6A9BF574C3488966C92C6A9B93CA8C; - remoteInfo = FirebaseInstanceID; + remoteGlobalIDString = 3665DFF5E63879E71E17B6E7B32A2899; + remoteInfo = "react-native-video"; + }; + 1F8B5A5B2B2CC65F780A09DF4E295FD2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1F22396CB543506E7EA28A47A30E9727; + remoteInfo = GoogleDataTransport; }; 219C53CD3A03703B87C5388DE52037A3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2256,26 +2310,12 @@ remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; remoteInfo = Folly; }; - 22493A24F1C0A015455E530644C31594 /* PBXContainerItemProxy */ = { + 239D350160E2486D50C99B023348F5D4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1EE4DA45FFDFD18B54B38BE623F2FA2; - remoteInfo = "react-native-splash-screen"; - }; - 22A84298F462C8FCFA1551088927C9C5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - 23B78270533221617DE8B01C9A05E13A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 60F43D68BD7290E1B24C3BE7B3382AD3; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = 6DE003F64B133830B9AB9321298DAAC2; + remoteInfo = ReactCommon; }; 243E1224598243CE0CCEE4E8D1F2D091 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2298,40 +2338,40 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; - 25A242E9EF1E413D09C56C0E300CA179 /* PBXContainerItemProxy */ = { + 269FC9F640030ACD2A70CC8D28A7ABA1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; + remoteGlobalIDString = 232D00D8ED7797390FB38004DE01723B; + remoteInfo = FirebaseAnalytics; }; - 25D763F0D8A8590A5F7F38F627268828 /* PBXContainerItemProxy */ = { + 277643BFD9B6D285F03A66CD3DFADF48 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 427A5566E42596B2649019D00AA80F10; - remoteInfo = libwebp; + remoteGlobalIDString = B2D1A9BE57D1CD04D04DA1329599E7A6; + remoteInfo = QBImagePickerController; }; - 260400F30E94C156B1F8C1345937F50C /* PBXContainerItemProxy */ = { + 280AB6D83DC98C586BB44FF3F48C00FB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E2B978578963427FF7EAE56EE62BD4A2; - remoteInfo = RNFastImage; + remoteGlobalIDString = A1DA7160DD40C2F4C7332F30DE279FC2; + remoteInfo = FirebaseCoreDiagnosticsInterop; }; - 2712961DD86ACC2AE7CDB3D83C754539 /* PBXContainerItemProxy */ = { + 29B684991F188D61A61E7F4A427CC37C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 60F43D68BD7290E1B24C3BE7B3382AD3; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = 57B9E0A892EAB5C13D4AE7D4B1DE0C16; + remoteInfo = GoogleAppMeasurement; }; - 29B92255F2E601064B66B5605B166443 /* PBXContainerItemProxy */ = { + 29BB30D924A6947CC1D3ECD250530A3C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = A83DA188DB8A2E365EC3B1FD19C9A3F5; + remoteInfo = RNScreens; }; 2A5330A27066B77F84440B5AAE0EB91C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2340,6 +2380,20 @@ remoteGlobalIDString = F7236D5BFD42DBEDF2652D4E47992BD2; remoteInfo = "React-jsi"; }; + 2B4D5281C730F30911BAB4A45AC37833 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BDD36BE8D4A81A3232F5093FE20B819A; + remoteInfo = RNDeviceInfo; + }; + 2B77918D08CFE4D0313A39F706EF7B72 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; 2C95DFFCB2EC326C56D43774DED19805 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2347,26 +2401,12 @@ remoteGlobalIDString = 9D255DD73ADD1E4565B5CCB665433053; remoteInfo = RCTRequired; }; - 2D6FAC4C0530177DF3F0567418C0A83A /* PBXContainerItemProxy */ = { + 30FCE69212D7EF33D987A6529CE3D1CC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; - remoteInfo = Crashlytics; - }; - 2F72549D16F36B4D965166AA46FCBBEC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E07EA1A35FBB3A986F484EB01CDD5527; - remoteInfo = EXPermissions; - }; - 2FA7ABC2BC93F144A8C0FAEE3C80DF85 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 799B29F9D6DCE28B98CC259440382F20; - remoteInfo = Firebase; + remoteGlobalIDString = 5C53A3A5621162049D9B4399173FAD68; + remoteInfo = UMPermissionsInterface; }; 33C3622012A6D55A8CCD64DE231CB8A0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2375,19 +2415,19 @@ remoteGlobalIDString = 115FC7605B6A0F6044A879F6EEB7DD99; remoteInfo = "React-jsinspector"; }; - 3469B30D3B6FCBE8AC3AC222B0470EEF /* PBXContainerItemProxy */ = { + 36EF2BC556935BA44DA0FFADB1EA0DE7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F45971A372B34A0A3B690DD27B08E555; - remoteInfo = "react-native-background-timer"; + remoteGlobalIDString = B2D1A9BE57D1CD04D04DA1329599E7A6; + remoteInfo = QBImagePickerController; }; - 35CCA876D3A7A5319A90F2C9FFA16445 /* PBXContainerItemProxy */ = { + 37F0A62EDD5EC95315A8894B96F3D36B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 017AB91E1D5AB2B6096ADC666B072208; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = 4C2F2E6EC9A37A9237D2149D178CCCD4; + remoteInfo = "react-native-splash-screen"; }; 386C0EB352726BA92F7F015C2FB264EF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2396,12 +2436,19 @@ remoteGlobalIDString = 123D4D7AC3D41ABC0675B1DB3613066E; remoteInfo = RCTTypeSafety; }; - 388FD9763DBAD4AB08500D98D93260D0 /* PBXContainerItemProxy */ = { + 3995D22167811FF2CD4FFA3525688891 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 43CA9BA5B764ACB732696877E3FC307A; - remoteInfo = "react-native-document-picker"; + remoteGlobalIDString = 115FC7605B6A0F6044A879F6EEB7DD99; + remoteInfo = "React-jsinspector"; + }; + 3AD8D4794157596B09C18CFC870E46CB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; + remoteInfo = Fabric; }; 3AFCC674053FAF5DC8E87833CC15D1F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2410,26 +2457,19 @@ remoteGlobalIDString = E49E330A27425F89DE89516B2F50AAE9; remoteInfo = "React-RCTText"; }; - 3B643647627492DB61A8C0F17AD3C90A /* PBXContainerItemProxy */ = { + 3BDB0C9B7B7ACA524E13D4F6D7BAE206 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; - remoteInfo = Crashlytics; + remoteGlobalIDString = D72528D679933334AAD7996CD73D84CD; + remoteInfo = SDWebImage; }; - 3B78E8F09F994AD1326DB76C0006C477 /* PBXContainerItemProxy */ = { + 3C5C9B25FDA43A5B23A06704C9CCA660 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E20E81644F6DFF8A9937721B0487DBEC; - remoteInfo = RNImageCropPicker; - }; - 3C45494E6398ABDA3071AC476922C47B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E17311CD8EACC16113C89390B6656C5; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = 8E9F01B150517E3739C7748CF6D42337; + remoteInfo = RNReanimated; }; 3C63709D9A9E8BFEDDDB0EC6915A77BE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2438,6 +2478,13 @@ remoteGlobalIDString = 60F43D68BD7290E1B24C3BE7B3382AD3; remoteInfo = "React-RCTNetwork"; }; + 3CD6483E9B5EFA34635583BDB56FBCC4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E452F4CD4F8AB641BD2444C7AC91FA2B; + remoteInfo = BugsnagReactNative; + }; 3CE12525FC73E81B8DC468274B077D13 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2445,6 +2492,13 @@ remoteGlobalIDString = 458293E00EF1C1F42778F9425AD34AA4; remoteInfo = UMConstantsInterface; }; + 3D434A4468B28C501284DB505B453531 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 59D5FC9202D131CDFD2E08ABCE1C35AC; + remoteInfo = nanopb; + }; 3DA6710AAE682E070695F228266936B7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2452,13 +2506,6 @@ remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; remoteInfo = UMCore; }; - 3E1E8AE445AEE04435C413BAC84440C1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BD7B2D8FF0ABCB89D01F6E21D5364678; - remoteInfo = "React-RCTVibration"; - }; 3E2073FF56543FDA76EFCC77A1820700 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2473,33 +2520,26 @@ remoteGlobalIDString = F7236D5BFD42DBEDF2652D4E47992BD2; remoteInfo = "React-jsi"; }; - 3F62CAE70D7BF57C26609FDBA95AD4FB /* PBXContainerItemProxy */ = { + 3FC522F3FAA3D60C5F395B4753541CCC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7236D5BFD42DBEDF2652D4E47992BD2; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 7135140B597489F3FE9D0A6D1FADD9C7; + remoteInfo = "React-RCTActionSheet"; }; - 4039EE8499835C5D2E0E86B0453AA194 /* PBXContainerItemProxy */ = { + 413ACBCEC687A1FFB6D5B6E3CBC85B78 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FD0F4E74C14C4B5B552686BD9576466F; - remoteInfo = EXFileSystem; + remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; + remoteInfo = GoogleUtilities; }; - 40CC0E869D6DD2D46E35A14A4CD18258 /* PBXContainerItemProxy */ = { + 41C0F89D5E19D40E3CA3B5E254C2D48B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E49E330A27425F89DE89516B2F50AAE9; - remoteInfo = "React-RCTText"; - }; - 41229ED4B0B0EA79D59C84C9D141DDBC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 580D789B2C917AAD8F584EF17E390A5F; - remoteInfo = RNVectorIcons; + remoteGlobalIDString = 1837EDA22C2525E2325468D2A3635FE8; + remoteInfo = "react-native-notifications"; }; 41C76CAFA02708C48FAD7EEDAF99436C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2508,26 +2548,26 @@ remoteGlobalIDString = BD7B2D8FF0ABCB89D01F6E21D5364678; remoteInfo = "React-RCTVibration"; }; - 4279DEA2ECE1767E7DE2F8C3D6B6781D /* PBXContainerItemProxy */ = { + 429CACCE967A440B48F9390A1D534DB2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 32D122CEBC2F799F23ED032EEB11B198; - remoteInfo = UMTaskManagerInterface; + remoteGlobalIDString = 7F28D4475D7DAD9903F7E6044DD921C1; + remoteInfo = "React-RCTAnimation"; }; - 4489539052F395F90A07887AF82A5A16 /* PBXContainerItemProxy */ = { + 451A0CD65D681A20E22609DAAACD60F4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 63CF4D4E74D1771681263724253E1E79; - remoteInfo = GoogleDataTransportCCTSupport; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; }; - 4502793DA821910DEEC8607AB6AB42BE /* PBXContainerItemProxy */ = { + 453A01330D00EE405AA94B488EC69F58 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 01B53B6A43CBD6D4022A361BBFCCE665; - remoteInfo = FirebaseCore; + remoteGlobalIDString = CC0A7968B1F2981D99C33E73EDF48649; + remoteInfo = RSKImageCropper; }; 455009ED9ED8F59E3D7880EA52A66B11 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2543,33 +2583,26 @@ remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; remoteInfo = GoogleUtilities; }; - 49CEDAFF9A173F0FF7C6E5779EA3A3EE /* PBXContainerItemProxy */ = { + 47917058C953A18B74A0F97C568209F5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 96205370750E7374B14ACD374E630261; - remoteInfo = UMSensorsInterface; + remoteGlobalIDString = 2A99896D65A33A482D2D82FC436F823D; + remoteInfo = FBReactNativeSpec; }; - 4A0622B1B770B00743A122DDCD5C2AE0 /* PBXContainerItemProxy */ = { + 47FB835CAAE0A4C15B762BAAEC9B4C9B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 48F9CAC66FE3C08FEE3ACAA5C6FEF569; - remoteInfo = RSKImageCropper; + remoteGlobalIDString = E13B95041FFD639523C6719AAEF55D71; + remoteInfo = DoubleConversion; }; - 4A97B950C7C683558E5F42EDD207BB12 /* PBXContainerItemProxy */ = { + 4BB158B4DFAE1EA943735E597172DA75 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 012AE749BB302180A2F0730AF8E0490E; - remoteInfo = SDWebImage; - }; - 4B9E64BF18FCEE3DDDB41F7359A090E5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 48F9CAC66FE3C08FEE3ACAA5C6FEF569; - remoteInfo = RSKImageCropper; + remoteGlobalIDString = 57B9E0A892EAB5C13D4AE7D4B1DE0C16; + remoteInfo = GoogleAppMeasurement; }; 4BBDCF74AAA6DEC7420E0CB6C398D3AF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2578,6 +2611,13 @@ remoteGlobalIDString = F7236D5BFD42DBEDF2652D4E47992BD2; remoteInfo = "React-jsi"; }; + 4BE19C582197EA238970BFC00A4345F9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; 4BFA9DDB028CA84B14CCA5C11D9F6207 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2585,40 +2625,40 @@ remoteGlobalIDString = 60F43D68BD7290E1B24C3BE7B3382AD3; remoteInfo = "React-RCTNetwork"; }; - 4CF7C35A188AC07C88CA5E9E1A311D6A /* PBXContainerItemProxy */ = { + 4CF1F27C521662154CBE5AE3435635C1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 43CA9BA5B764ACB732696877E3FC307A; - remoteInfo = "react-native-document-picker"; + remoteGlobalIDString = F0C4ADFA389E9332F694ED1737F25C47; + remoteInfo = "react-native-webview"; }; - 4DC6E3D6834C8665BB2A1AFBF24D8E62 /* PBXContainerItemProxy */ = { + 4D31CCF88BA59773ACEED418E398A10E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 64E78828D8355514B3B6BE78FAE7806E; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = CC0A7968B1F2981D99C33E73EDF48649; + remoteInfo = RSKImageCropper; }; - 4E330524FD444D4326FB1911657594BE /* PBXContainerItemProxy */ = { + 4DFD741FD5DF23A6BC087B03BF09A5B2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89354908C626AE1F1E4D5E9F42F4E248; - remoteInfo = UMFaceDetectorInterface; + remoteGlobalIDString = 5B1BA8B3E53682DD179F7BFF8F2C8B75; + remoteInfo = EXHaptics; }; - 4ED8C659E79C5F3B5E0CF58AFB2479D9 /* PBXContainerItemProxy */ = { + 4F91ABBA7CF84EA11E6057EAA60FD393 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7DC30CA7B73824BDE446B33B5F944E35; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = 427A5566E42596B2649019D00AA80F10; + remoteInfo = libwebp; }; - 50AEFDA7159EAFA1CFF8D96A67A339CB /* PBXContainerItemProxy */ = { + 5159221D9EDD4DF07C12C346A403B94A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 62D54DBCE8E0274997CAF37B51B9F306; - remoteInfo = SDWebImageWebPCoder; + remoteGlobalIDString = FDBC5D62523F0773421241E3AC0A02D6; + remoteInfo = UMReactNativeAdapter; }; 53E2A1BD19729C2293AB46582C686251 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2627,13 +2667,6 @@ remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; remoteInfo = GoogleUtilities; }; - 54494BCEE2A64574C03812C30FEFEDA4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1F22396CB543506E7EA28A47A30E9727; - remoteInfo = GoogleDataTransport; - }; 54A7BA384E80D5DB0269C827877FE175 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2641,26 +2674,40 @@ remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; remoteInfo = GoogleUtilities; }; - 56465ADC9722CC7D91B8BF74305F8B31 /* PBXContainerItemProxy */ = { + 5593B70C401926F9E725DA0467F1DE70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0968391E5351AFD65E48369B3645BEDC; - remoteInfo = RNLocalize; + remoteGlobalIDString = C0257B2F2F50DB2D70283F07722FFD1F; + remoteInfo = UMCameraInterface; }; - 56AE46EFB30F2EAA77FDA2BA67BDDB6A /* PBXContainerItemProxy */ = { + 55E037F4674D2D5BDE2992FB49E7ACE9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E13B95041FFD639523C6719AAEF55D71; + remoteInfo = DoubleConversion; + }; + 56875376478BEE542725C6B1269B0CB8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; remoteInfo = React; }; - 581AE6C786C1407B2F6B2483FB6D897C /* PBXContainerItemProxy */ = { + 576260B895A8A1EBE187EC88F8DD68A0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; - remoteInfo = "React-Core"; + remoteGlobalIDString = 4C2F2E6EC9A37A9237D2149D178CCCD4; + remoteInfo = "react-native-splash-screen"; + }; + 5787708134E63E08539E1DB9D7B5A50C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 16B709A47FCE8BA466D5FC8BE1527E32; + remoteInfo = "rn-extensions-share"; }; 586C9042939572C3633A6BECFDC2FFDF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2669,6 +2716,13 @@ remoteGlobalIDString = 7135140B597489F3FE9D0A6D1FADD9C7; remoteInfo = "React-RCTActionSheet"; }; + 58937B526852F527445915789FEBAC73 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7CAB4058EBC116AE1A60D0CB0B1BFCC1; + remoteInfo = glog; + }; 5A01D7A983FEAB270273E554A7DA4480 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2676,12 +2730,47 @@ remoteGlobalIDString = 7CAB4058EBC116AE1A60D0CB0B1BFCC1; remoteInfo = glog; }; - 5B2382FC9D1D00F3013511037B5804C8 /* PBXContainerItemProxy */ = { + 5A32A213DBB79D8B8B31B5685D7D2070 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 01B53B6A43CBD6D4022A361BBFCCE665; - remoteInfo = FirebaseCore; + remoteGlobalIDString = C78807E7E9A8C08F9906CF47DE441E57; + remoteInfo = RNAudio; + }; + 5A84C7DE05C6CEED512B83C69E07B5A2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; + remoteInfo = "React-Core"; + }; + 5AEBCAF81BB16CFAA5A4D4DA416663FA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC11D276EDE75D423B7339DD9767E779; + remoteInfo = SDWebImageWebPCoder; + }; + 5AEC0D6CC7269A725BEDFF7EA1022AF9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A486E5AB43C3327005F1C0B986A448C0; + remoteInfo = EXConstants; + }; + 5BA290E8C045A569E037829477782168 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B81CA3A3A63C0085E4085060FE4DD9FF; + remoteInfo = "React-jsiexecutor"; + }; + 5BCF5F98210AC4A919BB88E1B3A61931 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8E9F01B150517E3739C7748CF6D42337; + remoteInfo = RNReanimated; }; 5BE488B88EB1D7B8BFE4A63D278D4B18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2690,19 +2779,19 @@ remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; remoteInfo = GoogleUtilities; }; - 5C1B1E9F0560F486D14699434E0C2176 /* PBXContainerItemProxy */ = { + 5C1211203154A5A2A4884465157F8B52 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 799B29F9D6DCE28B98CC259440382F20; - remoteInfo = Firebase; + remoteGlobalIDString = 900359F19CD27ABA6E4A4F2E481D422A; + remoteInfo = UMSensorsInterface; }; - 5C481DC35C5104BFF1B24C7BCB5A67B1 /* PBXContainerItemProxy */ = { + 5C6F7E2FDA7AA3D0BCCC515221A005AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6D6AEAB3F5088F4B4EF5EEA6B011226E; - remoteInfo = "rn-extensions-share"; + remoteGlobalIDString = 64E78828D8355514B3B6BE78FAE7806E; + remoteInfo = "React-RCTSettings"; }; 5C8A3E6AB1161E9CF7D5A8AC0368B080 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2711,20 +2800,6 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; - 5CA5277C274F04423FDFBFA36958F3A0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - 5CF35D15D0050D57170CF32E70A85E5B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2C53FD5931EC65A936C5F2AD66F1EEB; - remoteInfo = "react-native-notifications"; - }; 5D5E2D283A970E01BA8A2BC60FE99815 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2732,12 +2807,33 @@ remoteGlobalIDString = 7CAB4058EBC116AE1A60D0CB0B1BFCC1; remoteInfo = glog; }; - 5F5DB5D8B3F415BD0E8377199640C2FE /* PBXContainerItemProxy */ = { + 5D9288E8EB8B6E605EA0E60DEDA54DC2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BA602E0E6B0AAFD40F5578A3B7231AC3; - remoteInfo = UMImageLoaderInterface; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; + 5DE8C86606FB3BCE858145E1C582F75E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 017AB91E1D5AB2B6096ADC666B072208; + remoteInfo = "React-RCTImage"; + }; + 5FCC3619281D788E2222817FAF6976A8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 123D4D7AC3D41ABC0675B1DB3613066E; + remoteInfo = RCTTypeSafety; + }; + 5FDBFFB62379C071EA82A54742FE639B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; }; 5FDD7E408B08AF566972547CAF4A8B67 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2746,54 +2842,68 @@ remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; remoteInfo = UMCore; }; - 633F0C411FAC0724CC86339DB1A8F35B /* PBXContainerItemProxy */ = { + 604F089D7ABEB3008D01D74CF794317B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2A99896D65A33A482D2D82FC436F823D; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = 2911DE646E6DFD9455119DA0F7248020; + remoteInfo = UMFontInterface; }; - 63A03E31B52F3ADD6D577FBBA0D6403C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; - remoteInfo = Folly; - }; - 65B183FB26A69CDB54B67CC35D542ED3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2C15AB5776BB3F7736E68FEDC1A4A36; - remoteInfo = "react-native-webview"; - }; - 665E782F57019B83B49F33B17EA78430 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 63CF4D4E74D1771681263724253E1E79; - remoteInfo = GoogleDataTransportCCTSupport; - }; - 66BFF9FAF41945BEAD54F14CC4A47410 /* PBXContainerItemProxy */ = { + 6179760B745D9E2A61651CA58BA66FB0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; remoteInfo = React; }; - 67658B3701DCD86F294DB5BD56327ED0 /* PBXContainerItemProxy */ = { + 62246D9025FFE179CF78E82F89830BF1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 426398FA61DF648ECF7C6897DFAC6E8E; - remoteInfo = FirebaseCoreDiagnostics; + remoteGlobalIDString = B81CA3A3A63C0085E4085060FE4DD9FF; + remoteInfo = "React-jsiexecutor"; }; - 677767528061D47489468FE9A17457AE /* PBXContainerItemProxy */ = { + 62901CAAB361EACAD840426C35553A22 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9F219ED43F3AEA000562B9BCFD624DDD; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; + remoteInfo = GoogleUtilities; + }; + 6620A71BA64CD5DB1A68F51315FB7EEA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FEC7CEE99C30C1292EC32D7E006E4E85; + remoteInfo = Yoga; + }; + 67C23BA49C05DE5FDEAE47BFB6FC1E22 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; + remoteInfo = Crashlytics; + }; + 68B968331DEBE4486DD756DDF18B0524 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; + 6979E0A1787B9CF5EEE5321065440D2D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; + remoteInfo = Fabric; + }; + 698C8D0AC281E9CAFB10BC44CFFCFA35 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E5BFB4B0AFB8B1338DA5ABC32124BED6; + remoteInfo = RNFirebase; }; 6A307E7AA187B3493D468319584B81F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2802,19 +2912,12 @@ remoteGlobalIDString = 9D255DD73ADD1E4565B5CCB665433053; remoteInfo = RCTRequired; }; - 6A58D425739945D3A92A7E271BD4A331 /* PBXContainerItemProxy */ = { + 6A5D8E9F4EAFC6CB60550F4C7CB5C9D1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6DE003F64B133830B9AB9321298DAAC2; - remoteInfo = ReactCommon; - }; - 6AD518E5DA7F2E65365B5F533BE5CB48 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 458293E00EF1C1F42778F9425AD34AA4; - remoteInfo = UMConstantsInterface; + remoteGlobalIDString = E452F4CD4F8AB641BD2444C7AC91FA2B; + remoteInfo = BugsnagReactNative; }; 6BD0984377EB6F1CDAF209D0EEAE7356 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2823,18 +2926,32 @@ remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; remoteInfo = "boost-for-react-native"; }; - 718FEAAB24AA45A211D2F2DF4B2EF76C /* PBXContainerItemProxy */ = { + 6E6A17D81823F6E3DD4F5008098C53AC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1CCF1D06CCFE0D0AB787DF0923C94D79; - remoteInfo = FBLazyVector; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; }; - 719C26DB419FA186776F5F212364097C /* PBXContainerItemProxy */ = { + 6F1A59C01711361E22111B574AF12506 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C2ECC9F00932B89184DFC0F90BB87BB9; + remoteGlobalIDString = 15F9F7952A132E879D1B32065C22F870; + remoteInfo = UMTaskManagerInterface; + }; + 7029CE8522105B8AC908BF23542874AD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; + remoteInfo = Crashlytics; + }; + 707BA1525056EDA8718BB22CFD1C1671 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A83DA188DB8A2E365EC3B1FD19C9A3F5; remoteInfo = RNScreens; }; 729C920815C311E1D586861019E10612 /* PBXContainerItemProxy */ = { @@ -2844,26 +2961,12 @@ remoteGlobalIDString = A1DA7160DD40C2F4C7332F30DE279FC2; remoteInfo = FirebaseCoreDiagnosticsInterop; }; - 73A27B88B9807A575D780D725E4545B7 /* PBXContainerItemProxy */ = { + 748570239C4134B12FBB4DAAED9D38DA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 84BB82258E4223BA2C02A6731A1BCEB5; - remoteInfo = RNReanimated; - }; - 7511346EDEC8066D98A8FDACE40F7F9C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E2B978578963427FF7EAE56EE62BD4A2; - remoteInfo = RNFastImage; - }; - 7579BA47EA9E0E3EF57BB89315642D02 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E17311CD8EACC16113C89390B6656C5; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = 1F22396CB543506E7EA28A47A30E9727; + remoteInfo = GoogleDataTransport; }; 75A8D1D5089B0ACAF241DACEA0305423 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2872,6 +2975,13 @@ remoteGlobalIDString = E13B95041FFD639523C6719AAEF55D71; remoteInfo = DoubleConversion; }; + 769FA7B15800D3D0097784D2F59EEB1E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 426398FA61DF648ECF7C6897DFAC6E8E; + remoteInfo = FirebaseCoreDiagnostics; + }; 76B0A5010EE1574433BB6DED35297BCE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2879,12 +2989,19 @@ remoteGlobalIDString = E13B95041FFD639523C6719AAEF55D71; remoteInfo = DoubleConversion; }; - 78069FCE0F77E8446ABF193F0B74C518 /* PBXContainerItemProxy */ = { + 77B870869E718428E67995FEBDAB29B3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 580D789B2C917AAD8F584EF17E390A5F; - remoteInfo = RNVectorIcons; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; + 787065961CEEEB33A71905A998C7C17E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E815F092E40E6946F21899111DA998C4; + remoteInfo = "react-native-jitsi-meet"; }; 7886C00AD2D894DE9202D2ADC41E8DF5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2893,13 +3010,6 @@ remoteGlobalIDString = 7CAB4058EBC116AE1A60D0CB0B1BFCC1; remoteInfo = glog; }; - 7931BCACCDE14C178E81BA7AB4983947 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3C6A9BF574C3488966C92C6A9B93CA8C; - remoteInfo = FirebaseInstanceID; - }; 7AEA5761B26CAEF1A0C0E82599059DA8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2907,13 +3017,6 @@ remoteGlobalIDString = 232D00D8ED7797390FB38004DE01723B; remoteInfo = FirebaseAnalytics; }; - 7B6B0D4D79C9E7B8D7A917D0E5C1A3D6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6DE003F64B133830B9AB9321298DAAC2; - remoteInfo = ReactCommon; - }; 7C53CB5C717DF2F107152E0C7B720455 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2921,40 +3024,19 @@ remoteGlobalIDString = 7CAB4058EBC116AE1A60D0CB0B1BFCC1; remoteInfo = glog; }; - 7CA489955DC921604B0580EABCC1CDB9 /* PBXContainerItemProxy */ = { + 7FA3E9509022198773CB0B6340DD3BEA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 97BD405FD9F848B761D280E25331AD81; - remoteInfo = UMCameraInterface; + remoteGlobalIDString = 3C6A9BF574C3488966C92C6A9B93CA8C; + remoteInfo = FirebaseInstanceID; }; - 7E0404FBA208A54D200D14E6D68D956D /* PBXContainerItemProxy */ = { + 7FEFCCD352275F65792C272B8C2F8EE4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; - remoteInfo = UMCore; - }; - 7FE66880FBFFA0BAE017E106EE878D7A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 68FD26CCB7EFC21DBD9D571910B36E1B; - remoteInfo = RNAudio; - }; - 7FF7E96C387D0FB07EACE64EAC5D8F74 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 427A5566E42596B2649019D00AA80F10; - remoteInfo = libwebp; - }; - 7FFBA607D07DE68CD0DF59DD2E49F19B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 126A5E61D5CF9BAC6B2357D8EDFE30B5; - remoteInfo = "react-native-keyboard-input"; + remoteGlobalIDString = CC1AB14B9BDA80213A889CE582D91D46; + remoteInfo = RNVectorIcons; }; 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2970,61 +3052,54 @@ remoteGlobalIDString = 9F219ED43F3AEA000562B9BCFD624DDD; remoteInfo = "React-cxxreact"; }; - 8131C1D4014C37C36210B0380550F043 /* PBXContainerItemProxy */ = { + 813DE34375123FF68955C7FBFB202613 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; - remoteInfo = Fabric; + remoteGlobalIDString = 32B97B2079526CE843CA6A5613012594; + remoteInfo = "react-native-background-timer"; }; - 8459BF118ED26E4EA2D59D49C35910D8 /* PBXContainerItemProxy */ = { + 81580CC5C518DC62660D2E3F5E09FA3E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9D255DD73ADD1E4565B5CCB665433053; - remoteInfo = RCTRequired; + remoteGlobalIDString = 60F43D68BD7290E1B24C3BE7B3382AD3; + remoteInfo = "React-RCTNetwork"; }; - 850ACB6EDF78D50D77DF83591C7958AE /* PBXContainerItemProxy */ = { + 84BFFE86878148C363BA4ECAD3AE8E52 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7817B05E6E79731DF1D171B7D405F411; - remoteInfo = "QBImagePickerController-QBImagePicker"; + remoteGlobalIDString = F7236D5BFD42DBEDF2652D4E47992BD2; + remoteInfo = "React-jsi"; }; - 896AD7F43F782CCA7BC3316BDFC37988 /* PBXContainerItemProxy */ = { + 858478F252313D1B32C44402B134B8A6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; - remoteInfo = "React-Core"; + remoteGlobalIDString = FEC7CEE99C30C1292EC32D7E006E4E85; + remoteInfo = Yoga; }; - 8A272AE740139BF08CE3DB3D59BF0633 /* PBXContainerItemProxy */ = { + 85EB19C15DF73C13CA065A8AA1B3E962 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = 123D4D7AC3D41ABC0675B1DB3613066E; + remoteInfo = RCTTypeSafety; }; - 8B09C9BCD5EAA06DC1658D972B45AD7C /* PBXContainerItemProxy */ = { + 8848DF2534520D67141808F966996484 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C2F81329D3C42F2D872A4B80180545BC; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; + remoteInfo = UMCore; }; - 8C5E161F53D3833D3CA76726E0E2BC1A /* PBXContainerItemProxy */ = { + 8B36E4D7EB477E544CEC4026A5C4CD88 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4C64158251B8E41D79AE900D7E5A10B1; - remoteInfo = UMReactNativeAdapter; - }; - 8C91A57819D1EA86F9C8D306D9CBEDE7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F1EE4DA45FFDFD18B54B38BE623F2FA2; - remoteInfo = "react-native-splash-screen"; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; }; 8CD598B3122E1B5D5E0411E9F8DFF385 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3033,40 +3108,26 @@ remoteGlobalIDString = 1F22396CB543506E7EA28A47A30E9727; remoteInfo = GoogleDataTransport; }; - 8DC186295FDFF267D84397758AF3B393 /* PBXContainerItemProxy */ = { + 8D51580EB5351D058DDBF6D3B910E222 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4C0C7B693B06D0DBEA04F9ABE003D758; - remoteInfo = QBImagePickerController; + remoteGlobalIDString = 64B317954BAE80E3324A956FD9035716; + remoteInfo = UMBarCodeScannerInterface; }; - 8DC85EF6FC33495D16C7B4A96CC85FC4 /* PBXContainerItemProxy */ = { + 8D8E71619F284999A3C3ABE2F776FF32 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; + remoteGlobalIDString = 017AB91E1D5AB2B6096ADC666B072208; + remoteInfo = "React-RCTImage"; }; - 8EF259F2D6F3174916AD88D962103FC3 /* PBXContainerItemProxy */ = { + 8E864937DBE9A3340C93A9DEDF95C6F5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0CBA5F53133416AD6AD2C463B3E7A934; - remoteInfo = "react-native-jitsi-meet"; - }; - 8F0678DFD755F1A46F2D8770D7B03CAB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - 8F6B3E765842174FCDBD87265F9BF40B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5B1BA8B3E53682DD179F7BFF8F2C8B75; - remoteInfo = EXHaptics; + remoteGlobalIDString = 123D4D7AC3D41ABC0675B1DB3613066E; + remoteInfo = RCTTypeSafety; }; 8F8D97FDA93DF806279F1C90D2E34F62 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3075,35 +3136,49 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; - 91ABE8061C1BC4D8A2756BA52CCFEF13 /* PBXContainerItemProxy */ = { + 8F98160B21E2490C73468C6C92281D44 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 017AB91E1D5AB2B6096ADC666B072208; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = D72528D679933334AAD7996CD73D84CD; + remoteInfo = SDWebImage; }; - 924CFE5D622FD530A2A06F343D80B185 /* PBXContainerItemProxy */ = { + 918963CE4DD36C9E17EDA9B334654255 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6C55354377C9FC118FFF334B68A47E4; - remoteInfo = "react-native-video"; + remoteGlobalIDString = 17378B5ED23F0B7A52011DAE2B803A05; + remoteInfo = "react-native-document-picker"; }; - 92720BB3E163302CB7EA503774E85CAB /* PBXContainerItemProxy */ = { + 93C20AD94216EBF40FD61FA266D7BD70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; + remoteGlobalIDString = F20B81FC3B7B8A0BDCAF087081B0C22E; + remoteInfo = "rn-fetch-blob"; }; - 9273A7632365E18FFAC98BE651678752 /* PBXContainerItemProxy */ = { + 93C3E19F01B286CA9095B507A60B0949 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; + remoteGlobalIDString = BB5B4FB9526DC1FEC5AEBB3C4E4239E6; + remoteInfo = "react-native-safe-area-context"; }; - 950CA5F16390BEEAB60306F52FBAB913 /* PBXContainerItemProxy */ = { + 94E1AB33E4528F153E94DA45EF39E16A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; + remoteInfo = "React-Core"; + }; + 94ED85E8FFDAD7F38C20FAB01B44EFA3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; + remoteInfo = "boost-for-react-native"; + }; + 9564DD4C527D87C5B4270F56E122628C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; @@ -3117,20 +3192,6 @@ remoteGlobalIDString = E13B95041FFD639523C6719AAEF55D71; remoteInfo = DoubleConversion; }; - 9609341E78BAD860C04EBE6F1F42B96A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1E7F02AFF67B5BD0ACE8CCA04DF1356E; - remoteInfo = "react-native-orientation-locker"; - }; - 963302CBCB73EC6C8446D8A2BDD50A3A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; - remoteInfo = "React-Core"; - }; 96823A763E56B0CD36C81E000393C274 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3138,6 +3199,13 @@ remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; remoteInfo = React; }; + 96860288AE4670A28516DDFB794E38F1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1837EDA22C2525E2325468D2A3635FE8; + remoteInfo = "react-native-notifications"; + }; 96B240CD15FF840DD247422149331369 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3145,6 +3213,13 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; + 96CFB08CF83548249188B41F1A0103B8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DE5A74080B919B383A77CD73B094CBBC; + remoteInfo = "react-native-keyboard-tracking-view"; + }; 973587FD3243D488ACC2A2CBA4B833BD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3152,12 +3227,47 @@ remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; remoteInfo = Folly; }; - 9990ABED12ABA3C0714D04014CD92464 /* PBXContainerItemProxy */ = { + 97E626376E4B155521AD09DA5CD68B10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7F28D4475D7DAD9903F7E6044DD921C1; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; + remoteInfo = Folly; + }; + 98A5FAEA3A7F568CD1DEB51883EC00F7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E49E330A27425F89DE89516B2F50AAE9; + remoteInfo = "React-RCTText"; + }; + 9920192D86C38E0D17571CC3DC4F8940 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3665DFF5E63879E71E17B6E7B32A2899; + remoteInfo = "react-native-video"; + }; + 9959A4212DE91A8EB21A8A58064A7EE2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; + remoteInfo = "boost-for-react-native"; + }; + 99B06EE2FDE95DA1ACB5F59968FB5A93 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9F219ED43F3AEA000562B9BCFD624DDD; + remoteInfo = "React-cxxreact"; + }; + 9A0DE623EEE672DB85764C591826E1E3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; }; 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3166,68 +3276,61 @@ remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; remoteInfo = UMCore; }; - 9B86F2139E314ECD2D6734EC15E93FD0 /* PBXContainerItemProxy */ = { + 9A948A9F5B2D16483BCD7B0DAA0009B6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B81CA3A3A63C0085E4085060FE4DD9FF; - remoteInfo = "React-jsiexecutor"; + remoteGlobalIDString = 84362B470EA387E55ADAD84F88B19444; + remoteInfo = UMFaceDetectorInterface; }; - 9BAC420B3640217ED150187B9CDE1852 /* PBXContainerItemProxy */ = { + 9AD4BBA58D8AEE5DE3E71DF735F655A2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 123D4D7AC3D41ABC0675B1DB3613066E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = 64E78828D8355514B3B6BE78FAE7806E; + remoteInfo = "React-RCTSettings"; }; - 9BC85EB06C4ABEF516D1C592A8362C5C /* PBXContainerItemProxy */ = { + 9C24735A9692E02C5BE7BD8D82C3E296 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; - remoteInfo = Fabric; + remoteGlobalIDString = BD7B2D8FF0ABCB89D01F6E21D5364678; + remoteInfo = "React-RCTVibration"; }; - 9D9EEFAAB1BAA809AC134D293B01DAA2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - 9E14764C7DCCF14DE3F1D8893623A356 /* PBXContainerItemProxy */ = { + 9D73278BAA7FC659D4B7D445CAE1EF37 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 017AB91E1D5AB2B6096ADC666B072208; remoteInfo = "React-RCTImage"; }; - 9E2132DB2888CD2DDDF8C5AC71FC7814 /* PBXContainerItemProxy */ = { + 9E911CC11C299753B843EA7B9FA4E393 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 012AE749BB302180A2F0730AF8E0490E; - remoteInfo = SDWebImage; + remoteGlobalIDString = 7135140B597489F3FE9D0A6D1FADD9C7; + remoteInfo = "React-RCTActionSheet"; }; - 9E8409ADD50C0FFC64323A2C4D073860 /* PBXContainerItemProxy */ = { + 9F750C6A88068FDE132B88B54233ECB9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 84BB82258E4223BA2C02A6731A1BCEB5; - remoteInfo = RNReanimated; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; }; - 9ED699F6A1C2E9D1142AC5207E8784F2 /* PBXContainerItemProxy */ = { + 9F7582582D0D23770420131211231716 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1E7F02AFF67B5BD0ACE8CCA04DF1356E; - remoteInfo = "react-native-orientation-locker"; + remoteGlobalIDString = 32B97B2079526CE843CA6A5613012594; + remoteInfo = "react-native-background-timer"; }; - A00D86B9CD1DAF277729588DB2755531 /* PBXContainerItemProxy */ = { + 9FCF38C7CE06312000B6F94725B23CDD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7CAB4058EBC116AE1A60D0CB0B1BFCC1; - remoteInfo = glog; + remoteGlobalIDString = 59D5FC9202D131CDFD2E08ABCE1C35AC; + remoteInfo = nanopb; }; A10B927F49CDB8E49094BFD1CA897343 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3236,6 +3339,13 @@ remoteGlobalIDString = 115FC7605B6A0F6044A879F6EEB7DD99; remoteInfo = "React-jsinspector"; }; + A12793C2F9F0732C798DDAD9FB7387AB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7236D5BFD42DBEDF2652D4E47992BD2; + remoteInfo = "React-jsi"; + }; A3F86DBAC5E1C8F0724C396F51BBECE7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3243,40 +3353,26 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; - A49EA97CD68B492BFCF7B5E4FF2843C0 /* PBXContainerItemProxy */ = { + A43FBEC98DDCCC6FCE01AB8AB3DCB480 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A1DA7160DD40C2F4C7332F30DE279FC2; - remoteInfo = FirebaseCoreDiagnosticsInterop; + remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; + remoteInfo = Crashlytics; }; - A620EE07C60AD71685779DD28F093EAE /* PBXContainerItemProxy */ = { + A78C3D1A49FC2714F667B426CFC64AC7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4B46CDE4D80107772B319E892C6315CB; + remoteGlobalIDString = F20B81FC3B7B8A0BDCAF087081B0C22E; remoteInfo = "rn-fetch-blob"; }; - A6376483D2C979E25958F0DFAD724C95 /* PBXContainerItemProxy */ = { + A856A7E76E3D849CB6AF13C486B0CD7B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - A6CFCE84DC430EE04846A34DA14D7E4D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6D6AEAB3F5088F4B4EF5EEA6B011226E; - remoteInfo = "rn-extensions-share"; - }; - A6EF565450EC714FAF068F7A4708E9B9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5108B653873149EC4BF8AD36798AD6BD; - remoteInfo = UMBarCodeScannerInterface; + remoteGlobalIDString = 9A6B273422BDAA14C2ED873EEAE80F65; + remoteInfo = "react-native-keyboard-input"; }; A94EF2BE3BB5C93DEBBBD89AA7A50736 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3285,12 +3381,12 @@ remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; remoteInfo = Folly; }; - A985AACDA6EF2441AC06D3C49AB117F4 /* PBXContainerItemProxy */ = { + A977DCA651DFC463134AE2DA3E08CE38 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7135140B597489F3FE9D0A6D1FADD9C7; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = C2F81329D3C42F2D872A4B80180545BC; + remoteInfo = "React-RCTLinking"; }; AAC869672B6119FA01B23690C77B30FC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3299,48 +3395,69 @@ remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; remoteInfo = Folly; }; - ABA3B980C7DF0FE92C05E0DB2C782522 /* PBXContainerItemProxy */ = { + AB7D5BA255296762CDE29443208454D8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 012AE749BB302180A2F0730AF8E0490E; - remoteInfo = SDWebImage; + remoteGlobalIDString = 01B53B6A43CBD6D4022A361BBFCCE665; + remoteInfo = FirebaseCore; }; - AD322330F76E953329AB044837991C78 /* PBXContainerItemProxy */ = { + ABD4968BC6194A368022804A0B802B7B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; - remoteInfo = Fabric; - }; - AE4B49A29DC1CD8B39D1A9BC293C86FA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1CCF1D06CCFE0D0AB787DF0923C94D79; - remoteInfo = FBLazyVector; - }; - AEEF5E9184D2D6FFE6F010CFDAAF5AAD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 57B9E0A892EAB5C13D4AE7D4B1DE0C16; - remoteInfo = GoogleAppMeasurement; - }; - B075E9A4B4B54C0E337F0E9F5856E968 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E452F4CD4F8AB641BD2444C7AC91FA2B; - remoteInfo = BugsnagReactNative; - }; - B23C5EB2FA5DADA9D5CB24DD22B5B291 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2B96BEB2DA52F32912B485D29E28C7BD; + remoteGlobalIDString = 2911DE646E6DFD9455119DA0F7248020; remoteInfo = UMFontInterface; }; + AC48FEBB52D12A4DB7022128ADBDCBEE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7CAB4058EBC116AE1A60D0CB0B1BFCC1; + remoteInfo = glog; + }; + AEB0662824D2EA16D2FB2BE5F593B99D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ECC038491C39C430320C6C22527849A3; + remoteInfo = RNFastImage; + }; + AEC1C0A326FD163D636195C9E7DC5E03 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 799B29F9D6DCE28B98CC259440382F20; + remoteInfo = Firebase; + }; + AEDF76510055D732C4CDD530F758C500 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C2722F653457CE3393EBD7647723DCB9; + remoteInfo = "react-native-orientation-locker"; + }; + B2708954D95D8346F76732122E9298DB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 426398FA61DF648ECF7C6897DFAC6E8E; + remoteInfo = FirebaseCoreDiagnostics; + }; + B3FCC4AD5903E2C921D0E73A95E5652D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5684E1AFCF5F41172AF803F46DEC414D; + remoteInfo = RNUserDefaults; + }; + B4A4363AA554BE782BA871DEB9F69E15 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 799B29F9D6DCE28B98CC259440382F20; + remoteInfo = Firebase; + }; B4BACC19FD91FE9C750E2B7E26434F49 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3348,20 +3465,6 @@ remoteGlobalIDString = 7CAB4058EBC116AE1A60D0CB0B1BFCC1; remoteInfo = glog; }; - B7610EF1E8233D7D9FE02DF432CAA90F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F2C15AB5776BB3F7736E68FEDC1A4A36; - remoteInfo = "react-native-webview"; - }; - B7CFC4F3F41E4E327D8EC6E4096212D0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; - remoteInfo = Folly; - }; B89102853C0AA8B4E4660B0A341C408A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3369,6 +3472,27 @@ remoteGlobalIDString = 64E78828D8355514B3B6BE78FAE7806E; remoteInfo = "React-RCTSettings"; }; + B8E18FCD36162E4B256515F9AB83275F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC11D276EDE75D423B7339DD9767E779; + remoteInfo = SDWebImageWebPCoder; + }; + B97DEE6A513F100B6EBF0F37C8E74B64 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C2F81329D3C42F2D872A4B80180545BC; + remoteInfo = "React-RCTLinking"; + }; + B9FF4B3E76D6B77A39522A9F93F177E8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; BA460C34E38D173750A1C69BCE0F2866 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3376,12 +3500,12 @@ remoteGlobalIDString = 60F43D68BD7290E1B24C3BE7B3382AD3; remoteInfo = "React-RCTNetwork"; }; - BB016C676988600D9CADC179387421D8 /* PBXContainerItemProxy */ = { + BA84031A64476ECDDEE70D25C70A7BBA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 57B9E0A892EAB5C13D4AE7D4B1DE0C16; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = 7825F222F53EF434DE74A6C6FAF290E9; + remoteInfo = UMFileSystemInterface; }; BB43E3440C83F8BC24E141BE6C01D507 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3390,13 +3514,6 @@ remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; remoteInfo = Folly; }; - BBC7F9D170028DC234FE7E00982A5013 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0968391E5351AFD65E48369B3645BEDC; - remoteInfo = RNLocalize; - }; BBDC7C661CA5567D3925BC0747CAAEC5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3404,19 +3521,19 @@ remoteGlobalIDString = 57B9E0A892EAB5C13D4AE7D4B1DE0C16; remoteInfo = GoogleAppMeasurement; }; - BDEC566654050832F6A1B562C45CEDC1 /* PBXContainerItemProxy */ = { + BBDFEC65026DF3F98EE0F2BD41AABB15 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A486E5AB43C3327005F1C0B986A448C0; - remoteInfo = EXConstants; + remoteGlobalIDString = C2722F653457CE3393EBD7647723DCB9; + remoteInfo = "react-native-orientation-locker"; }; - BE43034E516FBC750C46F75E64D1E562 /* PBXContainerItemProxy */ = { + BE0FEB8E385B172DC934AB8CFF09D4C5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2A99896D65A33A482D2D82FC436F823D; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = 5684E1AFCF5F41172AF803F46DEC414D; + remoteInfo = RNUserDefaults; }; BF32D407ED9D0F154DE76F25EEB923DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3425,13 +3542,6 @@ remoteGlobalIDString = 63CF4D4E74D1771681263724253E1E79; remoteInfo = GoogleDataTransportCCTSupport; }; - BFAD2675D13C286993D52CD81BA6C41F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 115FC7605B6A0F6044A879F6EEB7DD99; - remoteInfo = "React-jsinspector"; - }; BFD1349A73D002FF8BADA635DB23EA34 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3446,69 +3556,27 @@ remoteGlobalIDString = B81CA3A3A63C0085E4085060FE4DD9FF; remoteInfo = "React-jsiexecutor"; }; - C0455ED00134110C877487334D44A8FC /* PBXContainerItemProxy */ = { + C38FB4A24E1149CD1829CB9764523072 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 426398FA61DF648ECF7C6897DFAC6E8E; - remoteInfo = FirebaseCoreDiagnostics; + remoteGlobalIDString = 7F28D4475D7DAD9903F7E6044DD921C1; + remoteInfo = "React-RCTAnimation"; }; - C1C93625DD24831FAD44640C4335A253 /* PBXContainerItemProxy */ = { + C3FF1490E9908B62AD5B9B2680D4DABE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9F219ED43F3AEA000562B9BCFD624DDD; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = EC11D276EDE75D423B7339DD9767E779; + remoteInfo = SDWebImageWebPCoder; }; - C293C313AF756DFFD31C6BDB21594BB3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C2ECC9F00932B89184DFC0F90BB87BB9; - remoteInfo = RNScreens; - }; - C3AAB99FAA4DC758FB1CCFACAC5D0AB8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9D255DD73ADD1E4565B5CCB665433053; - remoteInfo = RCTRequired; - }; - C506CE424D5D3020DC730062C5BEA7E8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BD7B2D8FF0ABCB89D01F6E21D5364678; - remoteInfo = "React-RCTVibration"; - }; - C59223B631784357D6F64338F00FB19B /* PBXContainerItemProxy */ = { + C4B79DC3551888EB6EF9456179B7F47C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; remoteInfo = React; }; - C5922A264B9F7F5026B35091DFC976BB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 62D54DBCE8E0274997CAF37B51B9F306; - remoteInfo = SDWebImageWebPCoder; - }; - C5D19A7F93A279CF782C9A6989B5F504 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 115FC7605B6A0F6044A879F6EEB7DD99; - remoteInfo = "React-jsinspector"; - }; - C5F41AAA4C64E96573E828555F2E86A0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; - remoteInfo = Folly; - }; C6318E60C9E68C5F678F7ADDF357AED8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3516,6 +3584,13 @@ remoteGlobalIDString = 59D5FC9202D131CDFD2E08ABCE1C35AC; remoteInfo = nanopb; }; + C65B922C310FCE366BFB2880B6C75E39 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B8773D156F603535D7813D4981DD0B68; + remoteInfo = RNGestureHandler; + }; C6C35C61164D4136265E61ECEB28D38A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3523,75 +3598,61 @@ remoteGlobalIDString = 3C6A9BF574C3488966C92C6A9B93CA8C; remoteInfo = FirebaseInstanceID; }; - C885267ADC502508EE2136C2367DC76A /* PBXContainerItemProxy */ = { + C78EF0DF486F5704D253D2B6C8CDEEF9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 489CCEBDC649D379F1AB6CAE0B453E80; - remoteInfo = "React-CoreModules"; + remoteGlobalIDString = 2A99896D65A33A482D2D82FC436F823D; + remoteInfo = FBReactNativeSpec; }; - C96F7CC4B7AFBEEDE979DA2196094142 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - C9B2E36B4ACCB09AF2219C9F5E20A938 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - CAA8BF55A8AAA3350A8E1CE37FDDEFE0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FEC7CEE99C30C1292EC32D7E006E4E85; - remoteInfo = Yoga; - }; - CCB8E1F19EED12AEC28B043D4EAD5CE5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4C0C7B693B06D0DBEA04F9ABE003D758; - remoteInfo = QBImagePickerController; - }; - CD0B1E9D3D1B9B1FA2289973863A3C36 /* PBXContainerItemProxy */ = { + C99D0E0D9CACF4B944D25094813BCFFE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; - D2DBF3D0CEBF3CB3DC49AA4E8320F2E4 /* PBXContainerItemProxy */ = { + CA91D91D7C062B3D261FCB9A70F9B73C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; + remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; + remoteInfo = "React-Core"; }; - D32E4F2EE33D2813F2F6FEE1650947C3 /* PBXContainerItemProxy */ = { + CEF7916327923915855140BFCA445E1D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 427A5566E42596B2649019D00AA80F10; - remoteInfo = libwebp; + remoteGlobalIDString = 9D255DD73ADD1E4565B5CCB665433053; + remoteInfo = RCTRequired; }; - D345317F20569BCEA8E204CC830D708B /* PBXContainerItemProxy */ = { + D0E8211D26BAA66C928CD08C1F6C8B43 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 15B823CB06FA3E3E70EEFA5195733192; - remoteInfo = RNFirebase; + remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; + remoteInfo = Folly; }; - D461194CE5058B93DA1A2233639E8993 /* PBXContainerItemProxy */ = { + D1213CE89A7EC8A3F23BD2FAC3C1BB43 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F45971A372B34A0A3B690DD27B08E555; - remoteInfo = "react-native-background-timer"; + remoteGlobalIDString = 232D00D8ED7797390FB38004DE01723B; + remoteInfo = FirebaseAnalytics; + }; + D1FF353879A7F03EAF34786650249634 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3C6A9BF574C3488966C92C6A9B93CA8C; + remoteInfo = FirebaseInstanceID; + }; + D38F7B6A79CD4C42C0C398DD1744A764 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9B1043B9A63EAA4E2CF205B8FA3565CE; + remoteInfo = RNLocalize; }; D465047540D12FD9D95291AE82A76DB9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3600,13 +3661,6 @@ remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; remoteInfo = Fabric; }; - D47995974172598A484CFED9347C01E0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B11E238094137347E8790BFEB1BEF01F; - remoteInfo = EXWebBrowser; - }; D59A73644A58ECC04E1987DB3C8A1BC6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3614,33 +3668,47 @@ remoteGlobalIDString = F7236D5BFD42DBEDF2652D4E47992BD2; remoteInfo = "React-jsi"; }; - D6193B6084DDDB835D74A4EF97439FEB /* PBXContainerItemProxy */ = { + D63F4A36FE48FD9534DAB72877506793 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E20E81644F6DFF8A9937721B0487DBEC; - remoteInfo = RNImageCropPicker; + remoteGlobalIDString = 2E2ABA11C27993D4CDD5DA270C4B75F1; + remoteInfo = "React-RCTBlob"; }; - D68FB73CD84B5F23B136BE679B288751 /* PBXContainerItemProxy */ = { + D64D370CE939A63546C340056E26B943 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 232D00D8ED7797390FB38004DE01723B; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = ECC038491C39C430320C6C22527849A3; + remoteInfo = RNFastImage; }; - D70A467AEA73A72DD32C06B260635279 /* PBXContainerItemProxy */ = { + D68CC91537B2FA5DA192AC3F18831134 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E13B95041FFD639523C6719AAEF55D71; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; }; - D7FBEF6238865E2D6EE6F63B65A5E034 /* PBXContainerItemProxy */ = { + D6B9C904F0BBFDF39518C509E3B32034 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2A99896D65A33A482D2D82FC436F823D; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = 86E0FD6F1E6CD55F28FDDB1D399CA7F7; + remoteInfo = "React-CoreModules"; + }; + D780AE095FF5378EE40CDC0CDEDE614A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; + D812816E2BE2AA6EA773C410A1ED4A70 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; + remoteInfo = UMCore; }; D8A489DA96811A733E40A4B4C97CDC9D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3649,13 +3717,6 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; - D91719ED9D40D92E0EB63F090E90B8C2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5C53A3A5621162049D9B4399173FAD68; - remoteInfo = UMPermissionsInterface; - }; D9B0BDCA002FEBFE383DFE024728D2F6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3663,33 +3724,26 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; - DA0DCAAECCE8A025A30462DB2E8F17DE /* PBXContainerItemProxy */ = { + D9C723D1075D00952C597952131B32EF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F2C53FD5931EC65A936C5F2AD66F1EEB; - remoteInfo = "react-native-notifications"; + remoteGlobalIDString = A1DA7160DD40C2F4C7332F30DE279FC2; + remoteInfo = FirebaseCoreDiagnosticsInterop; }; - DA59CE02635F22A7FE1EB8634037D000 /* PBXContainerItemProxy */ = { + DA88C4C9C878A87E9B1CD0FCBCE8D2F2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1F22396CB543506E7EA28A47A30E9727; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = 01B53B6A43CBD6D4022A361BBFCCE665; + remoteInfo = FirebaseCore; }; - DB6919F0F80DC6D724888D3611CB1485 /* PBXContainerItemProxy */ = { + DB4E475FEB560D9E1E97468EDFA81A6B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E4D9E3C5E2CE0F3B8F6462A54DAA07EB; - remoteInfo = "react-native-keyboard-tracking-view"; - }; - DBDB2668554E77787C0C9BE5A30BC860 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7F28D4475D7DAD9903F7E6044DD921C1; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = 4ECE1108F140208A729A83BC94FAA150; + remoteInfo = EXAppLoaderProvider; }; DC1A792C62DBF10721FFE4308A29BA06 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3698,6 +3752,20 @@ remoteGlobalIDString = 7F28D4475D7DAD9903F7E6044DD921C1; remoteInfo = "React-RCTAnimation"; }; + DC71E323F2ECDE76B898009EC38DB63C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E5BFB4B0AFB8B1338DA5ABC32124BED6; + remoteInfo = RNFirebase; + }; + DD293FD57F5E75F7ADE4D2DBA6FD637A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9F219ED43F3AEA000562B9BCFD624DDD; + remoteInfo = "React-cxxreact"; + }; DF12C5D7BB68C2724D2F39A531F2A52A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3705,33 +3773,26 @@ remoteGlobalIDString = 59D5FC9202D131CDFD2E08ABCE1C35AC; remoteInfo = nanopb; }; - DF3AB41111F589D9CBD32D6AE7FB1E5A /* PBXContainerItemProxy */ = { + E0B8467508AB688996367245A79AEE85 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 64E78828D8355514B3B6BE78FAE7806E; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = 63CF4D4E74D1771681263724253E1E79; + remoteInfo = GoogleDataTransportCCTSupport; }; - E1FCE70D4CC784C0929BD9999B7E674B /* PBXContainerItemProxy */ = { + E10318B49E7E20BAB62DD9EF22C52C0A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; - remoteInfo = Crashlytics; + remoteGlobalIDString = B11E238094137347E8790BFEB1BEF01F; + remoteInfo = EXWebBrowser; }; - E35118FBEB11FB9D7CAA527467EF56E3 /* PBXContainerItemProxy */ = { + E23814F5F360DA5380DDFE925CD400F4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7135140B597489F3FE9D0A6D1FADD9C7; - remoteInfo = "React-RCTActionSheet"; - }; - E36627C2123E8C028DA8E89C3F30B773 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6C55354377C9FC118FFF334B68A47E4; - remoteInfo = "react-native-video"; + remoteGlobalIDString = BD7B2D8FF0ABCB89D01F6E21D5364678; + remoteInfo = "React-RCTVibration"; }; E3DCB3D8F0A533B7BB46EB61E99CA3EE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3740,61 +3801,103 @@ remoteGlobalIDString = F7236D5BFD42DBEDF2652D4E47992BD2; remoteInfo = "React-jsi"; }; - E552F39725FEECA166639FC7E3315E19 /* PBXContainerItemProxy */ = { + E4113935D2DF5C19C44392502957C5D4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7236D5BFD42DBEDF2652D4E47992BD2; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 76045FDE22A7E6A917DFC0E5B11A9D64; + remoteInfo = RNImageCropPicker; }; - E9AC80D82B60CCB105922C062F1718B3 /* PBXContainerItemProxy */ = { + E68D4095D5D59814C09EEC247A783AE8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 012AE749BB302180A2F0730AF8E0490E; + remoteGlobalIDString = C78807E7E9A8C08F9906CF47DE441E57; + remoteInfo = RNAudio; + }; + E6FD5CB146E8E33593A2C0C15A48A8A2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; + E7DB114C4209456706BCC56ADCEE2412 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = AC715495C5294BEB747E601DBB313B5A; + remoteInfo = UMImageLoaderInterface; + }; + E8574F0403B9CAF82FB629444787225D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B8773D156F603535D7813D4981DD0B68; + remoteInfo = RNGestureHandler; + }; + E857B40D98EF5FD27B99D5BA3006F2E3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FD0F4E74C14C4B5B552686BD9576466F; + remoteInfo = EXFileSystem; + }; + E87814FA3E39E39137413E39FE7A2969 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; + remoteInfo = Folly; + }; + E8BF3010BA68F5E6C314C50EABBB7648 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; + remoteInfo = "React-Core"; + }; + EA1D7392D928AC3579301F5641D5C4C1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 427A5566E42596B2649019D00AA80F10; + remoteInfo = libwebp; + }; + EA59F7AA29533ECE4C28DE61F0F5BC8F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 17378B5ED23F0B7A52011DAE2B803A05; + remoteInfo = "react-native-document-picker"; + }; + EB5A16B67059CE7155424CA5C3E7CD5A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; + EBF2A9E0396DCFB9C799C48BC73F8177 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D72528D679933334AAD7996CD73D84CD; remoteInfo = SDWebImage; }; - EA69ADE62468EE03853B57EDB898ADCC /* PBXContainerItemProxy */ = { + EDF55882ADC86B7690C7DC8AE14EF22C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 9A6B273422BDAA14C2ED873EEAE80F65; + remoteInfo = "react-native-keyboard-input"; }; - EB8AD7812D37D0B17C0C76FF538EDB8F /* PBXContainerItemProxy */ = { + EE3BD696B6AA908B9F531EBED4A9D038 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E49E330A27425F89DE89516B2F50AAE9; - remoteInfo = "React-RCTText"; - }; - EBCAA46B332AEDAC4D92747928F7EABA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6DE003F64B133830B9AB9321298DAAC2; - remoteInfo = ReactCommon; - }; - EBFFACA81DF585155103824E5D8A5A71 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C2F81329D3C42F2D872A4B80180545BC; - remoteInfo = "React-RCTLinking"; - }; - ED261E13D129DE893F07E6CF33F4D2A0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4C0C7B693B06D0DBEA04F9ABE003D758; - remoteInfo = QBImagePickerController; - }; - EE192D238105A10D18B0E9B0AA3D65B0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A1DA7160DD40C2F4C7332F30DE279FC2; - remoteInfo = FirebaseCoreDiagnosticsInterop; + remoteGlobalIDString = CC0A7968B1F2981D99C33E73EDF48649; + remoteInfo = RSKImageCropper; }; EE4BC9CF9B64348CF6C23E39FF20BB64 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3817,13 +3920,6 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; - EEC7404A53F8352C9E6C29AAD5B56E2E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FEC7CEE99C30C1292EC32D7E006E4E85; - remoteInfo = Yoga; - }; EF35D916FEB5C7D4563D576974DC8374 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3831,19 +3927,26 @@ remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; remoteInfo = Folly; }; - F005E2F177C93339BEB342CB07BFDA0B /* PBXContainerItemProxy */ = { + EF4FA6E6923EE9A579972ECCE8A523EC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 68FD26CCB7EFC21DBD9D571910B36E1B; - remoteInfo = RNAudio; + remoteGlobalIDString = E49E330A27425F89DE89516B2F50AAE9; + remoteInfo = "React-RCTText"; }; - F10366900D433766004A0F1F358DCB74 /* PBXContainerItemProxy */ = { + F02DF01C874388D1198F20D997AEF3AD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 59D5FC9202D131CDFD2E08ABCE1C35AC; - remoteInfo = nanopb; + remoteGlobalIDString = 9D255DD73ADD1E4565B5CCB665433053; + remoteInfo = RCTRequired; + }; + F0F832C3A000E4F3D295A8B28194D52E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 427A5566E42596B2649019D00AA80F10; + remoteInfo = libwebp; }; F142B4DF83D0AEA677D3ABE7D7E5BA0C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3852,26 +3955,19 @@ remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; remoteInfo = GoogleUtilities; }; - F1BB02C0CD65FEC232E45D5991BBADFF /* PBXContainerItemProxy */ = { + F1C52874E13898F587F6C7E077858EA8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E13B95041FFD639523C6719AAEF55D71; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 16B709A47FCE8BA466D5FC8BE1527E32; + remoteInfo = "rn-extensions-share"; }; - F207EF2844317FF67AAA3CC9694DC3AD /* PBXContainerItemProxy */ = { + F290F3B95B911B8416A6FE1B40B0C4C4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 126A5E61D5CF9BAC6B2357D8EDFE30B5; - remoteInfo = "react-native-keyboard-input"; - }; - F20CF04522EAA1A2DDEFFAA3825A1DA2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7825F222F53EF434DE74A6C6FAF290E9; - remoteInfo = UMFileSystemInterface; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; }; F2E57867E76DED400D1A4035EF3D8735 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3887,19 +3983,12 @@ remoteGlobalIDString = E13B95041FFD639523C6719AAEF55D71; remoteInfo = DoubleConversion; }; - F5EB2543945C3EF18AFBEC96C56DFD76 /* PBXContainerItemProxy */ = { + F5693039AEF90A2E66294DA7A2255397 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 799B29F9D6DCE28B98CC259440382F20; - remoteInfo = Firebase; - }; - F69ABBCA9A0F159EE0553BAC781D2909 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E2ABA11C27993D4CDD5DA270C4B75F1; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = 6DE003F64B133830B9AB9321298DAAC2; + remoteInfo = ReactCommon; }; F6A14184DE3C02C257A7298719E4FD9B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3908,27 +3997,6 @@ remoteGlobalIDString = 01B53B6A43CBD6D4022A361BBFCCE665; remoteInfo = FirebaseCore; }; - F71AFD0A40D579A8CEBF74FDEC85D0F4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 15B823CB06FA3E3E70EEFA5195733192; - remoteInfo = RNFirebase; - }; - F74801F4B9ED9D55E47A6F3348CFCEB1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 017AB91E1D5AB2B6096ADC666B072208; - remoteInfo = "React-RCTImage"; - }; - F77ECF803367DCE71D670E0822989D50 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A954214FEA55463925B6F6E3A27B6016; - remoteInfo = EXAV; - }; F84AAAA2C19F25EDD3EC2AACB0E9E389 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3943,48 +4011,6 @@ remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; remoteInfo = "boost-for-react-native"; }; - F8C4B2C230DCB95D74B2E08FB0FB3EDA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 62D54DBCE8E0274997CAF37B51B9F306; - remoteInfo = SDWebImageWebPCoder; - }; - F951A3DCB912B3CE5E63BCB65BB941AC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - FA57A9ADA8859A588587AECDFD47E490 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E4D9E3C5E2CE0F3B8F6462A54DAA07EB; - remoteInfo = "react-native-keyboard-tracking-view"; - }; - FB82D434B60455BE7864C208EA61C4F4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FE8C90DDDB9FCFB2290889A1F43FC34F; - remoteInfo = RNUserDefaults; - }; - FBCFC8E8CE95DF1CE2B8ECE7A1D92002 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E452F4CD4F8AB641BD2444C7AC91FA2B; - remoteInfo = BugsnagReactNative; - }; - FC06AB32AE1F3A3316A4E05E560C5124 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4ECE1108F140208A729A83BC94FAA150; - remoteInfo = EXAppLoaderProvider; - }; FC21EA40C24BBDB20C2BE4568BC0017C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3999,12 +4025,19 @@ remoteGlobalIDString = 2E2ABA11C27993D4CDD5DA270C4B75F1; remoteInfo = "React-RCTBlob"; }; - FCBD4D4EE693B1A322F7D869545F442F /* PBXContainerItemProxy */ = { + FCD54E5226C5BC90816ADA500A9F8B92 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; + remoteGlobalIDString = DE5A74080B919B383A77CD73B094CBBC; + remoteInfo = "react-native-keyboard-tracking-view"; + }; + FDF7D238C79F8F10D658E90EDC7DE332 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E2ABA11C27993D4CDD5DA270C4B75F1; + remoteInfo = "React-RCTBlob"; }; FE8C7693079779C66A2B166BAD56A51E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4013,628 +4046,618 @@ remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; remoteInfo = UMCore; }; - FF79A3191C1A638EA61533E20EE3A66E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 123D4D7AC3D41ABC0675B1DB3613066E; - remoteInfo = RCTTypeSafety; - }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 002330595AAFC31D5A30A8460B1BC560 /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; - 002C4A2C1A9B72F1451A2D85943B13E4 /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; - 00538E6400D6DE497F2355C3CDA9468C /* libGoogleDataTransportCCTSupport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransportCCTSupport.a; path = libGoogleDataTransportCCTSupport.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 00917972F2110A0DF17639983D92518C /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; + 002676D3AC83EC6DFED207E063A5C60C /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; + 004FC516E6A32E088DF3DF4F3E10E15B /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; + 0083549C5FBF70C93EFDF71076193222 /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; + 0086C4C22F3D149EAFADC1EF559A4081 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; 0094D08DC648CCF30D4F8C66575F20B7 /* Pods-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.debug.xcconfig"; sourceTree = ""; }; + 00A08AF23B12EF05DD1718372D55A36E /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = ios/RNCWKProcessPoolManager.m; sourceTree = ""; }; + 00B5EBAA909399655E13F84F09ABB65D /* JSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSCallInvoker.h; path = jscallinvoker/ReactCommon/JSCallInvoker.h; sourceTree = ""; }; + 00BF63C02B2DCB599CA42CDE805F61E3 /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; 00C476A0C5E90A21225966AED9231432 /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTLibrary/Public/GoogleDataTransport.h; sourceTree = ""; }; - 00D638EB210BAF9BAD83745392991520 /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; + 00D13666115C44ED93A89482C8D18ACB /* libRNLocalize.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNLocalize.a; path = libRNLocalize.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 0101CB7DFC8C7409C1AC3C0958B94646 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 01449783CAF64BD01F884FC75298B598 /* EXRemoteNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemoteNotificationRequester.m; path = EXPermissions/EXRemoteNotificationRequester.m; sourceTree = ""; }; + 0144BEE221AF5F9B8187D0144A26F360 /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; 015CFA6D6C4F31AE8B86357E51479940 /* bit_writer_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_writer_utils.h; path = src/utils/bit_writer_utils.h; sourceTree = ""; }; - 019963B53F9322159F9603E3050460DA /* RTCVideoCodecH264.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoCodecH264.h; sourceTree = ""; }; - 01D2F92678B08D14F8B50093C9F20B38 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; - 01D459611ACD49F6296302580F8F0172 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 021223F4CB3D713C8F939055BC00D673 /* libReact-RCTSettings.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTSettings.a"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 021B9DC548910DED65B01E56976E107C /* RTCFileLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCFileLogger.h; sourceTree = ""; }; + 017DC2113A130DE5F6827A60DAEA3DB0 /* FBReactNativeSpec.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.xcconfig; sourceTree = ""; }; + 01A2882F9C76FD94A2900E2421C8014C /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 01FB22602923ECAF71FB0618D4E8AEB9 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 01FF454E1A26E73CEB3E4A937CB669CC /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; + 020A6B2EB8E76E9D6E47C3E946F29E95 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; + 02202DD59F3B974842BBBC649FB93448 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; 0220BCC31921BCB8D930F8A91499BE53 /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; 023644D5A0ADDE57DFBBA905D7E73BC2 /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; 023DC4F9327544C470CFE83CBA42B9AE /* FIRInstanceIDKeyPairStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPairStore.h; path = Firebase/InstanceID/FIRInstanceIDKeyPairStore.h; sourceTree = ""; }; - 024D68F3AF64EF33F322D61B7AA13697 /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; + 024933D8DBC8B77315547CC1F1D2DD2D /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; + 024A7DA4C02ECDB852F8CBEB55DD8579 /* libReactCommon.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactCommon.a; path = libReactCommon.a; sourceTree = BUILT_PRODUCTS_DIR; }; 024D869151AC258B0D9D954728A85828 /* tree_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_enc.c; path = src/enc/tree_enc.c; sourceTree = ""; }; - 02585A3CB670D27DB49A28A54259260A /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; - 0265CE3C52A210D9B8BE76D690841ED0 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; - 0267B62BE1094B8EC1CFFB986BED69BC /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; - 0292B7CDB9E49FAFF7AC16B3319A13D1 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; - 02ADDCBE575728142E45669BF1875E09 /* RNFirebaseEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseEvents.h; path = RNFirebase/RNFirebaseEvents.h; sourceTree = ""; }; - 02AE1E40D1648F6CEDA46218F10CFEDD /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; - 02AEB5B754D8C2842713CC5863BF65C3 /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; - 02BB86289FF53E3C45D13C3A1B115EFA /* libRSKImageCropper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRSKImageCropper.a; path = libRSKImageCropper.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 0272CA1547397114B32AC9EA0F0F2EBF /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; + 028387FB621C70BD4C8F7688A6A4B8DB /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; + 028E448A52B65C9FAFEC5C782B01D7C0 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + 02BACB4666CE9B063EB01C33F30A95C0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 02C7C66DFB9DD66F620C3C8C774532A6 /* RNFirebaseStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseStorage.m; sourceTree = ""; }; 030B266A112E8CD26FED4A0262EA0B09 /* histogram_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_enc.h; path = src/enc/histogram_enc.h; sourceTree = ""; }; - 031B2AC077C3A79567C435939CEF72D0 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; 0373560C8F06F4D5DD7E28D42E8C3821 /* cost_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_neon.c; path = src/dsp/cost_neon.c; sourceTree = ""; }; - 03793EA509CD256464C56FDB7BB6DBC4 /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNGestureHandler.a; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 039512007FDD56FED1242A1489EDCE4E /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; 039877B222B77B21A4033F031C1D06E5 /* libwebp.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.xcconfig; sourceTree = ""; }; - 04063A56BB05EBE68D2F2D8AFCF21F03 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 04333F8B209F6409F87D2E267F38CD03 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; - 045F76DD8A74D3DE51F83DCDB48CB294 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; - 049165CF7A13EAFA3995830395BA091E /* RNFirebaseAdMobNativeExpressManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobNativeExpressManager.m; sourceTree = ""; }; - 04AC2125B2308221FC5DCCA637672DC6 /* 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; }; - 04F87EB7A80A0EB05FD4C33606231407 /* 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; }; - 04FCB3B53F211ABF7F5D1CB9BA5BC072 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; - 05185C8282C11E5465822CE5A4DBE13C /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; - 052F18F75CBE8D8527343972F983724C /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; - 05342BC56BE1A25C5A2CF94DA78C646B /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; - 053E019BD1912F57172168BAC0F1A82A /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; - 054652B4B04B1BE62BF11EE82586FC9E /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; - 059E17E06D2458E7B8041E0D6B598A40 /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; - 05D9484DB779AD4884AAEA29AF1F497E /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; - 05E6FA1010261B767C1111CE6097419C /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; - 05EBCA5ACE8CEDF5B8D3C55CC9D697AA /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; - 05FA73B7AD912E4AB625D716CB4D0797 /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; - 05FE56B66A4E98BACA63845317D46817 /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; + 039E4B207B51A177D92BBDF7985D24F5 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; + 03AFC2BE50FB5217DFFBE0C31E0C76B4 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; + 03C15DFA1D85EC899D31B8976AA96CA8 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; + 03F6CE6F3F15D04123FE13807A1C40AD /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; + 040AD4918C2FD2E9E3E8F19F3759E798 /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; + 0435115B6D5EF1B9043C434167912090 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; + 04AF007A55CBCC69FB35F15B9E976AEA /* RCTDevMenu.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevMenu.m; sourceTree = ""; }; + 04B71057546640A46BBB688900760369 /* 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; }; + 04C7F7E550A95A300EA10E222112848F /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; + 04E3FB7DC2C59CD8831775FFF20C501F /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + 04E88BBB16763437A6B910CD7A4F0F15 /* RNAudio-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNAudio-dummy.m"; sourceTree = ""; }; + 05385F2CE79AB8A20ADB02576C44CF4E /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; + 054454765C650E0793BE6B979357484E /* RNCWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebViewManager.m; path = ios/RNCWKWebViewManager.m; sourceTree = ""; }; + 055D2EC1896D136A082351B73778FD2E /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; + 055F69FD2D7512308B1BA33F41124FEF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 0561FD42E9D0E127C6E8ADEC323CAAE9 /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; + 0594FB0A915C130560EDA762CB22435B /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; + 05A35C877F407959946B5D996F109947 /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; + 05FF947CF810B027D74CAA6CF3DACA74 /* react-native-notifications.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.xcconfig"; sourceTree = ""; }; 0616AECA7B82787D45E9F30B06FC31A0 /* FirebaseInstanceID.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstanceID.xcconfig; sourceTree = ""; }; - 062CE919492F26377744105E3A4BB0A8 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + 06231FE790724419459C5E614277CF63 /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; + 0634E471C8D2991463FCABC1359891F4 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; + 06450EC1161FF8F3EF268FB02764EC11 /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = ""; }; + 06620BAA9B290FC2C0A843500D0A7E9F /* 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; }; + 066664EA37D87CA5AC0E302AD8EF0152 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; + 06865963575AC15785519AEA22E48E00 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; 068CE9D54301DAF6848DEB439320B4ED /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; - 06EB8C3D371C1FCDCD81005FD935FD0D /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; - 06F58B6D4D009DF885F865490E96B18A /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; - 0704FC21B1B8C2BA8E1329975B5FCEC2 /* RNCWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebView.h; path = ios/RNCWKWebView.h; sourceTree = ""; }; + 069E9AAC32DF981B33640FE83825701D /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 06BE5C061BE90971D64F7B995F0CE095 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; + 06F3E00F0148BA34E169ADA74D7E0DD9 /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; 0708E098AAAD79EE913D0D6F7F73EBCE /* GDTLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTLifecycle.m; path = GoogleDataTransport/GDTLibrary/GDTLifecycle.m; sourceTree = ""; }; - 0714225B3E9669B358308FCD207C952A /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; 071768A3EFC150AC3C110ECED47803C1 /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = QBImagePicker/QBAssetCell.m; sourceTree = ""; }; + 07230686A7FE4744C65EA117C9F1AD58 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 0732E6E2BA68E536868DCC810783A7C4 /* SDWebImageWebPCoder.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.xcconfig; sourceTree = ""; }; - 0737BA4AB69DB037F13EA3F6F3C9BAAA /* 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; }; - 073AA0DABE1C1F2E136E34E275BBACF1 /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLocalAssetImageLoader.m; sourceTree = ""; }; - 074695E8C64F1E757B5174980557B465 /* RTCVideoCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoCodec.h; sourceTree = ""; }; + 0758670A7E484A0C42277136C96B76F2 /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; 078AFB41581C17B936E5798452E9EA54 /* ResourceBundle-QBImagePicker-QBImagePickerController-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-QBImagePickerController-Info.plist"; sourceTree = ""; }; 0797904A5FC7F9E780DBDC7E73B19ECA /* muxinternal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxinternal.c; path = src/mux/muxinternal.c; sourceTree = ""; }; - 07D3DE767B9D147CC4E77CA01D1E2A8C /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; + 079CC5253806AA3AC76B266B04373242 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; + 08133871DFA5EF95E613E0B0960BBC2E /* react-native-keyboard-input-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-input-dummy.m"; sourceTree = ""; }; 081D39420EF7BAE6DC243828439B9AFB /* GDTTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTTransformer_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTTransformer_Private.h; sourceTree = ""; }; 0822720AF0B66D3F1DCE5F03FAF7A2EE /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; + 083240A48F5F633498F445DC5EA39E52 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; + 083F80EA14B598292E34F8F63F0BC8CB /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; + 0844A5E812C2B4DCD793BCD90067E0A8 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; 0852B3F23BF2CCC5942464F363AA829D /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; 0852D893B1138AC91E703120BE9BF1D5 /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Frameworks/FIRAnalyticsConnector.framework; sourceTree = ""; }; 086F20776E3CBD6C90E3FB4DFF3A3605 /* tree_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_dec.c; path = src/dec/tree_dec.c; sourceTree = ""; }; - 08845B1DD8D8091F59514EE5B15D42E2 /* 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; }; - 0889B027F2783DB1FDE44677F938B492 /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; - 088BC08256EE16FB9D1600C61EA7F1DA /* RCTDevMenu.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevMenu.m; sourceTree = ""; }; - 0893789DB95ECE903CACCA08319819F1 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; - 08A54DFD20CFDAF1C6CCA111590904CD /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; - 08ABFDABBF149D49EE4E60FDB3604098 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 08AECB1653989DA930B68E900E7D1BA9 /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; - 08C684AEF16F87CBEA88FF8658EB9BC1 /* BridgeJSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeJSCallInvoker.h; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.h; sourceTree = ""; }; - 08D4D6F0A96DCF213D2538A04884F939 /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; - 08E74F7067B07B7FA1E2F87CECA1084D /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; - 08EA89A726A317A7E4C39434BC66C2E1 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 08F2428556DB3754851094706C1583AA /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; - 08F2757358C92ECAD0E9B56A8B4C8F59 /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 08A8795192F8E02DE9C585569CDAC06D /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; + 08B2B0D06B9D7B70691E8465DCFB7425 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; 0911259B6924DEB8CE798ECCF9A287CE /* lossless.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless.h; path = src/dsp/lossless.h; sourceTree = ""; }; 091519202305630ED4A1C9A45D550FE8 /* huffman_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_utils.c; path = src/utils/huffman_utils.c; sourceTree = ""; }; - 09194B6B9B3142164C311680EBF2F1F5 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; - 093B496EC406F5EB47DD86CDF244E3E5 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; - 0963C4631B59C1013B08D66EA1C5A730 /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; 097529E01F948530BF995FED8E3C79CF /* GDTDataFuture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTDataFuture.h; path = GoogleDataTransport/GDTLibrary/Public/GDTDataFuture.h; sourceTree = ""; }; + 09BA6B5F4933A9065D79D5E807AD54F3 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; 09C65D88BB93F4A0E524F9B5475F0FF4 /* FIRInstanceIDTokenFetchOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenFetchOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.h; sourceTree = ""; }; - 09D7A1C1F65DDA1FA90D7A6C3926FF95 /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 09D8A137651A52A46AF870A7D9436A23 /* libRCTTypeSafety.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRCTTypeSafety.a; path = libRCTTypeSafety.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 09D94611F51C6BB5F00E7E553DEB4ADB /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; 09EF4E232018666287D6E19D9A6F49DE /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; - 0A405AECFC1392628DEA9E741B4087EB /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; - 0A63DE8A3379062D18CF30247E1CB042 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; - 0A667F69536EA291E3662C31261C0FB0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 0A8CC69E6564B343ACE870DF47982292 /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; + 09FF962CAF88BBC18D852C27F967045D /* libReact-RCTLinking.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTLinking.a"; path = "libReact-RCTLinking.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 0AB43F689F040181E115C156BD705810 /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; - 0AC91388E5FE2A91C9CC93F6095B699A /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; - 0ACA51A6D2C3F9821EFC1856E07D9B48 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + 0AC724EBFF4406AA12048CAD97C1DE62 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; 0AD6AA6698FECCEF250F192BEA0D93CD /* GDTConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTConsoleLogger.h; path = GoogleDataTransport/GDTLibrary/Public/GDTConsoleLogger.h; sourceTree = ""; }; 0ADD2993692CDDD5DC70CEA68E893CA0 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; - 0B0157AE7E8148C16CDE24AA0744625C /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; + 0B015137E16FDE24F127142346BBF33A /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; 0B23B0FCB0328F4CED9132A1B8A9882F /* lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc.c; path = src/dsp/lossless_enc.c; sourceTree = ""; }; 0B493F2A960542CBABCBA009D697382B /* FIRInstanceIDKeyPairUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPairUtilities.h; path = Firebase/InstanceID/FIRInstanceIDKeyPairUtilities.h; sourceTree = ""; }; - 0B52ECD67E93F2A773C2038090118631 /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; + 0B5C4E2B11EE5F2CA3F82AAEE6EFD16E /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageEditingManager.m; sourceTree = ""; }; 0B675EAACA6B6C00527A3EA87B53BAD4 /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; + 0B6B62DADD39DA01034D398ED5C1A8A5 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; + 0B924F26E08915CB5CA51D563FCCF8D6 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; 0B98B838F454890B4210EEDEB4FB0FB0 /* enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips_dsp_r2.c; path = src/dsp/enc_mips_dsp_r2.c; sourceTree = ""; }; 0BAC264C0D1E4AC72A9FA35D078D6312 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; 0BC634AA8832337A5495F34821D27BF7 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; 0BD13850CAD53003BB20DE1F2BF1826D /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; 0BE10FB6DED9B6EF06C70718C74B4140 /* lossless_enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_msa.c; path = src/dsp/lossless_enc_msa.c; sourceTree = ""; }; 0BE9C00A0CD1A096CA768B9072AE457A /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; - 0BECA6C573D163FCBE5C394239E12789 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; - 0BF787392FD5C27D258A3A6FD290E125 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; - 0C1845B037EBFB2AF0EBE8D51A83F789 /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 0BFB9ED64D3E73DD26C9FB9ADACBAFAA /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; + 0C13EBC780C052C78D94EFCA56250435 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; + 0C249B2DFDAF88D62FA81526AA3E1A19 /* EXContactsRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXContactsRequester.h; path = EXPermissions/EXContactsRequester.h; sourceTree = ""; }; 0C255F4840327CC871033F4BB43C1A89 /* GDTEventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTEventDataObject.h; path = GoogleDataTransport/GDTLibrary/Public/GDTEventDataObject.h; sourceTree = ""; }; - 0C422D52F8F58884A8BE9682408FA64F /* BannerComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BannerComponent.m; sourceTree = ""; }; - 0C6A0BE6A61147E06A4D85E602A4A10F /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; - 0C7841F919759FEA18B5E9E76A56FC94 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; - 0C7D2DDE0A07033F8C70ECC67FD49A26 /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; - 0CB7BE9DC1FF73569EF920805D610F2C /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; - 0CBE27C39EA1296C671FB2746107636F /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; - 0D0CEB6B757EBE5E0F1851DBDCF878FE /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; - 0D1C019BBF979173B6FA5AA9F9B7E0D9 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; + 0C6510A767219599C22144DF411F345F /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; + 0C831984132689885AE6AC44B1841122 /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; + 0CBDC0B5D095A5D4C73F6A26260BACF3 /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; + 0D06F4B4361CF3BC16E2F9F0631362E1 /* libreact-native-safe-area-context.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-safe-area-context.a"; path = "libreact-native-safe-area-context.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 0D275E3FEE0C750269FC1DD63B244748 /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; 0D389C626379109FDA3F85D7A027AB2E /* lossless_enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse2.c; path = src/dsp/lossless_enc_sse2.c; sourceTree = ""; }; - 0D4F13081A2DAAE56F0E60ABA70DAC2B /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; + 0D3DCC1AD245F69E36A43A50165A6FA3 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; + 0D49CFFCF95F78AE76D73E2FDFBDD89A /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; 0D57C5E0D20774414E41F9C226F8B089 /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; - 0D74AFA503A667D1B494AD7B6E155FDE /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; + 0D60994BE7EF6FD4DBF9C755EB774862 /* 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; }; + 0D7E44E269126782618E5EA42143C5EC /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 0D85FA90E11713E0009A994D146727EC /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; - 0E057C522C49DFB6F4247183BA32A315 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; - 0E33A601ED837702331CA7F45EC0A5A1 /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; + 0D881F1F572362DDBC3778325671E1A1 /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; + 0D982FF377AD4A1F8AD82E06DC8C7CAE /* libReact-jsiexecutor.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsiexecutor.a"; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 0DD54B37D563E96BEDFD08B8C912E75F /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; + 0E1A052172075B138D20CB6E0DA31213 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; + 0E1ED6FF5B003DE56EABC082DDC2D039 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; 0E4EC6F922F53CA78F7C41B907CBB6AD /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cct.nanopb.c; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = ""; }; 0E53343736419C5A995C15A45C838245 /* Pods-RocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RocketChatRN-acknowledgements.plist"; sourceTree = ""; }; 0E7AE6C7CA7720B8220E8123BA534811 /* FirebaseInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstanceID.h; path = Firebase/InstanceID/Public/FirebaseInstanceID.h; sourceTree = ""; }; - 0E8A957A103EB671689D6806CAE41026 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 0E95A35F60D69F40CFFA03284CCA52BF /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; - 0E984230E45217D3C215C065248C65A7 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; + 0E972C2F051AAFFA99BCC7709A769EE6 /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; + 0EAD578E85A94351DE5F2FEB268882E8 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; 0EB25BCE31ADF1A90D96551E8A9B1C0B /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; - 0EC6F16D28DE0AC26FD3262C2825D95A /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; + 0EB523ED45A3938CCDAD3464836C01AE /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; + 0EDC0C9CEBF17B69830466FA69FFC7BF /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0EE93EA297E446D0F0B127A62699EA36 /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; 0EE991E059971B89B12BEB6AA1267925 /* FirebaseCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.xcconfig; sourceTree = ""; }; - 0EEB5354D5AF6B675E9B7C1798BF015F /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; 0EEEE97BE88DF37E78B0236B8B518E8B /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; - 0EF27FB97B9D7EBE56623D54BDAE1297 /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; + 0EF30FE74F36D157FC58BC0033FC3A29 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; 0EFE5A4062EA0BA0B4575FF684292CC7 /* frame_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_dec.c; path = src/dec/frame_dec.c; sourceTree = ""; }; + 0F4709C78CF4014F50C704B529CAD4FF /* RNFastImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.xcconfig; sourceTree = ""; }; 0F496EB4CC86E6446BEC31D05CF5AA7A /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Private/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; - 0F84AC8A6BED890A93DE25DDB236D6E2 /* EXSystemBrightnessRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXSystemBrightnessRequester.m; path = EXPermissions/EXSystemBrightnessRequester.m; sourceTree = ""; }; + 0F5DC2C599B897F3BEA50CCF17E2A4CA /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; + 0F67E3A26B0AFD7D4BF218BCD4F290F5 /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; + 0F85176B1DE8CC5560AB31BA6EEC7214 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; 0F8A7EF910DC8670B6204E30CB6D451E /* enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc.c; path = src/dsp/enc.c; sourceTree = ""; }; - 0FA8BE1C77A9C04D22CD0E48C13C95F1 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; - 0FBBCEC7731A080E58E687DA537F7BCF /* 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; }; + 0FBED8C2E11F36E422C722A4D52E7B5C /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; + 0FCC86470ABA63FBA2F68D680427EE76 /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; + 0FDAD75CBC0F4B18FF7D5EF3AE037225 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 0FEB66ED4DB5FCA596F1CCEE9CCC44BE /* QBImagePickerController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = QBImagePickerController.xcconfig; sourceTree = ""; }; 100F8376E974302854235DE2BFF0A267 /* GoogleUtilities-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-prefix.pch"; sourceTree = ""; }; - 1016EC618A277565403F12E1051EB6A7 /* RNFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebase.m; path = RNFirebase/RNFirebase.m; sourceTree = ""; }; - 101C77344A89374DE4888F86BFBCA8B0 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; - 1041612ACBE4DB3F52F6CA9221FF8BE7 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; - 10E958DE589DACD25599EE347FAEAC1A /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; - 115F152C05353BEADB399201FA6C2D1A /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; - 11742C5FEC1C7ADDA403B4CF41A94769 /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; + 106CB78B1A5A36AAB5A3359AF69C107D /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; + 1084BFE712BCC8A045D832C96B3D0AAF /* EXCameraRollRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraRollRequester.m; path = EXPermissions/EXCameraRollRequester.m; sourceTree = ""; }; + 10917B250A173D7014A652DDF2962DE3 /* RTCIceCandidate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCIceCandidate.h; sourceTree = ""; }; + 1108C4EAFDDFA4429E0A2F9BB6E06B44 /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; + 1147ABACD2097CFE4BCD031F321B1B23 /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetworkTask.m; sourceTree = ""; }; + 116AD8B5532A6F1CFF3B9C0DC48E9F43 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; + 11850B42DBA9FE3A57BB0F333BC878BD /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; + 119643A8F1E2CEF5A7B405DDB6C64AE1 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; 11A45F09153174F9C31B423F50E5CCF6 /* demux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demux.h; path = src/webp/demux.h; sourceTree = ""; }; + 11B6E5A24E63214705CAD00868E11574 /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; 11BABA994173D89D64A419EC2B1D8EB2 /* enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_msa.c; path = src/dsp/enc_msa.c; sourceTree = ""; }; - 11C1FBB4350B2D08E9EE4A6F11913624 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXPermissions/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; - 11C5BFF681786C8C07F218507E1E7B6A /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; - 11E07CD2F41DF98D1A7576BF3ECB85D2 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; - 11F1C0F40EDD14850023BC7C600AEBEA /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; + 11C878DB1D66559AB2ECC44526C968CB /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; + 11D07A6C8C17178AE2756E9C5C3FB189 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; + 11D8FD7A94DDCEF03B802B1347891927 /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; + 11E25508F92273B8104AF7DE3CB82098 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; 11F51612DC4C27ECE62A293723A8F1B8 /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; - 120163B24E7C4D7C1FB51EF2A55B5765 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; + 12049F88E61618B162C3F7792912F53A /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; 12079D4841A499533F333EBD2126D6A5 /* GDTEventTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTEventTransformer.h; path = GoogleDataTransport/GDTLibrary/Public/GDTEventTransformer.h; sourceTree = ""; }; - 122AAEB338DC8B736B63DB63AD613A00 /* libRNReanimated.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNReanimated.a; path = libRNReanimated.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 125760F603E52BC8B0C18CFD4C32A5C2 /* react-native-background-timer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.xcconfig"; sourceTree = ""; }; - 1292D738A1B53982D585A05E833B3E32 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; + 127E8C75221F5BB1DC8E0B817100CA49 /* Yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.xcconfig; sourceTree = ""; }; 129704FB2D8376802754D4ADDCC2C3D5 /* vp8_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8_dec.c; path = src/dec/vp8_dec.c; sourceTree = ""; }; - 12C2151977D42B49F271F8AFEF6FBA29 /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = ""; }; - 12FD286CCA8495FB5C0057661A13EDBB /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = ""; }; - 132BA2F5C7656EA1F08594B446B7CBB2 /* RNFirebaseDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabaseReference.h; sourceTree = ""; }; - 133E3B3693D0825DE99696BEA3A98B39 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; + 12A4D7F24D523435A9D4DC14393D2F9B /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; + 1306AE27564BBAEDB776685199620800 /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; + 133BD491F5DD8B0DF35E946C8DEBA30A /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; 13756F15BE86C16D7024CB630A3E8890 /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; - 138AF62361BCB59E61C98407087E2DE3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 139735F9A71CE25B9FEFC4C3B2DC27AC /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; - 13A364609C20443EDD280E1FFE3D8BCD /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; - 13AC49A67652DE6B0E1169DCF55AD1BD /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; + 13810C55BD5FD81EB34EB05B2F8D3A8D /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; + 1381F6524A4168C3E8DF6856DCAB10C8 /* RTCIceServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCIceServer.h; sourceTree = ""; }; + 1382A2A90D42FAFE2DD95F2B78210FCC /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; 13BBC2A6239557362F341AD5F1BF62A8 /* rescaler_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_utils.c; path = src/utils/rescaler_utils.c; sourceTree = ""; }; 13CB2608882F52C24EBF7D79BAA64A6D /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = Firebase/Core/Private/FIRBundleUtil.h; sourceTree = ""; }; 13D238C9ED535F24952D58157229FCCE /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; - 13D4693873290AEFB57A9DC64BBF4D51 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; + 14087C329CD830DF4347A62B752415E1 /* RNFirebase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFirebase-prefix.pch"; sourceTree = ""; }; 1418009FC5641E024FCAA026F4B09937 /* upsampling_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse2.c; path = src/dsp/upsampling_sse2.c; sourceTree = ""; }; - 1432AC107EEC71614DBC990356D446B8 /* libRNFastImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFastImage.a; path = libRNFastImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 1446835FEDECC51A317070EAD5239174 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; - 14B18C479D8A99EF20249B4EDB5E82C8 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; - 14EC86931A281FD42EB6369ADD7A78B7 /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; + 1419EB30BF4A1D0646F7A8DA6079445D /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; + 1450A29A2ECA7F7F52819FBF1080E96D /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; + 1462F1D1589D947E211118E34474B7BF /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; + 14A4F5145130CAC211D64FD968297A25 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 14BAD30572F735577B7DBEF7E1CB78B7 /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; + 14C36476961E46A2F97DAF28F884B6F8 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; + 14E3A053EC00A615C2225238B60165F9 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; 14F2AF67D939C407B4E0C830C719EA35 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = Firebase/Core/Private/FIRComponent.h; sourceTree = ""; }; + 153B8441978363A2F350EAE31600EBDE /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; + 1542E51DBFB43DAFE233E3A9BB2DF524 /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; + 154E76A701E0DDB64A223E02120777B2 /* RTCFileLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCFileLogger.h; sourceTree = ""; }; 15668F5FD97ECBA0FB8A0FC54240039D /* enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_neon.c; path = src/dsp/enc_neon.c; sourceTree = ""; }; 156B3CC133ABAC42F77BFF7E0DBCA9B2 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; 15709B7021248CAB27E66715397AA976 /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; - 157DA3F3A95FA53FCD6F3475A9F2EFEB /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; - 15A6BB79D8E29F4F7A980408E1A4A74C /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; + 1579D9E9F5538CC512AE075026CC043B /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = ""; }; + 15A6A50F4E3A83C18811BA90B7E6F5AB /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; + 15B3028E51A54607A96235CB7D1DFA44 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; 15B812627CACF8DB5A9A6ECEF2B6BAFE /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; + 15C79BEB9AE6AD07BD220859AD395ADE /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; 15D7FA48D8C42EDC3E26C474BCC0DEFD /* histogram_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = histogram_enc.c; path = src/enc/histogram_enc.c; sourceTree = ""; }; - 15D869C0389EC9759DD0175E4FE58FBE /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; - 15FA332601D3282C41BA50A2D8481E81 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; - 161E2E5E91C7FB74B68117012C42CC6B /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; - 1644588E0D417B5C9FCFCA6D127E1213 /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; - 167EB89C479F244A70B6CCB4DC9C482E /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; - 16800BCAAC50F56FC05877E6CE6E9F84 /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; - 16C6183676AD6537323D5EC6ADBB976F /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; - 1712FBD8FC4B47B4B7558DCA191A588B /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; + 1641DBA87791889F408662B110B3529B /* RTCCameraPreviewView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCCameraPreviewView.h; sourceTree = ""; }; + 1648671A030BC5711F00B16227E49F17 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; + 1681B16C062799C5D851A07AB6ADA9FF /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; + 16D8618D47B0D1DDCE5EE7A13529C47A /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; + 16FE7933774952F25D51EB17F44CEBC1 /* 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; }; + 1706C6BF039DB985DA39DCF2E6586CB7 /* 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; }; 1727AF9D01B46FFC15218621D02E85CF /* UIColor+HexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+HexString.m"; path = "SDWebImage/Private/UIColor+HexString.m"; sourceTree = ""; }; - 175A8EF975AD50B5903597726ACAA5AF /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; - 175E34AE7E7C3E84DAC1BFC90DEBCFBD /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 176E24EB09806BF230DBF56B39E9E94C /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; - 17B13C774AB503B6312CDE26CBE9CA5F /* RNFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebase.h; path = RNFirebase/RNFirebase.h; sourceTree = ""; }; - 17BFBCBEDA642A7AE522A39C98031B16 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; - 17C34550067C826AF77528EE0599DD07 /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; + 175BC4A48744D552EC6D842A5A2FA5E6 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; + 17743B9E1CC2D79F94D36F534A8AB073 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; + 177D75F47EC8803CB485D7935943CFA4 /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; + 17935CB6C8B23B54C6C73EFE33D849CB /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; + 17EF1C9943A198D666B04A12907A8258 /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; + 17F050B48D705759FDEA14CB987EC4AB /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; + 17F094DDA7339EDD385DBC0E97D2C101 /* JitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JitsiMeetView.h; sourceTree = ""; }; + 18141B471E675E44E27C6AE39EB2459F /* React-RCTActionSheet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTActionSheet-dummy.m"; sourceTree = ""; }; + 18394ACA39E148F292C123364D6A4311 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; 18441F24ACEAB19293F92E316C31025B /* vp8li_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_enc.h; path = src/enc/vp8li_enc.h; sourceTree = ""; }; 18575A59266F7A6CFE46B8E5FAC1ED85 /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; - 186300837274C6FC5F58B3B99C28D6E1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 18A087E44BFAA77EB640B626F079B2B1 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; + 18A83C98FAD90D1635B4FAD631A8DD56 /* RNCUIWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebViewManager.h; path = ios/RNCUIWebViewManager.h; sourceTree = ""; }; 18B4D4CD4F3228B47F6A17E1A8BC845F /* nanopb.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.xcconfig; sourceTree = ""; }; - 18CA1F463B7F118303AB338DEC4851A4 /* RNFirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseRemoteConfig.h; sourceTree = ""; }; - 18DF4010656CAD060057D63A7A33B9A7 /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; - 18F6E4BD1AA59D03869CD6F8E98CFD26 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; - 191FC44E2364531010D90EAC85478DAD /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; - 19273CC937A393D069B4DD9B1C63888F /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; - 196B0A88499EC4B56090AF686E8DD239 /* libEXAV.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAV.a; path = libEXAV.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 1995C7EA2F0EFFDC567AED56055A0EDF /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; - 19ACB919631DA3E5BAB64FC62D08BC8E /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; + 18B540432DEB29B437320A782EADF37C /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; 19BB9E5A300AFE1052AB5756082D320F /* filters_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filters_utils.h; path = src/utils/filters_utils.h; sourceTree = ""; }; + 19C0923D251D5A2B00C357AA7B9A6264 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; + 19CFF543A0DCD1C433A979571F16AD81 /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; 19D604C2576BF318DD3980220AAAE424 /* random_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_utils.h; path = src/utils/random_utils.h; sourceTree = ""; }; - 1A07E37CB2ED272F17C8AB1181DD3388 /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = ""; }; - 1A0E5BC1801769B8E6FC0F6F029AD07B /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; + 19DC805E4F75413FCE81213DEABAA314 /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; + 19DEB28D1056B1A2B077A411AD95611B /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; + 19E491D0C674ACE6B77CA31A6678757C /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; + 1A0035C37471C9BD37E46F96DD2480EB /* EXCalendarRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCalendarRequester.m; path = EXPermissions/EXCalendarRequester.m; sourceTree = ""; }; 1A20D76317E3690879C32F7ABC95C661 /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = ""; }; - 1A3D63B612126AE138FA17F713BDDB8B /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; - 1AA9E027BF97323689A300BD223D3B56 /* 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; }; - 1AAC61CDA0D1E91E602C8E62F111D7F6 /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; - 1AC0277131A82F73F6BBC1D2EDC09CA9 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; - 1AC3E9AB7EA1AFAFA6A6A9A2E9935951 /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; - 1AD1DB4D3A9AAB54F4AF5D59F857A062 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; + 1A3ACA68B4F4DC3E1D5762FC9921F4D5 /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; + 1A7BA2EEDD3EF4CA7FB8026E92D065E6 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; 1ADD1D4BD44FE2B496767D09490360E1 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = QBImagePicker/ja.lproj; sourceTree = ""; }; - 1AE0955C20775F95D5770B29EABBA3D5 /* RTCDataChannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCDataChannel.h; sourceTree = ""; }; - 1B18854209BFD5EB8F4207F609322666 /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; - 1B51E59B8FBBA7D2DE0436F431295C36 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; - 1B57CE8B07F973AFFB868FD25BF48946 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; - 1B7C9D348369639F6679B84982309AE0 /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; - 1BB830BCFDDCA3003BCBB15E27B34C16 /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; + 1B1D529BC11B174370DF4310A5F8B086 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; + 1B5CACD3CC824D102D17D83A52815ABB /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; + 1BACE1C6C77AA32700AC513FB60E61AC /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; + 1BB1E26CD232CDAEBBD66781A6D18B6A /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; + 1BC402F226C200467A0107D936FDF844 /* RTCMediaStreamTrack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCMediaStreamTrack.h; sourceTree = ""; }; + 1BE10CF2B91B33A20A6F88FBB9B3F311 /* EXLocationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocationRequester.h; path = EXPermissions/EXLocationRequester.h; sourceTree = ""; }; 1BE4DD9A3A0342A8E44650599C2CCF76 /* lossless_enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_neon.c; path = src/dsp/lossless_enc_neon.c; sourceTree = ""; }; - 1BE8F312C9342947118B917F92B83C76 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 1C1BE7BAC6B10A14CFE2008278BEA3F1 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; - 1C2DEF2C1A2D0834AA1405A05D03E207 /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; - 1C480EF2D8F50B07E22BCDC93BC3EB11 /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; + 1BFC05CBC4F80A336A29147621E8D237 /* Bitfield.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bitfield.h; path = yoga/Bitfield.h; sourceTree = ""; }; + 1BFC6DD58909292500B5DF25B5138951 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; + 1BFE0339FC1076B393F8B6AA933B3402 /* EXUserNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXUserNotificationRequester.h; path = EXPermissions/EXUserNotificationRequester.h; sourceTree = ""; }; + 1C194D9BA620CBFDC4E35208A1B0FB7F /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; + 1C3B34A1681B0CF09D087F28BE5B198B /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; 1C6793E23D4CB0376854683D7A0AD0F7 /* GDTRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTRegistrar_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTRegistrar_Private.h; sourceTree = ""; }; - 1C8CABF400282CF9C43FB2033207A906 /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; - 1C940909DB1D9FAC75FFAF31394EE92C /* react-native-splash-screen-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-splash-screen-dummy.m"; sourceTree = ""; }; - 1CA54B109A863CB8816A4C71E3CA42EC /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; + 1C7EE72423A02CA0502FB138F6D16627 /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; 1CB8E96300577ECE5B570C0DFE8BD5A2 /* mux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux.h; path = src/webp/mux.h; sourceTree = ""; }; - 1CBD56D85B8C525FD0FD01196E825940 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 1CC7B5B63491C7977DDB0FF43509312D /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; - 1CD2E715886747DBB87E2151A018E17F /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; - 1D1087FB295F855F9ECF86ABB7A244A0 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; + 1CC5C24EC9634242BDEBA62DCEB0821F /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; + 1CD2482528E8085932F448164C50569B /* react-native-keyboard-input.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-input.xcconfig"; sourceTree = ""; }; + 1CE007DD64EEDCD841D50DB3C8FDCC67 /* libReact-RCTSettings.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTSettings.a"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 1D22F4EEE707E99AF2F0374BDEBA5944 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; + 1D394CCCEB2D06D8EB3288BB13FDC37E /* RNFirebaseDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabaseReference.h; sourceTree = ""; }; + 1D3AE7B680C118C3EBA0F6217DDBF48E /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; + 1D3D28B4CA7822F55445A8055D66C6A4 /* 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; }; 1D5ED9A3BAEDC5204F1097FA5BF68A12 /* boost-for-react-native.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.xcconfig"; sourceTree = ""; }; + 1D6227C6B085AC5019169664CBF57DF8 /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; + 1D76F72E14D8049C107A0F2656C6DCA8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 1D79AFD7B38F36B17A576E16D20BB7B4 /* GDTCCTPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTPrioritizer.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTPrioritizer.h; sourceTree = ""; }; - 1D7A2E85BFEF2ECC9B0649D1ECAC6D07 /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; 1D867735790D50598FA09B5FCF9177A4 /* DoubleConversion.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.xcconfig; sourceTree = ""; }; - 1DA56485C935BBB20C05FCF19C991703 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; - 1DC6C60D01081B238A711C97EE63CF3E /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; - 1E49408B43B7DAEC15321EFD2A17F664 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; - 1E52070B6CA2BB60AF403C543D08BCFE /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; + 1D8CE0AD862A1AFF966B3FB620E011DC /* RNFirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabase.h; sourceTree = ""; }; + 1DC638E79AC0F815080FA80FF52C5299 /* BannerComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BannerComponent.h; sourceTree = ""; }; + 1DCB68C86318A2920137BCCCA69BA554 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; + 1DCE00F225205C0C0644ECCF48934E09 /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; + 1DD679A82877E89FC78016857AB31021 /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageView.m; sourceTree = ""; }; + 1DF7CBF2800F7AAA8568C4ACA6E5FDC5 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; + 1E131E5F90249FAA56EF6D3C34B3B171 /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1E257C44BB7B9C78B7D3F7F17F66A6A7 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; + 1E6FAD20119C2A28FCD3AE1E2B37732F /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; 1E7212AAC51502DF738D2A093B0A145F /* SDImageGIFCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoderInternal.h; path = SDWebImage/Private/SDImageGIFCoderInternal.h; sourceTree = ""; }; 1E89ADE6086B260D6061AC9AA0677350 /* FIRInstanceIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDStore.m; path = Firebase/InstanceID/FIRInstanceIDStore.m; sourceTree = ""; }; - 1EB9CC6761C92510F2A1701038DB5C48 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; - 1F08252394DC6CCA1A0989728C147FD6 /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; + 1EC99E080317C598F9A1D756CCD331E5 /* JitsiMeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JitsiMeet.framework; path = ios/JitsiMeet.framework; sourceTree = ""; }; + 1ED9CAC5F54C10F0B934A4E27A501827 /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; + 1EF47FA061198F479E947CF198973DAC /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + 1EFD8B407C4DD0EA6C5DFE03070884FC /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 1F1E2CA5BE8776DAAAF119FD9B5F87C9 /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; 1F2CA2326F69284F493D911019DD6729 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = Firebase/Core/Public/FirebaseCore.h; sourceTree = ""; }; + 1F359C954142EC039AD9F78A330C3921 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; 1F3EB3CCAC800B73FCAABD2AB3CC8D66 /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = src/webp/types.h; sourceTree = ""; }; - 1F9998D0A4F27171329437B647B6ADB5 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; + 1F4092AD5BED4EDA89AE141BA29865FD /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; + 1F4923AB50899980C9D097B503026412 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; 1FBCD73C563D599E2DE67CBE79D3C69A /* GDTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTPlatform.h; path = GoogleDataTransport/GDTLibrary/Public/GDTPlatform.h; sourceTree = ""; }; + 1FFA08AD88D8F0C551A3135E816B1864 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; + 1FFB45ADC206854B90BDA7AC82681DD4 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; + 2003C5C1C4DE3A689213E35D670D4593 /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; 2009DB4374CA5FA1CE6320D16B46D5DC /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; - 200E05DE7F33800201E0EE42D6A7CC14 /* RTCIceServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCIceServer.h; sourceTree = ""; }; - 2044349ACBA13B10320CE610FD274CDF /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; - 20611BEADB31DCF071E90214DBE2CE55 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; - 2074F9BFDFDFF1CA85053014D4E1D341 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; + 20106C657E923B8B530B7C179B68637E /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; + 201C524D71C41C36DDC74B7D168B99BA /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; + 2072E5E02215B6D6FDC9547BA30AB058 /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; 2078B73CFED3E988D47CEC70589963AD /* GDTStoredEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTStoredEvent.h; path = GoogleDataTransport/GDTLibrary/Public/GDTStoredEvent.h; sourceTree = ""; }; 2092051B4577548919F24B8EDAD80932 /* FIRAppAssociationRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppAssociationRegistration.h; path = Firebase/Core/Private/FIRAppAssociationRegistration.h; sourceTree = ""; }; - 2096901DA94B5D251E0B87DEC768E54D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 20D5773D092E2441727D255A9F69BA55 /* RTCFieldTrials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCFieldTrials.h; sourceTree = ""; }; - 20E3E017F976C85456F5E3E9FD1DCC61 /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; - 20FB00CC42A13FDD2A59B0BE7F7B1CA8 /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; + 20C67792A66D004A09D448B9D690472C /* libReact-RCTAnimation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTAnimation.a"; path = "libReact-RCTAnimation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 20FB7B4A045FB6018B76109BB4402D2D /* FIRInstanceIDURLQueryItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDURLQueryItem.m; path = Firebase/InstanceID/FIRInstanceIDURLQueryItem.m; sourceTree = ""; }; - 211816840BAB72CC0A83D2C77B433D11 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; - 21214A73CEE6A86D054BEADA0B3C9AC1 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 21430C8D5EAB9BE7EC7DA6C7FCDAA0B8 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; - 2165E7F41FF05854F25D07BB91F328E0 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; - 2167528798589D9EEE09064D358F63B8 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; + 21038089BD01CF650CF1D6BB75EB5BCA /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; + 212293174EB51B93E49757E5AACDB162 /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; + 2129528167582F9ED8F7C99BE58F50A3 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; + 2144AEAB28A632FC82A2A3491D89393E /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; + 215EEF42FD9BFDA9D6FF901E450852BB /* AudioRecorderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AudioRecorderManager.h; path = ios/AudioRecorderManager.h; sourceTree = ""; }; 2169C0C00372352B960FAA622851EC94 /* vp8li_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_dec.h; path = src/dec/vp8li_dec.h; sourceTree = ""; }; - 216C4CF777B3BC98185108EDCCB8AB3C /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; - 217D400F0B0F4B8BC509E20302435275 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; + 217BB7C109DCA46710EE41D9230CDCD6 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; 21D2519EBB681F820C4C705B754DEEB1 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; + 220E3D4E56EFC5BBD292DF9A9D6FD8B2 /* React-CoreModules.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.xcconfig"; sourceTree = ""; }; 2211B861FAD633539913BFC2A4B64C91 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; 2213FE253CE86E4A6B417F320CE5C9C5 /* FIRInstanceIDDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDDefines.h; path = Firebase/InstanceID/FIRInstanceIDDefines.h; sourceTree = ""; }; - 225DE646426BB00FBA9D79EAF0846E6C /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; - 228757E2E77951E3C66ED6C9A23D1083 /* RNFirebaseFirestoreDocumentReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreDocumentReference.m; sourceTree = ""; }; - 228FC8C869C9325D9E4257025CAFDAE8 /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; - 22DAC7FA09CDDAFA2025177956F43829 /* RTCVideoTrack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoTrack.h; sourceTree = ""; }; - 22EC4163D98C0F3DE47C975E317C6607 /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; - 231FA1621BD63904ECE8FA0AE201AF9B /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; - 233F44D531B8DBC2E5D8F5284BDF8165 /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; - 234A07345C1BD13E73FD298F1DA08691 /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; - 234A33960E097982922091DDB5DD6913 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; - 23A8C88D09D1455EB467A5C28B95CCBB /* WebRTC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebRTC.framework; path = ios/WebRTC.framework; sourceTree = ""; }; - 23B6279CC596CE6594A69C3CE867B1AE /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 23C17C7A5587F27D2D7D801FE7DA5619 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; - 23D9BA17A725B050BFB7E8AF0C8CB267 /* RCTVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoPlayerViewController.m; path = ios/Video/RCTVideoPlayerViewController.m; sourceTree = ""; }; - 23E3C8E3DA32F49A12C06A02E61C9834 /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; - 240E1D6C6F7E22B6C26BF672819FF509 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; - 2421D0644E6C68779C1AECE1EEF6C271 /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; - 246E698546413681F941B6C956D6E955 /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; + 227B079101349A1247C9864F6D0702EF /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; + 22BF282F4FFF508DCCDC32D23BAAEBCA /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 22DAB6E5221CFAA73B6A1BF054B405C4 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; + 230FE4A7FB3854BA37021B5666853F47 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; + 232AE8BBB19AE477D2ABAA1A37BA2118 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; + 235836769D9E02E0AA10037437BF043B /* 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; }; + 238FE67EDE346139DFEEEB5E6578B6C3 /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; + 23ABA778EC22E58F916583D0A755B2FF /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; + 23C3C8576643739158D4836F21BF7FCE /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; + 23C544E37E1A83449B1F225E617FC7BE /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; + 23D6FC4885DFC3F44AE8B1682D3D9DDC /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + 240081B29BEF0B064AF857722A5995DE /* EXCameraRollRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraRollRequester.h; path = EXPermissions/EXCameraRollRequester.h; sourceTree = ""; }; + 240CCE1E86C9C2BB3EBA19810C8DA0A2 /* libRNUserDefaults.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNUserDefaults.a; path = libRNUserDefaults.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 2431A684D1294C48BCCDF49A6B33C1EB /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; + 24341991C9041CDF4FDF7F98CB64C9B4 /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; 24782A672E657AE222951FC5890B29BC /* muxread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxread.c; path = src/mux/muxread.c; sourceTree = ""; }; - 24AB5D5E6F6D2FF4A938C3B1279D8FB8 /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; + 24AF0CEFAE4F634EACCB528E4D7EB495 /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; + 24B435430E9823DD2A245F98A5CDD4D4 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; 24B916F20C60F85F7360D2F3B2B64E27 /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; - 24C1851EEB7F460D1785C271DCFC6410 /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; 24E052051BE80E1F507FAE240002FCC0 /* Answers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Answers.h; path = iOS/Crashlytics.framework/Headers/Answers.h; sourceTree = ""; }; - 24FAFF281DAC7378C25891AC05A6AE10 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 25139CEBB612E299D6FAD3996ED540D4 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; 251B08487835835AC957B1CB4B56E359 /* Fabric.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Fabric.framework; path = iOS/Fabric.framework; sourceTree = ""; }; - 25803CC314A2E644D9FCF2FAD9647006 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; + 251F94B663BD2ABE2DB4601D2EBD781D /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; 2587AABF22732CC81C58D78D9EA845A3 /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; + 258B401F49795B5516F76F11B529A247 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; 258F9B9F16D67BA9A3F9CC592DEBF8DB /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; - 25C29B126F25A01E9276C8B99E0B52EB /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; + 25B7C93F9137D39DC92DCA9DCC0C3044 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; + 25CC2F827A9F947F10241043AD7BC871 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; 25CE7A909D2A6AD19C964C140CB99F43 /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; - 25EDD027BB1AF044CBE6A9E47513186F /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; 25EF2FBD2D73E734BE8605878ADC7B10 /* bit_reader_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_reader_utils.h; path = src/utils/bit_reader_utils.h; sourceTree = ""; }; - 25FB3DF4F4E990869E552E6C4A47D638 /* RNFirebaseAdMob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMob.h; sourceTree = ""; }; + 25FD868EF5C2D69F6FF1B430E63FC231 /* 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; }; 260536C3F1F5B0F24E9A959B906D07A0 /* GDTPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTPrioritizer.h; path = GoogleDataTransport/GDTLibrary/Public/GDTPrioritizer.h; sourceTree = ""; }; - 261ED9FFD6FD1DEC0D64A456013B3C33 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; - 26401B6DCFA787B64E545ADF40CB2C26 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; - 26671C519571A72819B5664AB739BA59 /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; - 2675FEE1C5CC622E6FC7BE1A262FCAEA /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = ""; }; - 2692AFC129DDBD9886CD8EFC94FB2767 /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; - 26BD4EB705D121E99953420BC33E2420 /* RTCVideoSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoSource.h; sourceTree = ""; }; + 2606612E3C04EA90C68007FBBAC72964 /* RTCVideoEncoderVP9.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoEncoderVP9.h; sourceTree = ""; }; + 26186657DACDF70F963F73FBD86FEEC3 /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; + 2620BB440055C702856DCB12E2D269B8 /* RTCDataChannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCDataChannel.h; sourceTree = ""; }; + 26302D552DCDBD054E070D7DD51F39B8 /* RNFirebaseStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseStorage.h; sourceTree = ""; }; + 265BC667387F66D7367CC1B43E2F322B /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; + 269DF2E852964BEEF2A57A04741F494E /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; 26E7C3ABE9D7035639151BAC1CAA023A /* FIRInstanceIDAuthKeyChain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAuthKeyChain.h; path = Firebase/InstanceID/FIRInstanceIDAuthKeyChain.h; sourceTree = ""; }; 26FCF70259DA5F51659A6934E776DF61 /* quant_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_dec.c; path = src/dec/quant_dec.c; sourceTree = ""; }; 270D7865FAF7BACAF1945F47F7F36D69 /* yuv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv.c; path = src/dsp/yuv.c; sourceTree = ""; }; - 273C2DBB8D2A77E862429B26FC3A0DAA /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; - 278476170389242F3A608B71E41F158D /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; - 2788D2D3E0705C7D482B0C43FC112B69 /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; - 27CA2C38E38208FEB8B0821455E60FAD /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; + 271F27E7527C4BB4F565FED763BEFF42 /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; + 27613BCDFA06C2A212ACBFB07E1608EB /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; + 278C4B70C3C680A06F659F43BF294756 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; + 278DEF1C4576075250821C4A53615C20 /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; + 2795ABC502CD10381189161967F50860 /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; + 27BF97D54D730CB27FF4ADCB95B81BDF /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; + 27C12A379F33A702A7EF080C6CBEF928 /* RNFirebaseAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAnalytics.m; sourceTree = ""; }; + 27CB8C427E5B72F714A527AAD9246B11 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; + 27D693997B65B3E74EC78362163B2C77 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; 27DAA7F9EA8682CF9704FE1CAFDDC2F9 /* webp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_enc.c; path = src/enc/webp_enc.c; sourceTree = ""; }; - 27F972F091BC08C0AB6B136244331BFE /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; - 2836275B6F700192B022EA52DA419BCD /* RNFirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAuth.h; sourceTree = ""; }; + 28216373694E431536D099ED0C16451D /* RNFirebaseFirestoreCollectionReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreCollectionReference.m; sourceTree = ""; }; + 285C10879981A54909D0F796332831D1 /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; 285F1C20B291AD091D488EBD9AA3066D /* GoogleDataTransportCCTSupport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransportCCTSupport.xcconfig; sourceTree = ""; }; - 286397C424DBE1AAB294AC63C57F4C73 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; - 28771B806F156F63B272C5859AC6E569 /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; - 28A7D9EBA92D7AE9DC68B73FC5D3E56E /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; - 28A8445B45ADDD0D98A9B455A3D4A6D5 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; - 28BB727AC25FF20390F0D4F6BBE384E1 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; - 28FC507597E33C9E428BF771E4DCAEDA /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; - 290A5CF51092C9911670D58CE1EC126E /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; - 29456E71E5CA6F0D9A1BC45AC249B438 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; + 28E86485C9C373DCCDE0F272759FB94E /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; + 2925A82355DBA63FB212E614028758DF /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; + 293992970832F1456BE89CC944BDAD53 /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; 29502A0004E740F80FDFA9E5CFE421A8 /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; - 2988B8EA02EA11C3A0953656A52D4A0B /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; + 297FBFCC72DB52AB5912D75419F57939 /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; + 298301BD78268EEFC1A39C4AE6C257C6 /* JitsiMeet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JitsiMeet.h; sourceTree = ""; }; + 29ADAE6C90F175E647FD94E4E13F786F /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; + 29B6FE2E3CE63643CC922532773E1513 /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; + 29C4EE29FE14C17D7D9DA4AA898CC2AE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 29D0DFCB9D70457B9B48F8858EA6D2F6 /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; - 29D68C01B7BB771D070839C48F2C7780 /* libRCTTypeSafety.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRCTTypeSafety.a; path = libRCTTypeSafety.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 29DE2AA01C76E506BFB69F91D3D7F90B /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 2A20A9F426CEE2F5DA1B66C3D6C9BAAE /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; - 2A2DFD80C3997E0ABB7FFEF51C612BF7 /* RNFirebaseAdMobInterstitial.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobInterstitial.m; sourceTree = ""; }; - 2A7F743FD292127E00F2E9D5E75F7BB1 /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 2AE7B2C51D8B868E01FA302B8377E76F /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; - 2B1769ECED986A1016B92E04081BB820 /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; + 2A3800D8351F8C215D23392B666536DC /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; + 2A54535212456A395C1685CFAB7AB20A /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; + 2B19EA38D947F5749AC7F4FCD174137C /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; 2B367DCE92865D3CC37D33E46A79C9F5 /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = Firebase/Core/Private/FIRErrorCode.h; sourceTree = ""; }; - 2B45E38A956BC0C34EDCA95019C0E090 /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; + 2B38AC74F716BF198F0AC7A81A8E82A2 /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; + 2B457EAC7B9E5D1C64091C6212B8D9C5 /* RNFirebaseNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseNotifications.m; sourceTree = ""; }; 2B59CC1BAA4BFC5DB2D00452E5713ADB /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; - 2B7D478665C615643A81DA89762EAB9E /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; + 2B661F981723A07083B4D9B04FFAC6F1 /* 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; }; + 2B72AE536F8B8C2AA6D9A56CCEC1DD4F /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; + 2B83CDCA7BE8BB67105ACC12019F5CC2 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; + 2B86ED61F28DCB20D0530AF1CB29013D /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 2BA2ECFCD04DB9708EA2504DFF8341B0 /* utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = utils.c; path = src/utils/utils.c; sourceTree = ""; }; - 2BA843B77D141E7E5EAD6639E82FFA32 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; - 2BD06EC8D71451488BC2F7D676E96F00 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; - 2C05EF2452A2C2DB0E3675D2310BD554 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; - 2C27F860BA508C99E69FFF02244A645B /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; + 2BA90E5CF1AD526DEE8E4F31EF6C571B /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; + 2BB52A32742ED761DA76CEBE97ED18A2 /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; + 2C1F72F0BD2A08E12586D00494C63204 /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; 2C3DC6D5B9BDAE5D38A9C3FBABB1496A /* iterator_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator_enc.c; path = src/enc/iterator_enc.c; sourceTree = ""; }; - 2C538B065EEC8ED1BCC75BD8E92A6DE7 /* EXUserNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXUserNotificationRequester.m; path = EXPermissions/EXUserNotificationRequester.m; sourceTree = ""; }; - 2C7CAF26651F6B5039A6B632F237DCC4 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; - 2C99D970FCA64BE40044898301576334 /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; - 2CEE8F7C1EB72AEE620FDFA213AA6B84 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; - 2D068189902796A90299BF9FE48D6109 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; + 2C4D5A26D150618BD9D8ED373D8A0BEC /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = ""; }; + 2C977B894F8AB4087D3133C1CDA6073B /* 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; }; + 2CA533886C45FA29E885D0F88AC57892 /* RNFirebase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFirebase.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2CE70BB6FB2323587C1CA383B415A65D /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; 2D21568CA3D2B002C973A9BA34573B73 /* FIRDiagnosticsData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDiagnosticsData.m; path = Firebase/Core/FIRDiagnosticsData.m; sourceTree = ""; }; - 2D308E0C724DEA2FDD523243CAF81234 /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; - 2D32CFE4017C0FEC790568575C16997D /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; - 2D45D1BFFC3F90AFE8E36AE506FBC1EA /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; + 2D323359ECBAC16A11D1D0E7F7BCE87F /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; + 2D39C8BEF9B469F3D9DAC70037B78025 /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; + 2D47013E1E7CFB71ADA5687ABE4BF045 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; + 2D4907EE435AE0F31E9838EF88D68A63 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; 2D5899897AF05F4099CEFED7C39DF498 /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; - 2D5B4A7C41A1AD10FE39999F4AE5BAC4 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; + 2D5AAA77C076D7EF3E5658626FD83840 /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; 2D6C7BC478AA059CF44CCA9A7269C7F2 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; 2D79D9AA154EA96EEBA66E477BF5C078 /* FIRInstanceIDKeyPairStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeyPairStore.m; path = Firebase/InstanceID/FIRInstanceIDKeyPairStore.m; sourceTree = ""; }; - 2D7F2036C94E9C972E622D6FAB8A428F /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; 2D9460157F7FDCA4BF2D95C08EF96DE5 /* FIRInstanceIDLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDLogger.m; path = Firebase/InstanceID/FIRInstanceIDLogger.m; sourceTree = ""; }; - 2DA489AEBF2BFF867E09F5B60963824F /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 2DDD1DD47E9C22159E8E450C71DD1E4F /* RNFastImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.xcconfig; sourceTree = ""; }; + 2DBB42105D13FD92172E921865400626 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; + 2DBC5B39B683FAF0B22E8345E8FA0AC4 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; 2E04744137C4DC860143BC52B6FB9548 /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; - 2E412AC36FA5A5F6A65F9479841B1566 /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; - 2E48D87E8D14A3EAE2C05E984EB86575 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; - 2E960E6AAA4AB279827B0F54F6DCD9D0 /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; - 2EC26CD16A3EAAA3CC3515C4F8DBEC92 /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; + 2E056E05030B4395FE01370071C1A335 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; + 2E3FF804545A3D7676103453272D4207 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; + 2E47890F881BBB8DCEFDB2FB78F8E35D /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; + 2E5039680E7D9FFB87016EDB262CBA55 /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; + 2E63D28B471EEA0B77D4DC4BE9620CDF /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; + 2ED786D2B89840F35CB731C1C6492E5D /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; + 2EFEC6AFA0FD6CFDDB6A7F67BECD0216 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; 2EFF26FBF25613C65417375496B5A684 /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; - 2EFFAB8FA462AA38356F12CFF3F9D9A4 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; - 2F45235E0F148A83AD05C96C4B23AEE3 /* RTCVideoDecoderVP8.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoDecoderVP8.h; sourceTree = ""; }; - 2FB7A9AFB2ACE00A1881442273623E90 /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; - 2FBC5440BBB2AACD20BF4C86430C0086 /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; + 2F240CDA6B07F41B525AB438AAD13A06 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; + 2F2CBE041011856FFD10A87E4475D86D /* React-RCTActionSheet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTActionSheet-prefix.pch"; sourceTree = ""; }; + 2F492D6837FF7F3BDE44215A7B44BCB3 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; 2FBC9DFD2C3DAD553E47628E06BFD862 /* yuv_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse2.c; path = src/dsp/yuv_sse2.c; sourceTree = ""; }; 2FBE6D4529581992E06E09DAEA44BC62 /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; - 2FD208A987D26707807DEACD92EAEDC2 /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; - 2FEE895C3510BEC204D4824A51DD7A31 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; - 301567460D8660C931BC4A8ACB8330DB /* libSDWebImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImage.a; path = libSDWebImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 301700A7498F4770349055016170FED9 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; - 30230B337C7722F6D22F202F64BE05C9 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2FEA7B7E87802AEB975A8D40A33FB8D2 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; + 3007AA5094F3919B637E9E207729FE7B /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; + 301284AEE036F0F9F9F8C4DD634126A1 /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; 302669C528EB41EE070FE1C234C7D7D4 /* QBImagePickerController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "QBImagePickerController-dummy.m"; sourceTree = ""; }; 302832E989F3265D092A1216B7CF3C24 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; - 30336E44BD404E7E605D8D5A2F28A6A7 /* BridgeJSCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BridgeJSCallInvoker.cpp; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.cpp; sourceTree = ""; }; - 30797487CF57A7A232B61D28D62BEB27 /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; - 30B0F3F2328B38797B3B0FBFC8593A2D /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTGIFImageDecoder.m; sourceTree = ""; }; + 302B47BE89AD1F6DE4C2B9F0736D33A7 /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = ""; }; + 30550BF834830A430953570C26BA34BB /* libReact-cxxreact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-cxxreact.a"; path = "libReact-cxxreact.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 3080942A7E24191503BB31134104ED85 /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 308928E7A546335085AEDA026EF00756 /* RCTConvert+UIBackgroundFetchResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+UIBackgroundFetchResult.m"; sourceTree = ""; }; + 30A61D6BA406FD3518D81BBD4BDB9122 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + 30BEBEC4DDFFB2406A89A09ADAFDD6E0 /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; 30CD69E1B9C38E757319BE850F56DBE1 /* lossless.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless.c; path = src/dsp/lossless.c; sourceTree = ""; }; - 30D71C92DC2950F63D4979461155F20C /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; - 30DBD669AE462A1E9D44B769646B8561 /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; - 30EB7CA8BA2F24A1C99FF5190B92E6D9 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; - 30FDB4BB9D4B18A3362C318F3875355E /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; - 311E9C6BB31C044DB983AADE5A2521F3 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; - 3128E78C4F227B716F48FDA25D3F4077 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; - 313751F77B96E015612CE89641D98470 /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; - 3144AB7B187E397BB003F7227C641EA7 /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; - 3175D4F17FE054E65ECAE6AAB14DFB49 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; - 317B34867118020D733C7CDA101AE215 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 31F7D6BEE41A991A07BC601BAF1BB842 /* react-native-notifications.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.xcconfig"; sourceTree = ""; }; - 31F85D8CF4693A614653CC91F13D9BF1 /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; - 324A9FC4255F80E0335160E098E2ADB9 /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; - 325B2A85C2005E4FB22A4A3ADB3B01D3 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; - 32866562C8FE2DB9C1F68B8F0F34E146 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3102101438E992F7A4D1AF110747AC8C /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; + 31348318ED794E375BF7C730554E48FB /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; + 316F4BC9F345B3956AF94DB5A347E199 /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; + 31808754F413E9FCF29F80B7E4DCAB8B /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; + 31E470CC14E82E7C6A7FE9A256BFB0EB /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; + 31EFC911F2BDE0A6E8812E8EFC9ACE2F /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; + 3233FD512651D6526B0227C3B2DA648C /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; + 3245737CF751F5AECA0A503ECA82271D /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + 32484BFF36488CC96783EF792DF22A50 /* libReact-jsi.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsi.a"; path = "libReact-jsi.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 324C5408958D3B7B930547B24B5DE6A4 /* UIView+FindUIViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+FindUIViewController.h"; path = "ios/Video/UIView+FindUIViewController.h"; sourceTree = ""; }; + 324E5AE4809A8C7527434067EEFF6162 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; + 32574B32C917CF9475E053D0B5C005CA /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; + 3271D9F1923DCE00DA904E833AB4AD45 /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; 3286C47D0D2E7941D9F892B0606F90EF /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; - 32A2B92EC96777B75672426E777F0E1A /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; - 32A35499ECD9E27A86AFB49950BE9B92 /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; - 32A58D33C411245EC750F5EC30D1E527 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; + 32AD5BF8C0BE27DFF135A2549E663391 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; 32BD5AFB9D2CF33C5166AAB7695AD8B2 /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; 32CC9D017DB6C7A3550D95D367BE7155 /* filters_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_mips_dsp_r2.c; path = src/dsp/filters_mips_dsp_r2.c; sourceTree = ""; }; - 32DBCA60CA5999DD0DD8CFEE12A42265 /* FBLazyVector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.xcconfig; sourceTree = ""; }; - 330C6D34155334CA60162A092226AB2D /* RTCDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCDispatcher.h; sourceTree = ""; }; 3312D054F2CC88795612F8C6BE2C20D2 /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; + 333210D95F6C5555AC90B585304A118E /* react-native-splash-screen.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-splash-screen.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3332E79CFDFFCEDAD82E7395F4E80C2F /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; 33653E86EB98AA1A2E65EA48E08B3257 /* dec_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips_dsp_r2.c; path = src/dsp/dec_mips_dsp_r2.c; sourceTree = ""; }; - 337C91820DCF429BDF552DD61942B319 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; + 33C4F1F33D1D4CF4E159BFD75BBB0083 /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; 33D77B6B010AA1DB5A776730EC6CAC8C /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = Firebase/Core/Public/FIRApp.h; sourceTree = ""; }; + 33F788930CE65F9DD6AA72ED34C29F3E /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; 341248537B532E1C3BF8A28CEA019E6A /* GDTTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTTransport.m; path = GoogleDataTransport/GDTLibrary/GDTTransport.m; sourceTree = ""; }; - 341343810142DB75FC8589509194800F /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; - 3434AB2C795DFF5066BD8DB26942F527 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; - 343C32942FC5B812BF28849545A8ACD9 /* react-native-video-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-video-prefix.pch"; sourceTree = ""; }; - 3442FA7760E8229A7FBB18976E373BE6 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; - 344C87F600D9EE9F7A992A471B2EA1BD /* RTCRtpReceiver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCRtpReceiver.h; sourceTree = ""; }; - 3453E0BC01956B7CEE74F5A91A4B5DD1 /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; - 348E429E541699FFC77CE6883744854A /* RNFirebaseLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseLinks.h; sourceTree = ""; }; - 34BD8A20C91B6C4C7E7F635AEBD8CB62 /* UIView+FindUIViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+FindUIViewController.h"; path = "ios/Video/UIView+FindUIViewController.h"; sourceTree = ""; }; - 34F05944C734CB2E459FB131B71D8264 /* RCTVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewController.h; path = ios/Video/RCTVideoPlayerViewController.h; sourceTree = ""; }; - 34FBD3EA4B00CE9AA517B4E7CDA4F792 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; - 351EC724329F620BF206EBDD54080720 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; - 356FE3E71CD3DEFCAC4909FF82DACCE4 /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 357433FCCF10A2E8CB375A024D932A57 /* RTCIntervalRange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCIntervalRange.h; sourceTree = ""; }; - 3596829CB006591685B47ADA4BA6B851 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; - 35A579D0C7A01ECD4D9FFFC9086DDDA7 /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; - 35E28ECEAAF2B93628AABA76D593BDCD /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; + 344F115A95B229C2F0D983DABE6C40EA /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; + 346213A86B7D47591B84F49573F50053 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; + 346AF034D312301DE94E5DBE13EB67F3 /* 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; }; + 34C6BC38DF0C014286439FD86C227B91 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 34CB8816E5B81DDD6A7DBD078039E80B /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; + 3503FCE61F9999AFC779E2DD3D376D8D /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; + 3520A6863EFA9777DEAE6B7D7B21E5BE /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 352B3893F808BDC965571C3FDC3CB8DF /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; + 354108294849DABE3C6AF4F97BEEDE83 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; + 3550F8FB29D5E3BA0B88C57F3CF17109 /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; + 35805890D0D4351BAB9C215F44CEE54D /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; + 35DF8D3D10126F34D176439DA4158850 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; + 35F9B9A43496220799632121DEC6E20C /* RNFirebaseFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFunctions.m; sourceTree = ""; }; 3601E287D42AF8BF9D590F830354C37B /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = src/webp/encode.h; sourceTree = ""; }; 361ED24B795D598831F92950AAE3106F /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; 3622A654DCA94A9C868CF3777A3C171B /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; 363A044359A7D9BE5F2DB4F5D8992CEF /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; - 3640174E5C2BB1DDD77D0D39BD854A22 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; - 364347B22922DD5DD9C39372A883717A /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; - 365218A250FD18C75E06B7403B341F07 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; + 365FCC24F83C8C3D685AD3315C3B5733 /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; 366A71480716A7F4AFACF4B7A4B0F575 /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; - 3685360A7BD99E6847628EE5D1FF83EA /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; - 3697A856D79FE78630EAFFD61769AA44 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; + 36B6ABBD0C9C111C4CA22D0C6164C4D0 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; + 36F5679F1EB6B81D48E293BC8C0DC39A /* libreact-native-splash-screen.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-splash-screen.a"; path = "libreact-native-splash-screen.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 36FAE3621D77782DAFD73A01E76FB8BB /* animi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = animi.h; path = src/mux/animi.h; sourceTree = ""; }; + 37090CD9EC4FF1D1BF5D88DC1A631BCD /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; 371BCCE6DE6C1C5F6E933AC8F0CE13F7 /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; + 371CD386942A4D743EF18E859766AF3B /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; 3721E77C21FA3733E371C4BD0D42FDAB /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; 37232A41056D9A38B04FB3C9A5F784F6 /* GDTTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTTransformer.m; path = GoogleDataTransport/GDTLibrary/GDTTransformer.m; sourceTree = ""; }; - 3738738E40C256878035DDF4259511E9 /* Yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.xcconfig; sourceTree = ""; }; - 373B25D2F3A552C16DEDF3EDBD8D2EAC /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; - 37AABEEC03D5F4C92AEA714FD735CD95 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; + 3726AA8C7A3469B737C279CF62794F6F /* react-native-safe-area-context-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-safe-area-context-dummy.m"; sourceTree = ""; }; + 3798963A6D4FECB3CB0CE414C53C553E /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; 37AB3E1CA524C470AC4217C4A2146926 /* FIRInstanceIDCombinedHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCombinedHandler.h; path = Firebase/InstanceID/FIRInstanceIDCombinedHandler.h; sourceTree = ""; }; - 37E11CC366C21475A840AF9A7F291CF2 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; - 37F0EECEB5F8260AF82A6AF2D0C58EC4 /* react-native-video-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-video-dummy.m"; sourceTree = ""; }; - 37F188493F6654882DE5E6B2BDE19215 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; + 37E1864EE0814F3473533188E1B48FC2 /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; + 37EC08C914CE9355DB2B72F7F2E4146C /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; 37F5F4EABC6487EF44A15062C2473B8E /* Pods-ShareRocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ShareRocketChatRN-acknowledgements.plist"; sourceTree = ""; }; - 3814F84755388AD1C8BE044F65536D82 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; - 38448BA7043409609588CEFB91FED396 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; - 38A81B7453C5897092810D717D38E29D /* EXSystemBrightnessRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXSystemBrightnessRequester.h; path = EXPermissions/EXSystemBrightnessRequester.h; sourceTree = ""; }; - 38EDF0A73A526AAEE884BC13CC53EDC2 /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; - 39331300757DF99B3ED1BC7F159B492C /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; + 383A0666D89BB6A1BAB1CF830C29DD47 /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; + 3886881A0D844FE147AEA3539AA6998D /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; + 38AEF83E084F9694EBD0F9840EC668F3 /* RNFirebasePerformance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebasePerformance.h; sourceTree = ""; }; + 38B102188B49D1E48D9B805CB5D49FB3 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; + 38E79CEB859E6D1C7768634265DC993F /* RNCSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewManager.m; path = ios/SafeAreaView/RNCSafeAreaViewManager.m; sourceTree = ""; }; + 392A54C242119AC827378B2C6BAD1D3F /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; 3951DE70C23C86F6998FE17870CE31C2 /* CLSLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSLogging.h; path = iOS/Crashlytics.framework/Headers/CLSLogging.h; sourceTree = ""; }; - 39575354205DC74A3674EACF0EA9A8A5 /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; + 3954AC91AC370061280233DC5CEC9212 /* RTCRtpHeaderExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCRtpHeaderExtension.h; sourceTree = ""; }; + 39720CF863C5D962B6BE9C4B0368C228 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = React/CoreModules/RCTImageStoreManager.h; sourceTree = ""; }; 39878CFBE7B41C682EE69941F7595C0F /* dec_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse2.c; path = src/dsp/dec_sse2.c; sourceTree = ""; }; - 39C4F0E77856CD00DF096646A8A3CC0C /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; - 39F0E960CB6D606FF9F667455409D121 /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; - 39F8A9ABAD4E836E77F8D0C364BC9A7C /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; - 3A16FA363552E8747CB528C5DAA63C75 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; - 3A2A6E90B220EA4C8894E1AA4826629C /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetInfo.m; sourceTree = ""; }; - 3A34C74025F8A6F0A9116F44104CF61C /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; - 3A3F3F3D1DEAD88798C7855BC580B5A2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 39A8C39D881D622C2CDAF651970352D2 /* RNFirebaseMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseMessaging.m; sourceTree = ""; }; + 39B77D36E4FAA4C2B8322A3502BBAE09 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; + 39B7AFA32D39C3A49A3A8E0C0480A1BF /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3A28E7A0751A12FF1107E477BAD11FEB /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3A357814AEFDC202130359888B144EDA /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; 3A465BE307F659E6500E34CBF82517D7 /* lossless_enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips32.c; path = src/dsp/lossless_enc_mips32.c; sourceTree = ""; }; - 3A4FF65F56E748C7427F340BA0285E9B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 3A5060F673F80613599FB3FADAA0EB52 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; 3A66D67F0321370D7E120BF270FD2768 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; - 3A72763C0DC542C39E3298476D2324D8 /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; + 3A79ADE1E505ED3EAAA0729840969BEA /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; + 3A8CA3243355E388ECA7BC6845078189 /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; + 3AC2E1C485E92CB9CE76490962932C98 /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; 3AC5E071A78F24A2A29B9B0D6BFEEAEF /* RSKImageScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageScrollView.h; path = RSKImageCropper/RSKImageScrollView.h; sourceTree = ""; }; + 3ACC53A5021630E058E11AF3FB28BA08 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; 3AF33AF7A1FB6D5858DB650F2BF7E98E /* FIRInstanceID_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceID_Private.h; path = Firebase/InstanceID/Private/FIRInstanceID_Private.h; sourceTree = ""; }; - 3B289E7F2F15A57CC89179131BE50FEC /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; - 3B3C9A5354F34B93E75A31D96EF075E6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 3B4FAB01D20930A63E839D844304C6AB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 3B6070CCDD1B35A0C894BA464EEA2221 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; + 3AFDD915EB02BC97A62EC9670510F13F /* RNSplashScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSplashScreen.h; path = ios/RNSplashScreen.h; sourceTree = ""; }; + 3B1C3566A07F3528AFA69DAC5D07CA6B /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; + 3B724632B0346DA2227C3E5512C4C605 /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; 3B8C02DF38AEA9FC02589CC6FD1B37E2 /* filters.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters.c; path = src/dsp/filters.c; sourceTree = ""; }; - 3BC92D7E013934F81ADDB203AC3DCAC9 /* RNAudio.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNAudio.xcconfig; sourceTree = ""; }; - 3BCF90E27230C0A61CC068752BDE4D38 /* 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; }; - 3BE09A555F5A524BA8D044492D90922E /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; + 3BB130BFEBA123BF5F40864D7327A1CE /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; + 3BDFFF33F3B7B4DFD00E290EC144938D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 3BE2EDAF428C0889ECA70E4294B600BB /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; 3BFCE6CFFEB93E37C6C3A066D694052A /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; 3C05ECB9067AD66981D934993D596045 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; - 3C22DDE348837C5272779BF4D393C3A5 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; - 3C2DBA525AE7F5D8C434EDDDCC04CED3 /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = ""; }; + 3C13E0443F06610B7EFFEB8ADF89AF53 /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; + 3C158146D441C1840F6148EE3D236C33 /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; + 3C1A2E8ADA134E8238FA734E13530352 /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; 3C338D2F98F5FA139C28C25640E7726E /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; - 3C4E6D0F43CE1C1E4F14B317AF237522 /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3C7C5D42DD5948AB3DD0AEEBFA0DBCF9 /* libFBReactNativeSpec.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFBReactNativeSpec.a; path = libFBReactNativeSpec.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3C7D4AF74DA7A1D48531684DFCC1287F /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; - 3CB070D5B1ADF1EEA6FC9955D41FC07F /* RTCCameraPreviewView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCCameraPreviewView.h; sourceTree = ""; }; - 3D11595D8227CD30F9B941E2A0FAEE55 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; - 3D187B29FF40E909C7B00649D02DD8D7 /* 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; }; + 3C3D6EFB8D50A27D3AE08A56867B88D5 /* RCTVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoManager.m; path = ios/Video/RCTVideoManager.m; sourceTree = ""; }; + 3C5C9A758A307E9C2308801D85F4AD5B /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; + 3C6AF31BAE7BA5E1BDF8D2A0CEABBBC3 /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = ""; }; + 3C762C508F430893B21A28DCD5F96F86 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3C8316088184A89BF29CC5B7DB57B3B9 /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; + 3C9C08DB769E4D178116F8D4FE162AAF /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; + 3CB69BA68E697788A088773453E39E4D /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3CEFA9FAB49EC1AA776F01C2C2163C68 /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; + 3D1AFED5121275823C1EE98A16173AAA /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 3D1CCE22AB1807F99B20FBCC50E462D5 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; 3D3A46F9CCE8CEFF84C4C455EA782C9B /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; - 3D3C7D5AF6CF5C9445A36E6DCDCF0A5B /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; - 3D3DEA3A19FC1E808E61CB2EBF10613B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 3D59A161EF4CED1ACD8E863BF7BC09C1 /* RNFirebaseUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebaseUtil.m; path = RNFirebase/RNFirebaseUtil.m; sourceTree = ""; }; - 3D5DAF6F162765CBD8C7491800B9EA45 /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; - 3D655208670B9B0B89F964EF6F197D10 /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; - 3D8F234223C5A85DB3C2C51DA8AA1BD6 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; - 3D921C88B653C6F55B8F32C5229D912C /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; - 3DAB2A845217DBACA89044C4BE1B7019 /* RTCPeerConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCPeerConnectionFactory.h; sourceTree = ""; }; - 3DC040E976AC0D325774D6A3FA856F1B /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; + 3D3E1A3EDFA4B5FA204815C239797E8B /* libFirebaseCoreDiagnostics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCoreDiagnostics.a; path = libFirebaseCoreDiagnostics.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 3DA225ADFC08E7BA3A023A5869183C39 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; + 3DC404C13CF1A25C0937D7F77E8A31A0 /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; + 3DD1AC6AC1DFC192A113B0CB6AAB0727 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; + 3DDED617E6970A761D1485C9DFF7F6B5 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; 3E2147BA514227BEB53E26EDBE8254DE /* backward_references_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backward_references_enc.h; path = src/enc/backward_references_enc.h; sourceTree = ""; }; - 3E98EA1A22DD27CC9BDE6FCC634D5768 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; - 3EB7EB53901A20B1B293078861868CD7 /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; - 3EC540D240E3AB36FE683E1FBCD785BF /* 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; }; - 3F13B387399DE000AB9D70D563F7A4AF /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; - 3F2AF5DD4577BD5C771BFBD63198C5C5 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; - 3F62B220D58A201F449412D9D6D89F08 /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevMenu.h; sourceTree = ""; }; - 3F7196B12CB66A2F385877320E6DB17E /* RNFirebaseFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFunctions.m; sourceTree = ""; }; + 3E2D53DC098A62E6B032AA193144B181 /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; + 3E41673C909C08709B97EEBC55CA72A2 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; + 3E6DA31649B87594C19ADE57BFBBAE0F /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; + 3E9F48B26088013B625FBD61C19A0A37 /* libReact-Core.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-Core.a"; path = "libReact-Core.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 3F2A8F1CF3BC3AC3B5492A25F74433CE /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; 3FE0430BB8897862A9EBDB1A2FECD649 /* thread_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_utils.h; path = src/utils/thread_utils.h; sourceTree = ""; }; + 3FF0E5AA62D46D382DF71A8CEA9125FC /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; + 4002DD3069DAB02EC998A6B083D34D40 /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; + 40230EA7E7F0D84886311A1A836150C4 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; 4023E271B4A414D1A43D2BA7B0EAA00E /* FIRInstanceIDUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDUtilities.m; path = Firebase/InstanceID/FIRInstanceIDUtilities.m; sourceTree = ""; }; - 40395B670155BDF3C22C04B25B743A69 /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; - 4041BF4FA2D93438B9C7A71F7CF3F4DF /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; + 402F56EB97846FB05095C54C5FB4CEF0 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; 40679C865AE0F12EDADDED081DA55A5C /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; - 409482F50DB4534EE8059682EB3F83DB /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; - 4094D81B29332EC52EB4A114E806C8EA /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; - 409FEFDD8115DD42A4354CE2DE318713 /* UIView+FindUIViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+FindUIViewController.m"; path = "ios/Video/UIView+FindUIViewController.m"; sourceTree = ""; }; - 409FF0807B37ED4A9D2CCEF42F1D0F74 /* libReact-cxxreact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-cxxreact.a"; path = "libReact-cxxreact.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 406AC12A65E4004888E089CCEEC1C49F /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; 40D86A35C64C72911FC247AEB64044D1 /* FIRInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceID.h; path = Firebase/InstanceID/Public/FIRInstanceID.h; sourceTree = ""; }; + 40D9FAED863378EAF92E5D0A1B235BBE /* 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; }; 40DE467A1FC32C3FECA2F64129393790 /* FirebaseCoreDiagnosticsInterop.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnosticsInterop.xcconfig; sourceTree = ""; }; 40FDE3CC78432E4EC36D860A75ED30E4 /* Fabric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fabric.h; path = iOS/Fabric.framework/Headers/Fabric.h; sourceTree = ""; }; - 4103E5D22024414FEBC368E41E6B0FA8 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; - 412F6BC0A1148E9E66A4B5402C5D2CD1 /* RCTBlobCollector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobCollector.h; sourceTree = ""; }; - 41910E253079943F46673191BB21B1BC /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; - 41A5423EBB1880BAF6F9267E5B15F7D6 /* 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; }; - 41D0001F50410B45E4E336A028F1D7B9 /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; - 41DF5CC62B33DE37F3359028ADD057A2 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; + 4106499F22B96B283BBAB1DBD3936495 /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; + 413E24DE90EE32A63B5AE9EA24DC02EB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 41423C2312227BEFFA941916BEF3F7EF /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = ""; }; + 4147092B4D61809637AFD41B72A335A0 /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; + 417D87CE168CA4EC2CF9A1914C4B2170 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 41D2C71CAB5C5BABD794610D68FCDE8E /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; 42076511B6CA8354982B1E02FA428877 /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; - 423819A3AB14312BA59EDF8E2AA24629 /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; - 42473D7B6315F204506E7D10817318AE /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; - 424EC02E1CD4560F59C5709DBBC52234 /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; - 426614488C4A84088A29FF799BCFA49B /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; - 4269682A8F921C81F7B30C45BBC1A6F1 /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; + 421D3D8FCABB7A062F1697390A469AE4 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; + 422E26751C13F3B4CED072B749D894A8 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; + 426E04BEAC8D35F840DE9A56AAA70DA0 /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; + 42862E86EE85981EFFC2A0BFC1FDABAD /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; 4289A253D51A77E57E304ABD9B76AB59 /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; - 42BD1965691774F7E02916CBF3984093 /* EXRemindersRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemindersRequester.m; path = EXPermissions/EXRemindersRequester.m; sourceTree = ""; }; - 430A8B469F7107BE898999DC2CFEBBE4 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 430FAEE37CB6FC021358D4C4277397B7 /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; 43438266D6833B9B80862D52E641C88C /* GDTEvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTEvent_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTEvent_Private.h; sourceTree = ""; }; - 434A1FD0BB70624CEC889E7AA19462B4 /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; 434D227E739DDA39417063C143A8A051 /* yuv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = yuv.h; path = src/dsp/yuv.h; sourceTree = ""; }; + 435FCD4A0595E1A3C12E95501E50718E /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; 436AE389A1F083361C83674F71CE60FC /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; - 436D3F6D67B9DEF4EB53FC6E4B55B0BA /* RNFirebaseLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseLinks.m; sourceTree = ""; }; - 4383E26E63B94AD8D4B8A4EB7E2296E7 /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 442DC5479497D8DA58DAD41AFF85A450 /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; - 446B8CE97A0CEE9982AA2EBA4C525437 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; - 44AC4DE2C71F4B591F1CF7B13A76D78F /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; + 43A1EC448893D1FB0444E625C6DA1711 /* RTCFileVideoCapturer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCFileVideoCapturer.h; sourceTree = ""; }; + 43A23B7AA3F12BB5CF8EF2B272616200 /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; + 442F481324FE13FF40321FD68DC3BB39 /* 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; }; + 4449535CB23CB4DB2505514C5766F3E6 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; + 444E4ACBE9151BC990478E19774A356B /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; + 4458E18704D8255E2EC923DC532B799B /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; + 44BBCEA6993FAEC2173B75CD7EE02612 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; 44C76917613733B052AA6184773C735F /* rescaler_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips32.c; path = src/dsp/rescaler_mips32.c; sourceTree = ""; }; 44E75BF06105F11906E395759D1B7F66 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; - 450F873C9449D773F8A6A196FF5DACFE /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 44F20F42ED840CC498B7D42A814AAA36 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; 451AF79F46F083B22E4B8C47FC32D436 /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; 4525C0A2AA5C85FCFE53C72A95B015C4 /* rescaler_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips_dsp_r2.c; path = src/dsp/rescaler_mips_dsp_r2.c; sourceTree = ""; }; - 45570AD81EF7454074C069CE713D1694 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; - 45A54CB7FE43EDE7F2BD864A183726C1 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; - 45C290CE5A62F1BA392D9F67FC24CC10 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; - 460991AC1BE5B75FEBBA47638A4138A1 /* libEXAppLoaderProvider.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAppLoaderProvider.a; path = libEXAppLoaderProvider.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 460AD3851E021B6C51B4870B45FFE1EE /* EXContactsRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXContactsRequester.h; path = EXPermissions/EXContactsRequester.h; sourceTree = ""; }; + 454A857EA45FB1275370686391B3936E /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; + 456A3704E8A9C2DB6783707ECE4E8B64 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; + 456C30AC5F32F800AF4873C26968405B /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; 4612629D5516E4E170C410A4783836B7 /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = ""; }; - 4623DB4B2B6C2EB363197BBA148FBE6B /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; - 462736990DFA92A4B9AD7C3519288A78 /* RNFirebaseStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseStorage.m; sourceTree = ""; }; - 4639AB5798CD989E823A570067978431 /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; 465EBE9FA967B134748C301E7E1287B8 /* dec_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips32.c; path = src/dsp/dec_mips32.c; sourceTree = ""; }; - 4662C62AD7580F913FBE443D4954BCB3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 4669C01EEAD59B56C2E8AFA01735044D /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; 466AAC20CA13B094A23729F39FCE7B46 /* vp8l_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_enc.c; path = src/enc/vp8l_enc.c; sourceTree = ""; }; - 46935949380002F57FC1F47D09E7E074 /* JitsiMeetViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JitsiMeetViewDelegate.h; sourceTree = ""; }; - 469669C51717AB3A9AE23299B5A20099 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; 46A54367025ACCCB32096FA0B124098C /* Pods-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.release.xcconfig"; sourceTree = ""; }; - 46C3AD38437038E97CB6C3C353827223 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; - 47003DC8953C2298487236EBE160D48B /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 470FEEE3AC29F338433ED929A5EED978 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; + 46BC8AEDFF4D6712112403690A7C3733 /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; + 46CF012EACDB97270CE8BD37584A6C29 /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; + 46F635BE10A77E855C99B88B6FC10775 /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; + 46FDF54DB236D5FC45213D38571670DC /* RTCDtmfSender.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCDtmfSender.h; sourceTree = ""; }; 4733AAE8C450C92BF1A189451161D256 /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = ""; }; 47387B03B04A5BE8B9C465D938238A20 /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; - 4740CAD1208E5402B44DF7BCE39B2E88 /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; - 47764B5801E587EFFBEAF16D08AE9227 /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; - 4786257925B0DB4B65A3DA452CC63195 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; - 4797CCB8CF0CADB93DDE7716466A76EF /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; - 47DEC900CCD9CE14D447199013E3446B /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; - 4811161CED5987E250343488233AD41F /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; - 4831002E31D2F6815C4C73C5B31E5A72 /* RNFirebaseAdMob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMob.m; sourceTree = ""; }; + 4747D95FA389A8686826C5450A7DC4B0 /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; + 4777AB381CC1284EDA0E611BE4614020 /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; + 47BC4789057D8955F9B8C1772F47248A /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; + 47CB1DCBBCC5C36889C4844863417462 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; + 47F980CA2B0C2592C755056481335501 /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; 4847B482EFCF00D61052680F980A3696 /* GDTUploadPackage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTUploadPackage.h; path = GoogleDataTransport/GDTLibrary/Public/GDTUploadPackage.h; sourceTree = ""; }; 4857951B8BEE52580B8BDC2812DC32B2 /* bit_reader_inl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_reader_inl_utils.h; path = src/utils/bit_reader_inl_utils.h; sourceTree = ""; }; - 485E068FB316247945A2F317A3D5F413 /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; 4865375D89B483266789A58AC5050D1B /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = Firebase/Core/Private/FIRAppInternal.h; sourceTree = ""; }; 486C52F0584E1522A2178F6078147EB2 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = src/webp/decode.h; sourceTree = ""; }; 4879320CF6BE6C0D063B667FE9A18098 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = Firebase/Core/Private/FIROptionsInternal.h; sourceTree = ""; }; @@ -4642,1548 +4665,1555 @@ 4890A430C0D350B24542A4C7BE7CF8D7 /* FIRCoreDiagnosticsConnector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsConnector.m; path = Firebase/Core/FIRCoreDiagnosticsConnector.m; sourceTree = ""; }; 4892E2CEE10C1961753364F628FDF10F /* FIRInstanceIDKeyPairUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeyPairUtilities.m; path = Firebase/InstanceID/FIRInstanceIDKeyPairUtilities.m; sourceTree = ""; }; 48B371CB114CA324DEE1CE9661DF246F /* neon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = neon.h; path = src/dsp/neon.h; sourceTree = ""; }; - 48B9FF3960F96FC17EC9EB715173541D /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; + 48C03813F43BDBA1A1A9D8891C892436 /* EXSystemBrightnessRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXSystemBrightnessRequester.m; path = EXPermissions/EXSystemBrightnessRequester.m; sourceTree = ""; }; 48CD830F7E24DD3BD7BF4A528CBACE50 /* Pods-RocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RocketChatRN-dummy.m"; sourceTree = ""; }; - 48D8A6A9316926B226AA53312D33BF18 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; 48E310BCE6CEE84413B0F6F4C8E4D4F1 /* GDTUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTUploadCoordinator.m; path = GoogleDataTransport/GDTLibrary/GDTUploadCoordinator.m; sourceTree = ""; }; - 48FF538A844945D4E1A5380E1C56738F /* BugsnagReactNative.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.xcconfig; sourceTree = ""; }; - 4912F21818C6FA63E3907CC95ECA7E6A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 49133F9E39E7DE84566F8F57F8499E5D /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; + 48E9ABA92A27F5B25D22B2476BD981DC /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; + 49059D17D7C5B037904B0A8D28A5FEA3 /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; 4947D5C4E29AACBE0A9E8E2A8B476931 /* RSKInternalUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKInternalUtility.h; path = RSKImageCropper/RSKInternalUtility.h; sourceTree = ""; }; - 49AEE8B3474A5568CDAE836D4544F99E /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; - 49B84496FB17E2566D4A934E487B8B85 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; + 4957DCF776385665BE1CA74C4C1D0F3B /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; + 495A57DB193FB42E8F444475F307CA4E /* 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; }; + 496C136B3E821FA2E95DA9B0665C0FE2 /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; + 4988DD1E50E27773794A0A25B414BFE1 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; + 49C1F0D487D2C5C5224F6F55109DC4F1 /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; 49EDFEC01407C66949E4CEDEB9038890 /* RSKImageScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageScrollView.m; path = RSKImageCropper/RSKImageScrollView.m; sourceTree = ""; }; - 4A28166F5EB00DB34183211A2D1723B3 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; - 4A4BE5994809BAF5D65006BAAC2754F8 /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; 4A785C0A08BEF4A7671FDE7C7153BF55 /* FIRInstanceIDURLQueryItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDURLQueryItem.h; path = Firebase/InstanceID/FIRInstanceIDURLQueryItem.h; sourceTree = ""; }; - 4A81435DAD7CD2A3348C7562AD5CF388 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; - 4A87B231929EFFC2E90F77CF24115852 /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; + 4A7A8D70217A1B4286D231AF4EDEABE3 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; + 4A7FCD47EEC660089D4553601E338AEB /* react-native-video.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-video.xcconfig"; sourceTree = ""; }; + 4A8692F8329A6E790C24A6E450FC3B4D /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; + 4A8998B1E2D3451AD0135D3A738035A0 /* RNFirebaseAdMobRewardedVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobRewardedVideo.m; sourceTree = ""; }; 4A943E73F3FD098F409C63811FCC88B1 /* FIRCoreDiagnosticsDateFileStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsDateFileStorage.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnosticsDateFileStorage.m; sourceTree = ""; }; - 4AC4AD41A05255764B21EACF92707CE8 /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; + 4AAC71A320ED283EFD0FED2E6EA4F92A /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; + 4AAD8C1F4911585A04EFD83712CC75A7 /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; + 4AB8BEDA02B948B9CF3D16A5FA07FB63 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; + 4AB984D733BC5993EE88552D2D202953 /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = ""; }; 4AD75E49E586BA3AC46DB981A0883F25 /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; - 4ADA1183F0ACCB431682507B4CC7D1DB /* react-native-video.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-video.xcconfig"; sourceTree = ""; }; - 4ADD4B3AE18C6A914C90C761F0A7027D /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; - 4B06F5722E272AC7C95122A1A32AB775 /* RNFirebaseAdMobRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobRewardedVideo.h; sourceTree = ""; }; 4B148D97AACF0F13E77EDD6FD6AB019A /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; - 4B197DB52E6AE91D411B5EF95389BD29 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; 4B1BA1048188A983B0FB46E3EF3EFFC9 /* Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Folly-prefix.pch"; sourceTree = ""; }; 4B245045CF92F0E6C10BF9A8D1AF8395 /* firebasecore.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = firebasecore.nanopb.c; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c; sourceTree = ""; }; - 4B63F1772FF1583DC9236F87DE5BEC9B /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; - 4B7D9379DF0C09770B2B2AD35FDAB7AF /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageView.m; sourceTree = ""; }; - 4B8B89C0B94AA9A885F792E8624A21E4 /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; - 4BAE0FE9CF7C7C40B298952D713DBC96 /* RNFirebaseFirestoreCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreCollectionReference.h; sourceTree = ""; }; - 4BB9B51007AA889B4110B34AEADB4D68 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; - 4BDBE883674DE8582992A71F9296394E /* EXRemindersRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemindersRequester.h; path = EXPermissions/EXRemindersRequester.h; sourceTree = ""; }; + 4BA488A9A61BC81D516B696AA827A6F5 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; + 4BA78FB33C4C0287447DA3B317ADEA57 /* BridgeJSCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BridgeJSCallInvoker.cpp; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.cpp; sourceTree = ""; }; + 4BEA44F8CC2B1A0D65D67723D9974753 /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; 4C0DCEC8BFB86E14D2C370E114885266 /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; 4C3EAEE65CDE17A9B4069549BC2EF2DD /* filter_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_enc.c; path = src/enc/filter_enc.c; sourceTree = ""; }; - 4C47BC8E63567B03ECE9A98F19E22CFE /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; - 4C6B478B9015F5BF081FD0D8BF2DC3F4 /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = ""; }; 4C913B6FE9B8FEE9A151E8CFF9CD6FD7 /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; - 4C9EE071CDAC3B2EECD1FB30E7DB3ABB /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = ""; }; - 4CA2D8F54C76A9153F9B373817DED279 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; - 4CA48834F4057D3E1182AFD7984E142A /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; - 4D434AB16BAD26810248208878A0AE42 /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; - 4D594F526CF6E386A6493F8062D99430 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; - 4D935A965951AD2A988F3D4908D8060F /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; - 4D9573F8234E7A253B8F152612009897 /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; - 4DBBDEC4E23E4994DB2DCF719C5D9810 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; - 4DF51D0CC454A66F5E3CC78310A27191 /* RNFirebaseUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseUtil.h; path = RNFirebase/RNFirebaseUtil.h; sourceTree = ""; }; + 4CBEC5485DE6C9A00D5015DB0887CD9F /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; + 4D0A620E84435E7D864A992E9F9A0818 /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; + 4D2026EF7F002044FF86490EDE632AA8 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; + 4D3114FED85A6E42DF24CC1F44CD66E4 /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; + 4D81F0DAD71C94F388CA56FA7AD475E9 /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; 4E09B42B565466629F7C364D9DA2D8CC /* quant_levels_dec_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_dec_utils.c; path = src/utils/quant_levels_dec_utils.c; sourceTree = ""; }; - 4E17146B13029796693BB08BCBD5390F /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; - 4E1D1699B9F50FFC234C23C80DCD5F73 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; - 4E27F6DE823CA3EAF16EA4D8E1D12EEA /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; - 4E2D977CCD40D6AE475F0F1759ECCDA1 /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileReaderModule.m; sourceTree = ""; }; + 4E2424D33337A4D5F5D68708C7C3170B /* RNFirebaseLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseLinks.h; sourceTree = ""; }; + 4E33362888E1CFC0E1660407237C36CF /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; 4E48C528D89C280BD3AB34ECF081E506 /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; - 4E5D1FBD6123E2EBFF4E8A8CD025B142 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; - 4E9D98E671C391AA6ACA3CD80C82BB92 /* RNFirebaseNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseNotifications.m; sourceTree = ""; }; - 4ECF350B828462243E9F61823031B222 /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; - 4EEF39F163209B9DBEEF20E98DE9CEFE /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; - 4F2070EA5C2939BB8B9EEF82F40F3162 /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; - 4F20C525FE5B14C489A413BC154DE404 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; - 4F3BDC993A75FDF37DAB3CEC3445DCC9 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; - 4F683AF2602FACFDC915252455977618 /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; + 4E582B228FEEC070129398FC2EAEA8F0 /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; + 4ED4E7550F1DF42016A2496E490E5448 /* EXAppLoaderProvider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppLoaderProvider.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4EF4D7E123638224D0B51EBBA8963165 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = React/CoreModules/RCTImageLoader.h; sourceTree = ""; }; + 4F13AE6B092B61B02D70ECF69BC57425 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; + 4F1A4DC7D806E7BE34BF58A9E2CA00D2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 4F81ADEB10A6B3A3B25B93A2E11378B7 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; 4FA7C78F56C449B41A76D32AABA514DD /* FirebaseAnalytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.xcconfig; sourceTree = ""; }; - 4FBE47804588921FB73C3F709A9EB9B7 /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; - 4FD392D07628F0FE9008C4C7FC653FED /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; 4FED780AB8B230BC37FD0DA6B2D79D9D /* GDTTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTTransformer.h; path = GoogleDataTransport/GDTLibrary/Private/GDTTransformer.h; sourceTree = ""; }; + 50050C62246B736C56C79B2D8F35C32D /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = ""; }; 50101F492CFE7EB14B22368701DA6D02 /* GDTRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTRegistrar.m; path = GoogleDataTransport/GDTLibrary/GDTRegistrar.m; sourceTree = ""; }; - 50252D537D48D9D7C2325EC5E98BD584 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; - 5040BD35048B8F691BA62F2531461875 /* RTCRtpEncodingParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCRtpEncodingParameters.h; sourceTree = ""; }; - 5091EDCDCAB59DCEB68EB64708BC6AD0 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; - 50B34085F0F13D095EF1FD8BF71002DD /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; - 50BD815AA69C87C42AB3BAEFD7F5E3DA /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; + 503E24161AC2E60D69DB7F568F8B2DB2 /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; + 508C8E5B4FBC388D865BC713B4CDB0E7 /* libReact-RCTText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTText.a"; path = "libReact-RCTText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 50E7E7D71FD6E23FA7514E5EEEF38DE4 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; 50EC88EFB8C300264C2A2020EECAECB5 /* RSKImageCropViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageCropViewController.m; path = RSKImageCropper/RSKImageCropViewController.m; sourceTree = ""; }; - 5118A149A8E980B6A5ECE891F4C115EC /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; 512AB02EFC3F106A433D1F8864FAB5E6 /* RSKImageCropperStrings.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = RSKImageCropperStrings.bundle; path = RSKImageCropper/RSKImageCropperStrings.bundle; sourceTree = ""; }; - 515D4CCFE37889074F3E05277EAF55AC /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; + 5141408A3C2FEE10C52ECEB85B4155E4 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; 517AAB99067CE5090E7DA2368B77BE6E /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; - 519BE69174D61344D2C6AEABE9A5A15C /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; - 519D1636DB8FD61EC9BBEA2983CF7EA2 /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; - 51A48D2791625EEF33A6B66708F3CC8B /* RNFirebaseAdMobInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobInterstitial.h; sourceTree = ""; }; - 51AC96BADB4666318F48A67EE9D1E934 /* libYoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYoga.a; path = libYoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 51C06B8346CC58F2C59DD750882D83E7 /* RTCMediaStreamTrack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCMediaStreamTrack.h; sourceTree = ""; }; - 51C1E4B4335F14E33F3FDE9C641C2237 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; - 51C65E47429B552B172A74DDEB48E37A /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; - 51C7987CBEE2E31983712A75CDE006A2 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; - 51DFF9436BC80FDF52DB91E94B923B33 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 51EC97EF3866E7F4A04B02D3C4B3ED13 /* RNFirebaseFirestore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestore.m; sourceTree = ""; }; - 52047F9EBC8B13FC85CCEAE747785483 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 520616552F4CDC6711A250D688991868 /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; - 5231A22C48E362EB0DD36886103DF5CC /* react-native-keyboard-input-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-input-dummy.m"; sourceTree = ""; }; + 5196FE966ED0E6E91746B450DFAB0838 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; + 51A9F82B4171565DEB6092151827D22F /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; + 51C13E1EAA956D76E06508287F9753BC /* RTCEAGLVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCEAGLVideoView.h; sourceTree = ""; }; + 522F10730E194A3037BCDF996A47E81A /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; + 5257976D35ED1ED6929F44302C576FD0 /* 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; }; + 526CAA4479506B054FDD902FC6CF1464 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; 527125D5A4B8AC39BBE2295228318B0B /* yuv_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_neon.c; path = src/dsp/yuv_neon.c; sourceTree = ""; }; - 5278B1FEB9A35D11BDF58962E9945138 /* RNFirebaseNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseNotifications.h; sourceTree = ""; }; - 529EC12D2F101280E3C43C739F6C4329 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; - 52CFC8319E55A485B1CFA0F4F6657FD0 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; - 52F89AE914D50068C9FE8BF233C8C28D /* react-native-keyboard-tracking-view-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-tracking-view-dummy.m"; sourceTree = ""; }; + 5272D0CF4BF47B787A08940E3AB2ECF1 /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; + 527E034D119A5442CF99CA23766A658B /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; + 52BB84C18FFA26A6BF6F78D149F2F769 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; 532A3924AE2B062FC4E6FAD7612CB25C /* picture_psnr_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_psnr_enc.c; path = src/enc/picture_psnr_enc.c; sourceTree = ""; }; 534B020E4ED8D612FD4EE4FE6597FF40 /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = Firebase/Core/Private/FIRVersion.h; sourceTree = ""; }; - 53507FDF3A11C8248CC06B92D2272C13 /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; - 5392923341C75A0A2940F9D97D894C0D /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 536E085AFAD167F6CAE31F62B9700186 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; + 5394F24A17B647EC262837BDBA53C7CB /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; 5396094C894A84A05ED26CF9D039DDA8 /* rescaler.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler.c; path = src/dsp/rescaler.c; sourceTree = ""; }; - 53A65B402C67A91B50D4AF5E7B143028 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 53ADBB31A8997EC58CC2A4D300371A98 /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; - 53B0CCC5FA34C3A010004A258FBB60C3 /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; - 53B6615FCDCDA71353042CEB7E964F91 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; - 540BE54E6D353A9726CE1ABAC8D0F3B7 /* RTCConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCConfiguration.h; sourceTree = ""; }; + 53BE641ABEE70F3C776D5A57234BE6E0 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; 54133D9F4117665869466A5C369D41FC /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; - 541BA8CA202444E82155D24B413099D1 /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; - 544F265948AA6E54B679E21CF0B43D4F /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; - 5473BA03156039A43CE7FBC9218B8EF6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 5473EF292720C0B7F284D45EEDEFDB15 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; - 548D093BA6436E28D5E64ABEF5BC20DD /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; - 54A1941CE328BA47B2753D09B05841F3 /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; - 54B0BBE1032EA46D33D5ED1F029C0B1B /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; - 54B5CB36DEBB42F4E0649F4F12104DA0 /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; + 5443E20FCAF7E2D163807DE044983E50 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; + 54460D655C793C68BA47321861CB11F3 /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; 54BD948E35981DC92747E6BE93881C75 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; - 54D57F9A5F129DB563DB63D2EF975180 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; - 550328F52CC3C6883332344007BFF391 /* RTCIceCandidate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCIceCandidate.h; sourceTree = ""; }; - 551027FA80229BFBA3F0E2EDEBB67A10 /* react-native-keyboard-tracking-view-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-tracking-view-prefix.pch"; sourceTree = ""; }; - 5538474B2860C1237420F4669067F4A4 /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; - 55658354B353F2230FBBC65FA8D1D406 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; + 54F9E394F39D66C80BDDB1EEB2D34068 /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; + 55154B54EE4865F57F5711F9AEE66225 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; + 55AE24A9531DFA46C30FDEA89B825612 /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; + 55B2E31CB23A3A9BFCA8049764933D32 /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; 55B3F61F2EB9BC6E05666B3449736569 /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; 55BB3DEAA86586C11D4ED2FEB26A0794 /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; - 55CDE9C58723ADE684A7D823EE7CDA20 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; + 55BB970DFD46CBAD6C8010ABFE55B961 /* RTCLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCLogging.h; sourceTree = ""; }; 55E1AC173553BFDD838D58A54A2D1E42 /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; - 5623DDE9035119EB1DA63CE5A5C8E2CF /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 5649BC01BD083848350299D96C614D5E /* WebRTC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = WebRTC.h; sourceTree = ""; }; - 565A9BBF7857F9A6F627DF93296A6C48 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; - 569F787951278B680CAFAE9ED37EF891 /* RNFirebaseAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAnalytics.h; sourceTree = ""; }; - 56AB738FCCB8FB6996AD995E8A0BC641 /* RTCVideoFrameBuffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoFrameBuffer.h; sourceTree = ""; }; - 56CC7C3D3536DCD6CA439D0D445B8FEE /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; - 56DD71371D66F0C906E1614C648B19DD /* RNSplashScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSplashScreen.m; path = ios/RNSplashScreen.m; sourceTree = ""; }; - 56F09924EA9BFCA9898A396EFB5B5EEE /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; - 56F50B475006F5C7C264F551848907FD /* RTCTracing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCTracing.h; sourceTree = ""; }; + 55FFD76EB09D336F689900DD9663CCE2 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; + 5609275DFB5D90D9172DC2ACEBB53D7F /* RCTVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideo.m; path = ios/Video/RCTVideo.m; sourceTree = ""; }; + 563822FDB79137D0421AAFBC6FBA7A59 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; + 566D1139888E4299C0F78272DF7FCCD5 /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; + 567B56D2C796F5972DB5525C5FC67726 /* RNAudio.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNAudio.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 56AB378952DF036D49BED91E5F1F7340 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; 570EC5C510253E37038C8008EE1F4FF9 /* FIRInstanceIDTokenInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenInfo.m; path = Firebase/InstanceID/FIRInstanceIDTokenInfo.m; sourceTree = ""; }; 571450E9D18ABFBBE1E0C3790D7FB52A /* color_cache_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = color_cache_utils.h; path = src/utils/color_cache_utils.h; sourceTree = ""; }; - 572A3CCCA4815398446A9D98310556FA /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; - 5767849105DF5DF08A153E973779C2F7 /* libQBImagePickerController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libQBImagePickerController.a; path = libQBImagePickerController.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 576B502B8536C0F6818BA92FDC3AA4F8 /* 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; }; + 572715EDC500FF86E4F453FCD27829F4 /* RCTVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewController.h; path = ios/Video/RCTVideoPlayerViewController.h; sourceTree = ""; }; + 572F35FF9A03047E01309659B1FFDEE7 /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; + 573697D869940F3C95F1F1C9304649E8 /* 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; }; + 5765E8F9CE5C4EA184E6C1F2E85CE1E1 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; + 5772B55631A745C37783EC7C709EF79C /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; + 577F3CEA612E64199FF56159EBE2DA0B /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; + 578BA57E573FD4A55295FA5E25CC58DD /* libBugsnagReactNative.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libBugsnagReactNative.a; path = libBugsnagReactNative.a; sourceTree = BUILT_PRODUCTS_DIR; }; 57B2CC75CA8E3F32098308781F12F843 /* FIRInstanceIDVersionUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDVersionUtilities.m; path = Firebase/InstanceID/FIRInstanceIDVersionUtilities.m; sourceTree = ""; }; - 57BE4086EE8050E104190F1EA245D70B /* 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; }; + 57C5AE81E490D8342312D188A1807F15 /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; + 57CE1D18A14A6BABC2FC5E303D8B9D7F /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; 580CB2C1FA2261CA43BED95F16C84F76 /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; - 5827FBD292A7B6B9D9D09650FB0B7754 /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; + 5820B13AE1105DD1DDCD6B35BDB6AF92 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; + 58335CBB2F8ADFEE01930DDCC188925C /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; + 5833F8205A66F0EF65029B4686DADB52 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; + 5846A5D53C266A75875A578049E04E0C /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; 5854841CAB4CD463DE3F4F1DFBE088B8 /* Pods-ShareRocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ShareRocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; - 585996EA11934C47C3280BCAF61A322C /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; + 58C4A07324C9BBD9B4B95C41AFFE98D5 /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; + 58DE49C0120CA04B88A594A67551752C /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDataRequestHandler.m; sourceTree = ""; }; 58FE1C5101D64A38EEB0E2533961D856 /* alpha_processing_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_neon.c; path = src/dsp/alpha_processing_neon.c; sourceTree = ""; }; + 5903CE137B6C6E815CDF61D0FE240FEC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 590D474B2C21D751DEFC6E01EAA6C8AD /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; + 591BDB34AACE234EF9AE85B17E2C976D /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; 592BB6B8234B8E4CC08CD548972BD2FE /* FIRCoreDiagnostics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnostics.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m; sourceTree = ""; }; - 595463DD6247AE89E1B71AB2EF2B412B /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; 595BF48F06D1D9107E6563EE99FCFC18 /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; - 598152B889676E3C4637F003E88A8661 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 5983F4816DA7116A310D03C866384722 /* react-native-jitsi-meet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.xcconfig"; sourceTree = ""; }; - 59C41018B72E4C05F42F13F88BDA59E6 /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; - 59CAA48CCB157B840654CD64DE39DC0A /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; - 59D390ADFA929F123753582B55482667 /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; - 59E0C30FDA2D0947DA0B6405EDCEFD81 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; + 5972DE267E881AE87853079EF15A3FB9 /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; + 5990395B1D15F3D2662E2B0960E6047B /* 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; }; + 59CA7C5E4ED263B42048A5E611944826 /* RTCRtcpParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCRtcpParameters.h; sourceTree = ""; }; 59E71DEE276ED052E4EA48DF3D8B82B9 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; - 59EE6F1F21B6DE160F6718AF2B0B88AE /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; + 5A0786DD9557387B23E4AE8C3ADA815E /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; 5A1175049F88CB8B0F9A99BD424844A0 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; 5A1A7607FB0F59CB4D9CA4137D10A849 /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; 5A4DE8C9C9112596CBEA853A84555850 /* color_cache_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = color_cache_utils.c; path = src/utils/color_cache_utils.c; sourceTree = ""; }; - 5A85025A7F35F2E213BAF098AAFE06DC /* NativeExpressComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = NativeExpressComponent.m; sourceTree = ""; }; + 5A57C4F1C485AD1A3FD1210051EA9E49 /* RNFirebaseDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabase.m; sourceTree = ""; }; + 5A7308F84DF5142997D5175D62872E25 /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; + 5A737DB17929F15A37BFBD246677EE5D /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; 5A851005AF38D640F29903269B8A7FE4 /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; + 5A874A22D7671C43E98832DCC959F89F /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; 5A88FD8114BC9BCAEA646DD2C5C88977 /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; - 5A9D12858C98B132B37E19F52FEE8838 /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; - 5AA3E9AABC01B31E9DB6C9F889B2726D /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; - 5AB66BC78E71A7E62B25D037FA6FFFF2 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; - 5ADA3FFDD6C373D6CD99BAAA0006DF8E /* 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; }; - 5ADEA1A8FB531F75151FDA17F7DF56FF /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; - 5B40C52803C9F7FB3C31F0F494C2372C /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = ""; }; - 5B5D0AAE2F91D85D579503AD68DB2F6D /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; - 5B6930102712EA7C18C4254CB7D1BF16 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; - 5B7CC60875E6C101D016CB03063CBD2D /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXPermissions/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; - 5BA667A7AF2D5B4AD9BD9CA5982CD70A /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; - 5BA88B3B28AF8D1F1AF0C5B1F8C0C5D0 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; - 5BE2A0B36C52E4559BC07F54B9A82035 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 5BEBCC6ECF678F0FBFC11E586996E7F1 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; - 5BF6BC505449748853B04AAB02DF4BAB /* RNFirebaseFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFunctions.h; sourceTree = ""; }; + 5A8A8C33EB0EDB9C95243DD765FD381D /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSettingsManager.m; sourceTree = ""; }; + 5A909E30365AD747E8B59F723B160C95 /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; + 5ACF54C9EBE01939512FD4D0284F68CA /* RTCMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCMacros.h; sourceTree = ""; }; + 5AE46C4D8BE44CFD170DB603316B972B /* libSDWebImageWebPCoder.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImageWebPCoder.a; path = libSDWebImageWebPCoder.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 5AF94D4889A5AD54146EACCC531D3FC2 /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; + 5B17F5FD7E71FEDE5A02B0200C443138 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; + 5B722D73E72D315BA5EBD3A0F5103B99 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; + 5BCD5E2D7B6E8BC0283363F8F13FDE0D /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; + 5BDCA2B511AA84A52E9E0DCE3384D2E2 /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; 5C13C29DE2089FADD1CD243A263A244D /* GDTUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTUploadCoordinator.h; path = GoogleDataTransport/GDTLibrary/Private/GDTUploadCoordinator.h; sourceTree = ""; }; 5C15AB22352ACB1710562384C58F2C31 /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = ""; }; - 5C1A6AC3DF6A802DA2683DC022CF657B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 5C2D3167765BDE5DFEF39D55466493C8 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; - 5C449790E042A3AC81AB73A2CE6B3EDD /* rn-extensions-share.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.xcconfig"; sourceTree = ""; }; - 5C802E1E8F1581611CCF7BA0063223CD /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 5CAE1E12567C4AC8AAB010F5B5299EF1 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; + 5C1DC4FF1D7C7368AE2CD9A9E2D4A079 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + 5C5D0B1E26192BAFC79DDEDDF5A11BEA /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; + 5C622AAFD77A2932F3BBE4F9F22FC7C9 /* RNCUIWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebViewManager.m; path = ios/RNCUIWebViewManager.m; sourceTree = ""; }; + 5C7D03E05CA0E8ED4FF67412B79F3FD0 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; 5CB98D2DDAE2A55A768A30FDFCFDB9AF /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; - 5CD0C0E15FE92C2CD6C99AB6482A37F6 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; 5CE7C17AF0DABC49445CE80EBA378574 /* FIRInstanceIDKeyPair.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeyPair.m; path = Firebase/InstanceID/FIRInstanceIDKeyPair.m; sourceTree = ""; }; - 5D16295547E5670D3B98A08360078F4C /* RNFirebaseAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAnalytics.m; sourceTree = ""; }; - 5D2D884ECFA3E2FE46FCE4C6939B9FFE /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; - 5D3DEC355A295A702AD939CBCA570CCF /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; - 5D6D61748A1D09700824E7AB854F0EA8 /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; - 5DAE019E7FB1084DCF73588086F535FD /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; - 5DAFCE1971931E9347AD180C001F8B3D /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; + 5CF143D0AAD0A0E9EDC090C575946FDF /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; + 5D5D2C48B3820BBC9C8938CEC83480C1 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; + 5D9CBDFB01F4205B48664A623D0FAA81 /* RNFirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseMessaging.h; sourceTree = ""; }; + 5DC2762CAC29DB0CC70413E6C95CA944 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; + 5DE274C24107961E9EBB96060A1AC2EF /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; + 5DF7056840A2903181CF83B44D463F94 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; 5E012CF1DB5BB794D9C5E009E1DDFACE /* filters_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_sse2.c; path = src/dsp/filters_sse2.c; sourceTree = ""; }; 5E2164313A0C0905C5B30EACB4066FAF /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; - 5E2CCA3420B30843EDAC5AE8901604A6 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; - 5E2F5BB3DBC0E27EBE7BF3983F5113A5 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; - 5E313D984D28AC745889ED441BDC1EB9 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; - 5E381B5AAD30611617F9B25038A05E7C /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; - 5E3BDF1C000C4F208B97FE56FFED14A3 /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; - 5E947CD94981359E3C9787C0E96B5A69 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 5E98A1C2F0D6E45F92CA062D1F9B6783 /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; + 5E2239B2640BA20A1F0D9104DF434E8F /* EXRemindersRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemindersRequester.m; path = EXPermissions/EXRemindersRequester.m; sourceTree = ""; }; + 5E4C6A6EB5AFDE1CD3685A958B4E98A1 /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; 5EBA4A6D0EC6B5A642D1EFBD1391780A /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleAppMeasurement.framework; path = Frameworks/GoogleAppMeasurement.framework; sourceTree = ""; }; + 5EBD8D887615F5331A2F84E2DF08C5A1 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; + 5EC008EDF98EEA027FFD0D31FA3FB39E /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; 5ECE681DF01112622A1E85860849C2D0 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; - 5ED3276AB5A7CC1FC6981F6BFB803FC4 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; 5ED8C8A00B509170203FB4A02642BFD6 /* GDTCCTPrioritizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTPrioritizer.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTPrioritizer.m; sourceTree = ""; }; - 5F6253E6A38DFCFB26F4B0178A268ED6 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; - 5F7069FF59F1735B403A2682F109F68E /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; + 5EE502E4120DAA7BD0F02A66BE40A332 /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; + 5EEC6DD11BDA673BB53D139FF0BC846E /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; + 5F007CD62A49E9DCA8495377094A803B /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; + 5F064E42B455BE53CAE2D7E6B59201EF /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; + 5F17C21DCA9744110D947283A8152F82 /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; + 5F1FC0A0222927DCC4F5B9A1C28E29C7 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 5F5A7E23867B636C356012B22557ED2E /* 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; }; + 5F7EB36B79A7D5F3C290947F7522B788 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; + 5F86DAA21566953F371995177BF826DC /* libRNFastImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFastImage.a; path = libRNFastImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 5F9CFAE2929D195D6DDAC223ACDE0C9B /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; + 5F9F166DD917B5C1FDD38A522C80A4AA /* RCTBlobCollector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobCollector.h; sourceTree = ""; }; + 5FAA43024A9ABC65BE0D1E3D002CD556 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; + 5FAD6C32E0686A70C099A092BF90E067 /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; + 5FADE7C54F900C8DEE5447960742499C /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; 5FB16BA3DC25064CD60A2F569316C1B1 /* GDTLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTLifecycle.h; path = GoogleDataTransport/GDTLibrary/Public/GDTLifecycle.h; sourceTree = ""; }; - 5FC3B9919FB23C6ED6EEBCB4F7118FB0 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; - 5FD95955D3B4765FEBC08CF7331782A6 /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; - 5FE5261A84C48DFD6D4E6F2D179451E2 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; - 5FF8B9A845F797E602C93951FB9ADF44 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; - 5FFE160F8480C5134B62F8D18FBB2D06 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; - 6026AE027DAB1023A35C124CD726A66A /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActionSheetManager.m; sourceTree = ""; }; - 602CC196350DA341701989B3B1F7EB79 /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; - 602FA28D3B195AF84796D141D0AA5D78 /* RTCRtpTransceiver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCRtpTransceiver.h; sourceTree = ""; }; - 604563858054916C05B610693C60A4C5 /* React-RCTActionSheet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTActionSheet-dummy.m"; sourceTree = ""; }; - 6052CE7E6233D6E9F70EC09AE944FF2D /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; - 6060F8FC98DC79960340C414B470DCC6 /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; + 5FB925A9C6C7A5324D5B20A7BA0AA7D4 /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; + 5FC5F9BCF241EF73CDFB7493D7FE5198 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; + 5FC607DFD390514534819C0DE585EAED /* RNFirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseRemoteConfig.h; sourceTree = ""; }; + 600EEFADE871FC0F701B0BCF50793CCA /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; + 60169723F416C6E12FBFAC63CAB57B8F /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; + 6036B0874238C1BA500770702C08A9CF /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; 606428EC8C93FD3C60C0FD77CFCE5C62 /* FIRInstanceIDAuthService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAuthService.m; path = Firebase/InstanceID/FIRInstanceIDAuthService.m; sourceTree = ""; }; 606614A35A3F0F9325365CAD1EDE57AA /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = ""; }; + 6086141A9B5A9D0197F805079033C2CA /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; 60A0EB8011D3CA4F519D993FE79606AD /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; 60AA22BBCFCF2B724A33960D8EF6F64C /* FIRInstanceIDUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDUtilities.h; path = Firebase/InstanceID/FIRInstanceIDUtilities.h; sourceTree = ""; }; 60ECCCC43690D9CB6A582FE619243E25 /* RSKImageCropViewController+Protected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RSKImageCropViewController+Protected.h"; path = "RSKImageCropper/RSKImageCropViewController+Protected.h"; sourceTree = ""; }; 60F086DA74BF133AD68E714453CF3E96 /* FIRInstanceIDTokenOperation+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceIDTokenOperation+Private.h"; path = "Firebase/InstanceID/FIRInstanceIDTokenOperation+Private.h"; sourceTree = ""; }; - 60F75C2B510F937A8D6A966D1DB9567F /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; 610B0A128056CC6126A005BAFAA887F6 /* vp8_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8_dec.h; path = src/dec/vp8_dec.h; sourceTree = ""; }; - 6140962E25427DD94594E5C9A8736E2F /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLinkingManager.m; sourceTree = ""; }; - 614A73D88C1380781FFF21A62E788F4E /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; - 6166575A9AA35BDB52E4FF7CB028DF04 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; - 61668DB60F50D901EF22075B3DCCACF7 /* 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; }; - 617F712DE7450321E2D0378105C832BD /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; - 61A2A4C72F57C043E31C91AA839CF6F5 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; - 61C3084A77B2BAB03030D4E584D23AE9 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; - 61FFA59D4E091DA878EF080AE1CCB6EF /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; - 6211AC7452810F7BFBA376A5CD2354C5 /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; + 61291D7351199DFFA919257072AE176A /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; + 612C1AC74F2961E46BA1C1F9193F921E /* react-native-safe-area-context.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.xcconfig"; sourceTree = ""; }; + 6175E2955F82A4C443773B0CE97A2B19 /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; + 619246498A0A6A66E5E04CDDDD853542 /* EXAppLoaderProvider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppLoaderProvider.xcconfig; sourceTree = ""; }; + 61E4C6ACFADF5F0FFF6A5B865C0C8092 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; + 6201253636E913A3A0D972B978096D59 /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; 621455A6189A6D813A2BF66B2FB2B919 /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; + 621E02A8CCE771D7BDA3F07506D55844 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; 624F1319227376756C5B6B817F0358B7 /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; - 6257AC3E2DA31BB3E01EE99164AA9070 /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; - 6271BC82171D5F738496BFD7D3EDE5D0 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; 629B780CB6C81BC6E3CDB2322C8D9EBD /* FIRInstanceIDTokenManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenManager.h; path = Firebase/InstanceID/FIRInstanceIDTokenManager.h; sourceTree = ""; }; - 62A1499BED17DB9F3F41D75009D9E620 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; - 62ACAC5E7A06BE7F1B445F549B65DF73 /* libRNAudio.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNAudio.a; path = libRNAudio.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 62DE8DD76FA9B8FBCA08B5A0ACE36356 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + 63138858F5592323DEE334EE1BC465FD /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; 632D89C1E5C1CB57B37DBC3D0B402B38 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; - 63388F2BCE5126FB513A2351B6A2BD80 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; 636B396301284754A0C275A5C8C6D19B /* vlog_is_on.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vlog_is_on.h; path = src/glog/vlog_is_on.h; sourceTree = ""; }; 63AFEED08855FAF445DD96C3C4FFCD3F /* cost_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips32.c; path = src/dsp/cost_mips32.c; sourceTree = ""; }; - 63C14DDCE72A4E5D97673C5C74DC0F46 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; + 63B6534680C0B20907995BCF1F553941 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 63C86DC2C6226AC8085ABDE12400FDCF /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; 63EC4C3D4DDABFD3BBED1D5DB0B73EE3 /* alpha_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_dec.c; path = src/dec/alpha_dec.c; sourceTree = ""; }; 64095BD0B41E161836B45B19C83132AC /* ssim_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim_sse2.c; path = src/dsp/ssim_sse2.c; sourceTree = ""; }; - 6436267E744D2F7B2B077E186BD29DC0 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; - 646D4FEBFFC5D41B5F6A181726F6CFB5 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; - 64AD98C457C1EDB766B2F16343FE2A0C /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; - 64D49FCE0BC019ACA1AD34E2A11742A8 /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; - 64FA75301D624D64846B47027E8E77A2 /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; + 645DD68B4C7BA5F1A4E047A531EF3640 /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; + 64767E09B935FC6198E25614C280E48D /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; + 6486B62D1BE044C670C172DFF3227E97 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; + 64895D06E2354A47652A676488CD63F2 /* RTCVideoTrack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoTrack.h; sourceTree = ""; }; + 6490592C6AD0F26F3931F5C713A4E4EF /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; + 64ADA5A37C6C80A0E4627AC0385FF7DA /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; + 64E2422412C6521F5985B0A214977611 /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; 650AB6A4960DB8AB8EC84DAA3B673C71 /* yuv_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse41.c; path = src/dsp/yuv_sse41.c; sourceTree = ""; }; - 650FFC332195A1D747F6928FB57DDD96 /* EXAppLoaderProvider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppLoaderProvider.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 65314EFD45FF479FE3873392325FFCA1 /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; - 6576A3D11BEF41D5FA17A26087FF11EE /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; - 65A3F669B437D64C46731A571F815F4C /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; + 651B1DA5A925370B0A1EDB7082B8438D /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; + 651BADE3C93BF8E5CAE87709AEBEF393 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; + 651E7E66D65CDEFEFFB51D7F9C44CBB0 /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; + 6544A92C4E0FA3248DF12D822040187B /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; + 654CC2EE2389DC0BF9C429CDD23315EB /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + 655E7BA07A314B76CEFD1E46ADE069FE /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; + 6560E61B11839A6C43F486F71DBB77A9 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; + 65693A67C1BDB8B6E78AB1823E6202C0 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; + 657BCBBEE8A0A65B04A2205AD86978DC /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; + 65836FEEAE47439F0597FA49CAE88439 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; + 6592C6645F4F6E958633DE955A707555 /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; + 659A269762C07BCCCD06B381625F24C2 /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 65C1B15B22D02488D6EB60EF73121251 /* RNCSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewManager.h; path = ios/SafeAreaView/RNCSafeAreaViewManager.h; sourceTree = ""; }; + 65D6BAECB13B97CC1CF3A596399BA248 /* liblibwebp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = liblibwebp.a; path = liblibwebp.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 65DBF226D023A7A892612FC0E8A71FCA /* RTCMediaSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCMediaSource.h; sourceTree = ""; }; 65FB620DC5C3D0E52325F0302200B457 /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; - 66529168085BF13D1F96D56C10F5BA16 /* RTCVideoDecoderVP9.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoDecoderVP9.h; sourceTree = ""; }; + 663D581798F1AE2F2F2F9C435F8711BC /* RTCRtpParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCRtpParameters.h; sourceTree = ""; }; + 66499A1122D7FC740A65683AB128E1AC /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; 667BD2DD8232F3B014648070F87D419C /* CGGeometry+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CGGeometry+RSKImageCropper.h"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.h"; sourceTree = ""; }; - 668A99544C5125FEF9112E3BE8173DB5 /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; 6692124A109C0B6DE0A64CDF4BDCC3DF /* GDTReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTReachability.h; path = GoogleDataTransport/GDTLibrary/Private/GDTReachability.h; sourceTree = ""; }; 669F51CD7487DC6338745AC748F00B57 /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; - 66CD69948C7F4149204906340EBB5ED0 /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; - 670A510C8819A35C0FFE8B3CDED7650A /* RTCLegacyStatsReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCLegacyStatsReport.h; sourceTree = ""; }; + 66C6F8C0BEE2578205320376881774E6 /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; + 66D1E191EE8D6006F67565325E787A2D /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; + 67119D548548321F0FFE7E95FE0FDC8F /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; + 67335C14839DACAF0F9B087343EA0525 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; + 673EECF6EDA15A73134989558149C7F5 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; 67425038A4636DD4E5DDFFA80179302F /* RSKImageCropper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RSKImageCropper-prefix.pch"; sourceTree = ""; }; - 67585D4C5FBA7E512FBBC672E7BA8D6F /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; - 6783D109F54B3921CA42A49BBCF61D6D /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; - 678E3B811E2B5DAE511254082F40576D /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; - 67CB2C58555251A8CF370F17C38D713C /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; - 67E566C7ABDDCA6D458B5F60F84E5B2E /* RTCEAGLVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCEAGLVideoView.h; sourceTree = ""; }; + 675D575BC3EE510D8A1B018AABC11E10 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; + 67663D2955741E4F28AFDA315570F634 /* RCTVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideo.h; path = ios/Video/RCTVideo.h; sourceTree = ""; }; + 67DC896DDB6BFB74E91CF31D7E6DDCEA /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; + 67E6E074A5ED3A11F8C781BC2D5B704D /* 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; }; 67EE50FC4FC3129AB23E5485B79599B7 /* QBImagePickerController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "QBImagePickerController-prefix.pch"; sourceTree = ""; }; - 68052A294A6D9A870EEA319286B42172 /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; - 681071BC750225F967B40443B78A2217 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; - 6821BF3546D740723F0AE9F5C2D938EC /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; - 6825151067F4F9C9692BB07A19D757AD /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; + 67FE47AF8F3230485D48E64D18C7FAA4 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; + 680671720F1A7D62B039F14078F861A1 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; + 680D18079110593F12BB5BF78E604EAE /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; + 68104266FCA89891569DEEB4B4E94EA3 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; + 681DABDBBCF724F996BBBE7424640755 /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; 684D0A362437383FE39B4A110A68E2D8 /* dec_clip_tables.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_clip_tables.c; path = src/dsp/dec_clip_tables.c; sourceTree = ""; }; - 685F65A36534E04F0B9AD9CA269461B6 /* 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; }; + 68816F470AA9306413FF3B71D165AB95 /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; 6893302EFE047A8E68B0ECEB7CAFFEAD /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; - 68AE9021618AEA3A3835498E11CB6E1C /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; + 68A0586193EAAA0FDA5689FA78A48F49 /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; 68C5CE98BC85CE82C28A22C9EB015CAE /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = ""; }; - 68FECB0093AB4D2892F83593C416C054 /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; - 6928B4F8A8053CE75ECC6B5A5F36C92C /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; - 6959E0CA21B8E6A19ACA9DFBE7568D35 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; + 68CBA4578C7148CD3AFB7735BCABCFB7 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXPermissions/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; + 68D3341FCF40F5CF5594CFAECD249AB0 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + 6903BA9656FA1FDA362025E8D4A82097 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; + 6923095B5C533122502709335E1ADA77 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; + 69295757F6021A84ED2DFD60E89869D3 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; + 692E0A6F538450F43E1A8386D1F00E72 /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; + 693265ECC22B28EFAFAD387255BCF05A /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; + 6932E428340E10D46E9AE22CEE1C33A4 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; + 696E77670D70D9D42EE8087D67D0E440 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 6979F745024E59DEBF6A61E965DB9955 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; - 69D28CD3E747291CBDED94E8F270D224 /* EXAppLoaderProvider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppLoaderProvider-dummy.m"; sourceTree = ""; }; + 69ADE6A42D65F96620E5FD19507DC76D /* RTCDataChannelConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCDataChannelConfiguration.h; sourceTree = ""; }; + 69C3CC4A484D265A4AEA1BA14674813C /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; + 69EB7BF524AD0245AD2BA7B8EE24C5C1 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; + 69FBD73EDA7A5F15216DF60FA6CE4C5E /* 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; }; 6A07617C23A5A8F43832309D7931CD65 /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Private/GULSwizzler.h; sourceTree = ""; }; - 6A0A3F50A26FA605F31B77E82428F065 /* EXAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppLoaderInterface.h; sourceTree = ""; }; - 6A126D1A914BCA2DB2EF03CEF3A07BC0 /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; 6A19CB4381EC8DE430707CC50BC15A1E /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Private/GULLogger.h; sourceTree = ""; }; - 6A311D05428FA99B906B574F3AC2C9E8 /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; - 6A65FC483E3CEEB1485F55F67CD8811A /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; - 6A678F724671CC0ACFFB2FBD3EC35014 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; + 6A344931648C96CFB36A6D25EEACDD7C /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; + 6A3D59CAD2355BFE231F5BC7D309BB2D /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; + 6ABB3832FAC78038F5CA03BB7E60869A /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; + 6ABB3B9A70B7C524EF1EBB06045D1FBC /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; 6AC5E310FA30ADA42244538FD8256084 /* dec_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse41.c; path = src/dsp/dec_sse41.c; sourceTree = ""; }; - 6AE9963F24F79DFE3DC91B87C2FBD08F /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; + 6AEB8F93FF15D9E4E046432B41A1053F /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; 6AF18EEF141DF5F227AF06FE09036D47 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; - 6B1DCD13B19DC1F616E1F148BCA5DBB5 /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; - 6B1F7841E91ECC7B3E771D3CD4EFA831 /* RTCVideoEncoderVP8.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoEncoderVP8.h; sourceTree = ""; }; - 6B33C8498F9242E1FB81C79D40ACE51F /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; + 6AFF432B82FB8C187DE4B0169614D086 /* 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; }; + 6B2727DD3339BB88DB7A16E578C2A991 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; + 6B4DBCD71C27B1A346D8D62C12E3BF22 /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; + 6B51F6B6F5399E4AE55B813B2506B798 /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; + 6B72BBBD460676E45ED8FD674F815B8F /* libRNReanimated.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNReanimated.a; path = libRNReanimated.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6B891842FA76E72BEEA1C138AF1355C0 /* GDTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTAssert.h; path = GoogleDataTransport/GDTLibrary/Public/GDTAssert.h; sourceTree = ""; }; - 6BA3B7E2AE1C7C3F91FC867049DA2E60 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 6BB4C704EBDCF3DB3D2B9B5E2F24F411 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; - 6BDEA29BE76A4CD995FF5FF996D2E3AF /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedModule.m; sourceTree = ""; }; + 6BB8826901BD569F68A1CFE865DB78A6 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; + 6BDFF2C70EE039818C98480435A6DB0B /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; + 6BE7E30C650EE8CD55EB0738623C80CB /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; + 6BF364B0B4E5D2D25C15C7188AAB53F9 /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; 6BF737331995C7BA41E9EAB89FECD1A2 /* CLSAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSAttributes.h; path = iOS/Crashlytics.framework/Headers/CLSAttributes.h; sourceTree = ""; }; + 6C2292F1CE7237AD035A7F47CB460D3F /* RNSplashScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSplashScreen.m; path = ios/RNSplashScreen.m; sourceTree = ""; }; 6C3048BA25D9C7F05C9E07E5B74D946A /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; - 6C384724752D5B87BE1CEDC7D2F75D81 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; 6C4D7FD9F2DCB559C2D75CE9217CA668 /* RSKImageCropViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropViewController.h; path = RSKImageCropper/RSKImageCropViewController.h; sourceTree = ""; }; - 6C85A56AD116BB1363176296E8C76E8D /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; + 6C8671A0DC50529C47D3FFB143FF3AFE /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6C895B60D722554013CC24C5691C74F3 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; + 6C8FD51F23BEDBCAE09AE95284EA42C6 /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; 6C9F9138773ED5AAF70DA2EB4951AC9A /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = Firebase/Core/Private/FIRComponentContainer.h; sourceTree = ""; }; - 6CEDB0D6D02C6BE9F14AA5FE2A38372C /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; - 6D0D8351A0AFB8B617B481D2BF67B56D /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; + 6CEFB3485E06EA5B2BADC8F2873030FC /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; + 6D03AFDE0E1E1CC61ED1DD1998A8A9F1 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; + 6D2CB35C37F72D6B5464B5C5A54FF005 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; 6D3DD62244FDA6E6C36ACF68585C753E /* upsampling_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_mips_dsp_r2.c; path = src/dsp/upsampling_mips_dsp_r2.c; sourceTree = ""; }; - 6D49AC7AE40388D4E49E1A9D883574C1 /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; + 6D59133B6C7357C885B8060F20D80884 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; + 6D5C217DC7786CC50A2634CEC5E4211A /* RNCWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebView.m; path = ios/RNCWKWebView.m; sourceTree = ""; }; + 6D5DEE920EDB20E9B90F20D6566C5F48 /* 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; }; + 6D9C382E153E060B6AB643777323C8CB /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; 6DAC87828ACF9D8AE537F72FF4A4F57E /* FIRInstanceID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceID.m; path = Firebase/InstanceID/FIRInstanceID.m; sourceTree = ""; }; - 6DB0BA7FE57D86BCAE4AFE13789C90A2 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; - 6DCDEE3756A474945988DA54A6C93377 /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; - 6DEAC625D17C923841ACC83C2FDCDA15 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; + 6DB17FFC399B485798FDB4DCD00FE089 /* RTCRtpReceiver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCRtpReceiver.h; sourceTree = ""; }; + 6DB5CA6C84DC9CF88A2396E60E0E3A6A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 6DB8239AC448346BC395F6963BBA8AB0 /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = ""; }; + 6DD6F42C117C8BC29D4DE2E8B9BE620B /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; + 6DEA9914C54EB495C743EE6B7123C5FC /* libEXAV.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAV.a; path = libEXAV.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6DF74E94CF9E25426B544B546E1EAF7C /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; + 6E05E07DB306A19A19C8EC64818DC828 /* libSDWebImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImage.a; path = libSDWebImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6E0D257A452231D9919F802CBB1191B3 /* thread_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_utils.c; path = src/utils/thread_utils.c; sourceTree = ""; }; - 6E4E90F74CF7C46B31C84DC34B9B86A3 /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; + 6E2399054B0E4B1837BAAE26A4F956D5 /* RNCUIWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebView.h; path = ios/RNCUIWebView.h; sourceTree = ""; }; + 6E5B90F57D3067859B96065F2ECCE16A /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; + 6E63E1E88A927C1D9DF91057F3E2DF75 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; 6E73667EAB76F89D466346DF2412413F /* yuv_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips32.c; path = src/dsp/yuv_mips32.c; sourceTree = ""; }; - 6E81E575145F6A12290F3B76FEE61239 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; - 6E8BD3B09A237ECDC94F116B47E18C2F /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; 6E92474C334E840C7FADC52192C0043E /* FirebaseInstanceID-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstanceID-dummy.m"; sourceTree = ""; }; 6ECD9699C19C8C6F431640ED88152EFA /* lossless_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_mips_dsp_r2.c; path = src/dsp/lossless_mips_dsp_r2.c; sourceTree = ""; }; - 6ECEA362BA726887D4D3869E86397B90 /* RCTVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewControllerDelegate.h; path = ios/Video/RCTVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; - 6F1436153B58436CB30D0D8DCF949A58 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; - 6F4745F36F4679B7151B5A5C6E16846D /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; - 6F75CCCD362839EA27A1E88A7D38E5F7 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; - 6F7977379199D30597CDC9944240F9E4 /* JitsiMeet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JitsiMeet.h; sourceTree = ""; }; + 6F50A9C5FAE8F3DCD54A64C1685E8428 /* RTCPeerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCPeerConnection.h; sourceTree = ""; }; + 6F65FBBBAB4B5907CB48474836EAF6FD /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; + 6F687D158AB84629B6BC16F908CCA02A /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; 6F86DC96EB0178B7C7BF8E2C8D153E44 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; - 6F96429BF5F61D23BEF9CBA59ABBB572 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; - 6FB5EB38561E65D3EF4253AE425990DB /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; - 6FD5C53F9420C953E97968EEC277D3F3 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; - 7007E5BD63700535A791FC56F083BFA9 /* libReact-RCTVibration.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTVibration.a"; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 7020C0643DD3F4598728470F8C085BB8 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; - 70669A610A42FE4F39BECE28CD4632B9 /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = ""; }; - 7076C6B8A820759FF5146F67E4D41BE2 /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; - 7088D934002FF5FD6C1FCD97EA5336B6 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; - 7097A063DC932EF4DC81F08558A0B484 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; + 6FA6C91032EBF0342AE414E3FD255BA8 /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; + 6FB1876F02B2FB0C5F29D988B6E3AB9E /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; + 6FCBB8A89C552E6D39E0C41C409BE701 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; + 6FDC36111855918B2B2EC72F82BB034C /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; + 6FEB1C239B3B874EAB1FDFAF2AA954C6 /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNGestureHandler.a; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; 709BF827BBE265C6711B99791806F011 /* CLSReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSReport.h; path = iOS/Crashlytics.framework/Headers/CLSReport.h; sourceTree = ""; }; - 709BFF4EAF2CDF772CFC20DDC685AB63 /* libReact-Core.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-Core.a"; path = "libReact-Core.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 70B970961C2F3B5000B0EE8ABF17A2C5 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; - 70D53277BEB6F1FD7F8214279B63494D /* EXContactsRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXContactsRequester.m; path = EXPermissions/EXContactsRequester.m; sourceTree = ""; }; - 70D83B3C8C752CC61DFAFE54CD30D369 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; - 70FCD345E2996FBA295A1851626DA0A2 /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; - 7109CEA655580ED91B75F927D0F3982E /* libFirebaseInstanceID.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstanceID.a; path = libFirebaseInstanceID.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 70C7E0B66AD4DEE9049384C1DEE47B81 /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; 710A21C1D548E46534D46ED9326EBCB6 /* FIRInstanceIDBackupExcludedPlist.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDBackupExcludedPlist.m; path = Firebase/InstanceID/FIRInstanceIDBackupExcludedPlist.m; sourceTree = ""; }; - 712C28D8153DB4FBC0218EF9578B8D57 /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; - 712C7E7317155EDB8C02A2D38CED634F /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; - 712ED9A35982875967AA9DF2575653AB /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; 7140F68790174D21FE0A2EDA07FF3550 /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; - 714D00DA0DC7E0E895AF109A52359A72 /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; - 717EE1F3241D7CA3F34703DDCC738F82 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; - 71808D87862895353675EE217E26D015 /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSettingsManager.m; sourceTree = ""; }; + 714F8966B0022C25EFB19C8121C8A1AE /* RTCAudioTrack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCAudioTrack.h; sourceTree = ""; }; + 7175D1998B8E5541F362B5AFA4403160 /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; 7181FFCDB07FE21BE0EE00B5DF442033 /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; - 71912D96CB52D6E72B8B2BE7F57AF914 /* RTCMediaConstraints.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCMediaConstraints.h; sourceTree = ""; }; - 71D668F96FAE4D0A055CDFDD5DD8D0C3 /* react-native-splash-screen.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-splash-screen.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 719C288348AA425392BAB76E5A486BEC /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; + 71B0D8D3D3136C027DCA0A5C9482113D /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; + 71B67FB99DFDF34429AE4141D65EA772 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; + 71C363E37185BB4997E2F5DB99601DBA /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; 71DFA1CB287620B31E51EE5A44A4CE73 /* dsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsp.h; path = src/dsp/dsp.h; sourceTree = ""; }; + 71EF16C90769C6A6B938AC12AA400214 /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; 7202AA3BD04233E4CE8B1992E972E345 /* SDWebImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.xcconfig; sourceTree = ""; }; - 7206AD40858137C2C95D47687B35CDD6 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; + 721566D0385A7429019E02ABB5197FCD /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; + 7216A032565B6464422EFE14760A1DF2 /* RTCVideoFrameBuffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoFrameBuffer.h; sourceTree = ""; }; + 726C1B2664776220FDC64EA7067EFFFA /* RTCVideoRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoRenderer.h; sourceTree = ""; }; 7289C8A37DAFE930F15415D6FF046AC5 /* upsampling_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse41.c; path = src/dsp/upsampling_sse41.c; sourceTree = ""; }; + 72942A7D22C13D239036E5CBF81E9FCE /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetInfo.m; sourceTree = ""; }; + 72A868378DE5C5494FFD4E6B80935751 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; 72B30F1B5D2D3007CC2F16BBAF746599 /* cost_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips_dsp_r2.c; path = src/dsp/cost_mips_dsp_r2.c; sourceTree = ""; }; - 72C34B123C348D7C5AB4218444FF9E56 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; + 72BC6B60B0A09D910DD548F0595DC562 /* RTCCallbackLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCCallbackLogger.h; sourceTree = ""; }; 72E543745F2C87F5282760789265CBA9 /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; - 72E6BCA3D7306CFFF701D26766498A5C /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; - 72F2F599E53648A85E26C4156B81AFF2 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; - 730463F9485034FFC10C8E01300968BE /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; - 7309A97BDAFFC8413AD37EDEFEFD3C75 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; + 72F610CA18A677F25011BCB77591D456 /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; + 72FD36C56C7615A02CEE73E95CA1575D /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; + 730C8FA5A42BD932184682E648E109A9 /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; + 7350275BD251B642BAB74FC441322D9B /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; + 735EAB53A7BAB574078D81C0D2728495 /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; 737B25AEF6C3F7B8C25EF3D58017DE68 /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Private/GULNetwork.h; sourceTree = ""; }; - 73F22E8B31686E17D1206A0A698338E7 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; + 7385A2E898653603A6A79A4F802CD2BC /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; + 738FBC154CF0E9D62D232459F3E6309A /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; + 73C96F87183854B9403A7A28CE021A70 /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; 73F3B335E56A3601DABA0FC0776BC8F9 /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = Firebase/Core/FIRConfiguration.m; sourceTree = ""; }; - 7442410208D42C715D30734F564DC2BB /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; - 745EEA1CF8981988CEB06F9F0B2C5D0D /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; - 748154CDB6B4AE4EF74124A0F9A3B530 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; + 741F8B4BE360F523AAE94014D77853A6 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; + 742C52AD86BA3D5A3574D1370B6B3AB7 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; + 744B7771C2A9BC9034B5B75DC4C0FA68 /* RNFirebaseAdMobNativeExpressManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobNativeExpressManager.m; sourceTree = ""; }; + 748A069A3B6E2BE85C0131B2C332FD28 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; 748E68FF8F0584C3062AE3DBE77FFA1E /* Pods-ShareRocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ShareRocketChatRN-dummy.m"; sourceTree = ""; }; - 749FC04447D2E0DE4AFA2431D9DAB8AC /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; - 74C5B099EAE467F69BF778D8C17007F2 /* RNCWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebViewManager.m; path = ios/RNCWKWebViewManager.m; sourceTree = ""; }; + 749DC7F7E9133ED7EF8E4BF0C3DCEC02 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; + 74AC1BAACC23EB74B404414837736266 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; 74DA632E81504F6FAF6AF978C00DB2C5 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; - 74E21148DF38CF77BFB90D2B15301B85 /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = ""; }; - 74EF26258C1C91BC9CC7A0116601B044 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; - 75262489B2DD9E36CABAD8F96B4D3039 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; - 75567E55DDA722B80AE4B76A5CB50B55 /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; - 757A21D63AF87B505D7A9F48C9C6F745 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; - 758CD3CD79E5DDB960072B757A0FB978 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; - 7595D7CC61617FA498C9DDBD523493F2 /* RTCCameraVideoCapturer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCCameraVideoCapturer.h; sourceTree = ""; }; + 752E498790A9E7EC557DFF8093ABAA4E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 75478D68F54983EDF815FD6B21AB4D88 /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; + 7563DB492F98B70BA9DDFC5C37BF41E1 /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; + 759DAB5BA82296E5F3DBDB47BB6E1F87 /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; 75AFACDBD8335C236D2F11C0BC8C0151 /* FirebaseCoreDiagnostics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreDiagnostics-dummy.m"; sourceTree = ""; }; 75B59D8ADC023FA9E188930F999F3929 /* quant_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_enc.c; path = src/enc/quant_enc.c; sourceTree = ""; }; - 7619BCBFA21762EA9F75697F41D74C3E /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; - 765A0E988AE74AA37F350DE0C7E5378E /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; - 7671275585D773EF29D1D407C7ED15B7 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; - 76836F796400E4E02A9010A6CDDD7755 /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; - 769B103E567E2271D63B84E14111DF4C /* EXCalendarRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCalendarRequester.h; path = EXPermissions/EXCalendarRequester.h; sourceTree = ""; }; - 769D16E0BBBBCABBE7F5A315FB1D4717 /* AudioRecorderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AudioRecorderManager.h; path = ios/AudioRecorderManager.h; sourceTree = ""; }; + 75D8082D84EF5FD5832C7FE5F25BFB7F /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActionSheetManager.m; sourceTree = ""; }; + 762DB7CC730FF5FC8363DCACD171FAD5 /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; + 7695A58E398410B2FC07F8D42181A8D4 /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; + 769ED9C8AF3E426734F313C4AFEE9D61 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; + 76A8100CC7BB9C534A18A8310DE1F11F /* EXRemindersRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemindersRequester.h; path = EXPermissions/EXRemindersRequester.h; sourceTree = ""; }; + 76BB0F64D39493D79E127825DE3F6FF8 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; 770C7186739996D7082568CCEFFA53BF /* GDTStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTStorage.m; path = GoogleDataTransport/GDTLibrary/GDTStorage.m; sourceTree = ""; }; - 7731C81FA0155090A0334A0E57395B70 /* react-native-splash-screen-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-splash-screen-prefix.pch"; sourceTree = ""; }; + 770CAD52E633FE8767DD4FBFE0EA9A30 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; + 770DE3D3478C6FAB108C8595F9243B15 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 772757A16324C61D46F81C91AF534576 /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; 773D989862F7804EC138068C0648671C /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = Firebase/Core/Private/FIRLogger.h; sourceTree = ""; }; - 773E7AF4488F669CAE4C15E126F53ADC /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; + 774D3BC7734E6A2EAAA21E4B11D5A811 /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 775C5F2D9351588B42DE522662B0967E /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; + 7767AAE46DE9FC6C676FFAEF7734AF52 /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "QBImagePickerController-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; + 776AE251A86EEEB3DC7F3C5AC146BDDE /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; 776D767CF2D3E09744EE4E72B37334E3 /* near_lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = near_lossless_enc.c; path = src/enc/near_lossless_enc.c; sourceTree = ""; }; - 776F39EA259FAAA98436B0E6941D9539 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; - 777BA992F56DD7BFDCE64AC3949B86EC /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; - 77980905B933DC6CBA5A89031914EEE0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 7770191861666A734A0B9671284F0096 /* RTCSessionDescription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCSessionDescription.h; sourceTree = ""; }; + 77740901B2C87FF8651D4854A7827888 /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; + 777EFF02AEE37793BA8E2A3CACFB2E87 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; 77CD8049365D030C4FA73602E6D9D867 /* cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_enc.c; path = src/enc/cost_enc.c; sourceTree = ""; }; + 77D3515313915883A91B4D382D37D81D /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; 77D4F80E797422D53F0251EDAED100C0 /* cpu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu.c; path = src/dsp/cpu.c; sourceTree = ""; }; - 77D98E1479E96A1B403182C9C22AD207 /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 77FA87602F55FB4A63DA8567BFA156A3 /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; - 780DDC9C63AB689CABFFF37736234AAF /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; - 782881264F37D7B95125BD0E4756C108 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; - 783C6A2F05BA0C839F198CEC78F9CAD0 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; - 7849C1539ADB91DA05CC853D3A02A4C3 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; - 784D2F08FE23F7C23D2BA6D6521E1391 /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; + 786FAE4427DCBD8624506EBA34FC6832 /* AudioRecorderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AudioRecorderManager.m; path = ios/AudioRecorderManager.m; sourceTree = ""; }; + 787277FA20763291550C252B95F59577 /* RTCSSLAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCSSLAdapter.h; sourceTree = ""; }; + 7878A0DFC4CAEB0223BB1438FC79CAA2 /* RNFirebaseAdMobRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobRewardedVideo.h; sourceTree = ""; }; 787962550B3A64379933CCF755AAFA54 /* vp8i_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_dec.h; path = src/dec/vp8i_dec.h; sourceTree = ""; }; - 7880C3DCF5EAE0386D8C364DAA78FC5C /* 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; }; - 78B3B6AE784BADDD5D758437222C65CB /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; + 78C3C493F439F70521EF694EB3035D60 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; + 78CAE23A439A44A2BBA74B554F7FA4E0 /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = ""; }; 78E80245ED31EA62A75571A2EC705E0B /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = Firebase/Core/Private/FIRDependency.h; sourceTree = ""; }; - 79235824C8211FBEED50E4749E521A44 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; + 78FAE0D508CEEB3C2F6F7607F61F6A60 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; + 79012EC3BEA910B1EA0A5BDD54518B6B /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; + 7907013961E66CFAB57B850B101195B4 /* react-native-video-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-video-prefix.pch"; sourceTree = ""; }; 79390E2773EFA92858139BA9E4C71C32 /* FIRInstanceIDConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDConstants.h; path = Firebase/InstanceID/FIRInstanceIDConstants.h; sourceTree = ""; }; - 794758E19E42CCEB6330231A141184AD /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; 797D106FB4A2A1743CC04DCBEBA74F92 /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; - 7997276F6893A14A22CA551705B8F16A /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; - 799F3CA914EFC240F482FC1A3409673E /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; - 79B70559438F12C7633C0677BC9192A4 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; - 7A096995BDDD186EB5EFB345A6923CFA /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; - 7A5DEECDA79F2835613CB7C24D2F6405 /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; + 79C312CC70D871E60298BB2AD50AA1EB /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; + 79DD40043775B63252A205F78915973E /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; + 7A4547ABE320FC123A36407A29057EAB /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; + 7A69CAD3BDA83AE301555B162C333302 /* libReact-RCTVibration.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTVibration.a"; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 7A75F46F02E1A2C5721662F565E64167 /* CGGeometry+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CGGeometry+RSKImageCropper.m"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.m"; sourceTree = ""; }; - 7AAB9F137D471BC732AF4577DA583C38 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; - 7AB2B342B4AC7A5E6A2972BC1BC18450 /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; + 7A7C3E173B755347C9AF5941C40E03F5 /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; + 7AC0B5BB1CAA9498E6514E0CAC55C6C8 /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; 7ACD3C43D9E249F86725376237B43D64 /* io_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = io_dec.c; path = src/dec/io_dec.c; sourceTree = ""; }; + 7AD1C07F3523B9BD92F621AEA3D38209 /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; 7AD8F59977EC8DDDFA47B22811A38C60 /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; - 7B033295ACFFCA9AC4BC2CC5C977D881 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; - 7B099DD6CF385627ACAF7A6055576885 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; 7B1C3C16447C4D321FC9269D1EF1A902 /* FIRInstanceIDConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDConstants.m; path = Firebase/InstanceID/FIRInstanceIDConstants.m; sourceTree = ""; }; - 7B6406E40908A277BFB0BB8BFEFF9318 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; - 7B7B349EA50F8AE8B9F99371816BF896 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; + 7B2C39C9CE469B4A332CBC27B252EAA2 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; + 7B52B5BB6216EBD02881F75790A07E13 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; 7B987C4280D9A94FAE75A8272553CA90 /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = ""; }; - 7BA859F8B13928A5192F098B418266DC /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; + 7B9CEBE1FBBDBB5D473461A39D9A65C4 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; 7BC88FFB0422846AFE4E6A298FADE780 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; - 7BDFD734CCC15D9C7CB26857B917EDF7 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; - 7BE78F517CB60485F9C194F3F800EC3A /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; - 7BF4B4144448496E54C8FD65B93FAEC9 /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; - 7BFC91D3401393A4CEBFC2334B7B3129 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; - 7C07529AA42AD79CD10707073C2D41BF /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; - 7C2411315370F0F40849929564814801 /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = ""; }; - 7C292364A20E94A203C3C11FD7B564F2 /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "QBImagePickerController-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; - 7C297843BEFFDFD616D44202F0742AD5 /* RTCAudioTrack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCAudioTrack.h; sourceTree = ""; }; - 7C2E004F8107F52F54333F8F5921536C /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; - 7C4E2AB246D3C5081E992FD4369A148B /* EXRemoteNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemoteNotificationRequester.m; path = EXPermissions/EXRemoteNotificationRequester.m; sourceTree = ""; }; - 7D327D66CE32DBD3D6CE9429208ABA31 /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; - 7D5E8EFCB31507CF01F3A4C9CEB4B52C /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 7D61CED42C1759F24C2897EBCF28E4A9 /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; - 7D639540297627EE72442F6BDEFD5777 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; - 7D91B77264527373475F8A9075E98D1B /* EXAppLoaderProvider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppLoaderProvider-prefix.pch"; sourceTree = ""; }; - 7DAFFA0E885CC760522BD3CD41B59D6B /* 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; }; - 7DDEEBE053612C76FD74E9E602204933 /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7BF4B1D10BA50A211991DE10B816A422 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; + 7C2180C4C2DD7664E68FBCB10059207A /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = ""; }; + 7C8566338D0CE244B41A17EFEECB1B15 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; + 7CA044417A337AFA0C9369FD09F890F4 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; + 7CE5605A2B52D2836D68F8BBDB58B1C2 /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; + 7CE570B3EB77507C794598F33BBDCCC2 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; + 7CF6B3841437E559192BB78C854424C4 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; + 7D0D2C3997CC7A1FAEEBC58E9B6916D4 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; + 7D16CB2D93478EF175BE2530948E2ACA /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; + 7D375B3523440620FA94C07A7D560133 /* RTCVideoCodecFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoCodecFactory.h; sourceTree = ""; }; + 7D40F6A39BDA61424A9DDD375D53593B /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; + 7D95A5D04E8E6EBFBDC82D9ADB73C6CC /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; + 7DC267C629FF91AC4E846925EB5D7A32 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; + 7DD742506322957037AD4D344E1508A9 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; 7DFCC2AFA198C5122CF36CF241F59838 /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; + 7E1BFA93837EAD077B5E764C1F41A4BC /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; + 7E28393C8733D732D25231F60C08E52D /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; + 7E37B494353BC92326215A87DDE58DC3 /* RNAudio.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNAudio.xcconfig; sourceTree = ""; }; 7E44349664D0426A037C5B87821D0D54 /* Crashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Crashlytics.framework; path = iOS/Crashlytics.framework; sourceTree = ""; }; - 7E7597417E3D7DD4332C5C84BB51990D /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; - 7EAD07054F7004035835349D6A771190 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; - 7ED0ED0C53429C59231D1524A1283A71 /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; - 7EDFBDF41CED6FAE41BB61442F0B0095 /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; + 7E703F06AFDE4E65AE2B5565E75925B3 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; + 7E73EC51CA130986D4435F5280FE62E1 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; + 7E9448FDF3CD6382B2BFC44BA0ADB4B8 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; + 7EB732C343DADB2C57363E1BB537C158 /* EXAppLoaderProvider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppLoaderProvider-prefix.pch"; sourceTree = ""; }; 7EE4EC581FC8ABD5F70E10BA7F595D5B /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; - 7F00EF48643A1BAD4E6F017588A3452F /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; + 7EE7679E2164599D79EC8C49619BB737 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 7EF374BC8CB16FB4250B0B4BA62CEADA /* RTCVideoViewShading.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoViewShading.h; sourceTree = ""; }; 7F08060C005CC41632EBBEFD89FB9DE7 /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; + 7F14E3D092C47891DDD7AD1F4EE5F85E /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; + 7F2D6539530FB35C3C707F3017E23932 /* RNFirebaseFirestoreDocumentReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreDocumentReference.m; sourceTree = ""; }; 7F3493479E8F6FE68508E0AE73EB96AD /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; - 7F349ED663509E3BB573D7629FF2E65D /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; + 7F48DE3A5D6D619A6A2F5633222411D1 /* NativeExpressComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = NativeExpressComponent.m; sourceTree = ""; }; + 7F67251E9C29873713656C6A8938E171 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; + 7F89F26A34B724335D974518272834CA /* RNFirebaseFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFunctions.h; sourceTree = ""; }; 7F9E02CB5AE96400A5D13DB49DC01ED8 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Private/GULMutableDictionary.h; sourceTree = ""; }; - 7FDEBB2E6A544C5B48D0057F999E8152 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; - 7FE814CFAB4A5C5A92A9A6ED48D7468E /* RTCVideoViewShading.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoViewShading.h; sourceTree = ""; }; - 7FF518877698CDD8197DAC93287BF22A /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; - 800C36B746A8C7FFA715AAF29B0DE159 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; - 8024E6D7A87A1352AB2376681FE77335 /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; - 802A3A41E328262EE0AB23980D8BA7A2 /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; - 80440715B10F2A9F22C602E9A6395021 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; - 80730B8B348D13FE7DE65F28AC23D786 /* React-CoreModules.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.xcconfig"; sourceTree = ""; }; - 807E3AD33EB396565457697EE2B4B260 /* RNFirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabase.h; sourceTree = ""; }; - 808E8AF2269D05C21D3D9C6352A7F413 /* liblibwebp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = liblibwebp.a; path = liblibwebp.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 809C5551A21A85F154BBD05AEC2776AE /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; - 80A8302F3687F959D295EB70EB085DFA /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; - 80FB878784C299522EF162ECF2E29A44 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; - 811757FAB06905B7FB9660C497BBC927 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; - 8123E787639BFD2900C6AA7A76A24C96 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; - 8127F159B44C1EC405717579C084C4AF /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; - 814FAF3CD3BE0AD73BF417D24534210B /* RTCRtpCodecParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCRtpCodecParameters.h; sourceTree = ""; }; - 816F58046DFE66F94DAEA4107A443B86 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; + 7FC9A6F5CC7241C3A23EE9D255DCE835 /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = ""; }; + 8053259662D09AA8415EC0F35ADD8FDA /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; + 8075DB9392E1E119627413F160134EB5 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; + 81525BB36C82A28549678A29CE808DB6 /* RNFirebaseEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseEvents.h; path = RNFirebase/RNFirebaseEvents.h; sourceTree = ""; }; + 816ECE8F769A2040BE9C8311A1BEE039 /* EXCalendarRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCalendarRequester.h; path = EXPermissions/EXCalendarRequester.h; sourceTree = ""; }; 8172C981402923AECD81EDC63F98F260 /* Pods-ShareRocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.release.xcconfig"; sourceTree = ""; }; - 81784DAC436ED67FD954E0ED8A08A36D /* RNCUIWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebViewManager.m; path = ios/RNCUIWebViewManager.m; sourceTree = ""; }; - 817EFFEB546086A172FEE639D26D7DEC /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; - 81845E318AA062F0C44C0E3D1D3676D0 /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; + 8196CE0F013D59D198A59D107C34807D /* RTCMTLVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCMTLVideoView.h; sourceTree = ""; }; + 819E12ECC35DC9316F6D0960254C3B41 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; + 81B045DF98DB06AC327DEB44AF93A324 /* RNFirebaseAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAuth.m; sourceTree = ""; }; 81B07643B402ED0516D25F7EB0DE7F3A /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; 81D1D5A9FCFA9721EF49A2AA7162E742 /* quant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant.h; path = src/dsp/quant.h; sourceTree = ""; }; - 81EAC4862520863E3A386A873685068B /* RTCVideoEncoderVP9.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoEncoderVP9.h; sourceTree = ""; }; + 81DC36E08CB987E699DEF80CF74F8C3C /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; 81ED6A414B8E02B39CC67553BB9F452C /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; - 81F6F2327C04302F52ACF04E88825CA0 /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; - 820EEE156D19F1273871393F2850D75B /* libFirebaseCoreDiagnostics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCoreDiagnostics.a; path = libFirebaseCoreDiagnostics.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 81EDE0E5F7410073F94C2C44E3C45868 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 822212AE700B6801B9E7B08859B1B8F9 /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; 8234A92AE9AB0AF5F299B81933E1478F /* Crashlytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Crashlytics.xcconfig; sourceTree = ""; }; 8240B7DB4D18AC85BB7F2FA4D6BC7A5F /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = Firebase/Core/Public/FIRLoggerLevel.h; sourceTree = ""; }; - 8275CBB6A37B52F3186AA519016042B1 /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; - 827E125A3A7B2F774A4C468AB0C5D420 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; + 8263AE08D5931B63DAC7E64AA67C99FD /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 828D100FC563955FC0662EF5B712FBA9 /* Pods-RocketChatRN-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-frameworks.sh"; sourceTree = ""; }; - 828F335103F7F4C0361DB8848987D415 /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; - 82AC3C30C8C93B7EE2A34899D3018F27 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; - 82BCC8C828EC69D3AB91387CAA9CC397 /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; - 82D9A4B9A2CB0F93799C94B9F089DAA3 /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; - 82E7526C2A801E0F7EA0AD085B133D3E /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; - 82FF44CFDFA9C8B491E83A8AED6962D6 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; - 831AC8636A034EA15EBB3C98700524ED /* RTCAudioSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCAudioSession.h; sourceTree = ""; }; + 8298BA69BCBC06B0BE4E721050B5C4B2 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; + 82C15BFB58FEAF5A22DE0B1748BCA46D /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; + 82CDC329E68EE52D6E6EC99BAEEA1154 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; + 8308FD9589FAE440E2FFAEB5F872C426 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; 831F0D42D039450010FF6956E3E56C03 /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; - 8328EA677FA6F030DDE99F03CEC5AFFC /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; - 8333CE04D1EF8F103AC4FA080A8529FA /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; - 8335D1CE75534CCD543BE3EA35D4F912 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; + 83454D1C2F4F7652AD5FC8DAB5443EE1 /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; 834AE62042083B620B37F4038109DB0E /* GoogleDataTransportCCTSupport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransportCCTSupport-dummy.m"; sourceTree = ""; }; - 834F21163628FC6624462039BADCF7E6 /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; + 83584948FF87A463B67E7CE945146669 /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; + 83774A380755DDC391A5D33B432516E2 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; 837F5202C5BE4A271772D79E3CFB80F9 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; - 8386892B4BA307BA53398377169C673F /* RNFirebaseAdMobRewardedVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobRewardedVideo.m; sourceTree = ""; }; - 839C97C432976E496B1C43C7735C85A7 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; - 83A5D5C55F98E6B8620483F875D14213 /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; - 83A7440D1D68C4BC4C6E0BA4AE95D062 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + 838225B4B410F29C8105CC6E8206140A /* RTCVideoCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoCodec.h; sourceTree = ""; }; + 8384F5FFD027915795E7F3091CAB1DC5 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; 83AABFEE9F4C757101D5F846CC4BC144 /* GDTReachability_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTReachability_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTReachability_Private.h; sourceTree = ""; }; - 8405B7B00ED769894EE60016CC55AA73 /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; - 840BD5098C73C7B81F7154F994384FB0 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; - 84128C09D86FC2EEBEE355BA47317155 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; - 84227D0A32CFFFEE02E7558663BF3682 /* 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; }; + 83B7ACCC6F5CE0782C08320AC04EC886 /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; + 83D96954D7B8DED2049154ED3600AD5B /* BugsnagReactNative.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.xcconfig; sourceTree = ""; }; + 841A0C9988820216A7F53DE45B312417 /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; 843409D13E830EA31C283FA0AA1903E7 /* GDTStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTStorage.h; path = GoogleDataTransport/GDTLibrary/Private/GDTStorage.h; sourceTree = ""; }; 8436B95314D136C946BDF183E8FC4FCF /* GDTEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTEvent.m; path = GoogleDataTransport/GDTLibrary/GDTEvent.m; sourceTree = ""; }; - 843A1076CC5376E1B015E17656973B94 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; + 8436F77BAD643A5138290011692C0F83 /* libRNAudio.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNAudio.a; path = libRNAudio.a; sourceTree = BUILT_PRODUCTS_DIR; }; 84405484AC1937B8E83364CE1E8C457E /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; - 844BA9402CAF4673325EAEF3443DB5FB /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; 8454C6D668F7BD2E0332A9BDA56550F6 /* SDImageWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageWebPCoder.m; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.m; sourceTree = ""; }; - 845D89D4E6DAE1558B7ECB0B0D64582E /* RTCPeerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCPeerConnection.h; sourceTree = ""; }; 846CC889DA967D1D6EEEE559C07A556E /* common_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_dec.h; path = src/dec/common_dec.h; sourceTree = ""; }; - 8473A9B2C68AD12A595BE21616AA53FF /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; + 8471316B270247E1270FAD82B76A5B23 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = React/CoreModules/RCTImageEditingManager.h; sourceTree = ""; }; + 8478588275F89E9EC07658D73672AE58 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; 8479ECEBA351866C6C0847745B1475CD /* cost_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cost_enc.h; path = src/enc/cost_enc.h; sourceTree = ""; }; - 847F5E8AC05CA3450E2AC437B6203F46 /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; + 848B065D7A2A028195742CCE26F6C524 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; + 84A416E1CEEB334471208B7C9D1D53B2 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; + 84A515EDC45D731291A758AC98682CCB /* RNFirebaseFirestoreDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreDocumentReference.h; sourceTree = ""; }; + 84CC73B6A0DE06B149849CBA767FCE1E /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; + 84CF16E9D2A4A246B3CE672C6BDC2686 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; 84D7B42939364492227C7BFDFB9DB672 /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = Firebase/Core/FIRBundleUtil.m; sourceTree = ""; }; - 8500A2F6A0B08C5589B563C3A2411189 /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; - 850C2CFF5FCDF71AD5682FC1547661A9 /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; + 84DDBB86A5F6C876477F97ACC5F79517 /* RNFirebaseAdMobNativeExpressManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobNativeExpressManager.h; sourceTree = ""; }; + 84F3FA5A68ABE7171031AE3F0A4A7289 /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; + 84FDB5DEC3FA82CFFC892A002C81B52F /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; + 84FF900F83FD7478C8A05762BDEA122A /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; + 8522D1311D8A8EEB05EB5FF97D616AD3 /* libGoogleDataTransport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransport.a; path = libGoogleDataTransport.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8529DCF7E86805C170FE18B61426189C /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; - 854ADFE42484EFDD278C8B4ACC98C157 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; - 8563645E75524A32F56D4EFBE53F9224 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; - 858A80AC98FE571D286A65CFEFF138BC /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; + 85381644A4EA16890C52DADEC1C15249 /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; + 853F8F5BA89A980C0FFC570294958EEB /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; + 855024D7F3AAE1182BD2FCD1CF4EDBFB /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; + 856A205B78B70693FFBB66826C0F09E6 /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; 8593DBD017822F6D970D1829CB6D34BA /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; - 859729F5482B6F35A5D91DA533BF872C /* RTCMediaStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCMediaStream.h; sourceTree = ""; }; - 85E30C1680F295F6C85B2AA5C7F9E7A5 /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; - 86005D6419ECB39F0D79A272DEB26A5D /* EXCameraPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraPermissionRequester.h; path = EXPermissions/EXCameraPermissionRequester.h; sourceTree = ""; }; - 86006669CAEC9F6B941A80CC032DC0CF /* libRNFirebase.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFirebase.a; path = libRNFirebase.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 860518DA220CE65772B2C561D196CB59 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 860A8DB78BC5A5FBF3473CA31B3A10F9 /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; - 864DFD0B4DB12CA9815E25CEE7E84D82 /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; + 85DA31FFB26088223BA11F5C4586CED6 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; + 85E8965240E870A33B8E5ABF719BB4E8 /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; + 85FFEA0EA30D02DB5C96E92331483A6C /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; + 861F9982A188194C1342F2016541D643 /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; + 86401CF6D57258D7243C22527A70EFAB /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; 8659DC6C8D7F8183E7746FEC9E014719 /* FIRInstanceIDCheckinPreferences+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceIDCheckinPreferences+Internal.h"; path = "Firebase/InstanceID/FIRInstanceIDCheckinPreferences+Internal.h"; sourceTree = ""; }; - 86BB09DAD4707B12BE754E875F434A6C /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 867460556219C1066B4AEBAE5DD40420 /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; + 8680D4DFF516853807BF9B762DD1472E /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; + 86B96BD448BC9C22DBC68EC6B5A79722 /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; 86D02063967146D6A0A42CC7D323EC60 /* UIApplication+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+RSKImageCropper.h"; path = "RSKImageCropper/UIApplication+RSKImageCropper.h"; sourceTree = ""; }; + 86EF96D3E4F392A4A732B1F9A4AD62EC /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; 86F02BBF388BBC67B309A02A2AFC7A1F /* FIRInstanceIDKeychain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeychain.h; path = Firebase/InstanceID/FIRInstanceIDKeychain.h; sourceTree = ""; }; 86F38348289EC83B5F2C73681AD30213 /* FIRInstanceIDCheckinPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinPreferences.h; path = Firebase/InstanceID/Private/FIRInstanceIDCheckinPreferences.h; sourceTree = ""; }; 87039A8D37FA24291867269E886C2A9C /* GDTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTUploader.h; path = GoogleDataTransport/GDTLibrary/Public/GDTUploader.h; sourceTree = ""; }; + 870F559C6ACC8EE1A323123B26A154A9 /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; 8717BC3F9FF25783B4D59A22C606CB3F /* common_sse41.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse41.h; path = src/dsp/common_sse41.h; sourceTree = ""; }; - 875C91AA13570B451A1B7C14C04EA90B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 879E71F60960AB44AB4A2A8F7A2618E5 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; - 87A87D0534B0C67225A4E165AFE26AC2 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; + 8724FA74C00454349D3ADB0405FAD0D0 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; + 8758F2938DDA0D727485CD838FBA1ADC /* EXAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppLoaderProvider.m; path = EXAppLoaderProvider/EXAppLoaderProvider.m; sourceTree = ""; }; + 87887BC73463CE749F46AA1D1A817187 /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; + 8790AB5D40DDE84D1B3D0E455DAAE986 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; + 8796D4948C0082A6756FC511A8EE65C0 /* FBLazyVector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.xcconfig; sourceTree = ""; }; 87BD2F49DE7E2ED41B26A69441613E75 /* anim_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_decode.c; path = src/demux/anim_decode.c; sourceTree = ""; }; - 87D6D5A6D51FF6A8D1536D2084129B4C /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; - 87D85EEB99234929D3C3B840B4842934 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; + 87DD248D6D22A607F1A00BAA4BAC5156 /* RNAudio-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNAudio-prefix.pch"; sourceTree = ""; }; + 87E9F38D85AE21DD2A7E002BECD22369 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; + 87FFC3F76DD90122CE8B84D30F4E809D /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; + 880750D15764CF01F47D658AE99A3E12 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; 881EF7415F26D6FD4A74D598CEF34EA8 /* cost_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_sse2.c; path = src/dsp/cost_sse2.c; sourceTree = ""; }; - 883E1317B6A54AA5F1A5636AA294F53C /* RTCVideoFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoFrame.h; sourceTree = ""; }; - 884D1F437B9578B91A113DCA5BDB2901 /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = ""; }; - 884DDCF8ABAE6E290FFBEE88290F6038 /* libRNUserDefaults.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNUserDefaults.a; path = libRNUserDefaults.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 886232F4032E6259EBE730AE77517D3F /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; + 88215E29BC10030C0FABBB211469FD55 /* RTCPeerConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCPeerConnectionFactory.h; sourceTree = ""; }; + 88225C731257583882C2C772A8E30EB9 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; + 8877EEC2282FC33B5224C1D59DED2257 /* react-native-safe-area-context-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-safe-area-context-prefix.pch"; sourceTree = ""; }; 8879B74BE4D8A9EE581BC7191B2D3513 /* FIRInstanceID+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceID+Private.h"; path = "Firebase/InstanceID/Private/FIRInstanceID+Private.h"; sourceTree = ""; }; 88836057AC917E1A9EDBD574E385C230 /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; - 8889E7503410390A0A455C24E8ED5A19 /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; + 889CAB79398BB0029362BB880C5007F3 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; 889D0D42674C5E6CC9DC2A462C90D239 /* alpha_processing_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_mips_dsp_r2.c; path = src/dsp/alpha_processing_mips_dsp_r2.c; sourceTree = ""; }; - 88A12BDA62F70EEAEB23AF1858281A67 /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; - 88A354BC0F2C1179CEF4E0EA9D6EF8AA /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; - 893CF7C62DB6E217ADF4DC9828608CFF /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; + 88E72777C250060431B453ADA49D4F77 /* 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; }; + 890769207E3B5BDFD30AB0E1EF540773 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; + 892B9CED75181C28686A00796101E0C3 /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; + 893265C230A1F3394441FD5C25658A10 /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 8954E18537096997A8D4FEBA753C6E66 /* SDWebImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageWebPCoder.h; path = SDWebImageWebPCoder/Module/SDWebImageWebPCoder.h; sourceTree = ""; }; + 895803505023599521501924BD5B480D /* 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; }; 896953B31142010857BD9071C6C3CD1F /* ssim.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim.c; path = src/dsp/ssim.c; sourceTree = ""; }; - 89800C2AF902C29B6DEC63995CB7A66D /* BannerComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BannerComponent.h; sourceTree = ""; }; - 89A4CF8AE47DC2DBA2A6C727BE40BB45 /* RNFirebasePerformance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebasePerformance.h; sourceTree = ""; }; - 89ACC87B5AF257B9EBBDB99C686F33E8 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; + 8992709B32BDAC01E0B0112F19B1262F /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; 89D21F51498AA6261BF58D256A261E60 /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; 89DE1CFC42D5704E9089A05522A035F8 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = Firebase/Core/Private/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - 8A1A02A4104B810AC0CF0B5DE179BC9E /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; - 8A57961F42FB1C57919DCEA01F4AC650 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; - 8A5C524E049C1E72F169ED5046047CEB /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; - 8ACBA2403B6914136AB18C882EC9DBD4 /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; - 8B26FEECA3A3DD05970899ABB5719220 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; - 8B28F70FA859C6D9B8123D23EB436395 /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDataRequestHandler.m; sourceTree = ""; }; - 8B554C75B17DBF9D797AFAE6314A64EB /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; + 89F1EAE3BEFF77D4E4D61071E8192112 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; + 8A1E1EF1855B754DA101A981F5AC9414 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 8A3F35EEE02E752F06C8D29DE4F1E003 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; + 8A500DB65BBBF4ACC4BA8E4DD95DAB8D /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; + 8A655487BA8077531F8CF7865BF1D1F6 /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; + 8A884482F0F831FDA2181E919F3D3080 /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; + 8A8E9402BC87211DB0AE56F478EE9E4A /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; + 8A9B5C4BE57B72F6FA2EBEF4EA55D0F3 /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; + 8AAB3FD810D6111FB3B9053D1761F428 /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; + 8AADF531C41EC635E9DAC59729BBDB19 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; + 8AFE60A615ADE23BA85FC290DBE1A765 /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; + 8B0348E94C22192C942DF791B76D9E7B /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; + 8B2D9684AD2A89647DA4EECE952499EE /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; + 8B338B08C75FFFDDB14986E6C98510B2 /* 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; }; + 8B370A153301E0B5496EFD03C2834F93 /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; + 8B3F230C319BA1B4187E1BF0C5E95032 /* RNCSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaView.m; path = ios/SafeAreaView/RNCSafeAreaView.m; sourceTree = ""; }; + 8B58B0BFBCFAC01FB1151D82A93B1338 /* libReact-jsinspector.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsinspector.a"; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 8B8F3424D6C0AA603EF4D21EA999A60D /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; 8BA5000E94AA313E650B6F2C01E8CCAB /* firebasecore.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = firebasecore.nanopb.h; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.h; sourceTree = ""; }; - 8BC69F90B2B7A23844026BBEC474CBC8 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; + 8BBDF929EC7F210339F76339A2A8E022 /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; + 8BD37A0EF96478DD1BE2118DB36A5AC5 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; + 8BEAFC047896210B100169A94079FC25 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; 8C003927BED9B0875864595A388D43FF /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; - 8C107A84188D82433218814A0E8BEC5C /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; 8C149F45F71487328ADD24ECC317E5D8 /* enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse2.c; path = src/dsp/enc_sse2.c; sourceTree = ""; }; - 8C719A5D3B0E18AA0BBBFC3A6C0CCC94 /* RNFirebaseMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseMessaging.m; sourceTree = ""; }; - 8C9A1D221AA0129822BA0C4E42FB0DC2 /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; - 8CB0DBCFCF87BF97E069B6478537F9BE /* EXAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppRecordInterface.h; sourceTree = ""; }; - 8CD097EF1DD8D29465CC59BFDD5C8E2C /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; - 8CD281938F2C18237513EEACEF92E842 /* RTCDataChannelConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCDataChannelConfiguration.h; sourceTree = ""; }; - 8D3111EE7181EC6A88D9C468462900B4 /* libReact-jsiexecutor.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsiexecutor.a"; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 8C4667C9710E87EA60D76EE13175BEDB /* RNFirebaseUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseUtil.h; path = RNFirebase/RNFirebaseUtil.h; sourceTree = ""; }; + 8CD83D4E3353580FA550B6D46653C7E2 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8CF2BFB1C54DF14C029020E89D3F7EF6 /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; + 8D106A44EA50316E16B763984AD60D49 /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; 8D3C2F73173E59C8227EDD293E235921 /* picture_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_enc.c; path = src/enc/picture_enc.c; sourceTree = ""; }; + 8D82F57DC8246D953B74B678614286FC /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; + 8D8616AC5F1A68099E836657BA35100E /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; 8D8DF8B24F606695A090B67DC289233D /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; 8DA449C1FF61D3D80D76CB4852F13A02 /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; 8DAE43A95A1DD64C112A7BC942745D2B /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = Firebase/Core/Private/FIRConfigurationInternal.h; sourceTree = ""; }; - 8DBB9724792F06FB38B656212C889AED /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; - 8DBEFBE3BE1476688DDA1ABBF2F7916A /* EXUserNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXUserNotificationRequester.h; path = EXPermissions/EXUserNotificationRequester.h; sourceTree = ""; }; - 8DC179FE95DCFC03BFBBB5BA9D078E8E /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; 8DD881D7E69E5AAC15235626814BA474 /* GDTUploadPackage_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTUploadPackage_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTUploadPackage_Private.h; sourceTree = ""; }; - 8DFC3CE5C71F5BC9B468244DCD89961F /* RNCWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebView.m; path = ios/RNCWKWebView.m; sourceTree = ""; }; - 8E180F9558C8D0F98BBFA9A8F4F5DC55 /* libreact-native-splash-screen.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-splash-screen.a"; path = "libreact-native-splash-screen.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 8DF0DBF281A2D1985CD87D17A738539C /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; + 8DFC2B2AE10AE86873DA2180CCFEB0D2 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; + 8DFD8066C7991B46A4E2656B71CC0596 /* RNFirebaseAdMobInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobInterstitial.h; sourceTree = ""; }; 8E4D3A8243738B05FCFDFD8E899E5256 /* UIImage+WebP.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+WebP.m"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.m"; sourceTree = ""; }; 8E584394E9D48C593E4B7909B5016C90 /* SDImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageWebPCoder.h; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.h; sourceTree = ""; }; - 8E721A81A43A372A9667A58B44C84384 /* 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; }; + 8E63FAD4665FF5DB554FDF20534BF8E6 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; 8E8E1164F926BA4DC12102F1E2D1D212 /* anim_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_encode.c; path = src/mux/anim_encode.c; sourceTree = ""; }; - 8EEEDE07325592D7EAD9DF13A69BB6DF /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; - 8EFB7DCBF15312ACB6FDEA3F2E87C302 /* RCTVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoManager.m; path = ios/Video/RCTVideoManager.m; sourceTree = ""; }; - 8F1BEB586B4D73B7397166B74493B0FF /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; - 8F479A81017385443C1027B3BB11D4A8 /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; + 8F30CD1A53CF420CCEC8AB03C9657DB9 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; + 8F4A649519492F8C3CA765B27CBF757A /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; + 8F655936934C9AECA7C695541C3AF39F /* WebRTC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebRTC.framework; path = ios/WebRTC.framework; sourceTree = ""; }; + 8F6CB6C3B997DE152704041AFE42B169 /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; 8F711E618AFB99B1074C4BB7E7C2A6D1 /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; - 8F76A0B90CE60E237FA102EA90F38093 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 8FD63DBEFE0291AFC77E36B865519D46 /* RTCVideoCapturer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoCapturer.h; sourceTree = ""; }; - 8FDB4DB6C7C7AE3BE02B8E152A783116 /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; - 8FE4030B5C8F3B86413D3D99EB8757C3 /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; - 8FF434B46706119411FA61825883242B /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; - 8FF503927E2CFF6EC1957850CE425E88 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 8F8D2C1CB9205876389F25A945841C51 /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; + 8FA8918842E8374D2ADBDB08CB9DAFF7 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 8FCAA2817AE3F8AC3B8230897287EBF7 /* 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; }; + 8FCF9CA915859F501DE422C13B80B49D /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; + 8FD4AD340FC214EE1123C835D8C8FE58 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 8FF638D9ADE0824AE128CACB3A645A86 /* filters_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_msa.c; path = src/dsp/filters_msa.c; sourceTree = ""; }; - 9024487821F991A942730F4E97EA7391 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; - 9060679BFD0C09C936BCF4C7D048CBDC /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; - 9063165C93B843CF16C1945AA3DB42CB /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageStoreManager.m; sourceTree = ""; }; + 8FFF6D821078C94E552CF45AC957ECE1 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 901B7276A7310B7F317E8C37026F64A0 /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; + 901E1111E9842CEAE3A54CFB675A2261 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; + 905999CF1DF343E9D5B6BB71E24AC87F /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; + 905D308C527F25AAEC313C2FD4878D6A /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; + 9069BCB3F237CC52A98F1CD4752DD845 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; 90756F1F010C3ADDE8656F519C9C5C2B /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; - 907FDAB7A7008AAD800494DD59DFD35A /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; - 908331A76A2559442D6BF0697FE76338 /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; - 90990DB5B1E9FD2BEC6C581F7B47FBFC /* react-native-keyboard-input.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-input.xcconfig"; sourceTree = ""; }; - 909EC055269B78451EB554E6107EEFCE /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; + 907FE2FFF2CD75174EB91905224108D2 /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; + 90A4AAB4C526B1637A7E61C03C4EA800 /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; 90B7BEA5F009D938BF5F5F71F697E182 /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; 90C5F94C259D127985F5504AF6F1AC53 /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; - 9116F4D919CCC884DCBFB8F2E5CFCFC5 /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; + 9104D6E90869CF4DD9F81824D2415D5F /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 91217FB9F8814F03547FA7BD3DFEE402 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 912415A927A22B47295DD3E49FFA3F4F /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; - 912CB9DD5B12E17D6C8371F6D4A44D3D /* 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; }; - 91361E707B9D5FBA8ABFB6DF0D51F6E7 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; - 914AB8A600DF09859DA06A4430CF4913 /* RNFirebase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFirebase-prefix.pch"; sourceTree = ""; }; - 916BB2BEF13944038BC8D1A8666AD7EB /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; - 91705702AE66D8DE8A2D8A2B1F6D45F5 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; - 9188D61061A6B13F5513EE916BD4E44D /* RNFirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestore.h; sourceTree = ""; }; - 918FAA25B981FC2328B54C5EC159E438 /* libReact-CoreModules.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-CoreModules.a"; path = "libReact-CoreModules.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 9193ABA6F9FCB4EA1223616BD2BEF82B /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; + 912BB1BF72FF15F45FB0B8ADE8812570 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 9140EBF996CB25BBC64302FA7A506C0C /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; + 914A219B23B3CFEBF97BAF31EB26B0BC /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = ""; }; + 914FDDA6D6F17E08C72950ECA22FA6D5 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; + 915EBCCD574AA116367DE17F575ABF1A /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; + 916D6056E826DDA75D50E10E2ED17C4F /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; + 91AC3D3B0949A03A9EB05917C7D2A28B /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; + 91D3DC0A0C881A689F77F62F03B68B4D /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; 91D7A68AD46162DA04278DAC058BCF3F /* FIRInstanceIDTokenDeleteOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenDeleteOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenDeleteOperation.m; sourceTree = ""; }; - 91EA25725FFF249D140E775D023F0228 /* libReact-jsi.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsi.a"; path = "libReact-jsi.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 91EBA865D0C502CA9FA10F17E6E08E1A /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; - 921DC920EDC43C4EA33F72CA7A27AA51 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; + 921A0622A5C88DE709E970E706A0762F /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; + 922C4CAE64DB7062B27C7EF3E75EA4BF /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; 923A35D985EF56E8D2F58FE10FE88DA0 /* upsampling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling.c; path = src/dsp/upsampling.c; sourceTree = ""; }; - 924B406DEFA1E551D87470FD163D8099 /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; - 925C0A8084715BB08C5E52CF23FA5ABF /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; - 9264E499FE27E84AFC69C9EB7C663766 /* FBReactNativeSpec.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.xcconfig; sourceTree = ""; }; - 9308503A0BCB342F77D3F8D6C6885AE5 /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; - 9336E696A5C9B4ABB34D5E52D336040A /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; - 933B4435205D09368BF64BEBDE7C047F /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; - 9344AE9ADFE5AD5A00956E2CF06B2281 /* RTCVideoRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoRenderer.h; sourceTree = ""; }; + 9244A66B259F4B2EAE601E3AB833344A /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; + 92728231525BE54B9499C3C4B30479C5 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; + 9282F75429284316AAC6D588AB6D4C7A /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; + 9301B78A0D020EF63865912E1F227F73 /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; + 933A4BF892559C92FC404D874D4511B2 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; + 934FAD7BD442FCC32A88864EC43DB732 /* 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; }; + 9367F3F80FB4DA9DE9C2087A02487CCA /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; 9370C720089CCB95E33C739ED72DED1E /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = CoreOnly/Sources/Firebase.h; sourceTree = ""; }; - 93C302F55AD5D4039C0470EF2847D217 /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; + 939D3B59085756A2F61F6BF7B7E2406C /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; + 93C0CEC88304CE8024C4BAD6F49F46DD /* RCTTypeSafety.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.xcconfig; sourceTree = ""; }; 93C511F27ED5D50E864DCB9B0AFE64DA /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = Firebase/Core/FIRComponent.m; sourceTree = ""; }; - 93D2F70E0C2459107177CA5B393A881E /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; + 93C6118077F5B0B258E1B4F26B634B38 /* RNCUIWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebView.m; path = ios/RNCUIWebView.m; sourceTree = ""; }; 93DDCE675BCA4D6255E6C94525287F7F /* FIRInstanceID+Private.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstanceID+Private.m"; path = "Firebase/InstanceID/FIRInstanceID+Private.m"; sourceTree = ""; }; - 93F053F69AE35C9369F8919C3447F1EF /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; - 942AEE3E4F57DECD83E5EBE0AFE392E0 /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; + 940DE94715EB27ED225D02CA6BDE4045 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; + 941C8875415900AB99411B734F554781 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXPermissions/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; 943DAE35342735D221D1CCE7B23499E7 /* rescaler_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_sse2.c; path = src/dsp/rescaler_sse2.c; sourceTree = ""; }; 945A9B6C6763CCF3EFBAD3658AAAA42A /* mips_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mips_macro.h; path = src/dsp/mips_macro.h; sourceTree = ""; }; - 94711D5042B4505C432640758E3DD356 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; - 94A3367D6B7EC2F152005C37DE694F99 /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; - 94BC3376C99D8F33754A6486074CD731 /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; - 94DA163D427AA3C82ADDF6C8A197A7BA /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; - 94E45A84B67CDABEFC105CC4644E041A /* RTCAudioSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCAudioSource.h; sourceTree = ""; }; - 95280DD5FD256146429B7FE9B6AEFEB9 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; + 9471E181216D71B7AD6086AA947987DA /* RNFirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestore.h; sourceTree = ""; }; + 94A2DD95CC4EB6EC7600FF0B58EC17C6 /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; + 94AFDE44ED262464B51A211686DAF1FF /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; + 94B83F9E92DD53072148B8F941D02B94 /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; + 94BD2A61CAFACC09FDD6901395D85696 /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; + 94CB36C4322F282B36EB44E09A4AEC53 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; 95326CF9943793EEF3C483A2EF154EFA /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; 953D2A75134E13234152E4C9C3607B69 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; - 954080367EDE14FC90A093125A781A2A /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; 9556B10138E402F637746986E6DF2758 /* GDTClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTClock.m; path = GoogleDataTransport/GDTLibrary/GDTClock.m; sourceTree = ""; }; - 955B4BF5886FFB9B666A610CFCCC3316 /* RNAudio.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNAudio.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9595208313A3C0C1EE57D66C2F6ECC36 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; - 95D5FD78F6A576EE09A9E489A59262EF /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; - 95D947441D203EA69BEB88EE67C084A2 /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; - 960786193F233345384121295E7AA56F /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; - 960E0C71600CDC13B81D851EFBD7FF42 /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; - 96457F297518517EC4D15D5745773E24 /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; + 95DCB2ACEFC009AE0119C919E901B1C2 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; + 96206F808402F18E47EAB412A4DA7456 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; 964C2E3CA56634EA8AE6821E435242FB /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = QBImagePicker/QBAssetCell.h; sourceTree = ""; }; - 9658C75FB7BC7C2EE79A3A81EFB8E6E1 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; + 964F34C99842B0BD357F0347EDFB9F21 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; 966A730FD988CC463C03A21DF8759D5F /* GoogleUtilities.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.xcconfig; sourceTree = ""; }; - 96D76BF7F46445BC1360A5C8D0CD94F5 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; + 9684911C233FAF0E0748FA1664366AE1 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9694FDEA45518C8EECE0DA08E69A1492 /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; + 969DAD83A9E0AB290925D3D13EB4969D /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; + 96B349183F53F57468E745F360A5109D /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; + 96C8FEC1DF44C11F0D855096EB4729D5 /* RCTRequired.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.xcconfig; sourceTree = ""; }; + 96DE591CCBD648721425CBBFEA55BA75 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; + 96E1773C4F45862B86488DFD4AF17A1B /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; 96F47211CE06FFA8209B2321135049D3 /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; 96FEDBFF970311D4CE8F74A6572600E0 /* yuv_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips_dsp_r2.c; path = src/dsp/yuv_mips_dsp_r2.c; sourceTree = ""; }; - 97058C0C0CD5C6F04E58BB35310C0F2E /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; 970A7E2E51EEF752F257CCFBD7300F1D /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; 9727CD897DFC665EB18524FC2FC165E1 /* Pods-RocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; - 9761A1449929263CD7059F624029269B /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; - 97719D4653AA92D70917B72DB87C02D4 /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; - 977243794F9236C487595779231114FA /* RNFirebaseFirestoreDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreDocumentReference.h; sourceTree = ""; }; - 978458944418A4945C0C0FA1E81A5E71 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; - 9796738AA8A4CA8537AA4A7956A73B1D /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 97B48372A993ABA2A80811602FF1D2DA /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 97502A36BBC67AA4C616D00C30135D5F /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; + 9785AC6BF08EB7C1D9FBC44859508FDB /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; + 979A9E21A81E6C10A45602AD511BE7AF /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 97BE7330857285D0663B48A8768584DA /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; - 97C923AA0AA7EF31C4233AF4848FD432 /* 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; }; 97DA18D9EE387290D486E736823D7603 /* FIRInstanceIDCheckinStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinStore.m; path = Firebase/InstanceID/FIRInstanceIDCheckinStore.m; sourceTree = ""; }; - 98152A2B2328E641A0AA5E255CCA3CBC /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; - 982613590578A9B1AF82B09330E579D6 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; - 9828A9961B8C1F61D324DF58BE8A2A26 /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; + 9819BF1FF3BF27E35B1EFCF60ABD8C4E /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 983CCBE6DD41B2FCD46538E9B718F101 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; 98473CA72F08DFCE7A232FAC89E9E474 /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; - 9867E013DBAE0709E68B1FDD23A3F14D /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; 9870476FA94D255E61C842DC14FAC7EB /* huffman_encode_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_encode_utils.c; path = src/utils/huffman_encode_utils.c; sourceTree = ""; }; 9872016D9ED5AE2B10EFB1FCD2016A24 /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; + 98756B359767BE27BD0358E2486D2402 /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; 9883EB80AA0AE0AEACCD3B4C99C35140 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/Private/GULReachabilityMessageCode.h; sourceTree = ""; }; - 989A346A8ECBE457D21A1DCE60ED1BB9 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; 989E2230828062092C97F0FFA02E4076 /* quant_levels_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant_levels_utils.h; path = src/utils/quant_levels_utils.h; sourceTree = ""; }; - 98D20B600B4CB23C0132B4592AF3D14B /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = ""; }; - 993E5DB4379D6FAB1D2531716CD6C196 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; - 993E659CE82C1BE4DA5DFE7B8A62267C /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; + 989E649464A6E5A6306CA2EBA463521B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 98AC32DE2B9BA325657E54DAD7670FF2 /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; + 993DDFFA84E8A994B6AC09447757291B /* RTCAudioSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCAudioSession.h; sourceTree = ""; }; 996ADEC2706AEE60B10C1B10F23B17FF /* FIRInstanceIDCheckinPreferences+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstanceIDCheckinPreferences+Internal.m"; path = "Firebase/InstanceID/FIRInstanceIDCheckinPreferences+Internal.m"; sourceTree = ""; }; + 998AE4414D11CC59E22B0DC860FF85AC /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; 99A30B30F50E663C4F6D01DCBC7D90B6 /* frame_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_enc.c; path = src/enc/frame_enc.c; sourceTree = ""; }; + 99B7819209679DD6A46C10252C34F927 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; 99C3ABAC6136ECE26842D81E2A0152EF /* config_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_enc.c; path = src/enc/config_enc.c; sourceTree = ""; }; - 99C8458C6DA7B45E5631DCADB8208566 /* RTCSSLAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCSSLAdapter.h; sourceTree = ""; }; 99D24984BBF170B57735B5826C92C907 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; - 99F55336CA51A544DA22557825A83866 /* JitsiMeetConferenceOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JitsiMeetConferenceOptions.h; sourceTree = ""; }; - 99FF4B217358CD093EC1595F5E8E1E9B /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; - 9A03D408CDA30BAE10EADED04E5E4B2B /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9A0F8A8EDD753C0E60C36136BE3334B6 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; + 99DD3DB01EE1A06040E37EFC499A396F /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; + 99F54E94C08A7B8AC9B55141B2455814 /* JitsiMeetViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JitsiMeetViewDelegate.h; sourceTree = ""; }; + 9A03947CE2339B9152C4A4C8F7F2FE73 /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9A127CD6A0C37EFC59A04DD7E4C7A291 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; + 9A1F2DCABC435441BFED3F2D05B8E482 /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; + 9A27433536D54C21478A075F44C6B093 /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; 9A3360793B80DF3E76FB7C19901A69DE /* GDTTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTTargets.h; path = GoogleDataTransport/GDTLibrary/Public/GDTTargets.h; sourceTree = ""; }; + 9A38FB0773A0290D56EA0E41B8DE6D22 /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; + 9A3CCD3747F941BFA833E271C0A8E2D8 /* EXRemoteNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemoteNotificationRequester.h; path = EXPermissions/EXRemoteNotificationRequester.h; sourceTree = ""; }; 9A5156C8465DFCBF352F718A1DEA0AA6 /* RSKInternalUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKInternalUtility.m; path = RSKImageCropper/RSKInternalUtility.m; sourceTree = ""; }; - 9A5C29AAAB66F7E6D17D82BB9C3D1B3C /* 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; }; - 9A95FA2DD5DA29054D320200E38D2860 /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = ""; }; - 9AA45CF7FD560CD061DF321A1266D254 /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; 9AA86202C2FEEE33586E1C460F5EA749 /* GDTUploadPackage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTUploadPackage.m; path = GoogleDataTransport/GDTLibrary/GDTUploadPackage.m; sourceTree = ""; }; - 9AC47C8B3C17EB30C5162268DEDD5657 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; - 9AEA06F137290DBDE0F03BB8F4A095FC /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; - 9AECAC593EDC245BC0F0D174C0B21B8E /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; + 9AD6434F0066D51DF829BA58F4EFEFF2 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; + 9AF98F684872BB9551EC154FF2EBF317 /* RTCVideoCapturer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoCapturer.h; sourceTree = ""; }; 9B0B62E00399B479D6D4DB026943919C /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = Firebase/Core/FIRApp.m; sourceTree = ""; }; - 9B2C58D6A70501D55F5962177C44D3E9 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; - 9B4CEA0B339DD9BA11C76F59624F983F /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; - 9B5D6FCFFBDA61485998DCAECF09BADD /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; - 9B82D6AFE4BCDD34B347280D929500FF /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; - 9B9690EB13E23BDAF9A0F9ECFAB1982D /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = ""; }; + 9B1403DBBCFEAA585EB3BA40D8B8D749 /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; + 9B16F16A8A8155FB0E670DE07E555915 /* RTCRtpSender.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCRtpSender.h; sourceTree = ""; }; + 9B87A79BA3A913B13AF1836349C49D91 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; + 9B96C3E30C1BD253DE65C66C95B3D4F4 /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; + 9BB084FDA0E48D4C1D390A3924DA2D89 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; + 9BB9ADC638290658930754803EBA559D /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; 9BBBEF5EF37F45DA5CDDB9D9B6223086 /* FIRInstanceIDCheckinService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinService.m; path = Firebase/InstanceID/FIRInstanceIDCheckinService.m; sourceTree = ""; }; - 9BC7FD67FB7FDA576DB65137D10CD278 /* RCTVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoManager.h; path = ios/Video/RCTVideoManager.h; sourceTree = ""; }; - 9BD589DFD1BD4E0A110A1D788E71DCDB /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; + 9C08D4DD60D8F74867221103124930A5 /* RNFirebaseCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseCrashlytics.m; sourceTree = ""; }; + 9C0D1CABF4C90AAB003082B61C84C6B6 /* 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; }; + 9C13ABD3CF7DAC54F8A08323BDFFBE74 /* RNFirebaseAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAnalytics.h; sourceTree = ""; }; + 9C14D4FF8ABD2BD460D882FBB23B87D3 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; 9C2368C0573F26C01DB93B2C5D3EC89E /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; - 9C3328D71E30443739271866F6E41C5B /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; - 9C490A8BE82C61BE53BDB0F4F8ACCAFE /* 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; }; + 9C612160739BB69042D52AD892C64554 /* RCTConvert+UIBackgroundFetchResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+UIBackgroundFetchResult.h"; sourceTree = ""; }; + 9C8FDB233D42D9B5E81028A145BC44AA /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; 9C93CB7E25886C1123FAC67FFB1F8AB2 /* FIRInstanceIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenStore.m; path = Firebase/InstanceID/FIRInstanceIDTokenStore.m; sourceTree = ""; }; 9CB3E79D22D106F3C4450980C3272322 /* vp8i_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_enc.h; path = src/enc/vp8i_enc.h; sourceTree = ""; }; - 9CDA400FF10058D7984BC78BE308E138 /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; + 9CB45FDF492ADF176D4CA9E7F079EE58 /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; + 9CCC71AF6E6609097C49E6F1207F3BE6 /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; + 9CD73E50320B66ECB101E6DEFFA7A035 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; 9CDEF241D2E723AE3AA76C243CD201E0 /* FIRAppAssociationRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAppAssociationRegistration.m; path = Firebase/Core/FIRAppAssociationRegistration.m; sourceTree = ""; }; - 9CF5991AF2EB1CF341B46ED915556AFB /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; - 9CFDBB581772024714FD0688A7201200 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; - 9D13022CB9FCE35B9421FAB091531864 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; - 9D188B3A994EF48492D596334DAB83E1 /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; + 9D176633631EE22663F9C8F1FB1E3EB4 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; 9D2ECCE0FD4135BCA35DDF813D86DBFC /* GDTReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTReachability.m; path = GoogleDataTransport/GDTLibrary/GDTReachability.m; sourceTree = ""; }; + 9D317F6BA0B1861EFE7E02E59B753FE4 /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; + 9D6701F23C1B02C3789AE879D4EA3B20 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.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; }; - 9D9FA4FC6DF8E830719459727D5ECAB1 /* JitsiMeet-Swift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JitsiMeet-Swift.h"; sourceTree = ""; }; + 9DB542FD3D0B96A4F4391D29499D94A6 /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; 9DB568250FFAF8EDCED8C4C5C3756ECD /* lossless_enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse41.c; path = src/dsp/lossless_enc_sse41.c; sourceTree = ""; }; - 9DB8FB20F400557664EA907D0CCEA9A4 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; - 9DF20C690CC2D91B89082C436808E377 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; 9E0D044868E3CE3EA2B650D94AA0C42A /* ColdClass.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ColdClass.cpp; path = folly/lang/ColdClass.cpp; sourceTree = ""; }; - 9E1638A6BC858BF6693201C66328D8BC /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; - 9E1F2B15CF7018FF290E064A0770F577 /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = ""; }; - 9E24C028D631450C5BB0BC6181E012B0 /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; - 9E31F1E5B4E4DA3366E0B7FDE21835F1 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; 9E363803F2ADB3E9C7745366D24CCE71 /* GDTStoredEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTStoredEvent.m; path = GoogleDataTransport/GDTLibrary/GDTStoredEvent.m; sourceTree = ""; }; 9E59473F2C4173F38055CEFA6CAE01DE /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = ""; }; - 9E601D78FD0F51EF75CA7085D90D007A /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; 9E6596BE80EBC4F14B569C64397D7F41 /* dec_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_msa.c; path = src/dsp/dec_msa.c; sourceTree = ""; }; - 9E6F352D5C92823FD1802A6130F6902E /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; - 9E8151146709C4C6EA979DAB61A65085 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; - 9E9B97BDB017B837DFB1096BDA3F8659 /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; + 9E76B5C93BF8EF0CBFC0DEE40AFF59E3 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; + 9E8F81E3C3F2F1EDEA6AC5CFF69EA10E /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; 9EAC0DE1B2D16D2F3F98ED0C1EE70784 /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; - 9EB70C49DABF10542CB05591CF8D967B /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; - 9F0168E8F3494D2B40B6C16BCBDA3124 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; - 9F360CFB41C9A8126AF9A74DDD500BFB /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; + 9EF651E0B9FDF0C45A5C81D3FB744B69 /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLinkingManager.m; sourceTree = ""; }; + 9EF81128ED49AA0A65A48BC4D5D532AA /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; + 9F2DD1B30E3862662FED31609A912E32 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9F333097B7E3C4AF4420A6FCBF44668E /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; + 9F37E7FEDEC07DBBB0C35F0036CF2DE5 /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; + 9F4FE60494185612D06775A177512938 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; 9F769D6260F9E292438D0FFD1264C69D /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; + 9F7D69BD8F1C06A0B1517CA00901E945 /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; + 9F8BCF87FBCD5F997519A8F55C3A7752 /* ReactCommon.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.xcconfig; sourceTree = ""; }; 9F9C2F09B67806EDE58E40D9A648E897 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = ""; }; + 9FD9F29E7B29469801ECF10D55BF1FF8 /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = ""; }; + 9FE29714349EBC1C8B0B2E825A519ABA /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileRequestHandler.m; sourceTree = ""; }; 9FECC40A877CF4171127CA354B4D4F06 /* common_sse2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse2.h; path = src/dsp/common_sse2.h; sourceTree = ""; }; A02C25A0F050BBA3C3192560B437738C /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULApplication.h; sourceTree = ""; }; - A048DD02EA4A10EA8D145ACCB12A76F7 /* RNCWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebViewManager.h; path = ios/RNCWKWebViewManager.h; sourceTree = ""; }; + A04400228064963305EF63BD85BA6127 /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileReaderModule.m; sourceTree = ""; }; A04AE81FAFCF6A28988F4C7E777E05BE /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; - A08ABDAC6EEF823927BAE510DB2CDBA2 /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; - A0A545C05573F12064B7325C73301F18 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - A0DF0347154937771DC147662FF18BC9 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; - A0EB7E0F161D656A9FCBD4D8F2D82DB9 /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; - A0ECA59A83A655CBC05E2FD344902F68 /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; - A1271D4DCA0FBAF6EC0F4BA51E1D196B /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; - A12FEB66D4DFDFD9C582DB3898055189 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; - A13422A7FFAEC6EC9653D1DBE487BC8E /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A18AD87C0370C60B9D98ECF26D87DA3B /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVibration.m; sourceTree = ""; }; + A06EC5D9A4081A151F5AABCB6EEB90D7 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; + A0717351221BC0B32CF891C96A7E343E /* RTCMediaConstraints.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCMediaConstraints.h; sourceTree = ""; }; + A073A96BCF15355311D8FADBE1A10813 /* UIDevice+RTCDevice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIDevice+RTCDevice.h"; sourceTree = ""; }; + A0AE44464D79976D776D2A087ECFC85D /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; + A0CF3CBB7F85C217DF43B19FBAB34135 /* react-native-keyboard-tracking-view.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-tracking-view.xcconfig"; sourceTree = ""; }; + A0E322856BC90FD72B2D19299C40F09E /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; + A0E6BC76AEB9A75EB1DA9E6E7966382A /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; + A110981EFF71ADB3EEC0316A2294F887 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; + A171A41048E3753FE41D2C7BF8916BF0 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; + A19500584ADEDF73297A233305C77ADB /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; + A1989D181D400E1910B9095EC1961E1D /* RNFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebase.h; path = RNFirebase/RNFirebase.h; sourceTree = ""; }; + A1A94FCEDB403641E8B272D81DD6E801 /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; A1B88FD9D6C771307C9F1804DE04F464 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; A1C0E2D38A464972E87853ED7297DCFB /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; - A1E30E49980F6EEA26508E3775D3475D /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; + A1CD0DB9E012BF94E858BCCF9B9F3A8E /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; + A1DF6C669B2A9B73DA6D6F9AB9B2C6B5 /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A1EC4C554AC2FA34564E493D9F67EE84 /* RNFirebaseAdMobInterstitial.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobInterstitial.m; sourceTree = ""; }; A2048FA7569E8B0EA346BCC21379747C /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; - A20A718551EB736421C04C18825176AA /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; + A21DA24A169977277D085E1318E4EC63 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; A2269041F71E93DC3D5E4E62F1D9FC94 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; + A2273DB842F6857A504420A7BEA421D3 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; A236B2D72366F344B655017EB8EA9D98 /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = Firebase/Core/FIRComponentContainer.m; sourceTree = ""; }; A2669F9597361BA03540DB202E45107D /* FIRInstanceIDCheckinPreferences_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinPreferences_Private.h; path = Firebase/InstanceID/FIRInstanceIDCheckinPreferences_Private.h; sourceTree = ""; }; - A279F1B542DE104E59383DE13AF1BF8F /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; - A28A885DB5C7E3687C339B35DBA9D577 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; - A2AE3843922E718F0CA15A9E0C542F2D /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; - A2BF1B2AF2C535785E03DECA25C0F0E3 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; + A2895436FA26C0B09A11F511F4FEA0DB /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; + A296CB89D4EE0255ED764BCB23D25DD1 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; + A29AD9B151CE566DEB09797019B8952C /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A2A5323626069A0FF9A17631E5CCC31C /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; + A2B6E61A4C49F83E6022AC2D08049CEB /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; A2FC07DBC2305E98EC8F83EA5D42FE4F /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = Firebase/Core/FIRLogger.m; sourceTree = ""; }; + A30C86DEEC074F3692FC989FD0B5FE29 /* RNFirebaseAdMob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMob.m; sourceTree = ""; }; A31B7AF9D97883D1431BCF0BEBC6A5BF /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; - A386354B226D1F441835D4AD1109EFCC /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; + A355BFFC5DB9F1BDF85A32D211C8ECDE /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; + A356977D978F70519D2B726F6CA2BFDD /* RNFirebaseAdMob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMob.h; sourceTree = ""; }; + A380B5186909C7542770E62A6D8D5CDF /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; A3AE96A6C5ED8CD28D8F9C82C8CAD319 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; - A3C5A069E7228C55ABB49F9E56A377A3 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; A3DBD6D4B64099330ACBBF9E0560ECDA /* SDImageAPNGCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoderInternal.h; path = SDWebImage/Private/SDImageAPNGCoderInternal.h; sourceTree = ""; }; - A404097E148F1819281A337650A82A85 /* libGoogleDataTransport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransport.a; path = libGoogleDataTransport.a; sourceTree = BUILT_PRODUCTS_DIR; }; - A4664F91ACCDBFA209ED6341CBF140FA /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; + A3E8DD3B951421DD403AA3714BF4A26A /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; + A3F8F0FCC5B1C0A31483BE6787C7D940 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; + A425ABC3BFD99E7D65616567518E2BFD /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; + A42A33CA4A7462D2C285F9D92E401288 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; + A430EBC5245691D9ACA012F7DEAB02F0 /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; A474ECFEB4E81748E6FFA85CFDEFE7CF /* vp8l_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_dec.c; path = src/dec/vp8l_dec.c; sourceTree = ""; }; - A490DA9E70562B499E63B60320210C2B /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; - A4BB49182ABA6724F004AC43D7881FEE /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; + A4AC0560DC2E003ED62E9645B9E144AB /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; A4D016D868BD58467CA1033C502573D6 /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; - A4E1C2F46C1D401692B96DCF26FE7F23 /* JSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSCallInvoker.h; path = jscallinvoker/ReactCommon/JSCallInvoker.h; sourceTree = ""; }; + A4E2986C1839698D63F1CC863E946114 /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; A4E3B80FEC459F74915B3D9B6DC2BE6A /* RSKImageCropper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RSKImageCropper-dummy.m"; sourceTree = ""; }; - A5330E8B9C4BCDB319455957A98B8D8F /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; - A5627F36C89EA4E324B594B82049CCEF /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = React/CoreModules/RCTImageStoreManager.h; sourceTree = ""; }; - A564C2ACC37C3AAEB186F8681DC43565 /* RNFirebaseCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseCrashlytics.m; sourceTree = ""; }; - A58BB2D4D47414EF042918BFD563014F /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; + A52E170FB2F9F5EDA285B07188EC6887 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; + A57E0A5F8BBA090989770FD2FA5E2333 /* RTCAudioSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCAudioSource.h; sourceTree = ""; }; A58F7914B909B36DF27DFAE5864E4F23 /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; - A59769F417E8426D4124D3D1CC2FE59C /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; - A5C44CC25AC760781320EA7D0DF4AA6A /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; - A610DFF0E0BE7C475685FA8DE3DBCF0C /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - A63A11DFB96EC414CC42AF710C1F52EA /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; - A6A3450BAA3F678BC74B25A04D7E5F02 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; - A6D2000D624583DC8BFB62705BD356BF /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; - A6E357787EAEC5A3C2D8163CFA5C6D78 /* RNAudio-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNAudio-prefix.pch"; sourceTree = ""; }; - A71BBE57928DCF8B42CC78690CE5283F /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; - A756C9D657CF92354B71ED278B702023 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; - A758825D2493D053994681A9AABB1588 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; - A78D12751FF5DF3C741701E9E5013CD0 /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; - A7927F6FB82A8D8187C65539C8543078 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = React/CoreModules/RCTImageLoader.h; sourceTree = ""; }; - A7979EFA0044A7751DBF2F91E4119047 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; - A7D9EE39E5652C9C655C895949EC4F3F /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; - A7E935B855FEB44627BF2A9B9FF8BA5F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + A5DE7320F90848D843384F5FDFC19752 /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; + A5FCAAFF930356FC7B7C2C57B18C5A8B /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; + A64FD5C333796C3016A136E4CD49AE48 /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; + A650C8652681E3C5CDF27E082D957EB4 /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; + A65B3EC0C674A8437A43B4C3D3AE0536 /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedModule.m; sourceTree = ""; }; + A672EAB82A86B0F23AF82F0F78F972C0 /* libRSKImageCropper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRSKImageCropper.a; path = libRSKImageCropper.a; sourceTree = BUILT_PRODUCTS_DIR; }; + A6A1A288EEA788FB0FE68D29F9947982 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + A6AA2C2FBD336D17FB42F18566EA0AF8 /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; + A6F187F63554E6C8F4CC62B5520BDB2C /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; + A70849E86F884989BEA7B48A7F7F668F /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = ""; }; + A7B3BC2B3FDC04F351FC65ACEE29F272 /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; + A7B9D8B13F050E3F14A6DECF67C4EEF5 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; + A7E0F0BD8AB70C2E21CB1571171730A2 /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; + A7FFACCD0A9D24295B320FAFF43B1135 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; + A8040DE5C02D614BEBBEDCEFF2067604 /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; + A809C4E62C93E7DF9D89DF40F13834EF /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; + A809D12346BF2C4A7B412AC3D1EE740C /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; + A8263F03B479348793C88F15A0990388 /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; A8383AE4B85D593EDF8335F75E018DDC /* FIRInstanceIDBackupExcludedPlist.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDBackupExcludedPlist.h; path = Firebase/InstanceID/FIRInstanceIDBackupExcludedPlist.h; sourceTree = ""; }; - A8409E0D848A65CD708D222A71A51347 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; - A85DA116B1E0A1C18A5449E8A23EE238 /* RCTTypeSafety.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.xcconfig; sourceTree = ""; }; - A87B08921DA1FD316868980B3BC5563C /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; - A8950D4F5B76C82ACD9D3DE19D66C7F9 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; - A8DB1C444982F4C3D4EBA817C963250B /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; - A8DCA5E7B4E4BB37A7FE47EA6FD5E788 /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; - A8F62D82A5A85DCA86571FB4CDC441A1 /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; - A931FDF2119AEC8264E53F485E9E618B /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; + A84B5186DA58E88ADAFBBD175B5315A1 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; + A84DA91A56DFD58200D05FD24D67CC4A /* RTCVideoEncoderVP8.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoEncoderVP8.h; sourceTree = ""; }; + A8B22E6604EFF39B6D611AB13DDDBD15 /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = ""; }; + A8BF8A5621396B927744FB5B09021DE4 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; + A92C9CD9472AB74A5BBEC01C72ADFEE7 /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A93F446AD7B620C126913D53D66C7C99 /* alphai_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alphai_dec.h; path = src/dec/alphai_dec.h; sourceTree = ""; }; - A95AB4D649C04218556B94815ABED40A /* RTCMediaSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCMediaSource.h; sourceTree = ""; }; - A98CBC136302FCDF57A99CDE8D1DE06D /* RNCUIWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebView.h; path = ios/RNCUIWebView.h; sourceTree = ""; }; + A96264404BE6A0015E902B4B6928BE6F /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; + A9A5A009143A121E91B4ECB5E4117620 /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; A9B791BDA93E2642E2AE20773005936E /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Private/GULReachabilityChecker.h; sourceTree = ""; }; - A9BBD50F562E09F4FC9D8723331D6081 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; - A9CBE5EDD1A08F9BBD6ED751C0B6E090 /* AudioRecorderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AudioRecorderManager.m; path = ios/AudioRecorderManager.m; sourceTree = ""; }; - AA5207268C70A330051FE675E3CC119C /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AA799C2BCAF0812208D579857BBFE59C /* RNFirebaseInstanceId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseInstanceId.m; sourceTree = ""; }; - AA935E4192477FAB20443FC65C10B222 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + A9BB6EE7361B27BBBEEDAABB87231602 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + AA2D60A70366B5F533E720EE05F8728F /* react-native-video-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-video-dummy.m"; sourceTree = ""; }; + AA2F1D16219C46D61411C758E01D69F6 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; + AA3C169E0715A7983E2D8A445482B9CD /* react-native-background-timer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.xcconfig"; sourceTree = ""; }; + AA60099AF92CE1A9777F8B7CE2C36B4E /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; AAA293DADEDCEDC13D22CE28A2C91ABB /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; + AAB306730018053E74B9836250BF383E /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; + AAB6B2301A1A2F3EA0CD228181C5EB93 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; + AAC17B2AC17FE48D56861DD5EAD666A0 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; + AAC8DCEBA187EC9AC3701829A82616CD /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; AACC3906679263F744C164DFF7329977 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = QBImagePicker/de.lproj; sourceTree = ""; }; - AB2DA7EA4AA7965B657836614D3A0711 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; - AB5712324F4F2FCC908C68F0E4D85CE5 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + AACD188B8847DF291AD28198CAFCCB5C /* RNFirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAuth.h; sourceTree = ""; }; + AAEC73E51FE755C6D8131E5F0763D72C /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; + AB0BA70BF6A64151B7D6C48C8EDCFF66 /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = ""; }; + AB1349B7B63DF3A789D37D4B41E9CCB4 /* WebRTC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = WebRTC.h; sourceTree = ""; }; AB6DC8697BCB96DDC7099E19C0FADEFD /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Private/GULNetworkLoggerProtocol.h; sourceTree = ""; }; - AB862353DEEFD81FF02220B9996FC342 /* RTCRtcpParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCRtcpParameters.h; sourceTree = ""; }; - AB8AA014E9E9B9C06F7442B16198E656 /* 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; }; - ABA7D17947BF9037B3F73C84CA322ABB /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; - ABC469483E8FAB36B0D21EE3FC9D77CC /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; - ABC6B3F79A08E31D5471FA0A46D7D591 /* react-native-keyboard-tracking-view.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-tracking-view.xcconfig"; sourceTree = ""; }; - ABF00288BE6B64C9A4A0A6E1CFF6646F /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; - AC1FB84400BE54B01B8CC2369F9AA339 /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; + AB7209CB15AEA1D836B43B0BD1EA9EC4 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; + AB81A377426BA316EA4B0473C0E2B276 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; + ABB239C559398D72DA4182E9A9EF9281 /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; + ABCF9492809DCBC6AD61CB4CE4A3338B /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; AC2CAF795431503D42B35C3E4DF175E9 /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = Firebase/Core/Public/FIRConfiguration.h; sourceTree = ""; }; - AC84D409E8DDE07B3CD37A4C21898677 /* RCTVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideo.m; path = ios/Video/RCTVideo.m; sourceTree = ""; }; - AC98DB15560DE4A1352031D68744389A /* RTCMetricsSampleInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCMetricsSampleInfo.h; sourceTree = ""; }; - ACB20F36E3467B8B419AF134154184F0 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; + AC927CC5D5DBA2EE28F31A2BE9E5B4ED /* RNFirebaseInstanceId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseInstanceId.m; sourceTree = ""; }; + ACA988A2705A99F322CDF5F267D96658 /* RNFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebase.m; path = RNFirebase/RNFirebase.m; sourceTree = ""; }; + ACB0BF20D838D2CCDB3E8D4BBA51FAEC /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; ACBE62257E052F1FCCB9E800349980C3 /* ANSCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ANSCompatibility.h; path = iOS/Crashlytics.framework/Headers/ANSCompatibility.h; sourceTree = ""; }; ACD9D744C521C1246AA89B34FB235398 /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = Firebase/Core/Private/FIRAnalyticsConfiguration.h; sourceTree = ""; }; - ACDEEA55D44FB38E92FBEF46803F44C6 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; + ACDCAD340D72814FA1D47411EBC872DA /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; + ACEABFB2E3E74557AC5F59BB4F23894C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; AD102486D88241996893F8843CA86F6B /* RSKTouchView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKTouchView.m; path = RSKImageCropper/RSKTouchView.m; sourceTree = ""; }; - AD4E046AB7EFC7482FC3EBD179AD1B34 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; - AD6D9FE62A19C65EE313AFBDEDCBBDF6 /* RTCAudioSessionConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCAudioSessionConfiguration.h; sourceTree = ""; }; - AD8A160785B2C1B85BB8263EFC4D08A7 /* RTCSessionDescription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCSessionDescription.h; sourceTree = ""; }; - ADC66475E4CBD2E2B09EE786769CC3A2 /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; - AE42EF954CD85BF69907E5C1DC217CCC /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AE444786FB6B08993DD69E5B974FB80B /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; - AE6627C26D79879FD3F4A528EA5827C9 /* JitsiMeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JitsiMeet.framework; path = ios/JitsiMeet.framework; sourceTree = ""; }; + AD4A6ABAD1BCA6E2AB7AF8AD882DEE2E /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; + AD5C0DA7F535E3ECF324E45733E4DDC1 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; + AD8A98521675B415BA698C2B16F94E0C /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; + ADA7B9D84EF6231347C6EC48A75600D3 /* JitsiMeet-Swift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JitsiMeet-Swift.h"; sourceTree = ""; }; + ADD491F2581002166439D6FCA66E2505 /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; + ADDAE7B9267275AA800A5412D584638C /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; + ADDBFF7060BE74FD5948ECC3794E84F9 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; + ADDF16393D488D586E5F70B9D41F4ECB /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; + ADE7B5CB0FD052892FE0668BF568CB59 /* react-native-splash-screen.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-splash-screen.xcconfig"; sourceTree = ""; }; + AE516B7A7BB73697184C9F5EEC325727 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + AE52CA7F96D5E3CE8B46C31F9E414FA6 /* RTCFieldTrials.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCFieldTrials.h; sourceTree = ""; }; + AE5D5924E9524D24B4C78999594601F8 /* libReact-CoreModules.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-CoreModules.a"; path = "libReact-CoreModules.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + AE66BE0D44B60906D0DC2D20925597D7 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; AE7754584504BFADAC0D66E9977C6076 /* FIRErrors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRErrors.m; path = Firebase/Core/FIRErrors.m; sourceTree = ""; }; AE9C522BECF62823BF32C1C310AEA94B /* syntax_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax_enc.c; path = src/enc/syntax_enc.c; sourceTree = ""; }; - AEEC4562BAA6DFDE5EB55EC8AC55EBD8 /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; + AEEF8E5AAEBE71DDE9CBEE820CAF7A4B /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; + AF013465EC9DC0655024BD7A9269EA82 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; + AF037CF64FD98D38974D33762A6B7AEE /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; + AF079B678CB2895C68C623954775C232 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; + AF11CE0547AA7CF260497DA1AE1501E5 /* 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; }; AF3F49AC7222558F70BF96377BABF58C /* UIImage+WebP.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+WebP.h"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.h"; sourceTree = ""; }; AF59AAF9C1E17F9B17CD706F50F80B69 /* mux_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux_types.h; path = src/webp/mux_types.h; sourceTree = ""; }; - AF6C543389427701B8E24695FBD02007 /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; - AF8133FBB15F2A5100127A7851F56135 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; - AF95283C3997D0287ECFAA315DA62E20 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; - AF9D973DFEE1FEF3DF20202F45BE3BE7 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; AFA8781E13A2EE5FEDC037BCF3DE1F99 /* cost.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost.c; path = src/dsp/cost.c; sourceTree = ""; }; - AFB872DDD998C244AC1FF5DEF2A6CF00 /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; + AFB5EB027E8657AFB4AC3F2D2AD1036C /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; + AFBABD959DCD4A0D8253FC9CDB065456 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; AFC9197BEA9A6CD03FDE80F6B71E451D /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; - AFD07798CCB9B688378FCD578A949556 /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; - AFE538A8F74CFCE232A55F49041A4214 /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; + AFF6530F3B4C1E1AC8DB8D75B640D4BD /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; AFFEC13D0BCA59D868F6841E4FFD6AF1 /* lossless_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_neon.c; path = src/dsp/lossless_neon.c; sourceTree = ""; }; - B066E45E570655249E4ACC8D12121DEE /* NativeExpressComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeExpressComponent.h; sourceTree = ""; }; + B030661A74EAF5718EE0D23F398BD614 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; + B06861B6BCD98E2920DE1208E03D1B08 /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = ""; }; + B0828B37E9C8FA2FCCDABEC6D37B29F8 /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; + B122D41247F6D07F3102CB64BCF52B49 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; B14321EE392ADB847052BD5E58762AD4 /* bit_reader_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_reader_utils.c; path = src/utils/bit_reader_utils.c; sourceTree = ""; }; - B15DD77C75B61524823A9DCCB0D9D588 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; B173D0AE66CCF8DB153DF8A8B1D42B7B /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = Firebase/Core/Private/FIRLibrary.h; sourceTree = ""; }; B1818F7EF0C10182EBEA70AD74197B1F /* FIRInstanceIDAuthKeyChain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAuthKeyChain.m; path = Firebase/InstanceID/FIRInstanceIDAuthKeyChain.m; sourceTree = ""; }; B18BFB5604EB58F3ACB30DAC9D272B5F /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; - B19B88AF805393DCF3D19841EB4727DE /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; - B229A8868871E89E1F63762D51CBAF6D /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; + B18FB1710FB66A87E75F38690B053462 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; + B199AB1DC90082B31061593EE95C4A63 /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; + B1D6339E901F0E921EEE73E2D0F28A9A /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; + B1EE017FC5853D5DDB743A5D08391942 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; + B2020F34DC8A5116138E0B69E1B5CA6F /* RCTVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewControllerDelegate.h; path = ios/Video/RCTVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; B299FFF600468CC5F031359F11529C30 /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; - B29AB9EEAF6FC4CB09EC27F68BE0DBAC /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; - B2B164D44CDCC3851E4EFADAA3996F2C /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; + B2A3911AE8735FE0579B57BF38C415C3 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; B2B6CCD6199BC227927A6F66F1C4B676 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; - B2C3C50842C99465084B59724BB1F888 /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B2E1BDC3A338EFC910A3C5C6A89A0531 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; - B31675120914B5F24A9F6CD3EFE3B30B /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + B2B936F67466D9DAE4DB945CE1F31B59 /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; + B2C9A34370C9237B9740314606719BEB /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; + B2CD117AB511359CC39EB680BCC4F9DB /* 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; }; + B2D3D6F6049746B5A5D3A816F249CA5F /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; B32C29637004DFA00C422469551F00C5 /* endian_inl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endian_inl_utils.h; path = src/utils/endian_inl_utils.h; sourceTree = ""; }; - B36C8E865E4369E817FF07101604628A /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; - B39C5CA19C1C193728E947F3C113B539 /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; - B3A93AE402EDF1485DA4B4A5AF61A8C2 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; - B3D2AA05E5984B03DF83A2AEC254AF74 /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; - B3E178A95DE8E446D22BDAD91D9AEF95 /* 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; }; + B3521C23A432CC9542C79055ABC505D2 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = ios/RNCWKProcessPoolManager.h; sourceTree = ""; }; + B3739944967F1784A44D81785BEAE566 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; + B3E2EA32BCCA958A61D82BEE7A7A9B6F /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; + B3E70F856208B69AEC240B3165938108 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; B3F82775A114DC463B1A22D9750DDD70 /* SDWebImageWebPCoder-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImageWebPCoder-prefix.pch"; sourceTree = ""; }; B41EBDD1DB022AF9820E6B5214C69976 /* UIApplication+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+RSKImageCropper.m"; path = "RSKImageCropper/UIApplication+RSKImageCropper.m"; sourceTree = ""; }; - B4201F26A8C73ABFB389131E1835D162 /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B4237A76E7D33535D94193EE57668477 /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; - B430B1A49A0DBF42AEB177D9A9396E4B /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; - B443710E63E715B94B5C3BDBE5BF7700 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; - B45B341F157B58B3C22B654E1CBD01D5 /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; - B468FF1F2043325BA63D683B4EC70171 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; + B43A77EB90C5A42018C43240A00B756E /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B443A642A5EA66F29AB689D39DBE42AF /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; + B4533A5BB4373D311653A4CCEEBC1400 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B469ADF99DB0A81E5D4650618770D48D /* RTCConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCConfiguration.h; sourceTree = ""; }; + B494ACFDE55946CF40551A1829ACE47F /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; B49603EB3034DABAB10F60382C1DD4C0 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; - B4B3D69A93D29E44849D09261B673E1A /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; + B4BBD3F4DCBF4684D97C369EE4AE97AC /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; + B4D870BA7E29F39599167B224F875EA4 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; B4ED747092A1D20754551030B7A387CE /* UIImage+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+RSKImageCropper.m"; path = "RSKImageCropper/UIImage+RSKImageCropper.m"; sourceTree = ""; }; - B4F6C8A6A3866286BF9A7904CF34F639 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; - B51E7D4A7044362FC9E5116437F6F839 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; - B54E571A6F5D5DEBE95468F35AB613DC /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; - B55ADC2A5496582F8AFC444AD38F7667 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; + B50DCEF697EBFA84F81921591BB31CD7 /* NativeExpressComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeExpressComponent.h; sourceTree = ""; }; + B511D3B36076ACF05F824FA6F3A4B142 /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; + B516D4F1C98D06F555A19242E0ACDE7A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + B52D0654728195FA8447A0CECDC91381 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + B544D7779B342794E331D070204D03FB /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; + B55D6BD474E08659E4F59452F8EBDA45 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; + B5849A395CBF0287C431D4FCC26AC6ED /* RTCVideoDecoderVP9.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoDecoderVP9.h; sourceTree = ""; }; B5914966BE28AB5DBB32C58DB776E87D /* rescaler_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rescaler_utils.h; path = src/utils/rescaler_utils.h; sourceTree = ""; }; - B5B71DEADE3F134C37C7CA658A9BDBE0 /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; - B5C340D4A14F573589F590FCD59B6DAC /* rn-fetch-blob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.xcconfig"; sourceTree = ""; }; + B5B15DB473A729898FB1C4406C5E05BB /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; + B5BD2AE058D3B8E4EC9B105A6810DF46 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; + B5BEF82643604A1AB8D994837070534D /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; + B5DDEACBF4E24F21EAC0B77B9BCBC61E /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; + B5EB9C763083FC66442C03EDEBB099B0 /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; + B61FC0166F0344183236C8004643AD87 /* JitsiMeetConferenceOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JitsiMeetConferenceOptions.h; sourceTree = ""; }; + B62C361531A11D304C4E01B938A90C95 /* libReact-RCTImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTImage.a"; path = "libReact-RCTImage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + B63F605A34DABD21A4CEC821C3CE2AE4 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; B64278BFA907F143E534AE7A299EB104 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; - B66627996CBB958C82EA874E48CA93BC /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; - B679806DF758FBB0C803752D3ACA53FD /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; - B689AF58C3DD12470EB05FC02F8EC95A /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; + B66F7863B169D795F41BBADAB844A438 /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; B690630170EE510DD6CF469596160CF0 /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = Firebase/Core/Public/FIROptions.h; sourceTree = ""; }; + B693AE3A3EB76E15F666A0B208831A5C /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; + B699A1175DE352460EF2B0B142E1298A /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; + B6DBD490066F1629A9280EDBCA31A929 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; + B6E097A77CACC8B14A962C736C6F7DC0 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; + B712A811A95C5FF2DDCB62A4BCAC6CD6 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; B72212531A17E04632758E53C8B378B8 /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = Firebase/Core/FIRVersion.m; sourceTree = ""; }; - B727418C5C148F66D4754C047ADD6813 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; - B73F59DBF2FC61D67B97C6223E1A36D7 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; B74045C89CC6F81DF35F0CEF214DA46C /* huffman_encode_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_encode_utils.h; path = src/utils/huffman_encode_utils.h; sourceTree = ""; }; B76B06E44B473727B6C76EA4FB258784 /* analysis_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = analysis_enc.c; path = src/enc/analysis_enc.c; sourceTree = ""; }; - B7FFC86A3526F8B574934B3A26422B59 /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; - B802D23C73B4D2E4584CD2CB2FD816B3 /* 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; }; - B804A5AB0F7E88A2EB7B803767045769 /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = ""; }; - B808DCA9315A70386FB5A082F78BD5DB /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + B775DE3B86F5686CC6BA50AE1484B0E8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + B7798917671A874980962FCD53594BFC /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; + B7A16E82559E08D693B1F08FCBB279C1 /* UIView+FindUIViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+FindUIViewController.m"; path = "ios/Video/UIView+FindUIViewController.m"; sourceTree = ""; }; + B7BF78C87CA60FA19F8B3C09C7F05CC0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; B80AE04012735F39420C32321BC8CF64 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Private/GULNetworkURLSession.h; sourceTree = ""; }; B8198475A46AB05337E09F32DDA7B688 /* FIRDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDiagnosticsData.h; path = Firebase/Core/Private/FIRDiagnosticsData.h; sourceTree = ""; }; B82698878E55481EB830AE41F5792A4C /* UIImage+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+RSKImageCropper.h"; path = "RSKImageCropper/UIImage+RSKImageCropper.h"; sourceTree = ""; }; - B828B7319126BE036DCB2EADF42112E8 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; - B847A379045027BB5863803B549968A4 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; - B866269727FE8475702C65D5D6A459EE /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; + B82D17E046E84B7E6B9516A36ED373FE /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; + B85D0FD323177467708DD1B84B0E8A2B /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; B87E594363914C08F60E7F87BC3C62F2 /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; - B87EDEDEE3A7A9EAA756C9664B69EDD8 /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; B87FA68E472648622BCFBBBB49B59E73 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; - B8D62298397AB98E6962A42DFCA4422F /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; - B91DFDA9CE811D7C6C0DE77527650116 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; - B927CA7FE290FDC81A3D3CE25E8BD65B /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; + B88EFE28F93756C273DFD31B81D94A21 /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; + B89B0B4941D7D8BDAFADA41E979B96AB /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = ""; }; + B90E8E18A14721E61AD8520D3DD4FF50 /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; B94698C378DCCD8D5BE53B980B19B437 /* alpha_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_enc.c; path = src/enc/alpha_enc.c; sourceTree = ""; }; - B94A3145CB73779AAD6D1D47F0697C22 /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; - B9679A8EA1775A60748680631AD4E02F /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; - B9767166BB7EC94BB583AC6F3DEB384A /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; - B98DE7DA0BD64473AEEE4FB0491582E5 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; + B94E95DDCA26855FED33A1462A4D6940 /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; + B94F459F4F71A3C5C090BD353F9C8387 /* RNFirebaseUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebaseUtil.m; path = RNFirebase/RNFirebaseUtil.m; sourceTree = ""; }; + B958FF11E4EBDD95E16A6757BA5E2B98 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; + B9801943FF6EE3E75F3DD169BA3E45B5 /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; + B9815352B5AD138BB0B3D5D8E8ACBD78 /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; B98F22D61095526FA4DAB138C1B2A193 /* FIRIMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRIMessageCode.h; path = Firebase/InstanceID/FIRIMessageCode.h; sourceTree = ""; }; - B9BDAF5E77383660004F567089133C9B /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; - B9F3E876248C722B34BD44E52B79DD27 /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; - BA040D64A0E9FBCBDF0150118A81B746 /* JitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JitsiMeetView.h; sourceTree = ""; }; - BA3DD4AEEE9E8ED4C3FA8FA8402765BA /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - BA6B140BF6627ECB1A97E9D21CF1B175 /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; + B99E059E125A95B102A51F9D9E615634 /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; + B9A6D143DDBF9DED4488D4740350DB72 /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; + B9E2FC09CAD11A63DFA5276B5366241C /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; + B9EA6B2D4EAEC170C18C160AF0C5774F /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; + B9EB42C9BCE303128856EB2736F6AD9D /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; + B9FD1D31B90E278FA72DAB3D57F9552F /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; + BA0501686230C169300BEAC0CFDF99EF /* libFirebaseInstanceID.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstanceID.a; path = libFirebaseInstanceID.a; sourceTree = BUILT_PRODUCTS_DIR; }; + BA3156A4ABC0881F79EDFB84436B30AC /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; + BA747C4A31683AD9E2C672F936FF2995 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; + BA76D51CB685A8D3D845F08992BF57C8 /* libPods-ShareRocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-ShareRocketChatRN.a"; path = "libPods-ShareRocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; BA7B1ECB0A999AE1D6894D31557E6E88 /* msa_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msa_macro.h; path = src/dsp/msa_macro.h; sourceTree = ""; }; - BA983F831A1606960AFB450FE6AC2EC6 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; - BAB91F51218CD9E1189A982C836C982A /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; - BAB9FDF47570C4513C24F97CB70A1534 /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; - BABE059E6403F44B1FF43875638B0DCD /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; - BAC3F006D6BA56E9DB9D46861DD55A59 /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; - BAC41DDB0B39CF7B503A188B07989D7D /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; - BAC50E6BEC3FD6735E90BB3ADBD23BC0 /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; - BAE8DC5D234672D2E49F73111B307675 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; - BB183ECE5FB81679146D0829623CBF28 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; + BA985EDDB1B2141BD2DB206CF7639906 /* RTCRtpEncodingParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCRtpEncodingParameters.h; sourceTree = ""; }; + BAEDD389FDB86F2C9595891300B20C34 /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; + BB09793108C7309E166DD7F6431EA1D7 /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; + BB27E23F624B07700E5BC096AB174C14 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + BB3E6BDE9852186C2F89456FE139FC94 /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; BB55D0A7ACC4018444D830964E5ABB33 /* upsampling_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_msa.c; path = src/dsp/upsampling_msa.c; sourceTree = ""; }; BB5F2196F1F6A0EDEE597A6832009041 /* FIRInstanceIDCheckinService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinService.h; path = Firebase/InstanceID/FIRInstanceIDCheckinService.h; sourceTree = ""; }; - BB8DD00CF47EB6840BBDB9CC14EF4572 /* EXCameraRollRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraRollRequester.m; path = EXPermissions/EXCameraRollRequester.m; sourceTree = ""; }; - BBA7527C1C64611D976B48DCA5DB2F01 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + BB6C2548D64FF0D2DBE6E2F45A38BCF7 /* EXAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppLoaderProvider.h; path = EXAppLoaderProvider/EXAppLoaderProvider.h; sourceTree = ""; }; + BBDAA03DE55BA0D728CFE25CB9B48B22 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; + BBE2A73BEE72F398152D5D38F8059991 /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; + BBF326A80F02EA2256F124D42EEF3805 /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; BBF84FD0D965475766D25A1A9B273BEA /* muxedit.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxedit.c; path = src/mux/muxedit.c; sourceTree = ""; }; - BC52A2F9EC3448D5AB934A7E681763FD /* RNUserDefaults.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.xcconfig; sourceTree = ""; }; - BC6AF824866AF39B3798D42C8C00D05F /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; - BC740FAC6453F4EB57527BC1A8575DE2 /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; + BC1B6948DAE6D4318C3A409593A9B883 /* RTCVideoCodecH264.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoCodecH264.h; sourceTree = ""; }; + BC1CC30DF02CEB15B85BB15AECF15EC3 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; + BC2889F3709FF3024B5063FBEF2046E7 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; + BC579760A47409D34DA48F491B94F6E1 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; + BC60DD1A1BE5782A175CC1ACBE755F58 /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; + BC71266EE396E0AF9465AA30A2656959 /* 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; }; + BC847E594505B79F7A7DAE96D8E3E6C7 /* RTCDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCDispatcher.h; sourceTree = ""; }; BCAA872A4D14CBCDBA296FA056611526 /* NSBezierPath+RoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+RoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+RoundedCorners.h"; sourceTree = ""; }; - BCFBB91AAB4D0D6D6E79B0BDFD15E29C /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; - BD04BBFFD98E6CCF56F6DC88D27CBBF9 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; + BD04A77FFB44B30ADFDCEC5DC75937D0 /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; BD096CE739D36FD26696BB655E78E515 /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; - BD12D651C2143BC1710E7D75F5DB718A /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; - BD29FF81F5A9EC90A70EDFF7B50634E5 /* RCTVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideo.h; path = ios/Video/RCTVideo.h; sourceTree = ""; }; BD2B4EBDA5FECA8D692FB2F5D5AB8645 /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/FirebaseAnalytics.framework; sourceTree = ""; }; - BD2C6247240F521F7FE1126E9423B04B /* RTCRtpHeaderExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCRtpHeaderExtension.h; sourceTree = ""; }; - BD44312CAA7F36F9F47BA4A0BD0471BE /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; - BD69311CDB472762AFE70B71C60777BA /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; + BD4BADA04798461EA88602BB54F59EC1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + BD5B33E3CA301BA313B9E038EB755EF8 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; BD735586A4C70F9EFDFFC1466CCA54AC /* CLSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSStackFrame.h; path = iOS/Crashlytics.framework/Headers/CLSStackFrame.h; sourceTree = ""; }; - BD73EE30197CA10BE60B039B9764A9D8 /* RNCUIWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebViewManager.h; path = ios/RNCUIWebViewManager.h; sourceTree = ""; }; - BD74F9D1FD2BFF0CD358E8BC9AF73290 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; - BD9D41B07325D430C02F96DEE72AC0DA /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; + BD8DBE269BA238914D954406B85132D5 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; + BDB2A54AFD88BEBD66755390BFC20E33 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; BDCB6B57878BA7581E54CF2B80E10903 /* FIRInstanceIDCombinedHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCombinedHandler.m; path = Firebase/InstanceID/FIRInstanceIDCombinedHandler.m; sourceTree = ""; }; BDDCC90BDE3C4182CBC95A5B0C56BF99 /* picture_rescale_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_rescale_enc.c; path = src/enc/picture_rescale_enc.c; sourceTree = ""; }; - BDF73D0B3870AD69027A5399EB6AD8FA /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; - BE2002769D716B1EF2D93B7A62742650 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; - BE3145A3A7B80D0DB04DEA6D9EA57722 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; + BDE1539A4B971DDFECD344F5B03CBEA2 /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageViewManager.m; sourceTree = ""; }; + BDF5475B1198361D689EE26A49FECC22 /* RCTVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoManager.h; path = ios/Video/RCTVideoManager.h; sourceTree = ""; }; + BE198CE5996ED4DFCC4AA5591D2B427E /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; BE60334F434C035C97EEDC5C4FFB0B66 /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; - BE8D391CE038CB9915BF19593F70A815 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; + BE93B899C253772825175374604B9224 /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; BE94543A04B8947916F72F33F5AB59B1 /* RSKTouchView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKTouchView.h; path = RSKImageCropper/RSKTouchView.h; sourceTree = ""; }; - BEB60AC1AE5D6655DE9A4FD9F84B297D /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; + BEA01B786E55F5DAA73ECDDD93BC0C7E /* react-native-keyboard-tracking-view-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-tracking-view-prefix.pch"; sourceTree = ""; }; + BEA60988EF7B325B39DCB6D15B7CBE9F /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; BEB8AD90DE687544934847BB70635A54 /* GDTClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTClock.h; path = GoogleDataTransport/GDTLibrary/Public/GDTClock.h; sourceTree = ""; }; - BEC0A2B51B9A055AA354B9F7C0FC8672 /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; + BEBEEB2BA458978D5205A4AC168DC5E5 /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; BECC174CE98D1E8D25855CBCA368F55F /* enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse41.c; path = src/dsp/enc_sse41.c; sourceTree = ""; }; BED8F77941E9853807B379F320762D81 /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = ""; }; + BEDCDA7F5FB4E2A3C075E3C438C20C24 /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; BEE47C639BA506ECCE98AAEBCA942A81 /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; - BEE9DE2F508BD36B0D2D9CF462B4D9F1 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; - BEF6FA9F937441C166875C1AA970A9C3 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; - BF086C25B52612E2A5B9BEE973A32C47 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; - BF1B3C7C7E5F67CBF74A1A30DAAA7F05 /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageEditingManager.m; sourceTree = ""; }; - BF572B91F33CCA4A9507BC19A3586FBE /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; + BF2669F34E05E5C395801C5A9CACFA9F /* RCTVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoPlayerViewController.m; path = ios/Video/RCTVideoPlayerViewController.m; sourceTree = ""; }; + BF50473D16917383025432A8E6223ABE /* RTCTracing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCTracing.h; sourceTree = ""; }; + BF7B53A538DA71BD621E4E21A0061DBB /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; BF7E7F291CC663AB89B2147B0A97CD5C /* lossless_enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips_dsp_r2.c; path = src/dsp/lossless_enc_mips_dsp_r2.c; sourceTree = ""; }; BF894941A4BB7EDEA10BB6BB72A8B31C /* FIRInstanceIDLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDLogger.h; path = Firebase/InstanceID/FIRInstanceIDLogger.h; sourceTree = ""; }; - BFA627CB0BA3FCCDE73A71C4D9DA1B2E /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; - BFC13C3F24BC248D0401305095B8EDE0 /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; + BF91AEB48C097339C06386B8E2B40013 /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + BF9B218C823C2D271138977982DD3210 /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; + BFC4BD1915416680E595CE59E15913DD /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; BFFE931B07A9A985A20E831637607803 /* RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropper.h; path = RSKImageCropper/RSKImageCropper.h; sourceTree = ""; }; + C01569BFC76BB941E6E89DEA9038BFB4 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; + C05440DE7AEDC433EE007D0A499468EE /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; C05C6C734B7E36A49D79E4340E2E1A98 /* lossless_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless_common.h; path = src/dsp/lossless_common.h; sourceTree = ""; }; - C0A06E253AD3D4FA7736DB1E5C6EA5DF /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; + C0691451199B8BDA6C4B3DFA6D9368E6 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; C0A19B5100ABC1F5FBA1997C6DDAE10C /* alpha_processing_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse2.c; path = src/dsp/alpha_processing_sse2.c; sourceTree = ""; }; - C0B0D9A66B925A38ECB551B6EECA7B61 /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; - C0D5886475B6246F510D98F09167BEC2 /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; - C0E58145DBEBAE2879FFB9129FC52021 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; + C0CC1D79BC8FE9CE82252104CE989FDC /* EXLocationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocationRequester.m; path = EXPermissions/EXLocationRequester.m; sourceTree = ""; }; + C0F6CD9EAA9363E8E921B4ADFB253D75 /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; C107FA2159EA63861A4318B4F213627E /* format_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_constants.h; path = src/webp/format_constants.h; sourceTree = ""; }; - C139864F460F04E1997FE1A4DC524E33 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; - C16D25BEAD0D62391FD47C4E4D787BB6 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; - C180B32F5207D4369ADE693A339072B2 /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; - C18DD10AA225D10340E87E9FDB0D2E52 /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; - C1A75FDDDF0E5191D973435550A1D43B /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; - C1C9D0C8BFC7D88D5A31B398B7A85378 /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; - C1D568902C1B68AB0BFC0BCF1F6A1A44 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; - C1D9B07B8D59611CA4336F49FC6F237A /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; - C1F5C672F45E668D82E457808A2990C3 /* 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; }; - C20A11A46DA88C93478EB17745182247 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNVectorIcons.a; path = libRNVectorIcons.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C14A5062CC867D03815B2265B53E7E5E /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; + C17AA84604C018DFF873285A00CC7074 /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; + C1C65B22B1F28E459B2102D477B41A28 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C1CAD5976621EE402483B2B1C29A1FB3 /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; + C1EC0AE616DD508988EA9AB1F05C048F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + C209BB66E2E2B1D2C8C1D3708E183AAA /* RNCSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaView.h; path = ios/SafeAreaView/RNCSafeAreaView.h; sourceTree = ""; }; + C20A905513637256A5D3A98B90894BC0 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; C20E79FF6379BE775700BC9533CA620A /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GULLoggerLevel.h; sourceTree = ""; }; - C25C3132086AB84BA9C51ECC691410F2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - C2B2A2F2F71687AA956FAE4982B55903 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; - C2FD0D14DD20B6638244C38BFD0838C1 /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; - C3015B67A27D9B577EB9128D77C6B369 /* 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; }; - C3110F54910A34794326F428F5D19891 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; - C326A26950FBF8AECF7F627422A1F822 /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; + C2375E9ED0BD930A847A78A8F0DACA96 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; + C23BB8FCFCE960A47537246A74E0A6E2 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; + C250190D70E80275926950D8C0AB01D1 /* 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; }; + C27E211CEB629C277869525862585C68 /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; + C3086FDE80F3C329FBDF3470894E6E73 /* RNFirebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFirebase.xcconfig; sourceTree = ""; }; C3317292C2D6C79FF816A519DBBA5251 /* FIRInstanceIDStringEncoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDStringEncoding.h; path = Firebase/InstanceID/FIRInstanceIDStringEncoding.h; sourceTree = ""; }; C343C860082F1FEE952201B8C2AF754A /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; C34446947B99F093F682D587EA14882B /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; - C35135A3E866F0F747B10CA8DF8A2091 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; - C37213CB53C46CD9F8E69CB2AE2C631C /* EXAV.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.xcconfig; sourceTree = ""; }; - C37A7FADF2B9750935F109A6BC2C818E /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; - C3B8419AF9BE9E55B63627F973FED5D9 /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; + C34ABEBDE4D8492B795DDD2CA747380D /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; + C3505850F5817377AC1F374285BFE525 /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; + C37CCC986F14F3787DD4306646D2EEB8 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; + C382E44A54CE80939AA8A0B167D84862 /* RTCMediaStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCMediaStream.h; sourceTree = ""; }; C3DD38C706C10C12E336FB35A6B38724 /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; C3F79C626B8D5DCB8C1CE936834A7407 /* NSError+FIRInstanceID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSError+FIRInstanceID.m"; path = "Firebase/InstanceID/NSError+FIRInstanceID.m"; sourceTree = ""; }; - C400593276D21EC2C865491D1274841D /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; - C41501FA6ED3459433CE429F83F3A95A /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; - C432B3F5228D1F6F5FBCFD6550268283 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; C44017B75276DE9B206A4D82A9690242 /* huffman_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_utils.h; path = src/utils/huffman_utils.h; sourceTree = ""; }; + C464B95B7116CFB68C982C5AB3B74F93 /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; + C478C38681D80CE7EAB7CE07BC58768F /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; C48AFDFD4458D2849FA11DDB2AEBC3DB /* FIRInstanceIDCheckinStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinStore.h; path = Firebase/InstanceID/FIRInstanceIDCheckinStore.h; sourceTree = ""; }; + C4B661827E16398E09A42FB39A99CAC1 /* EXCameraPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraPermissionRequester.h; path = EXPermissions/EXCameraPermissionRequester.h; sourceTree = ""; }; + C4CA52770FD509E661C5FFAE887B1686 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; C4F52BE8C4C32DDDD82F9A4E0F1C97D7 /* lossless_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_msa.c; path = src/dsp/lossless_msa.c; sourceTree = ""; }; - C504584E8224E095C31AE23E97049947 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; - C50DDA1607E28D202AE726201815D27C /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = ""; }; C50F79225FBADCBE2EBB3B2E6528FFFC /* predictor_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = predictor_enc.c; path = src/enc/predictor_enc.c; sourceTree = ""; }; - C51C2026F45418B528689CC462CDE643 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + C51CDB48E569E3C80FA250B67CDEBC76 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; C532307C6FA70A32BF09B2CAE2F65AEE /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; C5491EE4ACB398BCAE280CA7D30FDEC0 /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; - C54D07D5CE862248ABE7CAAE0423910D /* RTCMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCMacros.h; sourceTree = ""; }; - C556416AE8FA44165F45655B57F9A65B /* RTCCallbackLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCCallbackLogger.h; sourceTree = ""; }; - C568C9E312BB4CA565C2595AFB054FD4 /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; - C5737129727C33E8405D47709B499CA0 /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; + C549965E963BE9FD733CEF293F5DB876 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; C5746050230C6395736E499C7FAC2CE3 /* Folly.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Folly.xcconfig; sourceTree = ""; }; C57F3A256584CA86343D5E7BF998DCB1 /* quant_levels_dec_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant_levels_dec_utils.h; path = src/utils/quant_levels_dec_utils.h; sourceTree = ""; }; - C59E3995282AAFDEE53C840CF2AB879B /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = React/CoreModules/RCTImageEditingManager.h; sourceTree = ""; }; - C5A0F193FBBF6413D8A61F784E82A2EF /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; - C5AE3FE00396E6932F0970D875D46BDD /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; - C5C1FF090A33DB8187E44A8C45E2F500 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; - C5D1A6EB84C7A61CB1A61A0195830C35 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; - C606E2C22A944930E009692C8A974707 /* RNFirebaseRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseRemoteConfig.m; sourceTree = ""; }; + C58C2D12BB4864EDCD37473B576FD877 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; + C5DB173570F328FBC26131203F7BDC19 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; C666B2725A5A11504FE424459DF51AB1 /* GDTRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTRegistrar.h; path = GoogleDataTransport/GDTLibrary/Public/GDTRegistrar.h; sourceTree = ""; }; - C67AF0C017AA58BBD6A2F42C350A4943 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; - C6AA6C2E9E2E9D144F9BD7D31DA2F4A9 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; - C6BA0DA9A42BF72CD1D0557441A778DA /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; - C6BC80FBF3C55A6B59C978DF008D2DE3 /* libPods-ShareRocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-ShareRocketChatRN.a"; path = "libPods-ShareRocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; C6C822CDF50173D41B4EB726BBF1F243 /* GoogleAppMeasurement.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.xcconfig; sourceTree = ""; }; - C6D78F3CBC90BCC7511EF05DCECBF137 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; - C6FE7BD6FE6B01D18E8998368A0640CD /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; C6FED9F0BE14108E4CC6E139F97D40D3 /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; - C73418B1525F0BA3A50BE187BEE0C073 /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; + C70881379A1A9D1C8EBFDF89776553F0 /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = ""; }; + C71CC85EC1E8456E2822BEE4773FC8EB /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; + C721861E7191D9B777A16094A0E6D5EF /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; C7525067550F4AE7BD3A6DBF95FFF0EE /* FIRInstanceIDTokenDeleteOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenDeleteOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenDeleteOperation.h; sourceTree = ""; }; - C7BB46CC480012CCA3BF74F60B24177E /* 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; }; - C7C1DBD658BA3453095200CBB9367C29 /* RNFirebaseAdMobBannerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobBannerManager.m; sourceTree = ""; }; - C807ACF48B5496C75D21C7BD875CE3BB /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; - C82F229D9E944295E826EF102441184B /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; - C8ABFF105AC704B4DFECAF248C4ADCDF /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; - C8C73E7B045F4108D3D7B2ED855B3743 /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = ""; }; - C96A5AC4864557B5EC8617A856C2886E /* libReact-RCTActionSheet.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTActionSheet.a"; path = "libReact-RCTActionSheet.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + C778DFBE739DE87DAC7AD75A1E031227 /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; + C780E0FCA9FA33EA09A500410333B0DC /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; + C784534B95C2F0A8FD143DEC7F34D5E8 /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = ""; }; + C7B1DA4959C2459DF10755381BBD59FC /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; + C7B596E3D4744EF24AC44C32E9E362CE /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; + C7F9421C8E92E1B5B91EEA501EB4D352 /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; + C81F5F2E2F2745501CB1DC35224AE57F /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; + C86F5A299DE8090C111FCE880EF7F18B /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C877FDEA02D041D94AE39EA4AC49B00E /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; C982F354FBA3AA8957FF45226BD8292E /* GDTConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTConsoleLogger.m; path = GoogleDataTransport/GDTLibrary/GDTConsoleLogger.m; sourceTree = ""; }; + C99BD064EAD25CEE5509438F9BFA1FFD /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; + C9A49FF778C3EC6F3ADAB38E8C2ECF0C /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; + C9AE0B6CB928A67EC2BD1D1E3387E5E9 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; C9C929E0054DD6CFBA0D1A315C4E79A9 /* SDWebImageWebPCoder-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImageWebPCoder-dummy.m"; sourceTree = ""; }; - C9D679CE046C913EAB6601E75F437777 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; - C9D9856F57AA907EF3B985BD830B5251 /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; - C9E77B660C22879AD0E5B67ACE606165 /* ReactCommon.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.xcconfig; sourceTree = ""; }; - CA596E9C3B1274ADF019ACB51905326F /* RNFirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseMessaging.h; sourceTree = ""; }; - CAE65338D4166647374D7B7BAEB9B4F8 /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; + C9E0424E50A3012D7F6263A201E8C957 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; + C9F171DE6D8B89954C60A824C6BC6524 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; + C9FB08E10264668CCE3268D50ECB2CBE /* EXContactsRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXContactsRequester.m; path = EXPermissions/EXContactsRequester.m; sourceTree = ""; }; + CA0DAA66C9EC6C3BAD3F6C8643FECA44 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; + CA2DFB549BFC30949D3D4AE605668DEA /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; + CA3557B85A6351B8B481AD7B98A54E2B /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; + CA512A977C70AF81AD169694C88423E1 /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; + CA5DD69CBB094BE309AC411E3A4A8836 /* react-native-jitsi-meet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.xcconfig"; sourceTree = ""; }; + CAA40A664C3D4C732482D9D9E78269AD /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; + CAA6CA499C28225F63CDDB4490A823C4 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; + CAC29FB99AD285D7390FCBA07B3E6A93 /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; + CAE0ACF9C9C3F738A9F297AE3BDACC72 /* libQBImagePickerController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libQBImagePickerController.a; path = libQBImagePickerController.a; sourceTree = BUILT_PRODUCTS_DIR; }; + CAF5F2FA5C5764EF3607ECC2A748C3C3 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; + CB3820CF16BF258CE29F6B172405DA86 /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; CB474847C01C8226B45873C974C8A65C /* backward_references_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_enc.c; path = src/enc/backward_references_enc.c; sourceTree = ""; }; - CB47C6F7161CC32B42084E85D4EB30FB /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; - CB5073B9A26565A0967980E34B3D17B6 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; - CB8B12C52AE984A3128A420CB4442F11 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; - CB998E12C45F314505BC27A76C415407 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; - CBC70175832ADB2C24D42BF6FD067C14 /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; - CBD259C327377C693B4CE403402CFB77 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; - CBDCA198B6442671F614F967ED74C497 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; + CB82849F1F6FC462F3A50E932BC8C0EC /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; + CB9535677DE7DF46883CE340FD0A5CFD /* libReact-RCTNetwork.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTNetwork.a"; path = "libReact-RCTNetwork.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + CB9DAACEDEC6F23F306D137EB7802662 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; + CB9E8D5136D1764600472CAF1D5FC1E3 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; + CB9F5150D7C5BE2AF5ABA138C89030BF /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; + CBAF33463FC49F8D88BE7292369B2888 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; + CBD88173ECBC18FB0617900CCF8E2720 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; + CBF682EEE52E0BFF5D740021D12EB670 /* libGoogleDataTransportCCTSupport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransportCCTSupport.a; path = libGoogleDataTransportCCTSupport.a; sourceTree = BUILT_PRODUCTS_DIR; }; + CC172B850C2D53176C545D094C4010A4 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; CC1F595BAE2B9941E1DF118CCF7EED4D /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; - CC3CB154BAF16BF08628E0485999DA4B /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; - CC7084FC948D815959B7B6BD66180E9D /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; - CC82AC4D3188CAC47F92BD901916EB3F /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; - CCF13BD0E7764B675172A99EB708F5D8 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; + CC3239C87CAD4514F6D700F30B839462 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + CC5E1BC2080BF624F1360EA33C884DCC /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; + CCA1304BAA7241ED6B50653FFC89D859 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; + CCA435F27CDCA26C481E7FB9BCC5F889 /* react-native-keyboard-tracking-view-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-tracking-view-dummy.m"; sourceTree = ""; }; + CCC80984F81B311050BF2163EA6E0513 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; + CD0C2F1CEE9B9DF93217C4C4608A28EC /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; CD0E671EF80D002991AAF981E72BED49 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; - CD4E9DD06E7FC929193069CD507CA2DD /* 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; }; + CD2DEF517A7A1700F6C19F3604CA0969 /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; CD5D4D04DE011B2BCEC7CB50B6A2EB6C /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; CD6B23FFF48BB43F31E60DC5F3C4F92C /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Private/GULNetworkMessageCode.h; sourceTree = ""; }; CDA3E71057426F69B44429BE6174D6CE /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; - CDA8ABFACDD3F2E8D6E195044CD8D4DB /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; - CDCE878B34213960A39C86D72769BD67 /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; - CE0C0E79F56FCD18A2B573D45426E2B7 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; + CDFB32E7DC9DF4A0CE573953AFC382D6 /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; CE267DBC21168FCDE00E079886422BE7 /* buffer_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer_dec.c; path = src/dec/buffer_dec.c; sourceTree = ""; }; - CE32FD9AAE872F96034704AEF28E8F62 /* libReact-RCTText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTText.a"; path = "libReact-RCTText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - CE69E32D582FA333BAC513CAD8D4B09E /* UIDevice+RTCDevice.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIDevice+RTCDevice.h"; sourceTree = ""; }; - CE7F716DAE1FDA0CCC81EA4CA285A622 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; - CED675B583FA736552ABE486E6C059C7 /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; - CEDC101390EB641DCCE9B731F22164F1 /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; + CE39A51FA230D244ABE587F602D16FEF /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; + CE45ABEFBDD5053A4586A48B1F2EC826 /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; + CE972CC0257D012B8D47130502BE70B4 /* RNCWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebView.h; path = ios/RNCWKWebView.h; sourceTree = ""; }; + CEA6DC59ED78B3FCF9A7C182534BA84A /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; + CED89ECA78AFB932B7320D7D5667B82B /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; + CEE89D9C163D08ECD6D26CACC63BF904 /* RTCCameraVideoCapturer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCCameraVideoCapturer.h; sourceTree = ""; }; CF2DE2FBC85F5A7C4B91A1843E653A85 /* GDTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTAssert.m; path = GoogleDataTransport/GDTLibrary/GDTAssert.m; sourceTree = ""; }; - CF31F926ECC5B6D8AFB0834962AE2FC6 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; CF34934D7B6EF5A185FBAF6BF9CCC504 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; + CF674F5C2EE4E534C77580819ADBACA9 /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLocalAssetImageLoader.m; sourceTree = ""; }; CF725CC00D12DF34068FE21EB0BB2115 /* glog.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.xcconfig; sourceTree = ""; }; CF8EFCA224A8A78EE4E46873DD9DE78E /* token_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = token_enc.c; path = src/enc/token_enc.c; sourceTree = ""; }; - CF93CD62B84DFAE84148EF3D66B5E865 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; - CFBA29F62FFEADA1B7E424BEDD68985F /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; - CFC16F106B3905E77911EE2CD8D20F1D /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; - CFD405DA602A5C664E8B3B4BF46D8EFF /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; - CFEA128847EF8ED3C06427F753FB054A /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; - D0280C22D66CA99355BCC526A3BA164F /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; - D0303932CBA19C4343EA41C633571533 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; + CF9F7DB21A2A14CB2AE384B653AA5DEC /* RTCAudioSessionConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCAudioSessionConfiguration.h; sourceTree = ""; }; + D001D3E7D0B62F8B5028556C2499174F /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; + D02882A27829973F671E9FF724BE74E0 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; D03C45B97B087F2A82A89A5EA3B77877 /* demux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = demux.c; path = src/demux/demux.c; sourceTree = ""; }; D04FDD6B4AC745C08223B4D304F993AA /* Pods-ShareRocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.debug.xcconfig"; sourceTree = ""; }; - D05542AB868F073E68875B27D150A98A /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; - D09A24E452974C39DE955946DE3CD0C4 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; - D09B324CD047987B92F0B8F9E2AD00FE /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; - D09CAD783A0155F346BC9342B8C32F38 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; - D0A089E9E699BE7D954D659F8DA9F0AA /* RNFirebaseFirestoreCollectionReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreCollectionReference.m; sourceTree = ""; }; - D0B2AB376B2EA106097A34E061DF4E7E /* RNFirebasePerformance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebasePerformance.m; sourceTree = ""; }; - D0BFA0CD89DAF8B6CEFC90EB66C88F4F /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; + D063788FC833FCA78FF39E3EADB973B0 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; + D086BDC8EE58AF8B7506367350503C87 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; D0D54B89EC0AF7E09DD6B2B7090F1E09 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; D0D90B0B3AF47CEA448F326F55EED569 /* enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips32.c; path = src/dsp/enc_mips32.c; sourceTree = ""; }; - D0E211E286336B914A2B19295E3B9225 /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; D0F0CDDFC37CF634DEAFF325946238AC /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; D1177991A497DFD1BC445CBC02CA0241 /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; - D11D5581B4814C0A6DD0BBC33AF5A3EC /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; - D149F26BDBDEA13FCD6F1EDA897DC3ED /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; - D18C7569FE926F1D9C04C243B7234158 /* RNFirebase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFirebase.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D1A142ED1A79FD8DDE432ADE1BBC91CE /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D201004AC766A6E485B5083CBCCB5A61 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; + D182C2AE3A508C0EF6843366FF367D27 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; + D1D9F42749D286DA3C3D85F382605AEA /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; D21280F8727253B2C9655BF79BCCAC51 /* FIRInstanceIDKeyPair.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPair.h; path = Firebase/InstanceID/FIRInstanceIDKeyPair.h; sourceTree = ""; }; - D254B9DD5DA445DD64A4662596F1BC7C /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; - D25847856E4823402A310E9043720C4F /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; - D2623C93B9C015E9A8F1571FD31B16E6 /* libReact-RCTAnimation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTAnimation.a"; path = "libReact-RCTAnimation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + D220016644CD56B58CA70C0450DDEA7A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; D278C02A22313007EFE6AC57486A6B89 /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; - D2AE6D5C127E49CD7DE9E21606CA2DEB /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; - D2D3FB75CDE21750E73D11A0078FD826 /* EXCameraRollRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraRollRequester.h; path = EXPermissions/EXCameraRollRequester.h; sourceTree = ""; }; + D28902AD70409583A84545C0F602E03C /* 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; }; + D297D1CD88D6EC383B4F171C315963DA /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; + D2C46D3526544147DF57134EB39E11AC /* RNFirebasePerformance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebasePerformance.m; sourceTree = ""; }; D2D80125EE7AF49F27704FC89CF1BB64 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; - D2D84CF223A77580E5ADD76F41954CB1 /* RNFirebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFirebase.xcconfig; sourceTree = ""; }; - D30EFAFD0F4CC34AE6A89AF3D3B42174 /* RTCMTLVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCMTLVideoView.h; sourceTree = ""; }; - D3267B9CC7B825EBB5EF6F0BAEC6DE20 /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; + D2DAD9FF432614C89D85FF250A14D230 /* react-native-safe-area-context.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-safe-area-context.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D35C46F3C4D2A2C913E985B6DC331EE8 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; + D3601F1890A13AE99FA8ADAA2C18995A /* RNCWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebViewManager.h; path = ios/RNCWKWebViewManager.h; sourceTree = ""; }; D387F835AC8DA23F3D29D5423CABE800 /* FIRInstanceIDTokenOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenOperation.m; sourceTree = ""; }; D38F9EBA512377F8AD6195CAD24AA076 /* muxi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = muxi.h; path = src/mux/muxi.h; sourceTree = ""; }; D395A41DFE691263EFBD73A036326E1D /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; - D3B340CE324D758981C64E3D25801174 /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = ""; }; + D3DCBB875E7F31DF611DD837CB4C9350 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; + D3F7A49D41EA1323739A8EEDF655D070 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; D3FF10070C419D99AD4D822D3AAEC58E /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = Firebase/Core/FIRComponentType.m; sourceTree = ""; }; - D40926A59479A9A42CB2E7BF2E8C289D /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; + D40FC7FEB9E4848D1D5AFDA19A84F901 /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; D418A9B1C95E6D0B846EF2FA2D37FB61 /* upsampling_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_neon.c; path = src/dsp/upsampling_neon.c; sourceTree = ""; }; - D426D3B4538E31F2F6DB0DEA8FDEEA90 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; - D43C5BCAC7F99C5788577978B003C422 /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; - D4747430DED00A1BF927230B54130799 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; - D4A3A82FBFA472B14729790691BDBCD9 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; - D4D6A0329CD649D0C075E993F930BFBA /* libReact-RCTNetwork.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTNetwork.a"; path = "libReact-RCTNetwork.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - D4E04526AB5854DEF94FD076367D04EC /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; - D4FE9563D76D3CB9C9DC30538A962747 /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D60EEAAAEB07F8DC954BA13280205199 /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; + D421CBCF27690CB2E19BC6382EFB0684 /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; + D48798F35DB8CC0F081656D3B6BBB207 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; + D4C8BB816382BD725C1AE458A02512CE /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; + D4F01AAD7CB9648EDD4903DCFC9D468B /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; + D514ADD46EDED40FDFACCC29ADB6C7CF /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; + D518267F621AABCE1AEEA5E4D96B0F12 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; + D54F1F028E4A287D59D425629876E6C4 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; + D5668FBAE8B2362798A6E63208DC49B3 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; + D56B003B00CF06FDF9A497D77B0EEDC7 /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; + D583E0FD9C99A5C4EACE257245AE37BF /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; + D59F5ED7689ABD2E0ACB3E04628C60C7 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; + D5BCF7266A460806A3D9FF384F411D90 /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; + D5CAF0426CC8602ABB0F6D80017FAB30 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + D5D36D2815742A5225FA0F7FB1564C98 /* RNFirebaseLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseLinks.m; sourceTree = ""; }; + D5E388B2F109F2CAE5E43CFE21637BB8 /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; + D606B56E6E0CFA9D6C8CA3969F1D1C58 /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; + D63C7908A83EB34E7004779295B74A87 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D6470CF65092294FA7B4087C4377314C /* dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec.c; path = src/dsp/dec.c; sourceTree = ""; }; + D6536348D7EA758B755E6F305F8E9CD5 /* RTCIntervalRange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCIntervalRange.h; sourceTree = ""; }; + D68D5FA26C31018142C8B1561C2C016C /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; D692DE8FDBB660E94D7E45841B4028F8 /* Firebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.xcconfig; sourceTree = ""; }; + D6938FD59A2A273E2C6B63F1BC024D35 /* libYoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYoga.a; path = libYoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; + D69BE0909BCC07D0A367301F3CC5BD96 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; + D6A27DC29862C40909025D3F43963B47 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; D70D0D476839F85C75D635CAF26AD9FB /* GDTTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTTransport.h; path = GoogleDataTransport/GDTLibrary/Public/GDTTransport.h; sourceTree = ""; }; - D70EE4F4CC28276151916B59A132159F /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; + D724AEF1D0B03B68770986BBC9C5AA73 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; + D724DB8C18F240D68DE0EED6767CF761 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; D7C5FD4A2B413F2340C28CE67D1E39FD /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.m"; sourceTree = ""; }; - D7D6C76A0CC4E29642AA995E5B207425 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; - D81D2902FAB494BBC793F02E38E114FA /* RTCRtpParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCRtpParameters.h; sourceTree = ""; }; - D81EAFF97C6B2431E7B66891FA606C38 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; - D8463CB6990B9D893817B0E248FC48F8 /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; + D7CFB5FCCE46F67953383729DACA74B7 /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; + D83DE8183D066CB2F2C6E53B2089E5EF /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; D85C13B6D27EA4AA12CFAB1830B09723 /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; - D89BD1619EBD1C5F996B512ECEBFC16B /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D89F67BCE0B3104E43AE4990FD086D98 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; - D8E0DF98A1C17EC204E1F71B85650A9B /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; - D9490B260356D5DD04A0A98DB79CF269 /* RTCLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCLogging.h; sourceTree = ""; }; - D971561D00B974F4A1846DC3C13D9D2B /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; - D9D69FDB3C6E261AEE891328E6E3B297 /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; - D9F513E2F486762B6E230D21111C8319 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; - DA03B9B48754FCB178E797AF28333F2A /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; + D86F0194DA38FBCDB83F8A864E8EA0A8 /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; + D88964CA7660593B4AB528338DF1943F /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; + D8CD7DDA6304EEC670E45CE8A7C38657 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; + D905C7F6A78E8CB4BAA9977EEE5E9256 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + D91A787FA4BDC8B6812704EA4D081DCB /* BridgeJSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeJSCallInvoker.h; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.h; sourceTree = ""; }; + D9255B09619AC90653E8B4669EEAD8A0 /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; + D99A9B57178C342225E779D23CB685F7 /* RTCVideoDecoderVP8.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoDecoderVP8.h; sourceTree = ""; }; + D9CB62457DE962F5C0BC85ED973124EB /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; DA19C5B06E232034EDB5EF3362EFB5AA /* FABAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FABAttributes.h; path = iOS/Fabric.framework/Headers/FABAttributes.h; sourceTree = ""; }; + DA26D204A30ED51CCE0BD106B23C0230 /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; DA48F97904C179AC3326BE4587A49249 /* FIRInstanceIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDStore.h; path = Firebase/InstanceID/FIRInstanceIDStore.h; sourceTree = ""; }; - DA51C24792BFABC1AB85AF381A9BFE0C /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; - DA522B551BAB1B9884E87495F4389203 /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; - DA5783422343FC461A172E9D4CB314D9 /* libReact-jsinspector.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsinspector.a"; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - DA6B3F8075E47D4DBA47869501409698 /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; - DA86301CFF5D04DF5A63F5A98C87DADD /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; - DABF64C8CA637730EF217FF4097BD858 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; - DACEA80519903C23ED463542B32F17C4 /* libReact-RCTImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTImage.a"; path = "libReact-RCTImage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + DA4FD79BC4C080BBAC75F57A2F011894 /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; + DA6DAB4FCEF17B8113C896C04CB7A020 /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; + DAB30C9A67672B75CA52254835439EA3 /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; + DACDAAE921F8AABB62702B5329E67DF1 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; DAE138DE274E387CB5BD5A4785EED9E0 /* GDTTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTTransport_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTTransport_Private.h; sourceTree = ""; }; - DB08456747702BE39CD8803E11ECC1A2 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; - DB14BF8B82F97702BD1C3B9C8833BF8F /* 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; }; - DB550C0B57182EB7ECF71B581CB8332D /* libReact-RCTLinking.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTLinking.a"; path = "libReact-RCTLinking.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - DB5B650D6FE6BC53FBB72B33C0987CA6 /* 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; }; - DB66B4A755AD16758D26FA46E333B4FF /* EXLocationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocationRequester.h; path = EXPermissions/EXLocationRequester.h; sourceTree = ""; }; - DB6B711A6070F2AA7E021F095D156297 /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; + DAF2641D9AA7A39E091124E1212FB0F4 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; + DB2E0A13DAFE993FD8B1FFEC04E1B9A9 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; + DB356D244D73F77E110E549ABD8161AB /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; + DB48D08D4C5DE12205EDBA56D9A5C5EE /* RNFirebaseAdMobBannerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobBannerManager.m; sourceTree = ""; }; + DB723D9884A4D1B4A9B082790244120F /* RNFirebaseDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabaseReference.m; sourceTree = ""; }; + DB8378033267237BDAD0B0118FEF6C8B /* RTCRtpTransceiver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCRtpTransceiver.h; sourceTree = ""; }; + DB92B34B35282B7C1241702C5351DA4D /* RNFirebaseRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseRemoteConfig.m; sourceTree = ""; }; DBA4B7775EE344D3605443272F244FB9 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; - DBB788C82457703874079923331D7462 /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; - DBC31B184432CC52EC5989F5CC9F893E /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; - DBCD18ED6ECF37304F4180B2DE3CE1B5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; DBD5AB1191866F85728382E4C44FBEA1 /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; - DBEA20B2096FC481FD953A7C7B9B4C73 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; - DBFFA3665B7EE403F664F59B2140602D /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; - DC0456F8A3FA896849DB899E8CF6E7FD /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; - DC0E60E01C35B322B6A4EC0ED1A1AFE5 /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; DC1B3A67DA9202AB6021155602DCD3FE /* libwebp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libwebp-prefix.pch"; sourceTree = ""; }; - DC2709C4A5BE89BE0D90AB30D754722C /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; + DC2C443A9EC399C362B961C99806AF4D /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; + DC2E27570828D8BC5CD6B2655B0FD12B /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; + DC2FE7384EA6705DD88B4E01FF9B3DBD /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; + DC5D55CF69CD3E09C5335B4D17E7BC00 /* RNFirebaseAdMobBannerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobBannerManager.h; sourceTree = ""; }; DC8E785FF376689515D1C1A26F4C5CDD /* FIRInstanceIDCheckinPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinPreferences.m; path = Firebase/InstanceID/FIRInstanceIDCheckinPreferences.m; sourceTree = ""; }; - DC97CDAB52C4037177987D5EACD5438F /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; - DCC2396290513A2898C8A429CEFB1F69 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; - DCDEB8A064D1D65C5FC47C3049617644 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; + DCA8F72E600DEB62A52E063C1F79509D /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; DD02C6DFDBEDEC38DB9316122DC68038 /* FIRInstanceIDAPNSInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAPNSInfo.m; path = Firebase/InstanceID/FIRInstanceIDAPNSInfo.m; sourceTree = ""; }; DD0B1E28CFEAEDE4D379309B30800D2B /* FIRInstanceIDTokenManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenManager.m; path = Firebase/InstanceID/FIRInstanceIDTokenManager.m; sourceTree = ""; }; - DD319BCE7393201FBF4C301547141771 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = ios/RNCWKProcessPoolManager.h; sourceTree = ""; }; - DD54DCB986E15163233721E9EEB78F73 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; + DD2C4EC3A9DBE95E18C1A8834F48B8E4 /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; + DD5AC944A40B5905B0C61A7480154642 /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; + DD629E21B521B46FA7B96D55086A5F1E /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; DD79AADB303B0977986710BC00250C8A /* bit_writer_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_writer_utils.c; path = src/utils/bit_writer_utils.c; sourceTree = ""; }; DD7A713DBADAAC11AEAC9CBF5714CA91 /* lossless_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_sse2.c; path = src/dsp/lossless_sse2.c; sourceTree = ""; }; - DDA1EFB3F0B2BA756AF27AB8E6BC67C7 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; - DE347CCC6CB1C9D009A596DE10BD2DFB /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; - DE4385F483B2F25C810E9173F642BEA3 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; + DDBB81227D8F406C312DCEA9C812FB99 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; + DDD26D438FCD9676A62A1C3F685BB19D /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; + DDF536DF4758AB8D249D4010CB726CC2 /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; + DE6BC389E62E0C665323C3196A60E8EE /* react-native-splash-screen-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-splash-screen-dummy.m"; sourceTree = ""; }; DE9A3B6BFE9643DD7B8ACFFEAC71AF79 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; - DEA78C6D5969CDC7D313E66F1C19CD26 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; DEB3142967DB480025141D11A7610924 /* GDTDataFuture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTDataFuture.m; path = GoogleDataTransport/GDTLibrary/GDTDataFuture.m; sourceTree = ""; }; - DF1A6D5E96C959D1115FD4F7297B0B91 /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileRequestHandler.m; sourceTree = ""; }; DF4CA748C792A657820465D46282135C /* FIRInstanceIDTokenFetchOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenFetchOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.m; sourceTree = ""; }; DF6A03876D41F9E85AD044DDB6F458A4 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; DF6AA8BE3AB1DA509A0AF060FAAF600C /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = Firebase/Core/Private/FIRComponentType.h; sourceTree = ""; }; - DF94B228DF9ED4ADEB286D2A78FFDF34 /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = ""; }; - DF970844235792870CAED48BA5088B8A /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; DF9EE2E07853F87422F1FE26C5625E59 /* FIRInstanceIDAuthService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAuthService.h; path = Firebase/InstanceID/FIRInstanceIDAuthService.h; sourceTree = ""; }; + DFA3DFB2E2678897E390E41A3AD2E89D /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; DFD54D567474AE55EB97F8845FAF3B7A /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; - DFDA67AB734798D01BABFB49DD83A8C7 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; - DFE376C1EEA06E6D124C9CD593D2B29E /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; - DFFC075B703E0F2D713B87FFD68C01EE /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; - E00CA3DD7631C80163263795AEF04C0D /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; - E021473EC4630814170E3113CF3B7FDC /* react-native-keyboard-input-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-input-prefix.pch"; sourceTree = ""; }; + DFDC71CC528CD516EBE0949D4046A3A7 /* libReact-RCTBlob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTBlob.a"; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + E0115C62C8339DE2E7F0D57BDC9BA823 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; + E0173234F52D540979F8C3F93C302BF9 /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; E023552C9F195B60B63937F4756FAEBF /* picture_csp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_csp_enc.c; path = src/enc/picture_csp_enc.c; sourceTree = ""; }; E04976218228CC76EBC93B283373EC06 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.h; sourceTree = ""; }; - E07F75C2202CCBB305FAE378EA75B5C0 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; + E05754C48F54E4BE3182E0BA035B8B20 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; E0940ADE07D8CBA6B2FC95ADF0740055 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; - E0B7512BC3FDB975E4DC5278844D3829 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; - E0D0804389C818D5221C13368D7692BA /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; - E0F6A5BB12B0909DC712D121D77815BB /* RNFirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseCrashlytics.h; sourceTree = ""; }; + E096419FE9FDA14CD8D75711559F08F8 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; + E0D15A4C59B58AC5E989AC80120575B6 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; E11189EAF698EAD899AB2AE3B2F02FE8 /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULAppDelegateSwizzler.h; sourceTree = ""; }; - E12DE1FACEA60CC3468B49C6048FF01E /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; + E113B65AFF6BD28BC6054B313D106D16 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; E13B19579CDE91472BF9A97468779498 /* Crashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Crashlytics.h; path = iOS/Crashlytics.framework/Headers/Crashlytics.h; sourceTree = ""; }; E145567783E4BFD06811051A04D79B43 /* FirebaseCoreDiagnostics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.xcconfig; sourceTree = ""; }; - E14F6825C0F43B512C03F5A3139C49E8 /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; - E16B6C34322A45B7EC5714D08E52E257 /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; + E14C2C3058FFB23946C646EFAB4F80C5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + E1706E8B67D7B2619A452A43075536FD /* RNUserDefaults.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.xcconfig; sourceTree = ""; }; E1A7EE205F60BF435DB15650AA5B16EB /* FIRCoreDiagnosticsDateFileStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsDateFileStorage.h; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnosticsDateFileStorage.h; sourceTree = ""; }; E1D7A0323DA5C7661F1AEE66960694ED /* GoogleDataTransport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.xcconfig; sourceTree = ""; }; E1FDB18215738E0DFF8669E469DFAFDD /* rescaler_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_neon.c; path = src/dsp/rescaler_neon.c; sourceTree = ""; }; - E2009A42795A8FA28617B6A94E490C62 /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; - E212B2434BCA31E99F01A9D8A6ABA96A /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; + E20B78A3A4F66E5F6881811762EA7F52 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; E2291D8D25BAC35D0DE563E75BE219B0 /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; - E2306D5FB2F49E75665AE8E3911A4754 /* libBugsnagReactNative.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libBugsnagReactNative.a; path = libBugsnagReactNative.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E23A1147D0F357AF3303C538FF40F94C /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; - E23DA3C75144AD5D02C79403F82F9B6D /* RNFirebaseStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseStorage.h; sourceTree = ""; }; - E261F254D70CB13AFD69F6D63DE19484 /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetworkTask.m; sourceTree = ""; }; - E2DE351B1775224D29F696BFDD71B490 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; + E27183475FF0DBE7A188184F39DE0204 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; + E2DB8A21748BB05BFF874734C01BBDE2 /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; + E2DFC110533BBD6C6C73C679331C3DF4 /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; + E2F8C08D8C2EEF5556A26474BBF6553E /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; E31CEB7D87267B02F5519491B8045ECD /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = ""; }; - E320330B66430A462BF3A29625FE42EC /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; - E346DEA3E37B00DB83B03FBCEAAD30F7 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; - E3544AA17D2941CE45A9B02FC12E622D /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; - E380014D1CD129168DF8BE782A0499E8 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; - E3A9649E834BBCCF4F0B32C6998F598D /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; - E3ABBA63C07AE6739FEF6B4BF5EEF596 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; - E3B0D166FD429889916B0214429CE1AC /* RNFirebase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFirebase-dummy.m"; sourceTree = ""; }; - E3C9A6F63DA71839ED30EF7139A58B6A /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = ""; }; - E3CB2E86953B06D0BC70EC78B4128E41 /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; - E3E2EB753553604B5574D4108338A793 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; - E3E9D8FA14DFD596D27F9BB39C8D6DF6 /* 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; }; - E400ED13513489C0B7A33BB7F1977019 /* RCTConvert+UIBackgroundFetchResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+UIBackgroundFetchResult.h"; sourceTree = ""; }; - E4069059ABB37C390BFC6AF38DBD8142 /* RCTRequired.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.xcconfig; sourceTree = ""; }; - E427651E7E91747BDA13455AE366AD34 /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; + E33E40BBC606D616834A4103003B91AE /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; + E34DC08E8D751B379CB53B3B62D64F7B /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; + E3693BD21A8AB71ADADE3299FE493832 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; + E376D3A069F7F744D16D2109BB79B45E /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; + E3840C1128E2D918D5FD34FD02BA879C /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; + E4426E25538C8C6CFEC721B5AD10AB6C /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; E445482A429BA90997690A15AD48D454 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; - E4643ED4C614DE3BB7895CEF96737F6C /* Bitfield.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bitfield.h; path = yoga/Bitfield.h; sourceTree = ""; }; - E468CB2D7E39677577EDE1E1CD5B3AC2 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; - E46B7F615951CA4250249F381CEC40AB /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; - E477EB4A4C992E646A28623B39AF83C7 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; - E482EFA0E65870EC4D10D4807F35DE46 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = ios/RNCWKProcessPoolManager.m; sourceTree = ""; }; - E4B3498FD7A4E94C6C64AAE767D77C96 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; - E4EC75C2C46DFA45D3E68EA29C9560FC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + E455556F97EC4F3832300A23529B49BB /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; + E467224E1ECAC715668839A01796EA04 /* RNFirebaseNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseNotifications.h; sourceTree = ""; }; + E48A131B2AEBC226BF7AB8FE7D76BB33 /* RNFirebaseFirestore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestore.m; sourceTree = ""; }; + E4A76891306B73410E917CAC5A9F05AE /* react-native-splash-screen-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-splash-screen-prefix.pch"; sourceTree = ""; }; + E4AF32D21B0B334320F7FFA947C0C71F /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; + E4C40F79656B89558B9B184176DFEB89 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; + E4DB37F944F54E1B439D2222AEC5F24B /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; + E4F59CF3B1654F7690A58B63A6C4403D /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; E4F955CFBD57187BE53C9B28D12BCB5F /* UIColor+HexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+HexString.h"; path = "SDWebImage/Private/UIColor+HexString.h"; sourceTree = ""; }; - E51D207B847CEBEE94542C146B1A0C3F /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; + E5196BF93A86C382EDFD56E80F8D1558 /* rn-extensions-share.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.xcconfig"; sourceTree = ""; }; E52E0E9DB232F8BE40F074B56A453EF8 /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; + E561B5B55FD08CF6E1375EA185DDEB04 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; + E563354BBF88A993DC96BDA59F1ADBDE /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + E56A4A99297B8367A0249D822512795D /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; E589B89DC6C6FCB4A178CD809A1586C0 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; - E5E066BCE8B089D2C4119125029F4443 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; - E5E6A269FD82280AE52486F1B37AF15E /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; - E5EC125FBD06D04A9ED25061720D8707 /* EXAppLoaderProvider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppLoaderProvider.xcconfig; sourceTree = ""; }; - E5F451C78F4B39595EDA7ADCDA9F4B76 /* EXCalendarRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCalendarRequester.m; path = EXPermissions/EXCalendarRequester.m; sourceTree = ""; }; + E5D67042060FC0A284FC9593D78490D1 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; + E5E4FD23C890B1B88DE04733581BC33E /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; E5F9BC99B025FF83A85BD63F3682C6D2 /* GDTPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTPlatform.m; path = GoogleDataTransport/GDTLibrary/GDTPlatform.m; sourceTree = ""; }; E6155A2809622FBF0488834710F92202 /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = Firebase/Core/Private/FIRComponentContainerInternal.h; sourceTree = ""; }; - E6191C5D6B98D09D6677AF4F74CCFECD /* RNAudio-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNAudio-dummy.m"; sourceTree = ""; }; - E631442C8E28F7998B92B6DB4B34920A /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; + E61B34AC9FC179A8342602A6DAE48AAE /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; + E66BDC5F5859B5A17D0C6EC5E12EDFA2 /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageStoreManager.m; sourceTree = ""; }; E688CAD13A81B50395BF1EF43A67DC37 /* random_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = random_utils.c; path = src/utils/random_utils.c; sourceTree = ""; }; - E68B3569129D84BAD2D1D54327248904 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; - E68F7FFA01C75EACE6292ED98DA7153A /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; - E69F13AD5C4BB7A55D139B4594E5B26B /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; - E6F5E5D8FC87C499FFC947C0FDC91058 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; + E71BFD17B2EA8F8760C331E562B52C78 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E7237D9437B3176A161A441610C857EC /* RTCMetrics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCMetrics.h; sourceTree = ""; }; E723D3596BFBC35A6289523AD2B53647 /* Pods-RocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-resources.sh"; sourceTree = ""; }; - E72FC8CCCF7AF978548C4BF233B2F812 /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; E75B60E901ACD0428E5FC4F6F9FFD787 /* FIRInstanceIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenStore.h; path = Firebase/InstanceID/FIRInstanceIDTokenStore.h; sourceTree = ""; }; - E7BBDD8987640335ADD37D376E0B6811 /* RTCPeerConnectionFactoryOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCPeerConnectionFactoryOptions.h; sourceTree = ""; }; - E7E6BC405093534D36E76AB84F152D27 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; - E83C05DCECA6232493931757F6D3B884 /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; - E84473C6E9D1249733F85BCA8A49A849 /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; + E780D0C91A7743756755AFCB5C027CE8 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; + E788DB650A2F048C9895E115E28DAB84 /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; + E7C22D559F5AACEE4ACF0E7404995F00 /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E7C7253031460B7AA52CAE1F40C73664 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; + E7C9F9A08D263FEF607177FC8B0AF11C /* react-native-keyboard-input-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-input-prefix.pch"; sourceTree = ""; }; + E7DEB2F26E54AE87B1FA75588F12D7F7 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; + E8299F9BCAFD9D1CA89725FB5F9F8FF0 /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; + E83617202556DE729B7B51E57122C0E4 /* 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; }; + E84D1705F88764F441BF3B57EB5EAA26 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; E863253CD22A2DF5CB3D7E9F6FAB3584 /* GDTStorage_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTStorage_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTStorage_Private.h; sourceTree = ""; }; - E88294587B5C2275DE92123388A5C415 /* EXAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppLoaderProvider.m; path = EXAppLoaderProvider/EXAppLoaderProvider.m; sourceTree = ""; }; - E8BEDA4289FB555F62BB7D9310876DE9 /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; - E8C2E627DE162F1D138CD2053921C51F /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; - E8FAC6307468F60320136F1F3A70E464 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; - E91AED9E3DEB12A15A0C1D9AF7D6A14D /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; - E9264D11530D03447BB65495F6EBA22A /* RNCUIWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebView.m; path = ios/RNCUIWebView.m; sourceTree = ""; }; - E96690B495455960F79E39571CF51FF2 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; - E9949FB7D742FB22FCA1B47A33AC492B /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; - E99900E603189BB46294B0E8E87D9E8D /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; - E9A7362D0B4592165074C69EECE25B16 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; - E9AD3970059AE65F3247E3C4E6BB0B65 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; + E8770423E139D2D4AD1DE99E49169C57 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; + E899721F07FC53C17F67E4DF4059FE2B /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; + E8AC455AB6642962B0513E266BCFF20F /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; + E8D8F3713AFE4DEAC4398CE6940594C3 /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; + E8FAE4D218F2A1B60EB6DC23FB89130A /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; + E9086234EFE765AEDAE2D77AD62A5EEF /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; + E92C620CE1B63D49CC5AE08CBF921339 /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; + E95E8A846A57DB75E2F787FD8AB962E8 /* RNFirebase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFirebase-dummy.m"; sourceTree = ""; }; + E96BAB157D2998086C5B27982DC2FD70 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; + E96F63550790D0741226AD298322C5D9 /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; + E97360910423F8A02F061200764D98F4 /* 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; }; + E974EFB1ACC03ABA3E4B9C5BD13871C1 /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; + E97E2D9B3EF092F01154F69368E0A352 /* RTCMetricsSampleInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCMetricsSampleInfo.h; sourceTree = ""; }; + E986712B01E8C99AC088661DE5C6235E /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; E9C66AC9E6FA17B555C70A4A4F082BBF /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; E9CBA7B3D0EE3E20FDBB699DBBC46487 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; - E9DD71D69F2C4920E78E0FF114BF07A7 /* EXRemoteNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemoteNotificationRequester.h; path = EXPermissions/EXRemoteNotificationRequester.h; sourceTree = ""; }; - E9DDB0E8A16886923ECAB92CA093177A /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E9F0B0D0B818BFFA969FEE61400A5B98 /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; EA1781D89FFA2BA60622D97169AAFD88 /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; EA1CA2995BD4B69E64862FBC8B4A4419 /* filters_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_utils.c; path = src/utils/filters_utils.c; sourceTree = ""; }; EA1D083FEE448CFEB52F774D6EC6F005 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = Firebase/Core/FIRAnalyticsConfiguration.m; sourceTree = ""; }; EA23EDBB8449E1237AFF6A536AC09EBE /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; + EA2B79A275424C62EDE0C7976DEBF1A7 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; EA2C8B7803631E9D7E122F15A966F8C9 /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.h"; sourceTree = ""; }; - EA4C5E848DDF885E6821E87FFDFD830E /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; - EA70A056927DA6B56FE74784469829D5 /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; - EAB2A2657A4F2C963181A215A520800C /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - EAD84CA8A895048C48C60E6B2A2754A9 /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; - EB180F2C926BB44BE91322607071BF4C /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; - EB2C0F0288889CB5356F89329F9A432A /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; - EB2F3DC5822BA6D5641A4C9806F92AAD /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; + EA86E092BF51DDFE44B603B6D14E3642 /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; + EA8C5AAF2E9A9C9FD9292B8C34FABA02 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; + EABB1EA41FF52ADE760181A27C759732 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; + EAE0BBB117E06D915B2F7CD13FDF538B /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; + EAF2244E86404703EDF8CD5123B25A51 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; + EB06C422D9B67EBB917F90449B3F9505 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; + EB360CC720C5485D028F9B482206D046 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; EB40941859B6BF085262A4AA891C2C82 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; - EB4550CFD3271A2081B5E60D492F2376 /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; - EB4B68395005DDC314F908569392A5DF /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; + EB45F1F2C2C96C1099FB7F753D6369FF /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; EB66EC115E433A821451732BEAA034D0 /* FIRInstanceIDAPNSInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAPNSInfo.h; path = Firebase/InstanceID/FIRInstanceIDAPNSInfo.h; sourceTree = ""; }; - EBDAF24F802E12C7AAB1A8C63B048BFB /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; - EBDB333108E0DBFB00B3986F7A2E21A8 /* RNSplashScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSplashScreen.h; path = ios/RNSplashScreen.h; sourceTree = ""; }; - EBFDCE06E15F8221E156383918A0D9DF /* EXAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppLoaderProvider.h; path = EXAppLoaderProvider/EXAppLoaderProvider.h; sourceTree = ""; }; + EBA48551C603648180A104803CF66318 /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; + EBBB4CEDF06C9E4DAC5A356069ACC475 /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; + EBD55BE82C9E20E33873519B430A8955 /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; + EBFF699B27043CC8F598C7D6A6AF32E2 /* EXAV.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.xcconfig; sourceTree = ""; }; EC0223AF3A58CDB188A3F953E17AF069 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; - EC5CC880858241D52588A211BE14BCDB /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; - EC8C659250092F28C97385344E6E30C4 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; - EC977BDF60F0D8FD5CA3971CDBEF3EA0 /* libReactCommon.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactCommon.a; path = libReactCommon.a; sourceTree = BUILT_PRODUCTS_DIR; }; - ECA6E6DF5E16E4BB3513AF26C2F14F3D /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; ECA90C12864EB009CD6E675F76E9A070 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; - ECABA3C58DE70B76E43260813CBBCB78 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; - ECE10FC2BF38F1BB875A7D45C9856E5C /* libSDWebImageWebPCoder.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImageWebPCoder.a; path = libSDWebImageWebPCoder.a; sourceTree = BUILT_PRODUCTS_DIR; }; - ECF15DE2627B474080EEBA2573769CD1 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; - ECF1616F143F48C11FB99C5FF33F1B06 /* 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; }; + ECC8574ACD8B682E7BD00CD19CC347D2 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; + ECE0FF1B10879B200928F7B72D85692F /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; ED2BD888CFD64EC8DD95A19530AADD12 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/utils/utils.h; sourceTree = ""; }; - ED706D302AC0048A975286FE023067F7 /* RTCRtpSender.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCRtpSender.h; sourceTree = ""; }; - EDA00E8DA0AF10098066249FCBF72581 /* RNFirebaseDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabaseReference.m; sourceTree = ""; }; - EDC03E9C56A28BC0F3AA03859C689CC6 /* React-RCTActionSheet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTActionSheet-prefix.pch"; sourceTree = ""; }; - EDDACD7E53ACE933965D902B086F7206 /* 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; }; - EE082B931344DEF3EA3083AA8E319113 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; - EE1B93A91C26EF53CADB900FC3375894 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; - EE2DAFA587449DD1657B952CEBA630CE /* RTCMetrics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCMetrics.h; sourceTree = ""; }; + ED4322EF065334EF690334E729C2949E /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; + ED5E7B0E540ADB6C5A078ED666307B2D /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; + ED68E7D3AED187F93BB3F944A020C9BE /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; + ED95570893E01E1A1E336667A3ED4DF5 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + EDB1901512CBCA633C788D47AC32EFDA /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; + EE3057924E53F20FBF9FC10F358D615C /* EXAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppRecordInterface.h; sourceTree = ""; }; EE44A3C4F294DCB4F009A3453413691C /* FIRInstanceIDKeychain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeychain.m; path = Firebase/InstanceID/FIRInstanceIDKeychain.m; sourceTree = ""; }; - EE504627642BEB89DC972A7C34EA8B27 /* RTCDtmfSender.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCDtmfSender.h; sourceTree = ""; }; - EE69AD244370F4536E0D86A878ADBE7A /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; - EE87301A2B40FBA63B66EF0AAE2E4462 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; - EE8D5A11546D69FA854CFD86E521B833 /* RNFirebaseDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabase.m; sourceTree = ""; }; - EE90A65E06B102DC4868B237FD7423C7 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; - EEB37E7D5FE57D2A934A7431F2CDFA26 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; - EEE1E8891ACBB4DC5D6D77253E55921E /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; - EEF40665F46FB3797440A917AF5C07C5 /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - EF184C6984285990C055A6BE1A6CCA88 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - EF185A2B5CEEDB9602A9B0A464A8C0C5 /* react-native-splash-screen.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-splash-screen.xcconfig"; sourceTree = ""; }; - EF326EB2E483F4FA8705427C3F6AA465 /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; + EE9A9A8D7FED4FFC97D7ABDC30B692C3 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; + EE9C2D73AD14BDED6EE493FCB85368EE /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; + EEA207F51AB8E95B10B2C93C125AF47E /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; + EEB803993C7891416F4F9E739C8CAC4B /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; + EEF50949FFCA38C657C9B02B45153405 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; + EF1DBFE040EC230677A0E19DE0CE562C /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; + EF30538B0A7478C40A501B1988510D6A /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; + EF3A5D25676B1BD13E931A34E7158704 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; EF4EB9BC1AA0355FDFD7835B38C5896C /* Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Folly-dummy.m"; sourceTree = ""; }; - EF785BA375C623C6E2C5F2494306C594 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - EF8264C10FAFA998ECE1459FE3715723 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; + EF91170238E06257631C5B0654BCBAE6 /* EXAppLoaderProvider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppLoaderProvider-dummy.m"; sourceTree = ""; }; EF99D7F00053860409719088A4DDA847 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = QBImagePicker/es.lproj; sourceTree = ""; }; - EFDEBE6E95614E1C4DEC6F993CC196B7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - EFF554A8814B7B98EB1EDDCD9FE13C58 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; - F01D8B44B111CEED10F68E12225DE0CE /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; - F0389F3AC245DE8A845592B00A1D0BDB /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; + EFE015060906EFBDC1CAE15092322E3C /* rn-fetch-blob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.xcconfig"; sourceTree = ""; }; + EFF331495097C1F9A56015604BE276B5 /* libReact-RCTActionSheet.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTActionSheet.a"; path = "libReact-RCTActionSheet.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + F03E92701B927C3D2F709EEE919A5F84 /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; F055CCC2B72DCFB4E1090FA3AD861F91 /* FIRInstanceIDStringEncoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDStringEncoding.m; path = Firebase/InstanceID/FIRInstanceIDStringEncoding.m; sourceTree = ""; }; - F0679D0105E10669A8210D90F88B7592 /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; + F07188FD7EF6D9A8DC53986DE79B5A4C /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = ""; }; F077345CFE65C76A10C340C50E4F83BD /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; + F07935B83A1279A78510B6FF8E94E4EF /* libRNFirebase.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFirebase.a; path = libRNFirebase.a; sourceTree = BUILT_PRODUCTS_DIR; }; + F090BE13F20793DFFACEF7AFEE442987 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; F0A146C93184CF066D0C6275B20D0EF6 /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; - F0A42F10B4353A6B82F07BC94C65BFB4 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; - F0D82E8B24736348178B778A501307D8 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; F0FADC95915A678FB195C2730B7CBF4E /* filters_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_neon.c; path = src/dsp/filters_neon.c; sourceTree = ""; }; - F0FBFC3F758F52FBB7574BFBA8C795F8 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; F115E65B6C65D8C32616BEFF59183C6C /* webpi_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = webpi_dec.h; path = src/dec/webpi_dec.h; sourceTree = ""; }; - F1681B99D8F014DC22E7369A3836EDD4 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; + F193806B174373DF2D1FECCE29EB9F7B /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; F1AAE41A2F077404E26CB34BDE7A709F /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = Firebase/Core/FIROptions.m; sourceTree = ""; }; - F1CC6A252CDDF4E2C7ACBFF3437CA88A /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; - F1EFC21480087690BD0D8C6047843BF1 /* RNFirebaseInstanceId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseInstanceId.h; sourceTree = ""; }; - F1F724C9FC2FB1766FCE69B75AC8861B /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; - F1FC2163B7A4DE0D30675A882B672C96 /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; - F1FCB34252FEB2D78E17CB7FA3B031FF /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; - F20DD1CB8B6293D270D505E2D4E69EED /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; - F26F45688CA40CE62BD4A01EFD5C2A48 /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; - F2BA8BB1F6E38B3C8257CF9CB81FC230 /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; - F2BC0971635CCB64556DA17CE1B2C7DF /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; - F2D4E04EB66DBF2ADB3ECE6B70C3A48C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - F2D58A1385CFCB5147D88A4CFFF451D3 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; - F2E83C96A4B51E0F11FC2809BC51F06F /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; - F342D9A61A28E8BC5521E166C20290D5 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; - F3C2945F9B83D831E9968E314B14E454 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + F1B9140C8A808B3D9FC8F102680454D8 /* 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; }; + F1D17E7B56514E79F11676629AB13EC4 /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevMenu.h; sourceTree = ""; }; + F1D7127FF82BFB0E826754739C497BF2 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + F1EBD1D657237C858EF4C076DE48DABB /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; + F24CAB35F78694897A06293B1BECAF99 /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; + F25C521F40E45F6EDA7B5A44B2F9A0FC /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; + F28149CCA82C0E65FA667B179B7297CC /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTGIFImageDecoder.m; sourceTree = ""; }; + F2C62E018E584D4B4A97E1F0C5422722 /* RNFirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseCrashlytics.h; sourceTree = ""; }; + F3AA95F10D58284419216BA25AD4BA2B /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; + F3BC296DF6FCD6D6BFB48EED061DB46A /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; + F3BDB3BC30F12E913EE97723A962C451 /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; + F3E18198B01D542FCB2092F21BCCFBBC /* EXAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppLoaderInterface.h; sourceTree = ""; }; F3E5FA7017063441BC562E0F635EDCA7 /* RSKImageCropper.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RSKImageCropper.xcconfig; sourceTree = ""; }; - F3EF8237148305F068A9321C7E8291A1 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; - F3F14887A794592FA779F85062B2F68C /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; F3FB3E9F32323F9E92F2DBB8427B34FD /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = Firebase/Core/FIRDependency.m; sourceTree = ""; }; - F433A020043B480DC7234774E496F4ED /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; + F436B5F5CAEB79F07420B2480A2F66E1 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; + F43EAFAEB8C9C31F3BDF9A39DF0FCFFB /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; F45C0F33507F57DFFAD844BE18EA83A5 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; + F46714AC9808B5A5EA9467103BCE4ADF /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; F46F19ADD7D5E644B1C2C9288E4917C1 /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; - F47F5C7EB3E4551C98D89468FE956590 /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; + F49B8CF1119B9A61EBE7B99BB24D118C /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; F4DB41E421719A4A01958C93D7A94464 /* libwebp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libwebp-dummy.m"; sourceTree = ""; }; - F4FAEA848200B94F5DBB61ABD25BDA58 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; + F528C63BA9C042F1E3493994696E3814 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; F54ABAF5EC48A86E45E71E8BDB6CA43F /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = QBImagePicker/en.lproj; sourceTree = ""; }; - F54CB77B77D5EDDCF2C4F8D82E5CA667 /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; F54F99957739819D9ABAAF28511A73B2 /* quant_levels_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_utils.c; path = src/utils/quant_levels_utils.c; sourceTree = ""; }; - F56ABECA97437AD5C6688F7820D7752E /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; - F5998EDFB4EA5B76D0A18781D58AB215 /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; - F5A81A280EA4DE0A82A1242B61D58A72 /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; + F55CDF019ACA2217732F35553D42466C /* libEXAppLoaderProvider.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAppLoaderProvider.a; path = libEXAppLoaderProvider.a; sourceTree = BUILT_PRODUCTS_DIR; }; + F573F666247CF24B30B798C9E2554C50 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + F584F64EB858EF704C5DA703F0F9C141 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNVectorIcons.a; path = libRNVectorIcons.a; sourceTree = BUILT_PRODUCTS_DIR; }; + F58C71BF7E379F34A5CFFB04132BF0B5 /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVibration.m; sourceTree = ""; }; + F5D48CFAFFE59BD35D6C2A3381B7F91E /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; + F5E13D4427DDCDE77FC01C304B75DD9C /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; F5E8AB734699B19C78718064ABA1FC2D /* Pods-ShareRocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ShareRocketChatRN-resources.sh"; sourceTree = ""; }; - F60E90824BAD0E4C3687E556A80F9E65 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; + F5F96E48491E8310AE926BB152CE5182 /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; + F5FEC669E3BD8C866C11286114FB510B /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; + F60224A2FA0ECB20CB39284C596433FC /* libFBReactNativeSpec.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFBReactNativeSpec.a; path = libFBReactNativeSpec.a; sourceTree = BUILT_PRODUCTS_DIR; }; + F61B2AE7702422B8984E2C64C48FE63C /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; F6224014A074C7DF2407E5021DAF4B58 /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; - F667DFF2508EFB0CB1207994F2661D20 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; - F69A269B0A8A2E08861D3BE3BC48F1DB /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; + F6273F49AD4D0826713A5421C5D09E1E /* RNFirebaseFirestoreCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreCollectionReference.h; sourceTree = ""; }; + F696DA3EBFF288A5C816CE8667952FFB /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; F6ABD140F1AAFF23D08A1CFFECCE608C /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; - F6B39B6D4C80F5220FF7B4BEB1385C8E /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; - F6CB18E81EB5BBC1BA963619DEF82FB7 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; - F6D6759D4368815F6458A8F20F0B6CF3 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F710808415E7C61FDC6A93C1FE487030 /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageViewManager.m; sourceTree = ""; }; - F7140AEFC9BE5032FB209FCFFBC6BFF4 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; - F7173118028326463CFCE8346FDE6864 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F7542D38FF209FBD4AF03957055F30DC /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; - F798CBEB8949EF34969B9184EFA5DCB9 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; - F7D258CDB53EFD2F3A44594CA7B4D269 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; - F7F6D1B95E592427BCAD532896991176 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; + F6D451132744C29EAF95F69B7CD13F6B /* EXSystemBrightnessRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXSystemBrightnessRequester.h; path = EXPermissions/EXSystemBrightnessRequester.h; sourceTree = ""; }; + F7043B74452BD705C688700D50CF98BF /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; + F747F94502A8E494B6BF39BE4357524E /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; + F7482E18D9F417819A17FE031157147E /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; + F7AE490F1B59C108D26169706A770658 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; + F7F45B0989A216BAFB685127AE4E0721 /* EXUserNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXUserNotificationRequester.m; path = EXPermissions/EXUserNotificationRequester.m; sourceTree = ""; }; F80706831D9CA95145FCD5FECD21465E /* FIRInstanceIDTokenInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenInfo.h; path = Firebase/InstanceID/FIRInstanceIDTokenInfo.h; sourceTree = ""; }; - F8320C6F9D0460C60304F4EAD677FB95 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; - F834CCAD795E977DBB19041BCF8F27BD /* libRNLocalize.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNLocalize.a; path = libRNLocalize.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F8412A0B0D032095263B6C94695433F9 /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; - F858E7897991B1DC9F7CE2BD179B44F6 /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = ""; }; - F8C1601321E4734D957C5DE726205731 /* RTCVideoCodecFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoCodecFactory.h; sourceTree = ""; }; + F80E9BD884241B5FE43821701D338F29 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; + F83F815FE6C16C9634D0BAABFC54D471 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; + F8711D114D434316B98A947D269A0703 /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; + F873A3B0C0FD515134FAA7794CA8756C /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; + F8A365D0B4E5F0314EDC622C963F016A /* RTCLegacyStatsReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCLegacyStatsReport.h; sourceTree = ""; }; + F8BC5A153E7952870D12E407DCE43B8F /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; + F8C6DD2B63BAAA29749C1989007172AD /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; F8CAC4D13000BC5BC52ABBFBE92BAA54 /* Fabric.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Fabric.xcconfig; sourceTree = ""; }; - F924B7F564A7C928E4C2BA77C4AC97BB /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; - F986B7275CD6BB9BBF71BF78737F5AFD /* EXLocationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocationRequester.m; path = EXPermissions/EXLocationRequester.m; sourceTree = ""; }; - F99CC4BE4EC1E8C5B621C4669D4D20DC /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; - F9AA815341F1D7613002795B68AB9D8A /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; + F8EEFBE25D2B4D5E320C0E2C094F902B /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; + F925A11DFF486337DD823CC3FA6BED0C /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + F94F5BC8E4452CEBC37F7C1371570444 /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; + F95983EF6C1E121763468A56EFD9AD74 /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; + F9750DE8E5569570FBEE1FA5BDB59AE4 /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; + F99A8FC3EF04AD607F517CCBA2846A81 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; + F9BD112F846017FCC006D9367D4D9979 /* RTCVideoSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoSource.h; sourceTree = ""; }; F9CE0D95CB30C7E29F8A50853A7ED744 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = Firebase/Core/Private/FIRErrors.h; sourceTree = ""; }; - FA61FB17BBA7E27DED4FFC12A673BC10 /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; - FA64AEC496DEDDC824442361226DA962 /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; + F9FDD43A4EBA179107314B4D67768121 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; + F9FF16C046ACF9861B81DE3AC55F837C /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = ""; }; + FA50A86BB5BC63C01E03B1EE93E5E963 /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; + FA53F83EF0A612EC38E2E05D7E8CE4C1 /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; + FA59AF698FC39EDC77B09342B24F02F6 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; + FA6C4F5EA7FED6E8B0042E9CDE849CFB /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; FABE7D30D6268CDF239DBB659220F4E1 /* rescaler_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_msa.c; path = src/dsp/rescaler_msa.c; sourceTree = ""; }; FABF62481064ABF2C11928A42592E1AF /* alpha_processing_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse41.c; path = src/dsp/alpha_processing_sse41.c; sourceTree = ""; }; - FADD7CA66FCF85647A9C4B1C87617E0A /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; FAE603A0CD507D06532535671E545333 /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; FAEEB6A360EA4625E39886BB08902163 /* backward_references_cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_cost_enc.c; path = src/enc/backward_references_cost_enc.c; sourceTree = ""; }; - FB02C5F260048F00222BBCBBFCEE2FC9 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; FB08E78DBDF9DB8282CFF0D8FEF7393C /* GDTEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTEvent.h; path = GoogleDataTransport/GDTLibrary/Public/GDTEvent.h; sourceTree = ""; }; + FB188CD9E28A724A10E631C1CBF6F8F0 /* RTCRtpCodecParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCRtpCodecParameters.h; sourceTree = ""; }; + FB2BBAE538C25F8BE82B0A4694C08D44 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; FB2D86A108895FD798F3CB65A1BA97D7 /* picture_tools_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_tools_enc.c; path = src/enc/picture_tools_enc.c; sourceTree = ""; }; - FB5D77F223E89D13F0E0D80F0E77FBBF /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; + FB2F527D5960511EC99FE1E634D8589C /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; + FB6E0B285548B30DED6A6248BA9BFEFC /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; + FB8115753F4704FE108290195CF3D86A /* RNFirebaseInstanceId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseInstanceId.h; sourceTree = ""; }; + FB8B0EADBA394375D3AAF56E332F27D5 /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; FBB541E9B9A01EA3762BE29C5BCC124F /* dec_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_neon.c; path = src/dsp/dec_neon.c; sourceTree = ""; }; FBB72E8036204ABAACC2897F21840FE8 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; - FBBF17E1989733CF8EEB82221A9A299A /* 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; }; - FBF0C841B7CEC6E93021BC2EC7C1CC87 /* RCTConvert+UIBackgroundFetchResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+UIBackgroundFetchResult.m"; sourceTree = ""; }; - FC0A518CBA81ED329B6992F5B5E91A93 /* RNFirebaseAdMobNativeExpressManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobNativeExpressManager.h; sourceTree = ""; }; - FC562846411B4AA70DBE8BCDB00D0CFA /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; - FC800C552B768304543ED5C421BB9485 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; + FC02024978E9CA2B7007226DF9BC8B07 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; + FC178F385C4B458AA797C2F4281BA561 /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; + FC807660334318CD2F7366195244BD17 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; FC8A3043A001A13BBC3A3945201C9504 /* FIRInstanceIDTokenOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenOperation.h; sourceTree = ""; }; - FC96204E58C3433EC0EC724E81C61994 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; - FCC22059E462192D9B273B945DC2A9B9 /* 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; }; - FCCFFF2F024A5EC44150C1BFB8C90D28 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; - FCD538012C243D0B7FE34C682AAA6698 /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; - FCD8E155893454D90AA3098782571AA3 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; + FC9E5A06C3C4B96EE818A49E7E1C9F7C /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; + FCB906867341E043954FCACB47B1F999 /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; FCDA51C6E6843CD4D0A0A47396F0DC84 /* NSError+FIRInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSError+FIRInstanceID.h"; path = "Firebase/InstanceID/NSError+FIRInstanceID.h"; sourceTree = ""; }; FCE7F753D100418B4F0A16876E5708DE /* NSBezierPath+RoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+RoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+RoundedCorners.m"; sourceTree = ""; }; - FCEA8442C0547AF1CC36C240A7D135E1 /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; - FD4EA671A3CC79EB2D9864C340796CCE /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; + FCF0C886BE92A39E64AF450364C3A295 /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; + FCF241689B409BA1AEDCA04357CE6637 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; + FD1AB75128F04BB100EE155FA285D498 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; + FD25802F372D5730497A35D712B0FD04 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; + FD5D139545E874F40FF2FDB565456808 /* EXCameraPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraPermissionRequester.m; path = EXPermissions/EXCameraPermissionRequester.m; sourceTree = ""; }; + FDA7A6F69EB7C8A8B899369C8124C509 /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; FDBA5810537D87F2CA2984D6E884E860 /* webp_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_dec.c; path = src/dec/webp_dec.c; sourceTree = ""; }; - FDD0DC51876FEDD563B014D667E23423 /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; - FDED1D2382C2F45475EC907B6495AF6E /* RNFirebaseAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAuth.m; sourceTree = ""; }; - FE1D4FBCF03954D075035EB411B4CB73 /* EXCameraPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraPermissionRequester.m; path = EXPermissions/EXCameraPermissionRequester.m; sourceTree = ""; }; - FE209222DE10C2202F74ABC2B7EF31B5 /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; - FE26982233A6EF5FA6034A916E76A21F /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; - FE497DC1D03BBC1524B08585DFBC018E /* libReact-RCTBlob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTBlob.a"; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - FE49D72798C7E925EFCDDBD0DA890D72 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; - FE6F16EC1891DDA88992C80E2F014217 /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; + FDC4C035752B7DE12E75CAAC42AE8D31 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; + FDCB24C51F499E9FD1556BBA7FC9932D /* RTCVideoFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCVideoFrame.h; sourceTree = ""; }; + FE1D6E92C60A564E1E4F7A261072F192 /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; + FE24745E5C82F23E2BB913D0242081C0 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; + FE2852FAE58D7B22076BE01E6A658084 /* 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; }; + FE68A9C711BE0042E8ADE867539ACC62 /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; + FE7A54AA6297A3BF5790850231BA142F /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; FE7F64D90DC09D7E711A4F454299CDC2 /* alpha_processing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing.c; path = src/dsp/alpha_processing.c; sourceTree = ""; }; - FE821DD517EE9360F620E7C8AD1A64E1 /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; - FED232F543BF5785F6BA1CEB05E83444 /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; - FF0C4AED202004DCDAE3A3A98A24A59F /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; - FF0F846D3ED3A74F6BC6CC6B55D540C4 /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; - FF17DE33D62C7C51DF70584C5E154754 /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; + FEB060A66EA58791A65D9D2B1C4CCE9C /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + FED788B7C494999210ED68D5ABBF99E3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + FF2561638A6DFC0753EF81215DCE4590 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + FF275F2A6854281FCDE21005A98E2DC8 /* RTCPeerConnectionFactoryOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCPeerConnectionFactoryOptions.h; sourceTree = ""; }; FF283621AE4C8DB2E3F7FBBB1BEE4F25 /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Private/GULNetworkConstants.h; sourceTree = ""; }; FF3B4A93336F5451E6D9396AB2776D0F /* idec_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = idec_dec.c; path = src/dec/idec_dec.c; sourceTree = ""; }; - FF5CB84510B55C4B97F9FC36D72DC9BD /* RTCFileVideoCapturer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RTCFileVideoCapturer.h; sourceTree = ""; }; - FF83D25E147C6C117FF33937820128E1 /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; + FF5DE756550CDED3A44B6BA369A0B3C3 /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; + FF633E2FA8C77991B948A4F495F14E46 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; + FF75650F65D87DC6FF88532D8B457B9A /* BannerComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BannerComponent.m; sourceTree = ""; }; FFB5191F2A89F10A824157FCB2185413 /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = ""; }; - FFCB3DD7159723670C92E2DEA12A3F85 /* RNFirebaseAdMobBannerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobBannerManager.h; sourceTree = ""; }; - FFD62DCC16E6B68D561EAA50BB6336D7 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; FFE8CD910E2FD570B0E627B1FFD50D30 /* FIRInstanceIDVersionUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDVersionUtilities.h; path = Firebase/InstanceID/FIRInstanceIDVersionUtilities.h; sourceTree = ""; }; - FFF9BD6CF8C13EBD7A9DF44D4548B85C /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 00B6C69806E897EF0FD72A5F0DD10575 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 0438409E262620B0C499293599950EB5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6198,7 +6228,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 069490BCA356CF0DCB84EE143410E64E /* Frameworks */ = { + 056885FA71170AD251CCB51DBF15BA96 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 06C5D5C2DA0004655F2173A6B535FEC9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6226,14 +6263,28 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 1011AFFFA33482AC336CBEDBA119E23F /* Frameworks */ = { + 14B3F94FFA85E40AA6C709D916AD8F87 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1D75C798358143A4E8EB9737295ABCEE /* Frameworks */ = { + 15E1CAB85C0D62A3ECEBF703AB610D71 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 15E73B833698411582D237A0470D6809 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 172D2BD21D82B0B1873557C9A22AC867 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6247,6 +6298,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 2030BDD982DCD10368BD7E3788090C90 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 21D6E00098A7CB90C0BA7E45C04305D5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6261,14 +6319,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 294780031C2A11090D38581098D846E1 /* Frameworks */ = { + 29DDCCCAF9B1EDCC9998ECDADEFF7D8A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 29DDCCCAF9B1EDCC9998ECDADEFF7D8A /* Frameworks */ = { + 29FD296AD69B59874FDEDD2855A991AE /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 2AB46A3B2B5E404F7E093942FEFFEE44 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6282,20 +6347,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 2F98BE8B97AE99A4608316CE57B41FBA /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 368833713F59A2DE6A817160922A5781 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 3A98B18BFA5EB2FE5C28511CAD147EDA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6303,14 +6354,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3B9666E071B1955148CE767EF8A1172E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3C2910C2C9DA80AE8700B16FC658E156 /* Frameworks */ = { + 3C0CAA05A1BE2B37DE5F687E90CE1085 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6324,13 +6368,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3EDDF7A116C334A5CB318EC15AB3029B /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 424F30C23075C103135F4A1C1DA7D2B5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6338,21 +6375,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A0C17C5B270ED6C7AE0CF39D200174D /* Frameworks */ = { + 427BD3001F0D70A2E683FBF3EC2F8355 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4AB05FBF42FCF8F95362ED4E2C3A843A /* Frameworks */ = { + 44993FD4A7136E2B008832C1B119584A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4F3F1E3B25671C6494C824E37226ADBA /* Frameworks */ = { + 4F7AF0A882D2B9E3AA41FE4B1D6B7B7B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6366,14 +6403,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 50A8437D9B22A14611D8054CFD6DAD9C /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 51E8A7F01B39A615DDB07BA39B2A590F /* Frameworks */ = { + 515890708E8C606320041B3932BDBC22 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6401,6 +6431,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 5BD066938E5F7655BB3E2C8E803DE109 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 5C5B7DD3B4EDBDEBFA4A411C0B2A807F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6408,21 +6445,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5D10AF29E811DE041EF86F692E58D72F /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 5DCB809879272A2C5D2BB3B29BDEA9BC /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6385F590BA62B2701243DCB69E086313 /* Frameworks */ = { + 5FDDF99DE9290708CB31709BB57F1F1D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6443,7 +6466,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 74D95D8DADB455E8AB893D85C2536523 /* Frameworks */ = { + 76F81BFD72949F7C3796FFFA56B2A4BE /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6457,6 +6480,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 7DF4CB58B5A5F171ED7CBB341AF4E2E7 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 7E45C3FC79B9029C8BDA87BBEF9B76A0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6464,6 +6494,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 81808C85F0BF7F3C62C09B02CA90BAB6 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 82B25A2C6B77C607D0C0803B2D795029 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6471,20 +6508,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 8E807BC1615F0EE43EFE300EF47CDEB5 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 90FABD5ADF2B7EA2421A58DAA47EDA57 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 92983A918D65DA7404A14A6BC46B7D49 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6492,6 +6515,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 934AC35CCBF99A4BF021B9ADDA678043 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 93A0739E5133AD08F334E7807BC7E5CB /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6499,7 +6529,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 95498560B9ED72BB3EC67B551CD766C1 /* Frameworks */ = { + 95B3AC68FEFC794CAB2C0D35F578C5F0 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 98E45DEC24AF9D186ED1F8FAC1869774 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6520,6 +6557,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + A047FE1E4728946D4E383E84D49294F5 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A13C91615632E7D00E6C62C153F04E2B /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; A3044A76BB7DB25B126B27CEC50DC142 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6527,21 +6578,35 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A5C68D94AE82E39D9409FEF0F00F3F73 /* Frameworks */ = { + A54095C98EDA3F730CA9256833BEB273 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - B729D617CEC388CBF2D3849BBE21CFC8 /* Frameworks */ = { + A5B938FE135F533AAB11BE691023B2A7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - B8D6F2DC1AB4C89E6AAD8FA768204F1B /* Frameworks */ = { + A6E0029DAA1D745298A4C7ACA901404F /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A8B20B2A38E96276E6E0DE77F55B8D86 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AEFBC25997277DC5525AD9A344225A78 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6555,13 +6620,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B9FC925E2963D6B1517391DDC431D411 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; BCC9DE3418B65029E89BAF388639B99B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6576,20 +6634,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C23A37F159664204B5B59588D91E7426 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C41C524B155A3CB4AA5ACD8DEC52FAEE /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; C7B8A65B14C1CF0B7A00F44AD54A879F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6604,14 +6648,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D0F42F083880684E1EA0C1EBC05AB077 /* Frameworks */ = { + CEF6727F912B0164E581923B6E6026C7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D1A9AB654F6F963CF4ABE338730432F5 /* Frameworks */ = { + D0F42F083880684E1EA0C1EBC05AB077 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6632,14 +6676,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - DB0ADDEAEE9409168BE88FD1FF7EB13F /* Frameworks */ = { + E2A63F81974C92F7623CC0B2A56E7934 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - DD2D5D1C7D9F8458829C6189FB7D32ED /* Frameworks */ = { + EDB454D89CC90C6140135B2FC49BC232 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6653,14 +6697,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - FC83F047F4DF5E0F0A6C3FF8C8C19584 /* Frameworks */ = { + FC038771179B79127BE206CCF999F2E0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - FF89F95E29E4505BBEAE3EC420781F07 /* Frameworks */ = { + FC83F047F4DF5E0F0A6C3FF8C8C19584 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6670,36 +6714,6 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 004780D45122DA72A53132617C12EDD9 /* Video */ = { - isa = PBXGroup; - children = ( - BD29FF81F5A9EC90A70EDFF7B50634E5 /* RCTVideo.h */, - AC84D409E8DDE07B3CD37A4C21898677 /* RCTVideo.m */, - 9BC7FD67FB7FDA576DB65137D10CD278 /* RCTVideoManager.h */, - 8EFB7DCBF15312ACB6FDEA3F2E87C302 /* RCTVideoManager.m */, - 34F05944C734CB2E459FB131B71D8264 /* RCTVideoPlayerViewController.h */, - 23D9BA17A725B050BFB7E8AF0C8CB267 /* RCTVideoPlayerViewController.m */, - 6ECEA362BA726887D4D3869E86397B90 /* RCTVideoPlayerViewControllerDelegate.h */, - 34BD8A20C91B6C4C7E7F635AEBD8CB62 /* UIView+FindUIViewController.h */, - 409FEFDD8115DD42A4354CE2DE318713 /* UIView+FindUIViewController.m */, - ); - name = Video; - sourceTree = ""; - }; - 009CBD31DD5FCA5838935F4594D1C6D6 /* RCTTypeSafety */ = { - isa = PBXGroup; - children = ( - 38EDF0A73A526AAEE884BC13CC53EDC2 /* RCTConvertHelpers.h */, - 54B0BBE1032EA46D33D5ED1F029C0B1B /* RCTConvertHelpers.mm */, - D40926A59479A9A42CB2E7BF2E8C289D /* RCTTypedModuleConstants.h */, - 7AB2B342B4AC7A5E6A2972BC1BC18450 /* RCTTypedModuleConstants.mm */, - 9BD10667EAA2EBA676E0B084D7FCB443 /* Pod */, - 187846EE81CAE1750650439D472303AE /* Support Files */, - ); - name = RCTTypeSafety; - path = "../../node_modules/react-native/Libraries/TypeSafety"; - sourceTree = ""; - }; 0121708429EC0FC6B5E4E32569D5AB47 /* Support Files */ = { isa = PBXGroup; children = ( @@ -6709,26 +6723,38 @@ path = "../Target Support Files/Firebase"; sourceTree = ""; }; - 0152DC2EA9F3AEF12E06894FB33FB422 /* React-RCTActionSheet */ = { + 01FC57A48478760E41765ADBD784DEBA /* EXPermissions */ = { isa = PBXGroup; children = ( - 6026AE027DAB1023A35C124CD726A66A /* RCTActionSheetManager.m */, - B49D859A713923CEF80474974FF7ADA9 /* Pod */, - 5F0A5A8145325177DD489A2A1B79A3E1 /* Support Files */, + 941C8875415900AB99411B734F554781 /* EXAudioRecordingPermissionRequester.h */, + 68CBA4578C7148CD3AFB7735BCABCFB7 /* EXAudioRecordingPermissionRequester.m */, + 816ECE8F769A2040BE9C8311A1BEE039 /* EXCalendarRequester.h */, + 1A0035C37471C9BD37E46F96DD2480EB /* EXCalendarRequester.m */, + C4B661827E16398E09A42FB39A99CAC1 /* EXCameraPermissionRequester.h */, + FD5D139545E874F40FF2FDB565456808 /* EXCameraPermissionRequester.m */, + 240081B29BEF0B064AF857722A5995DE /* EXCameraRollRequester.h */, + 1084BFE712BCC8A045D832C96B3D0AAF /* EXCameraRollRequester.m */, + 0C249B2DFDAF88D62FA81526AA3E1A19 /* EXContactsRequester.h */, + C9FB08E10264668CCE3268D50ECB2CBE /* EXContactsRequester.m */, + 1BE10CF2B91B33A20A6F88FBB9B3F311 /* EXLocationRequester.h */, + C0CC1D79BC8FE9CE82252104CE989FDC /* EXLocationRequester.m */, + F8711D114D434316B98A947D269A0703 /* EXPermissions.h */, + 392A54C242119AC827378B2C6BAD1D3F /* EXPermissions.m */, + CD2DEF517A7A1700F6C19F3604CA0969 /* EXReactNativeUserNotificationCenterProxy.h */, + A8BF8A5621396B927744FB5B09021DE4 /* EXReactNativeUserNotificationCenterProxy.m */, + 76A8100CC7BB9C534A18A8310DE1F11F /* EXRemindersRequester.h */, + 5E2239B2640BA20A1F0D9104DF434E8F /* EXRemindersRequester.m */, + 9A3CCD3747F941BFA833E271C0A8E2D8 /* EXRemoteNotificationRequester.h */, + 01449783CAF64BD01F884FC75298B598 /* EXRemoteNotificationRequester.m */, + F6D451132744C29EAF95F69B7CD13F6B /* EXSystemBrightnessRequester.h */, + 48C03813F43BDBA1A1A9D8891C892436 /* EXSystemBrightnessRequester.m */, + 1BFE0339FC1076B393F8B6AA933B3402 /* EXUserNotificationRequester.h */, + F7F45B0989A216BAFB685127AE4E0721 /* EXUserNotificationRequester.m */, + A3E73775EE81270C63B79E2E121DBCDF /* Pod */, + 4B21B1B5305BEE8D1586E8D9F21E3C6D /* Support Files */, ); - name = "React-RCTActionSheet"; - path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; - sourceTree = ""; - }; - 016323276343FC25B8931F32031E27F8 /* React-RCTSettings */ = { - isa = PBXGroup; - children = ( - 71808D87862895353675EE217E26D015 /* RCTSettingsManager.m */, - 63BD32F9C75D78F139234BD5141DCCE1 /* Pod */, - A2C06E88E46DEF10BB63B45AAD184172 /* Support Files */, - ); - name = "React-RCTSettings"; - path = "../../node_modules/react-native/Libraries/Settings"; + name = EXPermissions; + path = "../../node_modules/expo-permissions/ios"; sourceTree = ""; }; 02A0FF690CBF277A340408713E1FE2ED /* Support Files */ = { @@ -6750,24 +6776,14 @@ path = SDWebImage; sourceTree = ""; }; - 0342188A1B6B1720C57ABC582B8A1381 /* Pod */ = { + 033462D2767938DC8F549D4DD74674FB /* Pod */ = { isa = PBXGroup; children = ( - 576B502B8536C0F6818BA92FDC3AA4F8 /* React-CoreModules.podspec */, + A1DF6C669B2A9B73DA6D6F9AB9B2C6B5 /* UMReactNativeAdapter.podspec */, ); name = Pod; sourceTree = ""; }; - 0433AA30449AD2014CE18A8971DD3C01 /* storage */ = { - isa = PBXGroup; - children = ( - E23DA3C75144AD5D02C79403F82F9B6D /* RNFirebaseStorage.h */, - 462736990DFA92A4B9AD7C3519288A78 /* RNFirebaseStorage.m */, - ); - name = storage; - path = RNFirebase/storage; - sourceTree = ""; - }; 046EA2D147B9EDB25B696D3B185B41CC /* Support Files */ = { isa = PBXGroup; children = ( @@ -6778,29 +6794,6 @@ path = "../Target Support Files/FirebaseCoreDiagnostics"; sourceTree = ""; }; - 054963B49171C3D62F1F071B151374EF /* React-Core */ = { - isa = PBXGroup; - children = ( - D420784E18780EBA1479B0647CD497E2 /* CoreModulesHeaders */, - FFD98B31C46E24F123561D36D73337B9 /* Default */, - 96A16B5C7D99F810C0323E2AC6081434 /* DevSupport */, - E69A74D44CFA6D4393B994F2B51A1AB4 /* Pod */, - 8F6B42B61E62188E5048743364BFC403 /* RCTActionSheetHeaders */, - 26593E3B04C3445E6E344EBA5BEC626E /* RCTAnimationHeaders */, - ADC228421CC740DF207D38E704FFCE01 /* RCTBlobHeaders */, - 9ED9EE8E9A4B205EB9CACB51DF434137 /* RCTImageHeaders */, - 297871876B7FE1141A3CC786F6E04B8D /* RCTLinkingHeaders */, - CD498F82FBA4B6A4DC32BD8DCEB0D46D /* RCTNetworkHeaders */, - 584D49684605AA43AB8E384BAA398415 /* RCTSettingsHeaders */, - E0B1F19F1A4CDF36D89F11E8904463EF /* RCTTextHeaders */, - 31E24F7AB30BE10C769E9D42ACA812AA /* RCTVibrationHeaders */, - F33ED307F86B17AD9E4FA12C00023216 /* RCTWebSocket */, - BB8CEA6766ADA72237008B134328E178 /* Support Files */, - ); - name = "React-Core"; - path = "../../node_modules/react-native"; - sourceTree = ""; - }; 0551BADF5AEC21292D5F1BFBB0AF3C80 /* Support Files */ = { isa = PBXGroup; children = ( @@ -6812,96 +6805,91 @@ path = "../Target Support Files/SDWebImage"; sourceTree = ""; }; - 05645075CDAC53DC6E967838044377F2 /* Support Files */ = { + 06571C4D9872CC180F6432A59D6652E2 /* firestore */ = { isa = PBXGroup; children = ( - 32DBCA60CA5999DD0DD8CFEE12A42265 /* FBLazyVector.xcconfig */, + 9471E181216D71B7AD6086AA947987DA /* RNFirebaseFirestore.h */, + E48A131B2AEBC226BF7AB8FE7D76BB33 /* RNFirebaseFirestore.m */, + F6273F49AD4D0826713A5421C5D09E1E /* RNFirebaseFirestoreCollectionReference.h */, + 28216373694E431536D099ED0C16451D /* RNFirebaseFirestoreCollectionReference.m */, + 84A515EDC45D731291A758AC98682CCB /* RNFirebaseFirestoreDocumentReference.h */, + 7F2D6539530FB35C3C707F3017E23932 /* RNFirebaseFirestoreDocumentReference.m */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; + name = firestore; + path = RNFirebase/firestore; sourceTree = ""; }; - 069A61D7F54C452E9FF5CE3746354F2F /* Pod */ = { + 079B13C2BE64C4201148DCDACD8CF059 /* Pod */ = { isa = PBXGroup; children = ( - B802D23C73B4D2E4584CD2CB2FD816B3 /* React-RCTLinking.podspec */, + 3CB69BA68E697788A088773453E39E4D /* RCTRequired.podspec */, ); name = Pod; sourceTree = ""; }; - 06CAFBB14C874EEABCD9F72CBF560C5A /* instanceid */ = { + 089EC0605EB99CABFFD2DFAC48D80986 /* Protocols */ = { isa = PBXGroup; children = ( - F1EFC21480087690BD0D8C6047843BF1 /* RNFirebaseInstanceId.h */, - AA799C2BCAF0812208D579857BBFE59C /* RNFirebaseInstanceId.m */, + 03AFC2BE50FB5217DFFBE0C31E0C76B4 /* UMAppLifecycleListener.h */, + 5141408A3C2FEE10C52ECEB85B4155E4 /* UMAppLifecycleService.h */, + 42862E86EE85981EFFC2A0BFC1FDABAD /* UMEventEmitter.h */, + 96DE591CCBD648721425CBBFEA55BA75 /* UMEventEmitterService.h */, + 212293174EB51B93E49757E5AACDB162 /* UMInternalModule.h */, + 35DF8D3D10126F34D176439DA4158850 /* UMJavaScriptContextProvider.h */, + 88225C731257583882C2C772A8E30EB9 /* UMKernelService.h */, + ACB0BF20D838D2CCDB3E8D4BBA51FAEC /* UMLogHandler.h */, + 98AC32DE2B9BA325657E54DAD7670FF2 /* UMModuleRegistryConsumer.h */, + 6BF364B0B4E5D2D25C15C7188AAB53F9 /* UMUIManager.h */, + 5E4C6A6EB5AFDE1CD3685A958B4E98A1 /* UMUtilitiesInterface.h */, ); - name = instanceid; - path = RNFirebase/instanceid; + name = Protocols; + path = UMCore/Protocols; sourceTree = ""; }; - 07CCA01323BC85C27C938F806D715B88 /* Support Files */ = { + 09A7AA3C581A5D9114357A5EF1959DB1 /* Support Files */ = { isa = PBXGroup; children = ( - 5B40C52803C9F7FB3C31F0F494C2372C /* React-RCTImage.xcconfig */, - DE4385F483B2F25C810E9173F642BEA3 /* React-RCTImage-dummy.m */, - 4623DB4B2B6C2EB363197BBA148FBE6B /* React-RCTImage-prefix.pch */, + E61B34AC9FC179A8342602A6DAE48AAE /* RNScreens.xcconfig */, + D514ADD46EDED40FDFACCC29ADB6C7CF /* RNScreens-dummy.m */, + 1F359C954142EC039AD9F78A330C3921 /* RNScreens-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; + path = "../../ios/Pods/Target Support Files/RNScreens"; sourceTree = ""; }; - 08A28E962CB7A9F57C9FEDD92988C126 /* RNDeviceInfo */ = { + 0A1F9800C8D2CEABA26A0DDDE0458F8F /* Pod */ = { isa = PBXGroup; children = ( - 5AB66BC78E71A7E62B25D037FA6FFFF2 /* DeviceUID.h */, - 9867E013DBAE0709E68B1FDD23A3F14D /* DeviceUID.m */, - 97058C0C0CD5C6F04E58BB35310C0F2E /* RNDeviceInfo.h */, - 9D13022CB9FCE35B9421FAB091531864 /* RNDeviceInfo.m */, - C1E3B42F4CE0767CFD6F52CF38E23B79 /* Pod */, - 8ED07E2F6925F11244A690A484406A18 /* Support Files */, + 3C762C508F430893B21A28DCD5F96F86 /* UMFileSystemInterface.podspec */, ); - name = RNDeviceInfo; - path = "../../node_modules/react-native-device-info"; + name = Pod; sourceTree = ""; }; - 09766F1D2553DFEC460845E89C81E3C0 /* UMViewManagerAdapter */ = { + 0AD51DC137D26A46B37573017E07EA11 /* Services */ = { isa = PBXGroup; children = ( - 9E6F352D5C92823FD1802A6130F6902E /* UMViewManagerAdapter.h */, - 20611BEADB31DCF071E90214DBE2CE55 /* UMViewManagerAdapter.m */, + E34DC08E8D751B379CB53B3B62D64F7B /* UMLogManager.h */, + E8299F9BCAFD9D1CA89725FB5F9F8FF0 /* UMLogManager.m */, ); - name = UMViewManagerAdapter; - path = UMReactNativeAdapter/UMViewManagerAdapter; + name = Services; + path = UMCore/Services; sourceTree = ""; }; - 0A8B6EEA170D0F9218D23E36969AA7A2 /* TextInput */ = { + 0B072FECE7AEED933F1BDA63578A94FA /* react-native-jitsi-meet */ = { isa = PBXGroup; children = ( - 9DB8FB20F400557664EA907D0CCEA9A4 /* RCTBackedTextInputDelegateAdapter.m */, - EEB37E7D5FE57D2A934A7431F2CDFA26 /* RCTBaseTextInputShadowView.m */, - 37AABEEC03D5F4C92AEA714FD735CD95 /* RCTBaseTextInputView.m */, - 7E7597417E3D7DD4332C5C84BB51990D /* RCTBaseTextInputViewManager.m */, - 4F20C525FE5B14C489A413BC154DE404 /* RCTInputAccessoryShadowView.m */, - F60E90824BAD0E4C3687E556A80F9E65 /* RCTInputAccessoryView.m */, - 325B2A85C2005E4FB22A4A3ADB3B01D3 /* RCTInputAccessoryViewContent.m */, - B229A8868871E89E1F63762D51CBAF6D /* RCTInputAccessoryViewManager.m */, - 879E71F60960AB44AB4A2A8F7A2618E5 /* RCTTextSelection.m */, - 216114400B196AC04068A0BC8E2FCAA6 /* Multiline */, - DC2D6EF05AC07704D9B5E103A22C1EF6 /* Singleline */, + 7CE5605A2B52D2836D68F8BBDB58B1C2 /* RNJitsiMeetView.h */, + A6AA2C2FBD336D17FB42F18566EA0AF8 /* RNJitsiMeetView.m */, + 9E8F81E3C3F2F1EDEA6AC5CFF69EA10E /* RNJitsiMeetViewManager.h */, + 5A7308F84DF5142997D5175D62872E25 /* RNJitsiMeetViewManager.m */, + 8FEBE4808D360DF610ED70C542A25BB2 /* Frameworks */, + D4914CF76F184259C87A731C165E4005 /* JitsiMeet.framework */, + F6AF23BC4FA68AF493407450F8B5BEF8 /* Pod */, + 7178F45C25920E7C2C08B028717AB0B1 /* Support Files */, + A6144A07A7A76E0AE803C3008D265647 /* WebRTC.framework */, ); - name = TextInput; - path = TextInput; - sourceTree = ""; - }; - 0B96ECDAEB7BE548FB5B478AD5818D18 /* Support Files */ = { - isa = PBXGroup; - children = ( - 3453E0BC01956B7CEE74F5A91A4B5DD1 /* react-native-webview.xcconfig */, - 921DC920EDC43C4EA33F72CA7A27AA51 /* react-native-webview-dummy.m */, - B9F3E876248C722B34BD44E52B79DD27 /* react-native-webview-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-webview"; + name = "react-native-jitsi-meet"; + path = "../../node_modules/react-native-jitsi-meet"; sourceTree = ""; }; 0C7CDD6024B140CB36A76F30D6C16353 /* Folly */ = { @@ -6928,16 +6916,6 @@ path = Folly; sourceTree = ""; }; - 0D00014A85FC9F0F676018FC61780CD6 /* messaging */ = { - isa = PBXGroup; - children = ( - CA596E9C3B1274ADF019ACB51905326F /* RNFirebaseMessaging.h */, - 8C719A5D3B0E18AA0BBBFC3A6C0CCC94 /* RNFirebaseMessaging.m */, - ); - name = messaging; - path = RNFirebase/messaging; - sourceTree = ""; - }; 0D17E7E061CC0CA90D2FB7F49DC91F36 /* Core */ = { isa = PBXGroup; children = ( @@ -7062,51 +7040,50 @@ name = Core; sourceTree = ""; }; - 0D44E5D86EAEE9B5F1FA11B1A167667D /* Support Files */ = { + 0E77B8DFBCDD5130EF8FB4C5767CB61E /* messaging */ = { isa = PBXGroup; children = ( - EF185A2B5CEEDB9602A9B0A464A8C0C5 /* react-native-splash-screen.xcconfig */, - 1C940909DB1D9FAC75FFAF31394EE92C /* react-native-splash-screen-dummy.m */, - 7731C81FA0155090A0334A0E57395B70 /* react-native-splash-screen-prefix.pch */, + 5D9CBDFB01F4205B48664A623D0FAA81 /* RNFirebaseMessaging.h */, + 39A8C39D881D622C2CDAF651970352D2 /* RNFirebaseMessaging.m */, + ); + name = messaging; + path = RNFirebase/messaging; + sourceTree = ""; + }; + 0F65CB16B380E32CE89B1F6BEE476758 /* vendor */ = { + isa = PBXGroup; + children = ( + 317645C6574EF6A198643656D2BEB977 /* bugsnag-cocoa */, + ); + name = vendor; + path = cocoa/vendor; + sourceTree = ""; + }; + 0F76EA7D72085C02E194D4F76C361B47 /* Pod */ = { + isa = PBXGroup; + children = ( + FE7A54AA6297A3BF5790850231BA142F /* FBReactNativeSpec.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 0FBACEB4A11DB3078D2BE38F5859CD10 /* Support Files */ = { + isa = PBXGroup; + children = ( + ADE7B5CB0FD052892FE0668BF568CB59 /* react-native-splash-screen.xcconfig */, + DE6BC389E62E0C665323C3196A60E8EE /* react-native-splash-screen-dummy.m */, + E4A76891306B73410E917CAC5A9F05AE /* react-native-splash-screen-prefix.pch */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/react-native-splash-screen"; sourceTree = ""; }; - 0ECB2DD9E67A8C8F989D1AFDCC2D66EA /* auth */ = { + 1025A0CC81BE980E333AE6B340B15E6B /* Pod */ = { isa = PBXGroup; children = ( - 2836275B6F700192B022EA52DA419BCD /* RNFirebaseAuth.h */, - FDED1D2382C2F45475EC907B6495AF6E /* RNFirebaseAuth.m */, - ); - name = auth; - path = RNFirebase/auth; - sourceTree = ""; - }; - 0F27A5B87B83B6BF4F642DC5DAC191A9 /* functions */ = { - isa = PBXGroup; - children = ( - 5BF6BC505449748853B04AAB02DF4BAB /* RNFirebaseFunctions.h */, - 3F7196B12CB66A2F385877320E6DB17E /* RNFirebaseFunctions.m */, - ); - name = functions; - path = RNFirebase/functions; - sourceTree = ""; - }; - 0F83F5F667BB279D2E3DFD7A72AB60E1 /* RawText */ = { - isa = PBXGroup; - children = ( - 777BA992F56DD7BFDCE64AC3949B86EC /* RCTRawTextShadowView.h */, - E0B7512BC3FDB975E4DC5278844D3829 /* RCTRawTextViewManager.h */, - ); - name = RawText; - path = Libraries/Text/RawText; - sourceTree = ""; - }; - 110160E9E24020CC18551AA746E7D3CF /* Pod */ = { - isa = PBXGroup; - children = ( - B4201F26A8C73ABFB389131E1835D162 /* EXConstants.podspec */, + 989E649464A6E5A6306CA2EBA463521B /* LICENSE */, + 3BDFFF33F3B7B4DFD00E290EC144938D /* README.md */, + E71BFD17B2EA8F8760C331E562B52C78 /* RNGestureHandler.podspec */, ); name = Pod; sourceTree = ""; @@ -7120,38 +7097,69 @@ name = UserDefaults; sourceTree = ""; }; - 11F565BF8E662C8B31931D14F65CEE64 /* React-jsi */ = { + 120EF6A45E3401188AB88789BF7C7646 /* Support Files */ = { isa = PBXGroup; children = ( - 908331A76A2559442D6BF0697FE76338 /* JSCRuntime.cpp */, - 1AC3E9AB7EA1AFAFA6A6A9A2E9935951 /* JSCRuntime.h */, - 8FFE14E1E851FFFEF3DB5E91D8B813C0 /* jsi */, - 16FF8B592264C38021745B314736EE09 /* Pod */, - CB8FA9C0A3A28CDB31DD567DB1FE22E5 /* Support Files */, - ); - name = "React-jsi"; - path = "../../node_modules/react-native/ReactCommon/jsi"; - sourceTree = ""; - }; - 127EC7DBD26CD89FA0F8A79021B33EFD /* Support Files */ = { - isa = PBXGroup; - children = ( - 6B1DCD13B19DC1F616E1F148BCA5DBB5 /* EXWebBrowser.xcconfig */, - F0FBFC3F758F52FBB7574BFBA8C795F8 /* EXWebBrowser-dummy.m */, - C6AA6C2E9E2E9D144F9BD7D31DA2F4A9 /* EXWebBrowser-prefix.pch */, + 612C1AC74F2961E46BA1C1F9193F921E /* react-native-safe-area-context.xcconfig */, + 3726AA8C7A3469B737C279CF62794F6F /* react-native-safe-area-context-dummy.m */, + 8877EEC2282FC33B5224C1D59DED2257 /* react-native-safe-area-context-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + path = "../../ios/Pods/Target Support Files/react-native-safe-area-context"; sourceTree = ""; }; - 1357F8EEA3D83FBE5CB53D53B1B6D5B3 /* Pod */ = { + 12BAF32DB89E9EB991453117264569C0 /* Pod */ = { isa = PBXGroup; children = ( - 86BB09DAD4707B12BE754E875F434A6C /* EXAV.podspec */, + 8263AE08D5931B63DAC7E64AA67C99FD /* LICENSE */, + D220016644CD56B58CA70C0450DDEA7A /* README.md */, + 979A9E21A81E6C10A45602AD511BE7AF /* RNReanimated.podspec */, ); name = Pod; sourceTree = ""; }; + 132B86BB5872A7A8F5CD78D7818B2A30 /* FBLazyVector */ = { + isa = PBXGroup; + children = ( + 0E972C2F051AAFFA99BCC7709A769EE6 /* FBLazyIterator.h */, + 6F65FBBBAB4B5907CB48474836EAF6FD /* FBLazyVector.h */, + D3A204C8CD097E0EB3946AAB34376F72 /* Pod */, + 79503B00A09E11742A24FBD078FC18A7 /* Support Files */, + ); + name = FBLazyVector; + path = "../../node_modules/react-native/Libraries/FBLazyVector"; + sourceTree = ""; + }; + 13CB49A536D43E0F916DA58B161B63B2 /* RNFirebase */ = { + isa = PBXGroup; + children = ( + A1989D181D400E1910B9095EC1961E1D /* RNFirebase.h */, + ACA988A2705A99F322CDF5F267D96658 /* RNFirebase.m */, + 81525BB36C82A28549678A29CE808DB6 /* RNFirebaseEvents.h */, + 8C4667C9710E87EA60D76EE13175BEDB /* RNFirebaseUtil.h */, + B94F459F4F71A3C5C090BD353F9C8387 /* RNFirebaseUtil.m */, + A8E09CFD8C7C8EC029C274260C176A26 /* admob */, + FA0BCF491563CA2F57558342958F2F56 /* analytics */, + A4B20F85A5F5B04BFCC7D665601E55C5 /* auth */, + 6C2739C5D17938B1FBC5C3868DD9A417 /* config */, + D44F347B5B265AC827AECC9A0897718A /* converters */, + 5E62913010D3A03535CFA85997A81494 /* database */, + 6EA322334211EA91503831F052DD9958 /* fabric */, + 06571C4D9872CC180F6432A59D6652E2 /* firestore */, + 41F5BE31FCE458E1A0D9FEB6E9AB38F3 /* functions */, + DCC0ACB9E9B91461F5BBFA02CF7C7F4A /* instanceid */, + 57ADEE0A8001768F4EAAEAD12FB65AE4 /* links */, + 0E77B8DFBCDD5130EF8FB4C5767CB61E /* messaging */, + FF595B841F66776C8700EE5F471A0DA4 /* notifications */, + A572B8C6B0BB5AD253A9BDD66D8FC774 /* perf */, + 62A9C10D878660AEC8D2A251AA052C33 /* Pod */, + D1F1ED18FCD661495420F74DA2FB5A2D /* storage */, + 9412168C9269DD09811FCC49D98D2F5C /* Support Files */, + ); + name = RNFirebase; + path = "../../node_modules/react-native-firebase/ios"; + sourceTree = ""; + }; 149A968DAF05348101B44EF51197D52A /* Frameworks */ = { isa = PBXGroup; children = ( @@ -7212,16 +7220,6 @@ path = GoogleDataTransport; sourceTree = ""; }; - 152DD4864F491200ABAFC53665F41BC1 /* Pod */ = { - isa = PBXGroup; - children = ( - 2096901DA94B5D251E0B87DEC768E54D /* LICENSE */, - 0A667F69536EA291E3662C31261C0FB0 /* README.md */, - 4383E26E63B94AD8D4B8A4EB7E2296E7 /* RNImageCropPicker.podspec */, - ); - name = Pod; - sourceTree = ""; - }; 159AC952DE10A77259A56FC520873C36 /* DoubleConversion */ = { isa = PBXGroup; children = ( @@ -7249,17 +7247,6 @@ path = DoubleConversion; sourceTree = ""; }; - 15A59408F81C1913705CE29318DBE960 /* Support Files */ = { - isa = PBXGroup; - children = ( - E3C9A6F63DA71839ED30EF7139A58B6A /* React-jsiexecutor.xcconfig */, - B87EDEDEE3A7A9EAA756C9664B69EDD8 /* React-jsiexecutor-dummy.m */, - 1E49408B43B7DAEC15321EFD2A17F664 /* React-jsiexecutor-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; - sourceTree = ""; - }; 161AB55B1EF30F6ED53C86D1A631253D /* Support Files */ = { isa = PBXGroup; children = ( @@ -7270,110 +7257,35 @@ path = "../Target Support Files/GoogleDataTransport"; sourceTree = ""; }; - 166CA139B91D7CA20F623DC134541286 /* VirtualText */ = { + 1767C1DD3F7327E290E7ABE7F2FB67FE /* React-RCTBlob */ = { isa = PBXGroup; children = ( - F01D8B44B111CEED10F68E12225DE0CE /* RCTVirtualTextShadowView.m */, - 06EB8C3D371C1FCDCD81005FD935FD0D /* RCTVirtualTextViewManager.m */, + 5F9F166DD917B5C1FDD38A522C80A4AA /* RCTBlobCollector.h */, + 3DDED617E6970A761D1485C9DFF7F6B5 /* RCTBlobCollector.mm */, + CD0C2F1CEE9B9DF93217C4C4608A28EC /* RCTBlobManager.mm */, + A04400228064963305EF63BD85BA6127 /* RCTFileReaderModule.m */, + 5749A6ACBFC75C875A1245E495F88BE8 /* Pod */, + 410E051786305EEA81446B0993031590 /* Support Files */, ); - name = VirtualText; - path = VirtualText; + name = "React-RCTBlob"; + path = "../../node_modules/react-native/Libraries/Blob"; sourceTree = ""; }; - 169B2AA745224559047F58EC5E5DB3E5 /* links */ = { + 1824342171365250AF7C9A3256B8F086 /* Support Files */ = { isa = PBXGroup; children = ( - 348E429E541699FFC77CE6883744854A /* RNFirebaseLinks.h */, - 436D3F6D67B9DEF4EB53FC6E4B55B0BA /* RNFirebaseLinks.m */, - ); - name = links; - path = RNFirebase/links; - sourceTree = ""; - }; - 16FF8B592264C38021745B314736EE09 /* Pod */ = { - isa = PBXGroup; - children = ( - EDDACD7E53ACE933965D902B086F7206 /* React-jsi.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 17E681DC7A691F03CE0A2BA4E97BB681 /* Pod */ = { - isa = PBXGroup; - children = ( - 04F87EB7A80A0EB05FD4C33606231407 /* React-jsinspector.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 180BFB300193B151ED58919E1E2300C2 /* BugsnagReactNative */ = { - isa = PBXGroup; - children = ( - CBC70175832ADB2C24D42BF6FD067C14 /* BugsnagReactNative.h */, - 65314EFD45FF479FE3873392325FFCA1 /* BugsnagReactNative.m */, - 27CEA0DA88D4AE5C4BFBC0F649CC29CE /* Core */, - 2C40D18103DADC312283E6CFED16167D /* Pod */, - 457940F9A7D82CDB2C220A1314210016 /* Support Files */, - BECE11E8232CA5D3F3FE37E4FD5559F5 /* vendor */, - ); - name = BugsnagReactNative; - path = "../../node_modules/bugsnag-react-native"; - sourceTree = ""; - }; - 187846EE81CAE1750650439D472303AE /* Support Files */ = { - isa = PBXGroup; - children = ( - A85DA116B1E0A1C18A5449E8A23EE238 /* RCTTypeSafety.xcconfig */, - 3D8F234223C5A85DB3C2C51DA8AA1BD6 /* RCTTypeSafety-dummy.m */, - 76836F796400E4E02A9010A6CDDD7755 /* RCTTypeSafety-prefix.pch */, + 3271D9F1923DCE00DA904E833AB4AD45 /* UMImageLoaderInterface.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; + path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; sourceTree = ""; }; - 18856DDFBDAEE310F7ED180026DD89D7 /* JitsiMeet.framework */ = { + 19205549AEC29911A16D7CF1431CA05B /* Pod */ = { isa = PBXGroup; children = ( - D1880E7BD118ADB975F9516E5DCB5189 /* Headers */, + 9819BF1FF3BF27E35B1EFCF60ABD8C4E /* RCTTypeSafety.podspec */, ); - name = JitsiMeet.framework; - path = ios/JitsiMeet.framework; - sourceTree = ""; - }; - 19150B641607AA6B9902BB9075548FA9 /* rn-fetch-blob */ = { - isa = PBXGroup; - children = ( - 668A99544C5125FEF9112E3BE8173DB5 /* IOS7Polyfill.h */, - 4B63F1772FF1583DC9236F87DE5BEC9B /* RNFetchBlobConst.h */, - 6AE9963F24F79DFE3DC91B87C2FBD08F /* RNFetchBlobConst.m */, - 1B7C9D348369639F6679B84982309AE0 /* RNFetchBlobFS.h */, - 8500A2F6A0B08C5589B563C3A2411189 /* RNFetchBlobFS.m */, - C568C9E312BB4CA565C2595AFB054FD4 /* RNFetchBlobNetwork.h */, - C180B32F5207D4369ADE693A339072B2 /* RNFetchBlobNetwork.m */, - 94BC3376C99D8F33754A6486074CD731 /* RNFetchBlobProgress.h */, - 8405B7B00ED769894EE60016CC55AA73 /* RNFetchBlobProgress.m */, - 5D6D61748A1D09700824E7AB854F0EA8 /* RNFetchBlobReqBuilder.h */, - 7619BCBFA21762EA9F75697F41D74C3E /* RNFetchBlobReqBuilder.m */, - F2BC0971635CCB64556DA17CE1B2C7DF /* RNFetchBlobRequest.h */, - 8DC179FE95DCFC03BFBBB5BA9D078E8E /* RNFetchBlobRequest.m */, - 421939D812813D07738766C602680151 /* Pod */, - 2C34A9AD97D82EC29EE0003A37016CDB /* RNFetchBlob */, - C099A2F5F14F9225AB6B369956DF73F0 /* Support Files */, - ); - name = "rn-fetch-blob"; - path = "../../node_modules/rn-fetch-blob"; - sourceTree = ""; - }; - 1A3E61023C08EFD63CC4A855525B5599 /* FBReactNativeSpec */ = { - isa = PBXGroup; - children = ( - 25EDD027BB1AF044CBE6A9E47513186F /* FBReactNativeSpec.h */, - A8DB1C444982F4C3D4EBA817C963250B /* FBReactNativeSpec-generated.mm */, - 43C08727D5FA28584DAE00E4222F51B1 /* Pod */, - FF39F753CAEE6019C23474A167FBD530 /* Support Files */, - ); - name = FBReactNativeSpec; - path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; + name = Pod; sourceTree = ""; }; 1A71A1B73A0CD13956EF0D3115B847E8 /* Fabric */ = { @@ -7388,15 +7300,42 @@ path = Fabric; sourceTree = ""; }; - 1A9D288855EA207EDFEA2D84E378839E /* UMCameraInterface */ = { + 1AD4B5A4E932F85DE3D40E8521E91088 /* react-native-notifications */ = { isa = PBXGroup; children = ( - B15DD77C75B61524823A9DCCB0D9D588 /* UMCameraInterface.h */, - A72B836D93F0E89E92DAA6F33C6E3F1E /* Pod */, - 8D3BDA29E85E0730D2EDC2F2A2FDD6CF /* Support Files */, + B511D3B36076ACF05F824FA6F3A4B142 /* RCTConvert+RNNotifications.h */, + 47F980CA2B0C2592C755056481335501 /* RCTConvert+RNNotifications.m */, + 4D0A620E84435E7D864A992E9F9A0818 /* RNBridgeModule.h */, + D724AEF1D0B03B68770986BBC9C5AA73 /* RNBridgeModule.m */, + 84FF900F83FD7478C8A05762BDEA122A /* RNCommandsHandler.h */, + 94B83F9E92DD53072148B8F941D02B94 /* RNCommandsHandler.m */, + 46BC8AEDFF4D6712112403690A7C3733 /* RNEventEmitter.h */, + 4747D95FA389A8686826C5450A7DC4B0 /* RNEventEmitter.m */, + 3DC404C13CF1A25C0937D7F77E8A31A0 /* RNNotificationCenter.h */, + 9A38FB0773A0290D56EA0E41B8DE6D22 /* RNNotificationCenter.m */, + A430EBC5245691D9ACA012F7DEAB02F0 /* RNNotificationCenterListener.h */, + ED5E7B0E540ADB6C5A078ED666307B2D /* RNNotificationCenterListener.m */, + D421CBCF27690CB2E19BC6382EFB0684 /* RNNotificationEventHandler.h */, + D83DE8183D066CB2F2C6E53B2089E5EF /* RNNotificationEventHandler.m */, + B1D6339E901F0E921EEE73E2D0F28A9A /* RNNotificationParser.h */, + 7385A2E898653603A6A79A4F802CD2BC /* RNNotificationParser.m */, + 772757A16324C61D46F81C91AF534576 /* RNNotifications.h */, + F436B5F5CAEB79F07420B2480A2F66E1 /* RNNotifications.m */, + 05A35C877F407959946B5D996F109947 /* RNNotificationsStore.h */, + 9282F75429284316AAC6D588AB6D4C7A /* RNNotificationsStore.m */, + BD04A77FFB44B30ADFDCEC5DC75937D0 /* RNNotificationUtils.h */, + 23C3C8576643739158D4836F21BF7FCE /* RNNotificationUtils.m */, + 3C13E0443F06610B7EFFEB8ADF89AF53 /* RNPushKit.h */, + 4D3114FED85A6E42DF24CC1F44CD66E4 /* RNPushKit.m */, + 8F8D2C1CB9205876389F25A945841C51 /* RNPushKitEventHandler.h */, + E5E4FD23C890B1B88DE04733581BC33E /* RNPushKitEventHandler.m */, + F3BDB3BC30F12E913EE97723A962C451 /* RNPushKitEventListener.h */, + 0758670A7E484A0C42277136C96B76F2 /* RNPushKitEventListener.m */, + 9D6CFAD122584DF887A74CE192A206A1 /* Pod */, + F88375AB5A3B5AC0F218C4A50B348A95 /* Support Files */, ); - name = UMCameraInterface; - path = "../../node_modules/unimodules-camera-interface/ios"; + name = "react-native-notifications"; + path = "../../node_modules/react-native-notifications"; sourceTree = ""; }; 1B77A34818B5552438E7A510FBDDEC5E /* Frameworks */ = { @@ -7407,293 +7346,169 @@ name = Frameworks; sourceTree = ""; }; - 1C23B511D7591F69D1033BFADCF8F21B /* Support Files */ = { + 1BBE2CA50BF00FD9BCAA381787F662D8 /* Support Files */ = { isa = PBXGroup; children = ( - 9A95FA2DD5DA29054D320200E38D2860 /* RNGestureHandler.xcconfig */, - 993E5DB4379D6FAB1D2531716CD6C196 /* RNGestureHandler-dummy.m */, - A5C44CC25AC760781320EA7D0DF4AA6A /* RNGestureHandler-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNGestureHandler"; - sourceTree = ""; - }; - 1C4B9E69E7515D15DDF53B874343C586 /* CxxModule */ = { - isa = PBXGroup; - children = ( - 93F053F69AE35C9369F8919C3447F1EF /* DispatchMessageQueueThread.h */, - 9EB70C49DABF10542CB05591CF8D967B /* RCTCxxMethod.h */, - 41DF5CC62B33DE37F3359028ADD057A2 /* RCTCxxMethod.mm */, - 9308503A0BCB342F77D3F8D6C6885AE5 /* RCTCxxModule.h */, - DB08456747702BE39CD8803E11ECC1A2 /* RCTCxxModule.mm */, - FC562846411B4AA70DBE8BCDB00D0CFA /* RCTCxxUtils.h */, - 7A5DEECDA79F2835613CB7C24D2F6405 /* RCTCxxUtils.mm */, - 2988B8EA02EA11C3A0953656A52D4A0B /* RCTNativeModule.h */, - 2421D0644E6C68779C1AECE1EEF6C271 /* RCTNativeModule.mm */, - ); - name = CxxModule; - path = React/CxxModule; - sourceTree = ""; - }; - 1E59B1609789F3354D678CEFE83167A1 /* React-RCTText */ = { - isa = PBXGroup; - children = ( - 3596829CB006591685B47ADA4BA6B851 /* RCTConvert+Text.m */, - 50252D537D48D9D7C2325EC5E98BD584 /* RCTTextAttributes.m */, - 517E5FF513A2245ABAC5BE546AAC0574 /* BaseText */, - 4D86BF35631CDD2295E17C6FBFD65E3E /* Pod */, - BB76AC4CA3434658C204C1F86738590A /* RawText */, - 3F79E75D7CB24BA8A18A1D4789D120CC /* Support Files */, - 793A3131818FD934D7719FC469503A2B /* Text */, - 0A8B6EEA170D0F9218D23E36969AA7A2 /* TextInput */, - 166CA139B91D7CA20F623DC134541286 /* VirtualText */, - ); - name = "React-RCTText"; - path = "../../node_modules/react-native/Libraries/Text"; - sourceTree = ""; - }; - 1EB3453AFA56A870F77E5111722416FD /* Pod */ = { - isa = PBXGroup; - children = ( - 1AA9E027BF97323689A300BD223D3B56 /* React-RCTNetwork.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 1F80ADDDE84BC607C5E45D7F1184837C /* Surface */ = { - isa = PBXGroup; - children = ( - 341343810142DB75FC8589509194800F /* RCTSurface.h */, - 1B57CE8B07F973AFFB868FD25BF48946 /* RCTSurface.mm */, - 240E1D6C6F7E22B6C26BF672819FF509 /* RCTSurfaceDelegate.h */, - 8563645E75524A32F56D4EFBE53F9224 /* RCTSurfaceRootShadowView.h */, - B468FF1F2043325BA63D683B4EC70171 /* RCTSurfaceRootShadowView.m */, - 2D5B4A7C41A1AD10FE39999F4AE5BAC4 /* RCTSurfaceRootShadowViewDelegate.h */, - 6DB0BA7FE57D86BCAE4AFE13789C90A2 /* RCTSurfaceRootView.h */, - 0893789DB95ECE903CACCA08319819F1 /* RCTSurfaceRootView.mm */, - 3A5060F673F80613599FB3FADAA0EB52 /* RCTSurfaceStage.h */, - FB02C5F260048F00222BBCBBFCEE2FC9 /* RCTSurfaceStage.m */, - C0E58145DBEBAE2879FFB9129FC52021 /* RCTSurfaceView.h */, - 572A3CCCA4815398446A9D98310556FA /* RCTSurfaceView.mm */, - E68B3569129D84BAD2D1D54327248904 /* RCTSurfaceView+Internal.h */, - CEADDDE0E688FC3266192C2F5DEC31CD /* SurfaceHostingView */, - ); - name = Surface; - path = Surface; - sourceTree = ""; - }; - 20B8CDECE1030BD9F738EF06DF7C66DE /* Sentry */ = { - isa = PBXGroup; - children = ( - 26671C519571A72819B5664AB739BA59 /* BSG_KSCrashSentry.c */, - 48B9FF3960F96FC17EC9EB715173541D /* BSG_KSCrashSentry.h */, - 65A3F669B437D64C46731A571F815F4C /* BSG_KSCrashSentry_CPPException.h */, - 14EC86931A281FD42EB6369ADD7A78B7 /* BSG_KSCrashSentry_CPPException.mm */, - 993E659CE82C1BE4DA5DFE7B8A62267C /* BSG_KSCrashSentry_MachException.c */, - C73418B1525F0BA3A50BE187BEE0C073 /* BSG_KSCrashSentry_MachException.h */, - 68052A294A6D9A870EEA319286B42172 /* BSG_KSCrashSentry_NSException.h */, - E2009A42795A8FA28617B6A94E490C62 /* BSG_KSCrashSentry_NSException.m */, - B19B88AF805393DCF3D19841EB4727DE /* BSG_KSCrashSentry_Private.h */, - B443710E63E715B94B5C3BDBE5BF7700 /* BSG_KSCrashSentry_Signal.c */, - FE26982233A6EF5FA6034A916E76A21F /* BSG_KSCrashSentry_Signal.h */, - 373B25D2F3A552C16DEDF3EDBD8D2EAC /* BSG_KSCrashSentry_User.c */, - 60F75C2B510F937A8D6A966D1DB9567F /* BSG_KSCrashSentry_User.h */, - ); - name = Sentry; - path = Sentry; - sourceTree = ""; - }; - 215654784502D6D209AF91C147405AB1 /* Source */ = { - isa = PBXGroup; - children = ( - 621068910AA34EDA4C5D654FA8FAA872 /* KSCrash */, - ); - name = Source; - path = Source; - sourceTree = ""; - }; - 216114400B196AC04068A0BC8E2FCAA6 /* Multiline */ = { - isa = PBXGroup; - children = ( - BEE9DE2F508BD36B0D2D9CF462B4D9F1 /* RCTMultilineTextInputView.m */, - 4DBBDEC4E23E4994DB2DCF719C5D9810 /* RCTMultilineTextInputViewManager.m */, - 7D639540297627EE72442F6BDEFD5777 /* RCTUITextView.m */, - ); - name = Multiline; - path = Multiline; - sourceTree = ""; - }; - 21F27C80E12DCBD1C561AA27D8C7AE0A /* RNScreens */ = { - isa = PBXGroup; - children = ( - 4786257925B0DB4B65A3DA452CC63195 /* RNSScreen.h */, - 1B51E59B8FBBA7D2DE0436F431295C36 /* RNSScreen.m */, - C37A7FADF2B9750935F109A6BC2C818E /* RNSScreenContainer.h */, - 17BFBCBEDA642A7AE522A39C98031B16 /* RNSScreenContainer.m */, - 79B70559438F12C7633C0677BC9192A4 /* RNSScreenStack.h */, - 44AC4DE2C71F4B591F1CF7B13A76D78F /* RNSScreenStack.m */, - 1BB830BCFDDCA3003BCBB15E27B34C16 /* RNSScreenStackHeaderConfig.h */, - 5D2D884ECFA3E2FE46FCE4C6939B9FFE /* RNSScreenStackHeaderConfig.m */, - 8BE3D8CF2A1E395970F36B22391178E3 /* Pod */, - C601DBB782B3EE588F43256DCC9D869C /* Support Files */, - ); - name = RNScreens; - path = "../../node_modules/react-native-screens"; - sourceTree = ""; - }; - 22A42B354255A3FB0F60D6BBAB3CB381 /* admob */ = { - isa = PBXGroup; - children = ( - 89800C2AF902C29B6DEC63995CB7A66D /* BannerComponent.h */, - 0C422D52F8F58884A8BE9682408FA64F /* BannerComponent.m */, - B066E45E570655249E4ACC8D12121DEE /* NativeExpressComponent.h */, - 5A85025A7F35F2E213BAF098AAFE06DC /* NativeExpressComponent.m */, - 25FB3DF4F4E990869E552E6C4A47D638 /* RNFirebaseAdMob.h */, - 4831002E31D2F6815C4C73C5B31E5A72 /* RNFirebaseAdMob.m */, - FFCB3DD7159723670C92E2DEA12A3F85 /* RNFirebaseAdMobBannerManager.h */, - C7C1DBD658BA3453095200CBB9367C29 /* RNFirebaseAdMobBannerManager.m */, - 51A48D2791625EEF33A6B66708F3CC8B /* RNFirebaseAdMobInterstitial.h */, - 2A2DFD80C3997E0ABB7FFEF51C612BF7 /* RNFirebaseAdMobInterstitial.m */, - FC0A518CBA81ED329B6992F5B5E91A93 /* RNFirebaseAdMobNativeExpressManager.h */, - 049165CF7A13EAFA3995830395BA091E /* RNFirebaseAdMobNativeExpressManager.m */, - 4B06F5722E272AC7C95122A1A32AB775 /* RNFirebaseAdMobRewardedVideo.h */, - 8386892B4BA307BA53398377169C673F /* RNFirebaseAdMobRewardedVideo.m */, - ); - name = admob; - path = RNFirebase/admob; - sourceTree = ""; - }; - 24001117DEDF0CDE9FEFD3F5296CB1C7 /* Support Files */ = { - isa = PBXGroup; - children = ( - 125760F603E52BC8B0C18CFD4C32A5C2 /* react-native-background-timer.xcconfig */, - D149F26BDBDEA13FCD6F1EDA897DC3ED /* react-native-background-timer-dummy.m */, - 6821BF3546D740723F0AE9F5C2D938EC /* react-native-background-timer-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-background-timer"; - sourceTree = ""; - }; - 24C169E0864041E5F05B1B6BDF3ED454 /* Pod */ = { - isa = PBXGroup; - children = ( - 7880C3DCF5EAE0386D8C364DAA78FC5C /* React-cxxreact.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 26593E3B04C3445E6E344EBA5BEC626E /* RCTAnimationHeaders */ = { - isa = PBXGroup; - children = ( - 75567E55DDA722B80AE4B76A5CB50B55 /* RCTAnimationUtils.h */, - 68AE9021618AEA3A3835498E11CB6E1C /* RCTNativeAnimatedModule.h */, - 34FBD3EA4B00CE9AA517B4E7CDA4F792 /* RCTNativeAnimatedNodesManager.h */, - 5D8C1775C5D1ADD9A8636E80F86D7143 /* Drivers */, - 34863FC3EE6A8AC9673E1912A20CC3EC /* Nodes */, - ); - name = RCTAnimationHeaders; - sourceTree = ""; - }; - 273DD069E18851CE004CB236EA681C78 /* Support Files */ = { - isa = PBXGroup; - children = ( - C50DDA1607E28D202AE726201815D27C /* React-jsinspector.xcconfig */, - 1A0E5BC1801769B8E6FC0F6F029AD07B /* React-jsinspector-dummy.m */, - BC740FAC6453F4EB57527BC1A8575DE2 /* React-jsinspector-prefix.pch */, + 9FD9F29E7B29469801ECF10D55BF1FF8 /* React-jsinspector.xcconfig */, + 0EAD578E85A94351DE5F2FEB268882E8 /* React-jsinspector-dummy.m */, + A0E322856BC90FD72B2D19299C40F09E /* React-jsinspector-prefix.pch */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; sourceTree = ""; }; - 27635EC4937ABE4CBEADAA86A4A708D4 /* Pod */ = { + 1D57DE862F3630A804974DFB6F595436 /* RCTAnimationHeaders */ = { isa = PBXGroup; children = ( - C25C3132086AB84BA9C51ECC691410F2 /* LICENSE */, - ECF1616F143F48C11FB99C5FF33F1B06 /* react-native-background-timer.podspec */, - 5BE2A0B36C52E4559BC07F54B9A82035 /* README.md */, + 12049F88E61618B162C3F7792912F53A /* RCTAnimationUtils.h */, + 1DCB68C86318A2920137BCCCA69BA554 /* RCTNativeAnimatedModule.h */, + 2144AEAB28A632FC82A2A3491D89393E /* RCTNativeAnimatedNodesManager.h */, + BD5D29AE9553341B6B27F827CCC48D68 /* Drivers */, + 753530E50B6D2D27E994368C9BC4D337 /* Nodes */, + ); + name = RCTAnimationHeaders; + sourceTree = ""; + }; + 1E1BB3A958A6134C27944E943ABBE54D /* UMModuleRegistry */ = { + isa = PBXGroup; + children = ( + 34CB8816E5B81DDD6A7DBD078039E80B /* UMModuleRegistry.h */, + 23C544E37E1A83449B1F225E617FC7BE /* UMModuleRegistry.m */, + 769ED9C8AF3E426734F313C4AFEE9D61 /* UMModuleRegistryDelegate.h */, + ); + name = UMModuleRegistry; + path = UMCore/UMModuleRegistry; + sourceTree = ""; + }; + 1F190A854C916353F5D0234C5FEC5163 /* react-native-safe-area-context */ = { + isa = PBXGroup; + children = ( + C209BB66E2E2B1D2C8C1D3708E183AAA /* RNCSafeAreaView.h */, + 8B3F230C319BA1B4187E1BF0C5E95032 /* RNCSafeAreaView.m */, + 65C1B15B22D02488D6EB60EF73121251 /* RNCSafeAreaViewManager.h */, + 38E79CEB859E6D1C7768634265DC993F /* RNCSafeAreaViewManager.m */, + 64DF466FF9A4E307958C5E0FCDBA9102 /* Pod */, + 120EF6A45E3401188AB88789BF7C7646 /* Support Files */, + ); + name = "react-native-safe-area-context"; + path = "../../node_modules/react-native-safe-area-context"; + sourceTree = ""; + }; + 24DD017C12466BA279DE9D101B44FB22 /* Pod */ = { + isa = PBXGroup; + children = ( + C1C65B22B1F28E459B2102D477B41A28 /* UMConstantsInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 27CEA0DA88D4AE5C4BFBC0F649CC29CE /* Core */ = { + 253847375D33E0614EE89E63F039CF58 /* Sentry */ = { isa = PBXGroup; children = ( + 79DD40043775B63252A205F78915973E /* BSG_KSCrashSentry.c */, + 15C79BEB9AE6AD07BD220859AD395ADE /* BSG_KSCrashSentry.h */, + BE93B899C253772825175374604B9224 /* BSG_KSCrashSentry_CPPException.h */, + 7563DB492F98B70BA9DDFC5C37BF41E1 /* BSG_KSCrashSentry_CPPException.mm */, + F94F5BC8E4452CEBC37F7C1371570444 /* BSG_KSCrashSentry_MachException.c */, + 316F4BC9F345B3956AF94DB5A347E199 /* BSG_KSCrashSentry_MachException.h */, + 430FAEE37CB6FC021358D4C4277397B7 /* BSG_KSCrashSentry_NSException.h */, + 8A9B5C4BE57B72F6FA2EBEF4EA55D0F3 /* BSG_KSCrashSentry_NSException.m */, + AD4A6ABAD1BCA6E2AB7AF8AD882DEE2E /* BSG_KSCrashSentry_Private.h */, + 2431A684D1294C48BCCDF49A6B33C1EB /* BSG_KSCrashSentry_Signal.c */, + 8A884482F0F831FDA2181E919F3D3080 /* BSG_KSCrashSentry_Signal.h */, + 0D49CFFCF95F78AE76D73E2FDFBDD89A /* BSG_KSCrashSentry_User.c */, + 0B015137E16FDE24F127142346BBF33A /* BSG_KSCrashSentry_User.h */, ); - name = Core; + name = Sentry; + path = Sentry; sourceTree = ""; }; - 2947ADD58BCB3A917BA40FEFB7ECE27E /* KSCrash */ = { + 261DCB588BD3E44BD03159D3D1879B2E /* Support Files */ = { isa = PBXGroup; children = ( - 215654784502D6D209AF91C147405AB1 /* Source */, - ); - name = KSCrash; - path = KSCrash; - sourceTree = ""; - }; - 297871876B7FE1141A3CC786F6E04B8D /* RCTLinkingHeaders */ = { - isa = PBXGroup; - children = ( - 9B82D6AFE4BCDD34B347280D929500FF /* RCTLinkingManager.h */, - ); - name = RCTLinkingHeaders; - sourceTree = ""; - }; - 29C6B9E540739E7222F1FFE9E1E14FF4 /* Frameworks */ = { - isa = PBXGroup; - children = ( - AE6627C26D79879FD3F4A528EA5827C9 /* JitsiMeet.framework */, - 23A8C88D09D1455EB467A5C28B95CCBB /* WebRTC.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 2ACA8AA47C0D5697B27805B95574CC28 /* Support Files */ = { - isa = PBXGroup; - children = ( - FF0C4AED202004DCDAE3A3A98A24A59F /* UMCore.xcconfig */, - D43C5BCAC7F99C5788577978B003C422 /* UMCore-dummy.m */, - 70FCD345E2996FBA295A1851626DA0A2 /* UMCore-prefix.pch */, + EBFF699B27043CC8F598C7D6A6AF32E2 /* EXAV.xcconfig */, + F95983EF6C1E121763468A56EFD9AD74 /* EXAV-dummy.m */, + EDB1901512CBCA633C788D47AC32EFDA /* EXAV-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMCore"; + path = "../../../ios/Pods/Target Support Files/EXAV"; sourceTree = ""; }; - 2C34A9AD97D82EC29EE0003A37016CDB /* RNFetchBlob */ = { + 26425064D86D40926AF13BA23D51E4B1 /* Support Files */ = { isa = PBXGroup; children = ( - BD9D41B07325D430C02F96DEE72AC0DA /* RNFetchBlob.h */, - 3B6070CCDD1B35A0C894BA464EEA2221 /* RNFetchBlob.m */, - ); - name = RNFetchBlob; - path = ios/RNFetchBlob; - sourceTree = ""; - }; - 2C40D18103DADC312283E6CFED16167D /* Pod */ = { - isa = PBXGroup; - children = ( - BA3DD4AEEE9E8ED4C3FA8FA8402765BA /* BugsnagReactNative.podspec */, - 1712FBD8FC4B47B4B7558DCA191A588B /* LICENSE.txt */, - 3A4FF65F56E748C7427F340BA0285E9B /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 2CD78924A56B4E6B22FE876285552A35 /* Pod */ = { - isa = PBXGroup; - children = ( - 430A8B469F7107BE898999DC2CFEBBE4 /* FBLazyVector.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 2CF68B86C037A9F0FAA27D7837708CAB /* Support Files */ = { - isa = PBXGroup; - children = ( - D9D69FDB3C6E261AEE891328E6E3B297 /* UMPermissionsInterface.xcconfig */, + AB0BA70BF6A64151B7D6C48C8EDCFF66 /* React-RCTText.xcconfig */, + B94E95DDCA26855FED33A1462A4D6940 /* React-RCTText-dummy.m */, + 651E7E66D65CDEFEFFB51D7F9C44CBB0 /* React-RCTText-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; + path = "../../../../ios/Pods/Target Support Files/React-RCTText"; + sourceTree = ""; + }; + 26967DC082259A872E4B694E3417F7D1 /* Pod */ = { + isa = PBXGroup; + children = ( + 40D9FAED863378EAF92E5D0A1B235BBE /* React-RCTActionSheet.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 274A2B533AA40F92465BE9244A3200B4 /* VirtualText */ = { + isa = PBXGroup; + children = ( + 106CB78B1A5A36AAB5A3359AF69C107D /* RCTVirtualTextShadowView.h */, + FC9E5A06C3C4B96EE818A49E7E1C9F7C /* RCTVirtualTextViewManager.h */, + ); + name = VirtualText; + path = Libraries/Text/VirtualText; + sourceTree = ""; + }; + 2803C2B5DF9725682DEA908EF1E8024E /* UMImageLoaderInterface */ = { + isa = PBXGroup; + children = ( + 12A4D7F24D523435A9D4DC14393D2F9B /* UMImageLoaderInterface.h */, + 776096EDF588E089544EE308D7C9130E /* Pod */, + 1824342171365250AF7C9A3256B8F086 /* Support Files */, + ); + name = UMImageLoaderInterface; + path = "../../node_modules/unimodules-image-loader-interface/ios"; + sourceTree = ""; + }; + 29944DF13C2E54EC655501858F6183E2 /* React-RCTLinking */ = { + isa = PBXGroup; + children = ( + 9EF651E0B9FDF0C45A5C81D3FB744B69 /* RCTLinkingManager.m */, + 8FC475294EC8C7FD16B97C82E4ED108C /* Pod */, + E9F51941FD0FD85D4C8C8305347B2DEB /* Support Files */, + ); + name = "React-RCTLinking"; + path = "../../node_modules/react-native/Libraries/LinkingIOS"; + sourceTree = ""; + }; + 29C1E1970967B398787AEBC9CD380C95 /* core */ = { + isa = PBXGroup; + children = ( + 31348318ED794E375BF7C730554E48FB /* LongLivedObject.cpp */, + 61E4C6ACFADF5F0FFF6A5B865C0C8092 /* LongLivedObject.h */, + 72FD36C56C7615A02CEE73E95CA1575D /* TurboCxxModule.cpp */, + 738FBC154CF0E9D62D232459F3E6309A /* TurboCxxModule.h */, + 3C1A2E8ADA134E8238FA734E13530352 /* TurboModule.cpp */, + 269DF2E852964BEEF2A57A04741F494E /* TurboModule.h */, + 346213A86B7D47591B84F49573F50053 /* TurboModuleBinding.cpp */, + A809C4E62C93E7DF9D89DF40F13834EF /* TurboModuleBinding.h */, + 6C8FD51F23BEDBCAE09AE95284EA42C6 /* TurboModuleUtils.cpp */, + 03C15DFA1D85EC899D31B8976AA96CA8 /* TurboModuleUtils.h */, + 3632E4B9F9D0E25BE6B04DE5B3FD006B /* platform */, + ); + name = core; + sourceTree = ""; + }; + 29F619657A7D3199A6D3863C88EA2378 /* Pod */ = { + isa = PBXGroup; + children = ( + 6D5DEE920EDB20E9B90F20D6566C5F48 /* React-RCTSettings.podspec */, + ); + name = Pod; sourceTree = ""; }; 2D5E1728E679DF199A53C1223BB832FC /* GoogleUtilities */ = { @@ -7713,87 +7528,133 @@ path = GoogleUtilities; sourceTree = ""; }; - 2E58F7A03B72FEE995E7029DC657D12E /* internal */ = { + 2DB301EFE40B3576CDCF842889E4B664 /* RCTTextHeaders */ = { isa = PBXGroup; children = ( - 46C3AD38437038E97CB6C3C353827223 /* experiments.cpp */, - 41910E253079943F46673191BB21B1BC /* experiments.h */, - 8F479A81017385443C1027B3BB11D4A8 /* experiments-inl.h */, + 0272CA1547397114B32AC9EA0F0F2EBF /* RCTConvert+Text.h */, + AB7209CB15AEA1D836B43B0BD1EA9EC4 /* RCTTextAttributes.h */, + CA0DAA66C9EC6C3BAD3F6C8643FECA44 /* RCTTextTransform.h */, + 6F0338EF8698EA5D87FB5F878A639EC3 /* BaseText */, + E7D687D042079F6568BECF1A68B37F1F /* RawText */, + D0808AAEDC52978605021419FF2A4A0F /* Text */, + A87B9D6AB59B518832F2CF2A3372D507 /* TextInput */, + 274A2B533AA40F92465BE9244A3200B4 /* VirtualText */, ); - name = internal; - path = yoga/internal; + name = RCTTextHeaders; sourceTree = ""; }; - 2EFB4E182C73321820B9428573F52D32 /* Pod */ = { + 2DB482B461FCC0A4EFE9A49690AE2392 /* Pod */ = { isa = PBXGroup; children = ( - AB5712324F4F2FCC908C68F0E4D85CE5 /* UMFontInterface.podspec */, + 01A2882F9C76FD94A2900E2421C8014C /* BugsnagReactNative.podspec */, + 907FE2FFF2CD75174EB91905224108D2 /* LICENSE.txt */, + 8A1E1EF1855B754DA101A981F5AC9414 /* README.md */, ); name = Pod; sourceTree = ""; }; - 3069017DF19FBAB36DF3F5BD9855CBEF /* EXFileSystem */ = { + 2E374AD08DD4E4BAEA47AFFF300F8D38 /* Pod */ = { isa = PBXGroup; children = ( - C6FE7BD6FE6B01D18E8998368A0640CD /* EXDownloadDelegate.h */, - B4B3D69A93D29E44849D09261B673E1A /* EXDownloadDelegate.m */, - BAE8DC5D234672D2E49F73111B307675 /* EXFilePermissionModule.h */, - 94DA163D427AA3C82ADDF6C8A197A7BA /* EXFilePermissionModule.m */, - BC6AF824866AF39B3798D42C8C00D05F /* EXFileSystem.h */, - D4A3A82FBFA472B14729790691BDBCD9 /* EXFileSystem.m */, - 8EEEDE07325592D7EAD9DF13A69BB6DF /* EXFileSystemAssetLibraryHandler.h */, - C400593276D21EC2C865491D1274841D /* EXFileSystemAssetLibraryHandler.m */, - 91361E707B9D5FBA8ABFB6DF0D51F6E7 /* EXFileSystemLocalFileHandler.h */, - DBC31B184432CC52EC5989F5CC9F893E /* EXFileSystemLocalFileHandler.m */, - 83CA5E3B513C52DBEC8F2E83055E11A2 /* Pod */, - FE4614397159908BE58351E9B18B3808 /* Support Files */, - ); - name = EXFileSystem; - path = "../../node_modules/expo-file-system/ios"; - sourceTree = ""; - }; - 30E86498E62C8CAD6E38F99CAA45D2A0 /* Pod */ = { - isa = PBXGroup; - children = ( - 32866562C8FE2DB9C1F68B8F0F34E146 /* EXPermissions.podspec */, + 5990395B1D15F3D2662E2B0960E6047B /* React-cxxreact.podspec */, ); name = Pod; sourceTree = ""; }; - 3118C55A9417F3E185EEEAA5A8EC4761 /* React-CoreModules */ = { + 2EB264F30277111484C61FCCC192FD25 /* Pod */ = { isa = PBXGroup; children = ( - 1D7A2E85BFEF2ECC9B0649D1ECAC6D07 /* CoreModulesPlugins.mm */, - 96457F297518517EC4D15D5745773E24 /* RCTExceptionsManager.mm */, - BF1B3C7C7E5F67CBF74A1A30DAAA7F05 /* RCTImageEditingManager.m */, - E7E6BC405093534D36E76AB84F152D27 /* RCTImageLoader.mm */, - 9063165C93B843CF16C1945AA3DB42CB /* RCTImageStoreManager.m */, - 059E17E06D2458E7B8041E0D6B598A40 /* RCTPlatform.mm */, - 0342188A1B6B1720C57ABC582B8A1381 /* Pod */, - 87D340F77BC2B1B56306586A871E861C /* Support Files */, + 7EE7679E2164599D79EC8C49619BB737 /* LICENSE */, + 88E72777C250060431B453ADA49D4F77 /* react-native-orientation-locker.podspec */, + FED788B7C494999210ED68D5ABBF99E3 /* README.md */, ); - name = "React-CoreModules"; - path = "../../node_modules/react-native/React/CoreModules"; + name = Pod; sourceTree = ""; }; - 3198C9969EFB103C9566956DC1DC0153 /* Drivers */ = { + 300705AA4025EB621324B44C9D72D392 /* Support Files */ = { isa = PBXGroup; children = ( - 61A2A4C72F57C043E31C91AA839CF6F5 /* RCTDecayAnimation.m */, - 5E313D984D28AC745889ED441BDC1EB9 /* RCTEventAnimation.m */, - 5DAE019E7FB1084DCF73588086F535FD /* RCTFrameAnimation.m */, - D89F67BCE0B3104E43AE4990FD086D98 /* RCTSpringAnimation.m */, + F9FF16C046ACF9861B81DE3AC55F837C /* React-RCTAnimation.xcconfig */, + D5BCF7266A460806A3D9FF384F411D90 /* React-RCTAnimation-dummy.m */, + 67119D548548321F0FFE7E95FE0FDC8F /* React-RCTAnimation-prefix.pch */, ); - name = Drivers; - path = Drivers; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; sourceTree = ""; }; - 31E24F7AB30BE10C769E9D42ACA812AA /* RCTVibrationHeaders */ = { + 303CAC34BB7FB4345D93568056713CD2 /* Recording */ = { isa = PBXGroup; children = ( - FCCFFF2F024A5EC44150C1BFB8C90D28 /* RCTVibration.h */, + B9EB42C9BCE303128856EB2736F6AD9D /* BSG_KSCrash.h */, + 344F115A95B229C2F0D983DABE6C40EA /* BSG_KSCrash.m */, + D9255B09619AC90653E8B4669EEAD8A0 /* BSG_KSCrashAdvanced.h */, + 0D275E3FEE0C750269FC1DD63B244748 /* BSG_KSCrashC.c */, + EAE0BBB117E06D915B2F7CD13FDF538B /* BSG_KSCrashC.h */, + 71EF16C90769C6A6B938AC12AA400214 /* BSG_KSCrashContext.h */, + FA50A86BB5BC63C01E03B1EE93E5E963 /* BSG_KSCrashDoctor.h */, + E455556F97EC4F3832300A23529B49BB /* BSG_KSCrashDoctor.m */, + 9F37E7FEDEC07DBBB0C35F0036CF2DE5 /* BSG_KSCrashReport.c */, + 1462F1D1589D947E211118E34474B7BF /* BSG_KSCrashReport.h */, + 0FCC86470ABA63FBA2F68D680427EE76 /* BSG_KSCrashReportFields.h */, + 66C6F8C0BEE2578205320376881774E6 /* BSG_KSCrashReportStore.h */, + 9D317F6BA0B1861EFE7E02E59B753FE4 /* BSG_KSCrashReportStore.m */, + 2BB52A32742ED761DA76CEBE97ED18A2 /* BSG_KSCrashReportVersion.h */, + 37EC08C914CE9355DB2B72F7F2E4146C /* BSG_KSCrashState.h */, + 6B2727DD3339BB88DB7A16E578C2A991 /* BSG_KSCrashState.m */, + 84CC73B6A0DE06B149849CBA767FCE1E /* BSG_KSCrashType.c */, + 30BEBEC4DDFFB2406A89A09ADAFDD6E0 /* BSG_KSCrashType.h */, + 49059D17D7C5B037904B0A8D28A5FEA3 /* BSG_KSSystemCapabilities.h */, + 1D3AE7B680C118C3EBA0F6217DDBF48E /* BSG_KSSystemInfo.h */, + 17935CB6C8B23B54C6C73EFE33D849CB /* BSG_KSSystemInfo.m */, + CBAF33463FC49F8D88BE7292369B2888 /* BSG_KSSystemInfoC.h */, + 253847375D33E0614EE89E63F039CF58 /* Sentry */, + DFDEC2F0FE8EAD31D20BF5A5BC35F1E4 /* Tools */, ); - name = RCTVibrationHeaders; + name = Recording; + path = Recording; + sourceTree = ""; + }; + 314A0722A68DB20CAA0AB438DECBE6AC /* crashlytics */ = { + isa = PBXGroup; + children = ( + F2C62E018E584D4B4A97E1F0C5422722 /* RNFirebaseCrashlytics.h */, + 9C08D4DD60D8F74867221103124930A5 /* RNFirebaseCrashlytics.m */, + ); + name = crashlytics; + path = crashlytics; + sourceTree = ""; + }; + 317645C6574EF6A198643656D2BEB977 /* bugsnag-cocoa */ = { + isa = PBXGroup; + children = ( + ECDE397CA636A86B7A7178411A058CB4 /* Source */, + ); + name = "bugsnag-cocoa"; + path = "bugsnag-cocoa"; + sourceTree = ""; + }; + 320D27D4767DC22FE920C91EA3CEF938 /* Support Files */ = { + isa = PBXGroup; + children = ( + F9750DE8E5569570FBEE1FA5BDB59AE4 /* UMPermissionsInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; + sourceTree = ""; + }; + 33A16D8C61AAB4DC00F3F0A57D3A1869 /* RCTWebSocket */ = { + isa = PBXGroup; + children = ( + 9B96C3E30C1BD253DE65C66C95B3D4F4 /* RCTReconnectingWebSocket.h */, + 741F8B4BE360F523AAE94014D77853A6 /* RCTReconnectingWebSocket.m */, + 9069BCB3F237CC52A98F1CD4752DD845 /* RCTSRWebSocket.h */, + E96BAB157D2998086C5B27982DC2FD70 /* RCTSRWebSocket.m */, + 1DF7CBF2800F7AAA8568C4ACA6E5FDC5 /* RCTWebSocketExecutor.h */, + 6490592C6AD0F26F3931F5C713A4E4EF /* RCTWebSocketExecutor.m */, + BEA60988EF7B325B39DCB6D15B7CBE9F /* RCTWebSocketModule.h */, + 51A9F82B4171565DEB6092151827D22F /* RCTWebSocketModule.m */, + ); + name = RCTWebSocket; sourceTree = ""; }; 33C9409F639F73DC93A67940BDF8D840 /* Pods */ = { @@ -7825,67 +7686,33 @@ name = Pods; sourceTree = ""; }; - 34863FC3EE6A8AC9673E1912A20CC3EC /* Nodes */ = { + 3632E4B9F9D0E25BE6B04DE5B3FD006B /* platform */ = { isa = PBXGroup; children = ( - C1D568902C1B68AB0BFC0BCF1F6A1A44 /* RCTAdditionAnimatedNode.h */, - F2E83C96A4B51E0F11FC2809BC51F06F /* RCTAnimatedNode.h */, - CF31F926ECC5B6D8AFB0834962AE2FC6 /* RCTDiffClampAnimatedNode.h */, - 45C290CE5A62F1BA392D9F67FC24CC10 /* RCTDivisionAnimatedNode.h */, - B54E571A6F5D5DEBE95468F35AB613DC /* RCTInterpolationAnimatedNode.h */, - 7AAB9F137D471BC732AF4577DA583C38 /* RCTModuloAnimatedNode.h */, - 843A1076CC5376E1B015E17656973B94 /* RCTMultiplicationAnimatedNode.h */, - A20A718551EB736421C04C18825176AA /* RCTPropsAnimatedNode.h */, - B808DCA9315A70386FB5A082F78BD5DB /* RCTStyleAnimatedNode.h */, - AF95283C3997D0287ECFAA315DA62E20 /* RCTSubtractionAnimatedNode.h */, - 00917972F2110A0DF17639983D92518C /* RCTTrackingAnimatedNode.h */, - 2EFFAB8FA462AA38356F12CFF3F9D9A4 /* RCTTransformAnimatedNode.h */, - F342D9A61A28E8BC5521E166C20290D5 /* RCTValueAnimatedNode.h */, + 6A4DB3896AB669B2905032927570B2EB /* ios */, ); - name = Nodes; - path = Libraries/NativeAnimation/Nodes; + name = platform; + path = turbomodule/core/platform; sourceTree = ""; }; - 36112CC2E0B4A7AA6705EA83D4076E74 /* Pod */ = { + 3644A5A50C2A82B6FDE2F2B6A28D5124 /* Pod */ = { isa = PBXGroup; children = ( - 875C91AA13570B451A1B7C14C04EA90B /* LICENSE */, - B3E178A95DE8E446D22BDAD91D9AEF95 /* react-native-jitsi-meet.podspec */, - 3A3F3F3D1DEAD88798C7855BC580B5A2 /* README.md */, + 63B6534680C0B20907995BCF1F553941 /* LICENSE */, + 3D1AFED5121275823C1EE98A16173AAA /* README.md */, + 1E131E5F90249FAA56EF6D3C34B3B171 /* RNUserDefaults.podspec */, ); name = Pod; sourceTree = ""; }; - 3780D5DA51DE92E38255146B3070E523 /* Recording */ = { + 36FBC4703FC12D6D113030FC6590C91E /* Pod */ = { isa = PBXGroup; children = ( - C326A26950FBF8AECF7F627422A1F822 /* BSG_KSCrash.h */, - F7542D38FF209FBD4AF03957055F30DC /* BSG_KSCrash.m */, - 4740CAD1208E5402B44DF7BCE39B2E88 /* BSG_KSCrashAdvanced.h */, - 59EE6F1F21B6DE160F6718AF2B0B88AE /* BSG_KSCrashC.c */, - 24C1851EEB7F460D1785C271DCFC6410 /* BSG_KSCrashC.h */, - 8C107A84188D82433218814A0E8BEC5C /* BSG_KSCrashContext.h */, - A78D12751FF5DF3C741701E9E5013CD0 /* BSG_KSCrashDoctor.h */, - 6257AC3E2DA31BB3E01EE99164AA9070 /* BSG_KSCrashDoctor.m */, - 3D5DAF6F162765CBD8C7491800B9EA45 /* BSG_KSCrashReport.c */, - 82E7526C2A801E0F7EA0AD085B133D3E /* BSG_KSCrashReport.h */, - 4F683AF2602FACFDC915252455977618 /* BSG_KSCrashReportFields.h */, - F2BA8BB1F6E38B3C8257CF9CB81FC230 /* BSG_KSCrashReportStore.h */, - 16800BCAAC50F56FC05877E6CE6E9F84 /* BSG_KSCrashReportStore.m */, - BAB91F51218CD9E1189A982C836C982A /* BSG_KSCrashReportVersion.h */, - BCFBB91AAB4D0D6D6E79B0BDFD15E29C /* BSG_KSCrashState.h */, - 7097A063DC932EF4DC81F08558A0B484 /* BSG_KSCrashState.m */, - FA64AEC496DEDDC824442361226DA962 /* BSG_KSCrashType.c */, - 749FC04447D2E0DE4AFA2431D9DAB8AC /* BSG_KSCrashType.h */, - 6A311D05428FA99B906B574F3AC2C9E8 /* BSG_KSSystemCapabilities.h */, - 4A4BE5994809BAF5D65006BAAC2754F8 /* BSG_KSSystemInfo.h */, - ABF00288BE6B64C9A4A0A6E1CFF6646F /* BSG_KSSystemInfo.m */, - 1AC0277131A82F73F6BBC1D2EDC09CA9 /* BSG_KSSystemInfoC.h */, - 20B8CDECE1030BD9F738EF06DF7C66DE /* Sentry */, - AE496024D5FAE87AC6D0A4D6B39F5F5F /* Tools */, + 696E77670D70D9D42EE8087D67D0E440 /* LICENSE */, + 02BACB4666CE9B063EB01C33F30A95C0 /* README.md */, + A29AD9B151CE566DEB09797019B8952C /* RNVectorIcons.podspec */, ); - name = Recording; - path = Recording; + name = Pod; sourceTree = ""; }; 37B60BEB98A505FC3939E0E1280F2679 /* Support Files */ = { @@ -7898,27 +7725,6 @@ path = "../Target Support Files/GoogleDataTransportCCTSupport"; sourceTree = ""; }; - 38F716DB206D296020581891A2110D39 /* Support Files */ = { - isa = PBXGroup; - children = ( - 442DC5479497D8DA58DAD41AFF85A450 /* UMTaskManagerInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; - sourceTree = ""; - }; - 392A18C0A907D36B5306AF0066B99468 /* react-native-splash-screen */ = { - isa = PBXGroup; - children = ( - EBDB333108E0DBFB00B3986F7A2E21A8 /* RNSplashScreen.h */, - 56DD71371D66F0C906E1614C648B19DD /* RNSplashScreen.m */, - D3441D02DA38739978A0E113936B58B0 /* Pod */, - 0D44E5D86EAEE9B5F1FA11B1A167667D /* Support Files */, - ); - name = "react-native-splash-screen"; - path = "../../node_modules/react-native-splash-screen"; - sourceTree = ""; - }; 39758F17E3A072D9209D1E8E08C41D2D /* FirebaseCoreDiagnostics */ = { isa = PBXGroup; children = ( @@ -7933,39 +7739,145 @@ path = FirebaseCoreDiagnostics; sourceTree = ""; }; - 39CFC949A4DF6DC62B212AD3DE2FB93C /* Pod */ = { + 397BD12FCDC0D40E272F1DF168D4344F /* Support Files */ = { isa = PBXGroup; children = ( - 1BE8F312C9342947118B917F92B83C76 /* LICENSE */, - 9A5C29AAAB66F7E6D17D82BB9C3D1B3C /* react-native-keyboard-tracking-view.podspec */, - AA935E4192477FAB20443FC65C10B222 /* README.md */, + 72F610CA18A677F25011BCB77591D456 /* UMCore.xcconfig */, + 590D474B2C21D751DEFC6E01EAA6C8AD /* UMCore-dummy.m */, + D606B56E6E0CFA9D6C8CA3969F1D1C58 /* UMCore-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMCore"; + sourceTree = ""; + }; + 39B6B087903CDC0E9D21105F318253E5 /* Base */ = { + isa = PBXGroup; + children = ( + AAEC73E51FE755C6D8131E5F0763D72C /* RCTAssert.h */, + E376D3A069F7F744D16D2109BB79B45E /* RCTAssert.m */, + 8AADF531C41EC635E9DAC59729BBDB19 /* RCTBridge.h */, + 6560E61B11839A6C43F486F71DBB77A9 /* RCTBridge.m */, + EB45F1F2C2C96C1099FB7F753D6369FF /* RCTBridge+Private.h */, + 5C1DC4FF1D7C7368AE2CD9A9E2D4A079 /* RCTBridgeDelegate.h */, + F99A8FC3EF04AD607F517CCBA2846A81 /* RCTBridgeMethod.h */, + 5D5D2C48B3820BBC9C8938CEC83480C1 /* RCTBridgeModule.h */, + 5EC008EDF98EEA027FFD0D31FA3FB39E /* RCTBundleURLProvider.h */, + CB9E8D5136D1764600472CAF1D5FC1E3 /* RCTBundleURLProvider.m */, + 055D2EC1896D136A082351B73778FD2E /* RCTComponentEvent.h */, + 522F10730E194A3037BCDF996A47E81A /* RCTComponentEvent.m */, + 004FC516E6A32E088DF3DF4F3E10E15B /* RCTConvert.h */, + F61B2AE7702422B8984E2C64C48FE63C /* RCTConvert.m */, + 8B0348E94C22192C942DF791B76D9E7B /* RCTCxxConvert.h */, + 84CF16E9D2A4A246B3CE672C6BDC2686 /* RCTCxxConvert.m */, + B9EA6B2D4EAEC170C18C160AF0C5774F /* RCTDefines.h */, + 92728231525BE54B9499C3C4B30479C5 /* RCTDisplayLink.h */, + 1A7BA2EEDD3EF4CA7FB8026E92D065E6 /* RCTDisplayLink.m */, + BFC4BD1915416680E595CE59E15913DD /* RCTErrorCustomizer.h */, + 39B77D36E4FAA4C2B8322A3502BBAE09 /* RCTErrorInfo.h */, + ABCF9492809DCBC6AD61CB4CE4A3338B /* RCTErrorInfo.m */, + 0D3DCC1AD245F69E36A43A50165A6FA3 /* RCTEventDispatcher.h */, + EAF2244E86404703EDF8CD5123B25A51 /* RCTEventDispatcher.m */, + 5EEC6DD11BDA673BB53D139FF0BC846E /* RCTFrameUpdate.h */, + 9F333097B7E3C4AF4420A6FCBF44668E /* RCTFrameUpdate.m */, + 8DFC2B2AE10AE86873DA2180CCFEB0D2 /* RCTImageSource.h */, + 028E448A52B65C9FAFEC5C782B01D7C0 /* RCTImageSource.m */, + 7BF4B1D10BA50A211991DE10B816A422 /* RCTInvalidating.h */, + AD8A98521675B415BA698C2B16F94E0C /* RCTJavaScriptExecutor.h */, + 969DAD83A9E0AB290925D3D13EB4969D /* RCTJavaScriptLoader.h */, + 1F4923AB50899980C9D097B503026412 /* RCTJavaScriptLoader.mm */, + C0691451199B8BDA6C4B3DFA6D9368E6 /* RCTJSStackFrame.h */, + E0115C62C8339DE2E7F0D57BDC9BA823 /* RCTJSStackFrame.m */, + 78C3C493F439F70521EF694EB3035D60 /* RCTKeyCommands.h */, + FC807660334318CD2F7366195244BD17 /* RCTKeyCommands.m */, + EA2B79A275424C62EDE0C7976DEBF1A7 /* RCTLog.h */, + ED95570893E01E1A1E336667A3ED4DF5 /* RCTLog.mm */, + E8770423E139D2D4AD1DE99E49169C57 /* RCTManagedPointer.h */, + 0B6B62DADD39DA01034D398ED5C1A8A5 /* RCTManagedPointer.mm */, + DDBB81227D8F406C312DCEA9C812FB99 /* RCTModuleData.h */, + CCC80984F81B311050BF2163EA6E0513 /* RCTModuleData.mm */, + B6DBD490066F1629A9280EDBCA31A929 /* RCTModuleMethod.h */, + BF7B53A538DA71BD621E4E21A0061DBB /* RCTModuleMethod.mm */, + B6E097A77CACC8B14A962C736C6F7DC0 /* RCTMultipartDataTask.h */, + 94CB36C4322F282B36EB44E09A4AEC53 /* RCTMultipartDataTask.m */, + 777EFF02AEE37793BA8E2A3CACFB2E87 /* RCTMultipartStreamReader.h */, + 7D0D2C3997CC7A1FAEEBC58E9B6916D4 /* RCTMultipartStreamReader.m */, + 67FE47AF8F3230485D48E64D18C7FAA4 /* RCTNullability.h */, + 04E3FB7DC2C59CD8831775FFF20C501F /* RCTParserUtils.h */, + 8724FA74C00454349D3ADB0405FAD0D0 /* RCTParserUtils.m */, + 4988DD1E50E27773794A0A25B414BFE1 /* RCTPerformanceLogger.h */, + D48798F35DB8CC0F081656D3B6BBB207 /* RCTPerformanceLogger.m */, + DB2E0A13DAFE993FD8B1FFEC04E1B9A9 /* RCTReloadCommand.h */, + 422E26751C13F3B4CED072B749D894A8 /* RCTReloadCommand.m */, + 62DE8DD76FA9B8FBCA08B5A0ACE36356 /* RCTRootContentView.h */, + 21038089BD01CF650CF1D6BB75EB5BCA /* RCTRootContentView.m */, + C9E0424E50A3012D7F6263A201E8C957 /* RCTRootView.h */, + 6DD6F42C117C8BC29D4DE2E8B9BE620B /* RCTRootView.m */, + 27BF97D54D730CB27FF4ADCB95B81BDF /* RCTRootViewDelegate.h */, + A296CB89D4EE0255ED764BCB23D25DD1 /* RCTRootViewInternal.h */, + 5EBD8D887615F5331A2F84E2DF08C5A1 /* RCTTouchEvent.h */, + E780D0C91A7743756755AFCB5C027CE8 /* RCTTouchEvent.m */, + AFB5EB027E8657AFB4AC3F2D2AD1036C /* RCTTouchHandler.h */, + B958FF11E4EBDD95E16A6757BA5E2B98 /* RCTTouchHandler.m */, + 066664EA37D87CA5AC0E302AD8EF0152 /* RCTURLRequestDelegate.h */, + 1D22F4EEE707E99AF2F0374BDEBA5944 /* RCTURLRequestHandler.h */, + 8992709B32BDAC01E0B0112F19B1262F /* RCTUtils.h */, + 24B435430E9823DD2A245F98A5CDD4D4 /* RCTUtils.m */, + 23D6FC4885DFC3F44AE8B1682D3D9DDC /* RCTVersion.h */, + 8384F5FFD027915795E7F3091CAB1DC5 /* RCTVersion.m */, + A8263F03B479348793C88F15A0990388 /* RCTWeakProxy.h */, + 36B6ABBD0C9C111C4CA22D0C6164C4D0 /* RCTWeakProxy.m */, + 9043CADA0B18AA77E87CCE60D2F863A0 /* Surface */, + ); + name = Base; + path = React/Base; + sourceTree = ""; + }; + 3A33C07BD6ECE733101CDA1F848BCD52 /* Support Files */ = { + isa = PBXGroup; + children = ( + D40FC7FEB9E4848D1D5AFDA19A84F901 /* React.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React"; + sourceTree = ""; + }; + 3A83480FC4C0BD529931FB844277012F /* VirtualText */ = { + isa = PBXGroup; + children = ( + 3102101438E992F7A4D1AF110747AC8C /* RCTVirtualTextShadowView.m */, + E4C40F79656B89558B9B184176DFEB89 /* RCTVirtualTextViewManager.m */, + ); + name = VirtualText; + path = VirtualText; + sourceTree = ""; + }; + 3ABFF1D2F3C2C27A81B3510F78B75C2F /* Support Files */ = { + isa = PBXGroup; + children = ( + FB8B0EADBA394375D3AAF56E332F27D5 /* EXConstants.xcconfig */, + F8C6DD2B63BAAA29749C1989007172AD /* EXConstants-dummy.m */, + C4CA52770FD509E661C5FFAE887B1686 /* EXConstants-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXConstants"; + sourceTree = ""; + }; + 3AF113C158ACC133ECF909089951BE1F /* Pod */ = { + isa = PBXGroup; + children = ( + 81EDE0E5F7410073F94C2C44E3C45868 /* LICENSE */, + 413E24DE90EE32A63B5AE9EA24DC02EB /* README.md */, + 2B86ED61F28DCB20D0530AF1CB29013D /* RNFastImage.podspec */, ); name = Pod; sourceTree = ""; }; - 3A06C6522631079FC5660F53B144595D /* WebRTC.framework */ = { + 3B46CB2DCA7186A7CFA3C49C16CFD6DF /* Pod */ = { isa = PBXGroup; children = ( - C5F63323DE9E692F67E20AB73039B184 /* Headers */, + 4ED4E7550F1DF42016A2496E490E5448 /* EXAppLoaderProvider.podspec */, ); - name = WebRTC.framework; - path = ios/WebRTC.framework; - sourceTree = ""; - }; - 3B47F708656CC4FE351D79FEF8DC86E9 /* RNImageCropPicker */ = { - isa = PBXGroup; - children = ( - CED675B583FA736552ABE486E6C059C7 /* Compression.h */, - 4669C01EEAD59B56C2E8AFA01735044D /* Compression.m */, - 05D9484DB779AD4884AAEA29AF1F497E /* ImageCropPicker.h */, - 9024487821F991A942730F4E97EA7391 /* ImageCropPicker.m */, - D4E04526AB5854DEF94FD076367D04EC /* UIImage+Resize.h */, - 02AEB5B754D8C2842713CC5863BF65C3 /* UIImage+Resize.m */, - 152DD4864F491200ABAFC53665F41BC1 /* Pod */, - D535F7960DE82803D0FD45A34D23B720 /* Support Files */, - ); - name = RNImageCropPicker; - path = "../../node_modules/react-native-image-crop-picker"; + name = Pod; sourceTree = ""; }; 3B4886A6B66CD4B93511D2C859F866E3 /* nanopb */ = { @@ -7986,97 +7898,166 @@ path = nanopb; sourceTree = ""; }; - 3DA493221EEB4CB2C9D08581773B5029 /* React-RCTVibration */ = { + 3C46A484B60A26B77BC7FE93C8B6A6B0 /* UMViewManagerAdapter */ = { isa = PBXGroup; children = ( - A18AD87C0370C60B9D98ECF26D87DA3B /* RCTVibration.m */, - E69B1246BAF1EBC520CB9ECCA1E596D0 /* Pod */, - B2D45331D3AC09D3FF7D2B6FC35363B5 /* Support Files */, + 748A069A3B6E2BE85C0131B2C332FD28 /* UMViewManagerAdapter.h */, + D001D3E7D0B62F8B5028556C2499174F /* UMViewManagerAdapter.m */, ); - name = "React-RCTVibration"; - path = "../../node_modules/react-native/Libraries/Vibration"; + name = UMViewManagerAdapter; + path = UMReactNativeAdapter/UMViewManagerAdapter; sourceTree = ""; }; - 3ED7A8B6A55CE8FCE6451803D5C722DD /* RCTRequired */ = { + 3CAFDF45C80177C70E5C19D485DB7087 /* Reporting */ = { isa = PBXGroup; children = ( - E631442C8E28F7998B92B6DB4B34920A /* RCTRequired.h */, - 86600040119FA1C1FAE3267C2CE0E702 /* Pod */, - 565FA553E1A35EAC83724440682BBFFB /* Support Files */, + F326878F573764AEF9B0A013190EC42F /* Filters */, ); - name = RCTRequired; - path = "../../node_modules/react-native/Libraries/RCTRequired"; + name = Reporting; + path = Reporting; sourceTree = ""; }; - 3F79E75D7CB24BA8A18A1D4789D120CC /* Support Files */ = { + 3CC8BF65EAC88752AB9F6D0A6D26D0E2 /* Support Files */ = { isa = PBXGroup; children = ( - D3B340CE324D758981C64E3D25801174 /* React-RCTText.xcconfig */, - 15D869C0389EC9759DD0175E4FE58FBE /* React-RCTText-dummy.m */, - 82BCC8C828EC69D3AB91387CAA9CC397 /* React-RCTText-prefix.pch */, + E8D8F3713AFE4DEAC4398CE6940594C3 /* RNImageCropPicker.xcconfig */, + F8BC5A153E7952870D12E407DCE43B8F /* RNImageCropPicker-dummy.m */, + 770CAD52E633FE8767DD4FBFE0EA9A30 /* RNImageCropPicker-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTText"; + path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; sourceTree = ""; }; - 4057FB02C37B236E88AB6FCAD1B7FA37 /* Support Files */ = { + 3E748E08C982B93AD76951B2117F937C /* react-native-webview */ = { isa = PBXGroup; children = ( - 3BC92D7E013934F81ADDB203AC3DCAC9 /* RNAudio.xcconfig */, - E6191C5D6B98D09D6677AF4F74CCFECD /* RNAudio-dummy.m */, - A6E357787EAEC5A3C2D8163CFA5C6D78 /* RNAudio-prefix.pch */, + 6E2399054B0E4B1837BAAE26A4F956D5 /* RNCUIWebView.h */, + 93C6118077F5B0B258E1B4F26B634B38 /* RNCUIWebView.m */, + 18A83C98FAD90D1635B4FAD631A8DD56 /* RNCUIWebViewManager.h */, + 5C622AAFD77A2932F3BBE4F9F22FC7C9 /* RNCUIWebViewManager.m */, + B3521C23A432CC9542C79055ABC505D2 /* RNCWKProcessPoolManager.h */, + 00A08AF23B12EF05DD1718372D55A36E /* RNCWKProcessPoolManager.m */, + CE972CC0257D012B8D47130502BE70B4 /* RNCWKWebView.h */, + 6D5C217DC7786CC50A2634CEC5E4211A /* RNCWKWebView.m */, + D3601F1890A13AE99FA8ADAA2C18995A /* RNCWKWebViewManager.h */, + 054454765C650E0793BE6B979357484E /* RNCWKWebViewManager.m */, + F8B24525CE9878652EFC7C78DC044974 /* Pod */, + AE7934F2AE5964862661A9A26313FEC1 /* Support Files */, + ); + name = "react-native-webview"; + path = "../../node_modules/react-native-webview"; + sourceTree = ""; + }; + 3EFAB349B99C07EB5DBC93FF47CAAB63 /* UMConstantsInterface */ = { + isa = PBXGroup; + children = ( + 2FEA7B7E87802AEB975A8D40A33FB8D2 /* UMConstantsInterface.h */, + 24DD017C12466BA279DE9D101B44FB22 /* Pod */, + 7614151C5EA8F91B0DD0762168B9B9DD /* Support Files */, + ); + name = UMConstantsInterface; + path = "../../node_modules/unimodules-constants-interface/ios"; + sourceTree = ""; + }; + 3FEC0EDBB080B3783D92410CD38C0FC0 /* react-native-video */ = { + isa = PBXGroup; + children = ( + 615459916D10B02E1866FDE041C427D2 /* Pod */, + F5B78A3B1C228CA51C4AA40148144C7C /* Support Files */, + 5B21077B776B6E4345103895BB89122B /* Video */, + ); + name = "react-native-video"; + path = "../../node_modules/react-native-video"; + sourceTree = ""; + }; + 401A50569764357CB25B127D780066BA /* RCTVibrationHeaders */ = { + isa = PBXGroup; + children = ( + C01569BFC76BB941E6E89DEA9038BFB4 /* RCTVibration.h */, + ); + name = RCTVibrationHeaders; + sourceTree = ""; + }; + 408CFF7087CE9A7E845F478E47404D2F /* DevSupport */ = { + isa = PBXGroup; + children = ( + 59E3EA6E387C67A3DD7DE9A4803559BC /* DevSupport */, + 446E197F9A6E9E5794BCCCC477105469 /* Inspector */, + ); + name = DevSupport; + sourceTree = ""; + }; + 410E051786305EEA81446B0993031590 /* Support Files */ = { + isa = PBXGroup; + children = ( + A8B22E6604EFF39B6D611AB13DDDBD15 /* React-RCTBlob.xcconfig */, + CDFB32E7DC9DF4A0CE573953AFC382D6 /* React-RCTBlob-dummy.m */, + 293992970832F1456BE89CC944BDAD53 /* React-RCTBlob-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNAudio"; + path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; sourceTree = ""; }; - 421939D812813D07738766C602680151 /* Pod */ = { + 417C0612321D7312AC11072641EC5930 /* Pod */ = { isa = PBXGroup; children = ( - 8F76A0B90CE60E237FA102EA90F38093 /* LICENSE */, - 0E8A957A103EB671689D6806CAE41026 /* README.md */, - 9C490A8BE82C61BE53BDB0F4F8ACCAFE /* rn-fetch-blob.podspec */, + 5F1FC0A0222927DCC4F5B9A1C28E29C7 /* LICENSE */, + C250190D70E80275926950D8C0AB01D1 /* react-native-keyboard-input.podspec */, + B775DE3B86F5686CC6BA50AE1484B0E8 /* README.md */, ); name = Pod; sourceTree = ""; }; - 43C08727D5FA28584DAE00E4222F51B1 /* Pod */ = { + 41BD15DFC2E9EF0C83B96B4BFA169285 /* Support Files */ = { isa = PBXGroup; children = ( - A13422A7FFAEC6EC9653D1DBE487BC8E /* FBReactNativeSpec.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 43DAB6790BE0667B8CCD889F97E99F7C /* BaseText */ = { - isa = PBXGroup; - children = ( - 3D3C7D5AF6CF5C9445A36E6DCDCF0A5B /* RCTBaseTextShadowView.h */, - 7BA859F8B13928A5192F098B418266DC /* RCTBaseTextViewManager.h */, - ); - name = BaseText; - path = Libraries/Text/BaseText; - sourceTree = ""; - }; - 44B4D363F90D66628CB3C80CBB0CA1A2 /* Pod */ = { - isa = PBXGroup; - children = ( - 51DFF9436BC80FDF52DB91E94B923B33 /* LICENSE */, - 8FF503927E2CFF6EC1957850CE425E88 /* README.md */, - EF785BA375C623C6E2C5F2494306C594 /* RNGestureHandler.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 44C05DBA63BDC4804EDBBD0DB72C3916 /* Support Files */ = { - isa = PBXGroup; - children = ( - 5A9D12858C98B132B37E19F52FEE8838 /* UMReactNativeAdapter.xcconfig */, - A5330E8B9C4BCDB319455957A98B8D8F /* UMReactNativeAdapter-dummy.m */, - 4F3BDC993A75FDF37DAB3CEC3445DCC9 /* UMReactNativeAdapter-prefix.pch */, + 93C0CEC88304CE8024C4BAD6F49F46DD /* RCTTypeSafety.xcconfig */, + 31808754F413E9FCF29F80B7E4DCAB8B /* RCTTypeSafety-dummy.m */, + 5FAD6C32E0686A70C099A092BF90E067 /* RCTTypeSafety-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; + path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; + sourceTree = ""; + }; + 41F5BE31FCE458E1A0D9FEB6E9AB38F3 /* functions */ = { + isa = PBXGroup; + children = ( + 7F89F26A34B724335D974518272834CA /* RNFirebaseFunctions.h */, + 35F9B9A43496220799632121DEC6E20C /* RNFirebaseFunctions.m */, + ); + name = functions; + path = RNFirebase/functions; + sourceTree = ""; + }; + 4235D11CE7BBDA3AA0607FAF8018C587 /* Pod */ = { + isa = PBXGroup; + children = ( + 893265C230A1F3394441FD5C25658A10 /* UMTaskManagerInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 43E8275353C396D1877215A0B2669662 /* Support Files */ = { + isa = PBXGroup; + children = ( + 9BB9ADC638290658930754803EBA559D /* react-native-document-picker.xcconfig */, + 655E7BA07A314B76CEFD1E46ADE069FE /* react-native-document-picker-dummy.m */, + 4458E18704D8255E2EC923DC532B799B /* react-native-document-picker-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-document-picker"; + sourceTree = ""; + }; + 446E197F9A6E9E5794BCCCC477105469 /* Inspector */ = { + isa = PBXGroup; + children = ( + A0AE44464D79976D776D2A087ECFC85D /* RCTInspector.h */, + 5765E8F9CE5C4EA184E6C1F2E85CE1E1 /* RCTInspector.mm */, + 079CC5253806AA3AC76B266B04373242 /* RCTInspectorPackagerConnection.h */, + C81F5F2E2F2745501CB1DC35224AE57F /* RCTInspectorPackagerConnection.m */, + ); + name = Inspector; + path = React/Inspector; sourceTree = ""; }; 44E7703E8FC90E0EAA54ACF6DFB7588A /* Support Files */ = { @@ -8088,193 +8069,123 @@ path = "../Target Support Files/FirebaseCoreDiagnosticsInterop"; sourceTree = ""; }; - 457940F9A7D82CDB2C220A1314210016 /* Support Files */ = { + 45F7089BEA71DF91EAE4BC14BFAF8466 /* UMTaskManagerInterface */ = { isa = PBXGroup; children = ( - 48FF538A844945D4E1A5380E1C56738F /* BugsnagReactNative.xcconfig */, - 5B5D0AAE2F91D85D579503AD68DB2F6D /* BugsnagReactNative-dummy.m */, - 4AC4AD41A05255764B21EACF92707CE8 /* BugsnagReactNative-prefix.pch */, + F46714AC9808B5A5EA9467103BCE4ADF /* UMTaskConsumerInterface.h */, + 22DAB6E5221CFAA73B6A1BF054B405C4 /* UMTaskInterface.h */, + BC1CC30DF02CEB15B85BB15AECF15EC3 /* UMTaskLaunchReason.h */, + 6544A92C4E0FA3248DF12D822040187B /* UMTaskManagerInterface.h */, + 0AC724EBFF4406AA12048CAD97C1DE62 /* UMTaskServiceInterface.h */, + 4235D11CE7BBDA3AA0607FAF8018C587 /* Pod */, + 761A6F1F642C49FD8EA1C8E817A65651 /* Support Files */, + ); + name = UMTaskManagerInterface; + path = "../../node_modules/unimodules-task-manager-interface/ios"; + sourceTree = ""; + }; + 468701A202A1A7399863F00B3B413009 /* EXConstants */ = { + isa = PBXGroup; + children = ( + 998AE4414D11CC59E22B0DC860FF85AC /* EXConstants.h */, + 759DAB5BA82296E5F3DBDB47BB6E1F87 /* EXConstants.m */, + 819E12ECC35DC9316F6D0960254C3B41 /* EXConstantsService.h */, + 681DABDBBCF724F996BBBE7424640755 /* EXConstantsService.m */, + A5D643B713AFDF4043CEEFAA9A553DD8 /* Pod */, + 3ABFF1D2F3C2C27A81B3510F78B75C2F /* Support Files */, + ); + name = EXConstants; + path = "../../node_modules/expo-constants/ios"; + sourceTree = ""; + }; + 4724935AAB49E1A205B6297BEF036B4A /* Pod */ = { + isa = PBXGroup; + children = ( + D28902AD70409583A84545C0F602E03C /* React-CoreModules.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 484B0FB62F8739B7C3FBF3B34F374FB3 /* Support Files */ = { + isa = PBXGroup; + children = ( + 2ED786D2B89840F35CB731C1C6492E5D /* UMReactNativeAdapter.xcconfig */, + B030661A74EAF5718EE0D23F398BD614 /* UMReactNativeAdapter-dummy.m */, + C51CDB48E569E3C80FA250B67CDEBC76 /* UMReactNativeAdapter-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; + path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; sourceTree = ""; }; - 465395A17042DC785AF73CC6E6953B2E /* Protocols */ = { + 496D52DC3734706909B422A0CAC868F4 /* BugsnagReactNative */ = { isa = PBXGroup; children = ( - A1E30E49980F6EEA26508E3775D3475D /* UMAppLifecycleListener.h */, - C35135A3E866F0F747B10CA8DF8A2091 /* UMAppLifecycleService.h */, - 6F96429BF5F61D23BEF9CBA59ABBB572 /* UMEventEmitter.h */, - F667DFF2508EFB0CB1207994F2661D20 /* UMEventEmitterService.h */, - E8BEDA4289FB555F62BB7D9310876DE9 /* UMInternalModule.h */, - 19ACB919631DA3E5BAB64FC62D08BC8E /* UMJavaScriptContextProvider.h */, - 9193ABA6F9FCB4EA1223616BD2BEF82B /* UMKernelService.h */, - 978458944418A4945C0C0FA1E81A5E71 /* UMLogHandler.h */, - 8275CBB6A37B52F3186AA519016042B1 /* UMModuleRegistryConsumer.h */, - 11C5BFF681786C8C07F218507E1E7B6A /* UMUIManager.h */, - 10E958DE589DACD25599EE347FAEAC1A /* UMUtilitiesInterface.h */, + CAC29FB99AD285D7390FCBA07B3E6A93 /* BugsnagReactNative.h */, + 2A3800D8351F8C215D23392B666536DC /* BugsnagReactNative.m */, + C407B8DD884772393FF4F70FDCE675C8 /* Core */, + 2DB482B461FCC0A4EFE9A49690AE2392 /* Pod */, + BC59562DFD2EACF5CA3477A31FCE58F2 /* Support Files */, + 0F65CB16B380E32CE89B1F6BEE476758 /* vendor */, ); - name = Protocols; - path = UMCore/Protocols; + name = BugsnagReactNative; + path = "../../node_modules/bugsnag-react-native"; sourceTree = ""; }; - 4699E8755D889A793A6041F26BEA5057 /* Nodes */ = { + 49E754DB8BB093D3FBCC7774FD521B2B /* Support Files */ = { isa = PBXGroup; children = ( - EAD84CA8A895048C48C60E6B2A2754A9 /* REAAlwaysNode.h */, - 4C47BC8E63567B03ECE9A98F19E22CFE /* REAAlwaysNode.m */, - 9658C75FB7BC7C2EE79A3A81EFB8E6E1 /* REABezierNode.h */, - BABE059E6403F44B1FF43875638B0DCD /* REABezierNode.m */, - DA522B551BAB1B9884E87495F4389203 /* REABlockNode.h */, - FE209222DE10C2202F74ABC2B7EF31B5 /* REABlockNode.m */, - 765A0E988AE74AA37F350DE0C7E5378E /* REAClockNodes.h */, - 093B496EC406F5EB47DD86CDF244E3E5 /* REAClockNodes.m */, - 933B4435205D09368BF64BEBDE7C047F /* REAConcatNode.h */, - 42473D7B6315F204506E7D10817318AE /* REAConcatNode.m */, - BA6B140BF6627ECB1A97E9D21CF1B175 /* REACondNode.h */, - C5C1FF090A33DB8187E44A8C45E2F500 /* REACondNode.m */, - 225DE646426BB00FBA9D79EAF0846E6C /* READebugNode.h */, - A12FEB66D4DFDFD9C582DB3898055189 /* READebugNode.m */, - E72FC8CCCF7AF978548C4BF233B2F812 /* REAEventNode.h */, - 157DA3F3A95FA53FCD6F3475A9F2EFEB /* REAEventNode.m */, - 4D434AB16BAD26810248208878A0AE42 /* REAJSCallNode.h */, - 00D638EB210BAF9BAD83745392991520 /* REAJSCallNode.m */, - 5E98A1C2F0D6E45F92CA062D1F9B6783 /* REANode.h */, - C2FD0D14DD20B6638244C38BFD0838C1 /* REANode.m */, - 02AE1E40D1648F6CEDA46218F10CFEDD /* REAOperatorNode.h */, - 9AA45CF7FD560CD061DF321A1266D254 /* REAOperatorNode.m */, - 39331300757DF99B3ED1BC7F159B492C /* REAPropsNode.h */, - 6A126D1A914BCA2DB2EF03CEF3A07BC0 /* REAPropsNode.m */, - 31F85D8CF4693A614653CC91F13D9BF1 /* REASetNode.h */, - F0389F3AC245DE8A845592B00A1D0BDB /* REASetNode.m */, - 3D655208670B9B0B89F964EF6F197D10 /* REAStyleNode.h */, - D09A24E452974C39DE955946DE3CD0C4 /* REAStyleNode.m */, - A58BB2D4D47414EF042918BFD563014F /* REATransformNode.h */, - 1041612ACBE4DB3F52F6CA9221FF8BE7 /* REATransformNode.m */, - F26F45688CA40CE62BD4A01EFD5C2A48 /* REAValueNode.h */, - 7442410208D42C715D30734F564DC2BB /* REAValueNode.m */, + 220E3D4E56EFC5BBD292DF9A9D6FD8B2 /* React-CoreModules.xcconfig */, + 03F6CE6F3F15D04123FE13807A1C40AD /* React-CoreModules-dummy.m */, + E4DB37F944F54E1B439D2222AEC5F24B /* React-CoreModules-prefix.pch */, ); - name = Nodes; - path = ios/Nodes; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; sourceTree = ""; }; - 475A3A43E890DBD5493F0236FA4CE5BA /* Products */ = { + 4A8E6C7EB14A233946608B1AB301D4C0 /* React-jsinspector */ = { isa = PBXGroup; children = ( - E2306D5FB2F49E75665AE8E3911A4754 /* libBugsnagReactNative.a */, - 0C1845B037EBFB2AF0EBE8D51A83F789 /* libDoubleConversion.a */, - 460991AC1BE5B75FEBBA47638A4138A1 /* libEXAppLoaderProvider.a */, - 196B0A88499EC4B56090AF686E8DD239 /* libEXAV.a */, - 356FE3E71CD3DEFCAC4909FF82DACCE4 /* libEXConstants.a */, - C1C9D0C8BFC7D88D5A31B398B7A85378 /* libEXFileSystem.a */, - D0E211E286336B914A2B19295E3B9225 /* libEXHaptics.a */, - D0280C22D66CA99355BCC526A3BA164F /* libEXPermissions.a */, - CDCE878B34213960A39C86D72769BD67 /* libEXWebBrowser.a */, - 3C7C5D42DD5948AB3DD0AEEBFA0DBCF9 /* libFBReactNativeSpec.a */, - A610DFF0E0BE7C475685FA8DE3DBCF0C /* libFirebaseCore.a */, - 820EEE156D19F1273871393F2850D75B /* libFirebaseCoreDiagnostics.a */, - 7109CEA655580ED91B75F927D0F3982E /* libFirebaseInstanceID.a */, - 2A7F743FD292127E00F2E9D5E75F7BB1 /* libFolly.a */, - AE42EF954CD85BF69907E5C1DC217CCC /* libglog.a */, - A404097E148F1819281A337650A82A85 /* libGoogleDataTransport.a */, - 00538E6400D6DE497F2355C3CDA9468C /* libGoogleDataTransportCCTSupport.a */, - AFB872DDD998C244AC1FF5DEF2A6CF00 /* libGoogleUtilities.a */, - 808E8AF2269D05C21D3D9C6352A7F413 /* liblibwebp.a */, - AA5207268C70A330051FE675E3CC119C /* libnanopb.a */, - EEF40665F46FB3797440A917AF5C07C5 /* libPods-RocketChatRN.a */, - C6BC80FBF3C55A6B59C978DF008D2DE3 /* libPods-ShareRocketChatRN.a */, - 5767849105DF5DF08A153E973779C2F7 /* libQBImagePickerController.a */, - 29D68C01B7BB771D070839C48F2C7780 /* libRCTTypeSafety.a */, - 709BFF4EAF2CDF772CFC20DDC685AB63 /* libReact-Core.a */, - 918FAA25B981FC2328B54C5EC159E438 /* libReact-CoreModules.a */, - 409FF0807B37ED4A9D2CCEF42F1D0F74 /* libReact-cxxreact.a */, - 91EA25725FFF249D140E775D023F0228 /* libReact-jsi.a */, - 8D3111EE7181EC6A88D9C468462900B4 /* libReact-jsiexecutor.a */, - DA5783422343FC461A172E9D4CB314D9 /* libReact-jsinspector.a */, - E3E9D8FA14DFD596D27F9BB39C8D6DF6 /* libreact-native-background-timer.a */, - 3D187B29FF40E909C7B00649D02DD8D7 /* libreact-native-document-picker.a */, - FBBF17E1989733CF8EEB82221A9A299A /* libreact-native-jitsi-meet.a */, - 8E721A81A43A372A9667A58B44C84384 /* libreact-native-keyboard-input.a */, - C1F5C672F45E668D82E457808A2990C3 /* libreact-native-keyboard-tracking-view.a */, - 41A5423EBB1880BAF6F9267E5B15F7D6 /* libreact-native-notifications.a */, - 97C923AA0AA7EF31C4233AF4848FD432 /* libreact-native-orientation-locker.a */, - 8E180F9558C8D0F98BBFA9A8F4F5DC55 /* libreact-native-splash-screen.a */, - 3EC540D240E3AB36FE683E1FBCD785BF /* libreact-native-video.a */, - FCC22059E462192D9B273B945DC2A9B9 /* libreact-native-webview.a */, - C96A5AC4864557B5EC8617A856C2886E /* libReact-RCTActionSheet.a */, - D2623C93B9C015E9A8F1571FD31B16E6 /* libReact-RCTAnimation.a */, - FE497DC1D03BBC1524B08585DFBC018E /* libReact-RCTBlob.a */, - DACEA80519903C23ED463542B32F17C4 /* libReact-RCTImage.a */, - DB550C0B57182EB7ECF71B581CB8332D /* libReact-RCTLinking.a */, - D4D6A0329CD649D0C075E993F930BFBA /* libReact-RCTNetwork.a */, - 021223F4CB3D713C8F939055BC00D673 /* libReact-RCTSettings.a */, - CE32FD9AAE872F96034704AEF28E8F62 /* libReact-RCTText.a */, - 7007E5BD63700535A791FC56F083BFA9 /* libReact-RCTVibration.a */, - EC977BDF60F0D8FD5CA3971CDBEF3EA0 /* libReactCommon.a */, - 3BCF90E27230C0A61CC068752BDE4D38 /* librn-extensions-share.a */, - 84227D0A32CFFFEE02E7558663BF3682 /* librn-fetch-blob.a */, - 62ACAC5E7A06BE7F1B445F549B65DF73 /* libRNAudio.a */, - B2C3C50842C99465084B59724BB1F888 /* libRNDeviceInfo.a */, - 1432AC107EEC71614DBC990356D446B8 /* libRNFastImage.a */, - 86006669CAEC9F6B941A80CC032DC0CF /* libRNFirebase.a */, - 03793EA509CD256464C56FDB7BB6DBC4 /* libRNGestureHandler.a */, - 08EA89A726A317A7E4C39434BC66C2E1 /* libRNImageCropPicker.a */, - F834CCAD795E977DBB19041BCF8F27BD /* libRNLocalize.a */, - 122AAEB338DC8B736B63DB63AD613A00 /* libRNReanimated.a */, - 77D98E1479E96A1B403182C9C22AD207 /* libRNScreens.a */, - 884DDCF8ABAE6E290FFBEE88290F6038 /* libRNUserDefaults.a */, - C20A11A46DA88C93478EB17745182247 /* libRNVectorIcons.a */, - 02BB86289FF53E3C45D13C3A1B115EFA /* libRSKImageCropper.a */, - 301567460D8660C931BC4A8ACB8330DB /* libSDWebImage.a */, - ECE10FC2BF38F1BB875A7D45C9856E5C /* libSDWebImageWebPCoder.a */, - 08F2757358C92ECAD0E9B56A8B4C8F59 /* libUMCore.a */, - 450F873C9449D773F8A6A196FF5DACFE /* libUMReactNativeAdapter.a */, - 51AC96BADB4666318F48A67EE9D1E934 /* libYoga.a */, - 7C292364A20E94A203C3C11FD7B564F2 /* QBImagePicker.bundle */, + FF5DE756550CDED3A44B6BA369A0B3C3 /* InspectorInterfaces.cpp */, + A06EC5D9A4081A151F5AABCB6EEB90D7 /* InspectorInterfaces.h */, + C9F2955C401BAFB2B8E90A7FF8EF9E37 /* Pod */, + 1BBE2CA50BF00FD9BCAA381787F662D8 /* Support Files */, ); - name = Products; + name = "React-jsinspector"; + path = "../../node_modules/react-native/ReactCommon/jsinspector"; sourceTree = ""; }; - 499496C91F0759F60A1F0739C9D5FBB5 /* Resources */ = { + 4AD8087E0497C8D0634DF75A82B61B7D /* UMBarCodeScannerInterface */ = { isa = PBXGroup; children = ( - 748154CDB6B4AE4EF74124A0F9A3B530 /* AntDesign.ttf */, - 1B18854209BFD5EB8F4207F609322666 /* Entypo.ttf */, - D2AE6D5C127E49CD7DE9E21606CA2DEB /* EvilIcons.ttf */, - 9E9B97BDB017B837DFB1096BDA3F8659 /* Feather.ttf */, - A386354B226D1F441835D4AD1109EFCC /* FontAwesome.ttf */, - B9BDAF5E77383660004F567089133C9B /* FontAwesome5_Brands.ttf */, - B73F59DBF2FC61D67B97C6223E1A36D7 /* FontAwesome5_Regular.ttf */, - E12DE1FACEA60CC3468B49C6048FF01E /* FontAwesome5_Solid.ttf */, - 7D61CED42C1759F24C2897EBCF28E4A9 /* Fontisto.ttf */, - 1CD2E715886747DBB87E2151A018E17F /* Foundation.ttf */, - 1C8CABF400282CF9C43FB2033207A906 /* Ionicons.ttf */, - D254B9DD5DA445DD64A4662596F1BC7C /* MaterialCommunityIcons.ttf */, - 8B26FEECA3A3DD05970899ABB5719220 /* MaterialIcons.ttf */, - 2E412AC36FA5A5F6A65F9479841B1566 /* Octicons.ttf */, - 18F6E4BD1AA59D03869CD6F8E98CFD26 /* SimpleLineIcons.ttf */, - 1644588E0D417B5C9FCFCA6D127E1213 /* Zocial.ttf */, + 1419EB30BF4A1D0646F7A8DA6079445D /* UMBarCodeScannerInterface.h */, + A6F187F63554E6C8F4CC62B5520BDB2C /* UMBarCodeScannerProviderInterface.h */, + EFE031B29BA1E89D71415B3AA4C252A3 /* Pod */, + CAF69240FAED7E5114FF39FD7F75DBEC /* Support Files */, ); - name = Resources; + name = UMBarCodeScannerInterface; + path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; sourceTree = ""; }; - 4B79A6CF3F059E17FD317451C9E2FBDC /* crashlytics */ = { + 4B21B1B5305BEE8D1586E8D9F21E3C6D /* Support Files */ = { isa = PBXGroup; children = ( - E0F6A5BB12B0909DC712D121D77815BB /* RNFirebaseCrashlytics.h */, - A564C2ACC37C3AAEB186F8681DC43565 /* RNFirebaseCrashlytics.m */, + 083F80EA14B598292E34F8F63F0BC8CB /* EXPermissions.xcconfig */, + 4CBEC5485DE6C9A00D5015DB0887CD9F /* EXPermissions-dummy.m */, + 0B924F26E08915CB5CA51D563FCCF8D6 /* EXPermissions-prefix.pch */, ); - name = crashlytics; - path = crashlytics; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXPermissions"; sourceTree = ""; }; - 4C1AEA15397E8A0846F0D8352C344B8F /* platform */ = { + 4C864CBCE69EEF8FFB1983DB681079C2 /* UMCameraInterface */ = { isa = PBXGroup; children = ( - 7EAAF782590592126E0FCFD651341E5B /* ios */, + FB2BBAE538C25F8BE82B0A4694C08D44 /* UMCameraInterface.h */, + F3A1DBE13DE6FD4A43DD36DBECCCAF38 /* Pod */, + 56E9DD7251085E099D6636B619AC4BE6 /* Support Files */, ); - name = platform; - path = turbomodule/core/platform; + name = UMCameraInterface; + path = "../../node_modules/unimodules-camera-interface/ios"; sourceTree = ""; }; 4C88BC9A9C28EC7959F001EE769ACA4C /* SDWebImageWebPCoder */ = { @@ -8291,111 +8202,72 @@ path = SDWebImageWebPCoder; sourceTree = ""; }; - 4D86BF35631CDD2295E17C6FBFD65E3E /* Pod */ = { + 4CF3D34D109926EC7838597A544C0A76 /* Multiline */ = { isa = PBXGroup; children = ( - 912CB9DD5B12E17D6C8371F6D4A44D3D /* React-RCTText.podspec */, + 7E73EC51CA130986D4435F5280FE62E1 /* RCTMultilineTextInputView.h */, + 1382A2A90D42FAFE2DD95F2B78210FCC /* RCTMultilineTextInputViewManager.h */, + D6A27DC29862C40909025D3F43963B47 /* RCTUITextView.h */, ); - name = Pod; + name = Multiline; + path = Multiline; sourceTree = ""; }; - 4F268F3B82D773F0BED7541FD95AEBD6 /* react-native-jitsi-meet */ = { + 4DEBBCD8A14109D5832FB0E8C04E566C /* RCTActionSheetHeaders */ = { isa = PBXGroup; children = ( - F47F5C7EB3E4551C98D89468FE956590 /* RNJitsiMeetView.h */, - BAC3F006D6BA56E9DB9D46861DD55A59 /* RNJitsiMeetView.m */, - DC0E60E01C35B322B6A4EC0ED1A1AFE5 /* RNJitsiMeetViewManager.h */, - D70EE4F4CC28276151916B59A132159F /* RNJitsiMeetViewManager.m */, - 29C6B9E540739E7222F1FFE9E1E14FF4 /* Frameworks */, - 18856DDFBDAEE310F7ED180026DD89D7 /* JitsiMeet.framework */, - 36112CC2E0B4A7AA6705EA83D4076E74 /* Pod */, - 7DAC4EF0AF4B2BBB45D4FAE714FA6D0D /* Support Files */, - 3A06C6522631079FC5660F53B144595D /* WebRTC.framework */, + 456C30AC5F32F800AF4873C26968405B /* RCTActionSheetManager.h */, ); - name = "react-native-jitsi-meet"; - path = "../../node_modules/react-native-jitsi-meet"; + name = RCTActionSheetHeaders; sourceTree = ""; }; - 50730591C3E131988D839484C0E58979 /* Development Pods */ = { + 4F2D97E8B8A1ADCCEE7D5B7593A9274E /* Yoga */ = { isa = PBXGroup; children = ( - 180BFB300193B151ED58919E1E2300C2 /* BugsnagReactNative */, - C4A8E7A1E9D79A99D48F512A680248F4 /* EXAppLoaderProvider */, - 9B5D5B99815F5C5B1078C0C6E39F02AB /* EXAV */, - DA85C42148305773D3D9C6A8CED2C1CC /* EXConstants */, - 3069017DF19FBAB36DF3F5BD9855CBEF /* EXFileSystem */, - 89B53159D738A80AB1EF6B88DC5C626B /* EXHaptics */, - 6FF860EA36EEC84632F10959EC5C01A6 /* EXPermissions */, - AA151C7735C95BBA135BD8F4AC5AF6A5 /* EXWebBrowser */, - C3FDE3F84769A10143A31473B11DB23A /* FBLazyVector */, - 1A3E61023C08EFD63CC4A855525B5599 /* FBReactNativeSpec */, - 3ED7A8B6A55CE8FCE6451803D5C722DD /* RCTRequired */, - 009CBD31DD5FCA5838935F4594D1C6D6 /* RCTTypeSafety */, - F939CA006D2448C1A18D23E9F1D58FAC /* React */, - 054963B49171C3D62F1F071B151374EF /* React-Core */, - 3118C55A9417F3E185EEEAA5A8EC4761 /* React-CoreModules */, - 6FBFAB049EE2FC785B3FC0D6D911E9BA /* React-cxxreact */, - 11F565BF8E662C8B31931D14F65CEE64 /* React-jsi */, - 58C5BB55C7DB06BECD50CD238A4EBE63 /* React-jsiexecutor */, - 73CC556A8ED99B0DE2B2CDB4A88436CE /* React-jsinspector */, - B9E2C348B50D13C936FED41383AF39E4 /* react-native-background-timer */, - EFC208048BC6658073ABA7043A40C7AD /* react-native-document-picker */, - 4F268F3B82D773F0BED7541FD95AEBD6 /* react-native-jitsi-meet */, - 8E02F79D88C6F5756B666F92CAAF950C /* react-native-keyboard-input */, - EFF3D8C4984CF5E43BC450061B2E2B33 /* react-native-keyboard-tracking-view */, - F6AB69FCAC1A0B479146C8287F86C5C1 /* react-native-notifications */, - B6178E9E4C58441E0C419E85680A82F1 /* react-native-orientation-locker */, - 392A18C0A907D36B5306AF0066B99468 /* react-native-splash-screen */, - CE5CA0801A336A42C46C1077335F4C39 /* react-native-video */, - A288AA8DB9DF4FB702B920B6CB2C5C9C /* react-native-webview */, - 0152DC2EA9F3AEF12E06894FB33FB422 /* React-RCTActionSheet */, - F1CE5E50F845D0BB286BB918621A825C /* React-RCTAnimation */, - FB39F9AA6D3953CDE0FB35FC6C82EE9A /* React-RCTBlob */, - 9387ABAC0FC758A2CB3B0D8957BF8412 /* React-RCTImage */, - 5EB0F673D05676817CEB5B252BBF4534 /* React-RCTLinking */, - 91765E4D941EA9BA56EA8B2CEA5A7FF9 /* React-RCTNetwork */, - 016323276343FC25B8931F32031E27F8 /* React-RCTSettings */, - 1E59B1609789F3354D678CEFE83167A1 /* React-RCTText */, - 3DA493221EEB4CB2C9D08581773B5029 /* React-RCTVibration */, - 610E3C28EBE53106A92C76DC996FF6D2 /* ReactCommon */, - 5F190CC14B116F096AF514EAE3C6BCE4 /* rn-extensions-share */, - 19150B641607AA6B9902BB9075548FA9 /* rn-fetch-blob */, - AC887AB562A93E631934607E5A80A973 /* RNAudio */, - 08A28E962CB7A9F57C9FEDD92988C126 /* RNDeviceInfo */, - C0329313BEA1ABD74B58993C4A9437A4 /* RNFastImage */, - E34F22B017E15744E406DAF1E578E0FB /* RNFirebase */, - 6390CAB1572D5253D5D33C925EB9888F /* RNGestureHandler */, - 3B47F708656CC4FE351D79FEF8DC86E9 /* RNImageCropPicker */, - A593FF0759EF65C5602D713A6B139FAC /* RNLocalize */, - 9005149F2FA787409250BAD7A51CA624 /* RNReanimated */, - 21F27C80E12DCBD1C561AA27D8C7AE0A /* RNScreens */, - 9D16DA22EFDF57CE70BE02A3370E9A25 /* RNUserDefaults */, - 6B169F89FD4211C0F5BC8CA716F48BFE /* RNVectorIcons */, - F523E3E0533A1BF8CA0B43F9B66A6D27 /* UMBarCodeScannerInterface */, - 1A9D288855EA207EDFEA2D84E378839E /* UMCameraInterface */, - AC61030E46E14B63FA645F65BEB60932 /* UMConstantsInterface */, - 75EFE8DC70F9D2100A90CC5EAD1CC975 /* UMCore */, - 7C4082D05688962E6BD6EFA7F5493A31 /* UMFaceDetectorInterface */, - 5CCC93628CDE95C69202B42949D790E0 /* UMFileSystemInterface */, - 613C1984FA67125D742DD749E63B957B /* UMFontInterface */, - 6B8CE19827AA6A886D7192CC57ECFBCF /* UMImageLoaderInterface */, - 9D61A9C1CECCE877DA4EAD43E92002D4 /* UMPermissionsInterface */, - 91AAADFE31119C3EFDA9D82A512F9C28 /* UMReactNativeAdapter */, - E37DC44FA9D63277E9652654C30BC70B /* UMSensorsInterface */, - 74F116B9C72E10FC983920599BCF027E /* UMTaskManagerInterface */, - 7FE7360B06C0F4EC7304CF4E231F8F3D /* Yoga */, + 1BFC05CBC4F80A336A29147621E8D237 /* Bitfield.h */, + 9EF81128ED49AA0A65A48BC4D5D532AA /* CompactValue.h */, + 4002DD3069DAB02EC998A6B083D34D40 /* log.cpp */, + C549965E963BE9FD733CEF293F5DB876 /* log.h */, + A110981EFF71ADB3EEC0316A2294F887 /* Utils.cpp */, + 11850B42DBA9FE3A57BB0F333BC878BD /* Utils.h */, + 84A416E1CEEB334471208B7C9D1D53B2 /* YGConfig.cpp */, + 95DCB2ACEFC009AE0119C919E901B1C2 /* YGConfig.h */, + 600EEFADE871FC0F701B0BCF50793CCA /* YGEnums.cpp */, + 749DC7F7E9133ED7EF8E4BF0C3DCEC02 /* YGEnums.h */, + 742C52AD86BA3D5A3574D1370B6B3AB7 /* YGFloatOptional.h */, + 9B87A79BA3A913B13AF1836349C49D91 /* YGLayout.cpp */, + 8298BA69BCBC06B0BE4E721050B5C4B2 /* YGLayout.h */, + 0F85176B1DE8CC5560AB31BA6EEC7214 /* YGMacros.h */, + 7DD742506322957037AD4D344E1508A9 /* YGNode.cpp */, + 6D59133B6C7357C885B8060F20D80884 /* YGNode.h */, + 8B2D9684AD2A89647DA4EECE952499EE /* YGNodePrint.cpp */, + BA747C4A31683AD9E2C672F936FF2995 /* YGNodePrint.h */, + D4C8BB816382BD725C1AE458A02512CE /* YGStyle.cpp */, + 435FCD4A0595E1A3C12E95501E50718E /* YGStyle.h */, + 19C0923D251D5A2B00C357AA7B9A6264 /* YGValue.cpp */, + 119643A8F1E2CEF5A7B405DDB6C64AE1 /* YGValue.h */, + A4AC0560DC2E003ED62E9645B9E144AB /* Yoga.cpp */, + F747F94502A8E494B6BF39BE4357524E /* Yoga.h */, + E7C7253031460B7AA52CAE1F40C73664 /* Yoga-internal.h */, + C012D4310F672FACE20764C78AE6DDF6 /* event */, + CF15587896C3D01DBD20444DFECCD51D /* internal */, + AD7E553737D8802A4518629A01E57FA9 /* Pod */, + E3988AE7528056E25D7939AD2E3FD312 /* Support Files */, ); - name = "Development Pods"; + name = Yoga; + path = "../../node_modules/react-native/ReactCommon/yoga"; sourceTree = ""; }; - 517E5FF513A2245ABAC5BE546AAC0574 /* BaseText */ = { + 4FAE05EB22F85C4C38C70921DF981959 /* RNUserDefaults */ = { isa = PBXGroup; children = ( - 9DF20C690CC2D91B89082C436808E377 /* RCTBaseTextShadowView.m */, - F69A269B0A8A2E08861D3BE3BC48F1DB /* RCTBaseTextViewManager.m */, + 7FC9A6F5CC7241C3A23EE9D255DCE835 /* RNUserDefaults.h */, + 302B47BE89AD1F6DE4C2B9F0736D33A7 /* RNUserDefaults.m */, + 3644A5A50C2A82B6FDE2F2B6A28D5124 /* Pod */, + 6327CA1AF41A59A85EF23BD4E17745DD /* Support Files */, ); - name = BaseText; - path = BaseText; + name = RNUserDefaults; + path = "../../node_modules/rn-user-defaults"; sourceTree = ""; }; 51B0C4AD72A949EDD79168F06F9C0E85 /* AppDelegateSwizzler */ = { @@ -8410,75 +8282,104 @@ name = AppDelegateSwizzler; sourceTree = ""; }; - 537621AA18A9D9A7BB2BB49511A7502B /* converters */ = { + 52F70F97A245F77A2EC8A40658644F70 /* RCTImageHeaders */ = { isa = PBXGroup; children = ( - E400ED13513489C0B7A33BB7F1977019 /* RCTConvert+UIBackgroundFetchResult.h */, - FBF0C841B7CEC6E93021BC2EC7C1CC87 /* RCTConvert+UIBackgroundFetchResult.m */, + E113B65AFF6BD28BC6054B313D106D16 /* RCTAnimatedImage.h */, + 02202DD59F3B974842BBBC649FB93448 /* RCTGIFImageDecoder.h */, + E2F8C08D8C2EEF5556A26474BBF6553E /* RCTImageBlurUtils.h */, + D063788FC833FCA78FF39E3EADB973B0 /* RCTImageCache.h */, + 87887BC73463CE749F46AA1D1A817187 /* RCTImageDataDecoder.h */, + 591BDB34AACE234EF9AE85B17E2C976D /* RCTImageLoaderProtocol.h */, + 06BE5C061BE90971D64F7B995F0CE095 /* RCTImageShadowView.h */, + 7E703F06AFDE4E65AE2B5565E75925B3 /* RCTImageURLLoader.h */, + 371CD386942A4D743EF18E859766AF3B /* RCTImageUtils.h */, + D583E0FD9C99A5C4EACE257245AE37BF /* RCTImageView.h */, + 964F34C99842B0BD357F0347EDFB9F21 /* RCTImageViewManager.h */, + 922C4CAE64DB7062B27C7EF3E75EA4BF /* RCTLocalAssetImageLoader.h */, + 5C7D03E05CA0E8ED4FF67412B79F3FD0 /* RCTResizeMode.h */, + 41D2C71CAB5C5BABD794610D68FCDE8E /* RCTUIImageViewAnimated.h */, ); - name = converters; - path = RNFirebase/converters; + name = RCTImageHeaders; sourceTree = ""; }; - 5379902DFD714110A3B0B000AB01EEA8 /* jscallinvoker */ = { + 536168BC19D96B025DAF3D686DF8FBC5 /* Pod */ = { isa = PBXGroup; children = ( - 30336E44BD404E7E605D8D5A2F28A6A7 /* BridgeJSCallInvoker.cpp */, - 08C684AEF16F87CBEA88FF8658EB9BC1 /* BridgeJSCallInvoker.h */, - A4E1C2F46C1D401692B96DCF26FE7F23 /* JSCallInvoker.h */, - ); - name = jscallinvoker; - sourceTree = ""; - }; - 565FA553E1A35EAC83724440682BBFFB /* Support Files */ = { - isa = PBXGroup; - children = ( - E4069059ABB37C390BFC6AF38DBD8142 /* RCTRequired.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTRequired"; - sourceTree = ""; - }; - 56889B97DBD32A95A1E1EB086D455530 /* Pod */ = { - isa = PBXGroup; - children = ( - 4662C62AD7580F913FBE443D4954BCB3 /* README.md */, - 3C4E6D0F43CE1C1E4F14B317AF237522 /* RNLocalize.podspec */, + AE516B7A7BB73697184C9F5EEC325727 /* EXHaptics.podspec */, ); name = Pod; sourceTree = ""; }; - 56E6FC2029F8504D4917EAB07BD26FAE /* Support Files */ = { + 5485CA3F01BE6ADA1FEE36AE82659E3F /* jsi */ = { isa = PBXGroup; children = ( - 1A07E37CB2ED272F17C8AB1181DD3388 /* React-RCTBlob.xcconfig */, - 39F8A9ABAD4E836E77F8D0C364BC9A7C /* React-RCTBlob-dummy.m */, - 30D71C92DC2950F63D4979461155F20C /* React-RCTBlob-prefix.pch */, + D69BE0909BCC07D0A367301F3CC5BD96 /* decorator.h */, + 855024D7F3AAE1182BD2FCD1CF4EDBFB /* instrumentation.h */, + 9F7D69BD8F1C06A0B1517CA00901E945 /* jsi.cpp */, + AAB306730018053E74B9836250BF383E /* jsi.h */, + 5B722D73E72D315BA5EBD3A0F5103B99 /* jsi-inl.h */, + 17EF1C9943A198D666B04A12907A8258 /* JSIDynamic.cpp */, + 6E5B90F57D3067859B96065F2ECCE16A /* JSIDynamic.h */, + EEF50949FFCA38C657C9B02B45153405 /* jsilib.h */, + 05385F2CE79AB8A20ADB02576C44CF4E /* jsilib-posix.cpp */, + ADDF16393D488D586E5F70B9D41F4ECB /* jsilib-windows.cpp */, + 4D2026EF7F002044FF86490EDE632AA8 /* threadsafe.h */, + ); + name = jsi; + path = jsi; + sourceTree = ""; + }; + 54AA9C7A9F935A486FB9976782D45057 /* rn-extensions-share */ = { + isa = PBXGroup; + children = ( + 1DCE00F225205C0C0644ECCF48934E09 /* ReactNativeShareExtension.h */, + 94BD2A61CAFACC09FDD6901395D85696 /* ReactNativeShareExtension.m */, + A86AA7DAD71DC129EDCA9CEB7BF64949 /* Pod */, + B6D531A1114863418757C21C87CC813C /* Support Files */, + ); + name = "rn-extensions-share"; + path = "../../node_modules/rn-extensions-share"; + sourceTree = ""; + }; + 56E9DD7251085E099D6636B619AC4BE6 /* Support Files */ = { + isa = PBXGroup; + children = ( + 55B2E31CB23A3A9BFCA8049764933D32 /* UMCameraInterface.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; + path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; sourceTree = ""; }; - 584D49684605AA43AB8E384BAA398415 /* RCTSettingsHeaders */ = { + 5749A6ACBFC75C875A1245E495F88BE8 /* Pod */ = { isa = PBXGroup; children = ( - 3E98EA1A22DD27CC9BDE6FCC634D5768 /* RCTSettingsManager.h */, + 895803505023599521501924BD5B480D /* React-RCTBlob.podspec */, ); - name = RCTSettingsHeaders; + name = Pod; sourceTree = ""; }; - 58C5BB55C7DB06BECD50CD238A4EBE63 /* React-jsiexecutor */ = { + 57ADEE0A8001768F4EAAEAD12FB65AE4 /* links */ = { isa = PBXGroup; children = ( - 05342BC56BE1A25C5A2CF94DA78C646B /* JSIExecutor.cpp */, - 70D83B3C8C752CC61DFAFE54CD30D369 /* JSIExecutor.h */, - 784D2F08FE23F7C23D2BA6D6521E1391 /* JSINativeModules.cpp */, - 8127F159B44C1EC405717579C084C4AF /* JSINativeModules.h */, - FFDAFD42B774D832AE7978891D2D9811 /* Pod */, - 15A59408F81C1913705CE29318DBE960 /* Support Files */, + 4E2424D33337A4D5F5D68708C7C3170B /* RNFirebaseLinks.h */, + D5D36D2815742A5225FA0F7FB1564C98 /* RNFirebaseLinks.m */, ); - name = "React-jsiexecutor"; - path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; + name = links; + path = RNFirebase/links; + sourceTree = ""; + }; + 58AAEFD9779AE008FEA55CB6FDA2705E /* React-jsi */ = { + isa = PBXGroup; + children = ( + C27E211CEB629C277869525862585C68 /* JSCRuntime.cpp */, + DFA3DFB2E2678897E390E41A3AD2E89D /* JSCRuntime.h */, + 5485CA3F01BE6ADA1FEE36AE82659E3F /* jsi */, + CEDACDE30C639FCD09ACED195D36C881 /* Pod */, + FEE21857C98C8669C113D0ABB0591C0E /* Support Files */, + ); + name = "React-jsi"; + path = "../../node_modules/react-native/ReactCommon/jsi"; sourceTree = ""; }; 58D0E744162FDBF26B97C52BC03FF0A8 /* Support Files */ = { @@ -8490,71 +8391,97 @@ path = "../Target Support Files/boost-for-react-native"; sourceTree = ""; }; - 5A0E03564413B5EC948818130AF11ECF /* Pod */ = { + 59E3EA6E387C67A3DD7DE9A4803559BC /* DevSupport */ = { isa = PBXGroup; children = ( - 5C802E1E8F1581611CCF7BA0063223CD /* UMImageLoaderInterface.podspec */, + 78CAE23A439A44A2BBA74B554F7FA4E0 /* RCTDevLoadingView.h */, + C784534B95C2F0A8FD143DEC7F34D5E8 /* RCTDevLoadingView.m */, + F1D17E7B56514E79F11676629AB13EC4 /* RCTDevMenu.h */, + 04AF007A55CBCC69FB35F15B9E976AEA /* RCTDevMenu.m */, + 37E1864EE0814F3473533188E1B48FC2 /* RCTInspectorDevServerHelper.h */, + 8B8F3424D6C0AA603EF4D21EA999A60D /* RCTInspectorDevServerHelper.mm */, + 5F7EB36B79A7D5F3C290947F7522B788 /* RCTPackagerClient.h */, + 2925A82355DBA63FB212E614028758DF /* RCTPackagerClient.m */, + 454A857EA45FB1275370686391B3936E /* RCTPackagerConnection.h */, + 4F13AE6B092B61B02D70ECF69BC57425 /* RCTPackagerConnection.mm */, + ); + name = DevSupport; + path = React/DevSupport; + sourceTree = ""; + }; + 5B0108FAA8051326527284A2099913E8 /* SurfaceHostingView */ = { + isa = PBXGroup; + children = ( + 675D575BC3EE510D8A1B018AABC11E10 /* RCTSurfaceHostingProxyRootView.h */, + 15B3028E51A54607A96235CB7D1DFA44 /* RCTSurfaceHostingProxyRootView.mm */, + 2D4907EE435AE0F31E9838EF88D68A63 /* RCTSurfaceHostingView.h */, + BD5B33E3CA301BA313B9E038EB755EF8 /* RCTSurfaceHostingView.mm */, + 654CC2EE2389DC0BF9C429CDD23315EB /* RCTSurfaceSizeMeasureMode.h */, + E7DEB2F26E54AE87B1FA75588F12D7F7 /* RCTSurfaceSizeMeasureMode.mm */, + ); + name = SurfaceHostingView; + path = SurfaceHostingView; + sourceTree = ""; + }; + 5B21077B776B6E4345103895BB89122B /* Video */ = { + isa = PBXGroup; + children = ( + 67663D2955741E4F28AFDA315570F634 /* RCTVideo.h */, + 5609275DFB5D90D9172DC2ACEBB53D7F /* RCTVideo.m */, + BDF5475B1198361D689EE26A49FECC22 /* RCTVideoManager.h */, + 3C3D6EFB8D50A27D3AE08A56867B88D5 /* RCTVideoManager.m */, + 572715EDC500FF86E4F453FCD27829F4 /* RCTVideoPlayerViewController.h */, + BF2669F34E05E5C395801C5A9CACFA9F /* RCTVideoPlayerViewController.m */, + B2020F34DC8A5116138E0B69E1B5CA6F /* RCTVideoPlayerViewControllerDelegate.h */, + 324C5408958D3B7B930547B24B5DE6A4 /* UIView+FindUIViewController.h */, + B7A16E82559E08D693B1F08FCBB279C1 /* UIView+FindUIViewController.m */, + ); + name = Video; + sourceTree = ""; + }; + 5C706C30AD2D3C2A070A63F5E2882913 /* Services */ = { + isa = PBXGroup; + children = ( + 50E7E7D71FD6E23FA7514E5EEEF38DE4 /* UMReactFontManager.h */, + 1BFC6DD58909292500B5DF25B5138951 /* UMReactFontManager.m */, + 905999CF1DF343E9D5B6BB71E24AC87F /* UMReactLogHandler.h */, + 456A3704E8A9C2DB6783707ECE4E8B64 /* UMReactLogHandler.m */, + 2D47013E1E7CFB71ADA5687ABE4BF045 /* UMReactNativeAdapter.h */, + 352B3893F808BDC965571C3FDC3CB8DF /* UMReactNativeAdapter.m */, + 6C895B60D722554013CC24C5691C74F3 /* UMReactNativeEventEmitter.h */, + AFBABD959DCD4A0D8253FC9CDB065456 /* UMReactNativeEventEmitter.m */, + ); + name = Services; + path = UMReactNativeAdapter/Services; + sourceTree = ""; + }; + 5C9E2D3BBFDD0333C4336C7DD83070E8 /* Pod */ = { + isa = PBXGroup; + children = ( + C86F5A299DE8090C111FCE880EF7F18B /* UMFaceDetectorInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 5B1C485FB995C6D9EF1459E807D5C914 /* Pod */ = { + 5D0A076A398A2AF004FC19062D7B020D /* Support Files */ = { isa = PBXGroup; children = ( - 1CBD56D85B8C525FD0FD01196E825940 /* EXHaptics.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 5B5CAD2F5727550A2611BAB2F5775E04 /* Support Files */ = { - isa = PBXGroup; - children = ( - 31F7D6BEE41A991A07BC601BAF1BB842 /* react-native-notifications.xcconfig */, - F7F6D1B95E592427BCAD532896991176 /* react-native-notifications-dummy.m */, - 82D9A4B9A2CB0F93799C94B9F089DAA3 /* react-native-notifications-prefix.pch */, + 8A655487BA8077531F8CF7865BF1D1F6 /* UMSensorsInterface.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-notifications"; + path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; sourceTree = ""; }; - 5CCC93628CDE95C69202B42949D790E0 /* UMFileSystemInterface */ = { + 5E62913010D3A03535CFA85997A81494 /* database */ = { isa = PBXGroup; children = ( - 8FDB4DB6C7C7AE3BE02B8E152A783116 /* UMFilePermissionModuleInterface.h */, - 53B6615FCDCDA71353042CEB7E964F91 /* UMFileSystemInterface.h */, - D2B7EEA676260185AC73ED34040F7492 /* Pod */, - F6E427397187959BCC461D758BC525CB /* Support Files */, + 1D8CE0AD862A1AFF966B3FB620E011DC /* RNFirebaseDatabase.h */, + 5A57C4F1C485AD1A3FD1210051EA9E49 /* RNFirebaseDatabase.m */, + 1D394CCCEB2D06D8EB3288BB13FDC37E /* RNFirebaseDatabaseReference.h */, + DB723D9884A4D1B4A9B082790244120F /* RNFirebaseDatabaseReference.m */, ); - name = UMFileSystemInterface; - path = "../../node_modules/unimodules-file-system-interface/ios"; - sourceTree = ""; - }; - 5D8C1775C5D1ADD9A8636E80F86D7143 /* Drivers */ = { - isa = PBXGroup; - children = ( - B727418C5C148F66D4754C047ADD6813 /* RCTAnimationDriver.h */, - 0BECA6C573D163FCBE5C394239E12789 /* RCTDecayAnimation.h */, - 3D921C88B653C6F55B8F32C5229D912C /* RCTEventAnimation.h */, - 261ED9FFD6FD1DEC0D64A456013B3C33 /* RCTFrameAnimation.h */, - 4D594F526CF6E386A6493F8062D99430 /* RCTSpringAnimation.h */, - ); - name = Drivers; - path = Libraries/NativeAnimation/Drivers; - sourceTree = ""; - }; - 5E2C5170F713647ABB3F2C637F32707D /* Pod */ = { - isa = PBXGroup; - children = ( - AFD07798CCB9B688378FCD578A949556 /* advancedIos.md */, - 11742C5FEC1C7ADDA403B4CF41A94769 /* installation.md */, - 21214A73CEE6A86D054BEADA0B3C9AC1 /* LICENSE */, - 7D327D66CE32DBD3D6CE9429208ABA31 /* localNotifications.md */, - 53B0CCC5FA34C3A010004A258FBB60C3 /* notificationsEvents.md */, - 5ADA3FFDD6C373D6CD99BAAA0006DF8E /* react-native-notifications.podspec */, - EFDEBE6E95614E1C4DEC6F993CC196B7 /* README.md */, - 8889E7503410390A0A455C24E8ED5A19 /* subscription.md */, - ); - name = Pod; + name = database; + path = RNFirebase/database; sourceTree = ""; }; 5EAC08F91E8376EBE7C1426FDA586990 /* Support Files */ = { @@ -8566,64 +8493,6 @@ path = "../Target Support Files/Fabric"; sourceTree = ""; }; - 5EB0F673D05676817CEB5B252BBF4534 /* React-RCTLinking */ = { - isa = PBXGroup; - children = ( - 6140962E25427DD94594E5C9A8736E2F /* RCTLinkingManager.m */, - 069A61D7F54C452E9FF5CE3746354F2F /* Pod */, - 996AA4E8689CF3DA9C3F2F5FA5A4CE3E /* Support Files */, - ); - name = "React-RCTLinking"; - path = "../../node_modules/react-native/Libraries/LinkingIOS"; - sourceTree = ""; - }; - 5ECB16F8A221B70A206CEA0232F87FDA /* firestore */ = { - isa = PBXGroup; - children = ( - 9188D61061A6B13F5513EE916BD4E44D /* RNFirebaseFirestore.h */, - 51EC97EF3866E7F4A04B02D3C4B3ED13 /* RNFirebaseFirestore.m */, - 4BAE0FE9CF7C7C40B298952D713DBC96 /* RNFirebaseFirestoreCollectionReference.h */, - D0A089E9E699BE7D954D659F8DA9F0AA /* RNFirebaseFirestoreCollectionReference.m */, - 977243794F9236C487595779231114FA /* RNFirebaseFirestoreDocumentReference.h */, - 228757E2E77951E3C66ED6C9A23D1083 /* RNFirebaseFirestoreDocumentReference.m */, - ); - name = firestore; - path = RNFirebase/firestore; - sourceTree = ""; - }; - 5F0A5A8145325177DD489A2A1B79A3E1 /* Support Files */ = { - isa = PBXGroup; - children = ( - 12C2151977D42B49F271F8AFEF6FBA29 /* React-RCTActionSheet.xcconfig */, - 604563858054916C05B610693C60A4C5 /* React-RCTActionSheet-dummy.m */, - EDC03E9C56A28BC0F3AA03859C689CC6 /* React-RCTActionSheet-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; - sourceTree = ""; - }; - 5F190CC14B116F096AF514EAE3C6BCE4 /* rn-extensions-share */ = { - isa = PBXGroup; - children = ( - 64FA75301D624D64846B47027E8E77A2 /* ReactNativeShareExtension.h */, - FD4EA671A3CC79EB2D9864C340796CCE /* ReactNativeShareExtension.m */, - BA644995843895AB691CB0737EB33810 /* Pod */, - 919653B6EABAB8F9A2494B610442B1C6 /* Support Files */, - ); - name = "rn-extensions-share"; - path = "../../node_modules/rn-extensions-share"; - sourceTree = ""; - }; - 5F1E03633C38754EF613FBCE2029251D /* Pod */ = { - isa = PBXGroup; - children = ( - 52047F9EBC8B13FC85CCEAE747785483 /* LICENSE */, - 7DAFFA0E885CC760522BD3CD41B59D6B /* react-native-webview.podspec */, - 5C1A6AC3DF6A802DA2683DC022CF657B /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; 5F2B9B03CBA050096C64BCA169256E2F /* Reachability */ = { isa = PBXGroup; children = ( @@ -8635,57 +8504,157 @@ name = Reachability; sourceTree = ""; }; - 602AD8A51C5A4B48E55FE9E5435CF74A /* Reporting */ = { + 5FA251EB23717ABBA79A2B720C274831 /* RNFastImage */ = { isa = PBXGroup; children = ( - 675CF38A68957E02A83A37D235A4EEC5 /* Filters */, + 5BCD5E2D7B6E8BC0283363F8F13FDE0D /* FFFastImageSource.h */, + 3C5C9A758A307E9C2308801D85F4AD5B /* FFFastImageSource.m */, + 6B4DBCD71C27B1A346D8D62C12E3BF22 /* FFFastImageView.h */, + FD1AB75128F04BB100EE155FA285D498 /* FFFastImageView.m */, + A84B5186DA58E88ADAFBBD175B5315A1 /* FFFastImageViewManager.h */, + 19CFF543A0DCD1C433A979571F16AD81 /* FFFastImageViewManager.m */, + 00BF63C02B2DCB599CA42CDE805F61E3 /* RCTConvert+FFFastImage.h */, + 3C158146D441C1840F6148EE3D236C33 /* RCTConvert+FFFastImage.m */, + 3AF113C158ACC133ECF909089951BE1F /* Pod */, + B57F2F4B20C459885EF2586953CA6328 /* Support Files */, ); - name = Reporting; - path = Reporting; + name = RNFastImage; + path = "../../node_modules/react-native-fast-image"; sourceTree = ""; }; - 609E55D312EC2476506BBD1D9EF5B8F8 /* Support Files */ = { + 601506F7183EF996DE67F21E3EA172B2 /* Text */ = { isa = PBXGroup; children = ( - 6211AC7452810F7BFBA376A5CD2354C5 /* UMConstantsInterface.xcconfig */, + 6923095B5C533122502709335E1ADA77 /* NSTextStorage+FontScaling.m */, + 8FCF9CA915859F501DE422C13B80B49D /* RCTTextShadowView.m */, + B85D0FD323177467708DD1B84B0E8A2B /* RCTTextView.m */, + EF3A5D25676B1BD13E931A34E7158704 /* RCTTextViewManager.m */, + ); + name = Text; + path = Text; + sourceTree = ""; + }; + 603C4559CA02615BDD2724C13D24AB8D /* ScrollView */ = { + isa = PBXGroup; + children = ( + 8BEAFC047896210B100169A94079FC25 /* RCTScrollableProtocol.h */, + DAF2641D9AA7A39E091124E1212FB0F4 /* RCTScrollContentShadowView.h */, + 657BCBBEE8A0A65B04A2205AD86978DC /* RCTScrollContentShadowView.m */, + FF2561638A6DFC0753EF81215DCE4590 /* RCTScrollContentView.h */, + AE66BE0D44B60906D0DC2D20925597D7 /* RCTScrollContentView.m */, + C5DB173570F328FBC26131203F7BDC19 /* RCTScrollContentViewManager.h */, + 65836FEEAE47439F0597FA49CAE88439 /* RCTScrollContentViewManager.m */, + B5DDEACBF4E24F21EAC0B77B9BCBC61E /* RCTScrollView.h */, + DACDAAE921F8AABB62702B5329E67DF1 /* RCTScrollView.m */, + 53BE641ABEE70F3C776D5A57234BE6E0 /* RCTScrollViewManager.h */, + F1EBD1D657237C858EF4C076DE48DABB /* RCTScrollViewManager.m */, + ); + name = ScrollView; + path = ScrollView; + sourceTree = ""; + }; + 615459916D10B02E1866FDE041C427D2 /* Pod */ = { + isa = PBXGroup; + children = ( + 8FA8918842E8374D2ADBDB08CB9DAFF7 /* LICENSE */, + AF11CE0547AA7CF260497DA1AE1501E5 /* react-native-video.podspec */, + F573F666247CF24B30B798C9E2554C50 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 6175B9748A54A11D0B07E477C00E74E6 /* UMModuleRegistryAdapter */ = { + isa = PBXGroup; + children = ( + 67DC896DDB6BFB74E91CF31D7E6DDCEA /* UMModuleRegistryAdapter.h */, + ADDAE7B9267275AA800A5412D584638C /* UMModuleRegistryAdapter.m */, + B1EE017FC5853D5DDB743A5D08391942 /* UMViewManagerAdapterClassesRegistry.h */, + 09D94611F51C6BB5F00E7E553DEB4ADB /* UMViewManagerAdapterClassesRegistry.m */, + ); + name = UMModuleRegistryAdapter; + path = UMReactNativeAdapter/UMModuleRegistryAdapter; + sourceTree = ""; + }; + 6200D361B999B07DC442EE3A89C15376 /* React-RCTNetwork */ = { + isa = PBXGroup; + children = ( + 58DE49C0120CA04B88A594A67551752C /* RCTDataRequestHandler.m */, + 9FE29714349EBC1C8B0B2E825A519ABA /* RCTFileRequestHandler.m */, + 324E5AE4809A8C7527434067EEFF6162 /* RCTHTTPRequestHandler.mm */, + 72942A7D22C13D239036E5CBF81E9FCE /* RCTNetInfo.m */, + EEB803993C7891416F4F9E739C8CAC4B /* RCTNetworking.mm */, + 1147ABACD2097CFE4BCD031F321B1B23 /* RCTNetworkTask.m */, + DFCD2BBF1C2DC385B3184BB4D578CF30 /* Pod */, + F5E2ECF771FCFA2C77F61960B30E3814 /* Support Files */, + ); + name = "React-RCTNetwork"; + path = "../../node_modules/react-native/Libraries/Network"; + sourceTree = ""; + }; + 62209506B3FD569EB6AD649FF3C8D8AE /* Resources */ = { + isa = PBXGroup; + children = ( + 31EFC911F2BDE0A6E8812E8EFC9ACE2F /* AntDesign.ttf */, + DDD26D438FCD9676A62A1C3F685BB19D /* Entypo.ttf */, + 0C6510A767219599C22144DF411F345F /* EvilIcons.ttf */, + 91D3DC0A0C881A689F77F62F03B68B4D /* Feather.ttf */, + 7E28393C8733D732D25231F60C08E52D /* FontAwesome.ttf */, + ED68E7D3AED187F93BB3F944A020C9BE /* FontAwesome5_Brands.ttf */, + C721861E7191D9B777A16094A0E6D5EF /* FontAwesome5_Regular.ttf */, + FDC4C035752B7DE12E75CAAC42AE8D31 /* FontAwesome5_Solid.ttf */, + 2E63D28B471EEA0B77D4DC4BE9620CDF /* Fontisto.ttf */, + E4AF32D21B0B334320F7FFA947C0C71F /* Foundation.ttf */, + 1BACE1C6C77AA32700AC513FB60E61AC /* Ionicons.ttf */, + 265BC667387F66D7367CC1B43E2F322B /* MaterialCommunityIcons.ttf */, + DC2FE7384EA6705DD88B4E01FF9B3DBD /* MaterialIcons.ttf */, + A7B3BC2B3FDC04F351FC65ACEE29F272 /* Octicons.ttf */, + B55D6BD474E08659E4F59452F8EBDA45 /* SimpleLineIcons.ttf */, + 33F788930CE65F9DD6AA72ED34C29F3E /* Zocial.ttf */, + ); + name = Resources; + sourceTree = ""; + }; + 62A9C10D878660AEC8D2A251AA052C33 /* Pod */ = { + isa = PBXGroup; + children = ( + 2CA533886C45FA29E885D0F88AC57892 /* RNFirebase.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 62B46AE3CBBAA7AEB4D6FBA0F10C456C /* RNLocalize */ = { + isa = PBXGroup; + children = ( + EBBB4CEDF06C9E4DAC5A356069ACC475 /* RNLocalize.h */, + A64FD5C333796C3016A136E4CD49AE48 /* RNLocalize.m */, + 7588D8C3D855AD5C9F33DBF5B3855E08 /* Pod */, + CB7A8944538D599FEA65F217FBBFD088 /* Support Files */, + ); + name = RNLocalize; + path = "../../node_modules/react-native-localize"; + sourceTree = ""; + }; + 62DC43BB2BEC60247810738357A5B1FF /* react-native-keyboard-input */ = { + isa = PBXGroup; + children = ( + 91B62AA0DC6EF46DB2CD53C5BCD2A1E4 /* LNInterpolation */, + 417C0612321D7312AC11072641EC5930 /* Pod */, + 6F40144F1FEB40098D78DEC7FF22E230 /* RCTCustomInputController */, + DF9B15EDD2E2B87AD44D35093BC96A6A /* Support Files */, + ); + name = "react-native-keyboard-input"; + path = "../../node_modules/react-native-keyboard-input"; + sourceTree = ""; + }; + 6327CA1AF41A59A85EF23BD4E17745DD /* Support Files */ = { + isa = PBXGroup; + children = ( + E1706E8B67D7B2619A452A43075536FD /* RNUserDefaults.xcconfig */, + 1579D9E9F5538CC512AE075026CC043B /* RNUserDefaults-dummy.m */, + B89B0B4941D7D8BDAFADA41E979B96AB /* RNUserDefaults-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; - sourceTree = ""; - }; - 610E3C28EBE53106A92C76DC996FF6D2 /* ReactCommon */ = { - isa = PBXGroup; - children = ( - 5379902DFD714110A3B0B000AB01EEA8 /* jscallinvoker */, - BFE9394F3641EA5B6AE76AB3ED4CBA0E /* Support Files */, - 6EE28FA22585BE6592EEA64C317C6EF7 /* turbomodule */, - ); - name = ReactCommon; - path = "../../node_modules/react-native/ReactCommon"; - sourceTree = ""; - }; - 613C1984FA67125D742DD749E63B957B /* UMFontInterface */ = { - isa = PBXGroup; - children = ( - 0267B62BE1094B8EC1CFFB986BED69BC /* UMFontManagerInterface.h */, - 6BB4C704EBDCF3DB3D2B9B5E2F24F411 /* UMFontProcessorInterface.h */, - 054652B4B04B1BE62BF11EE82586FC9E /* UMFontScalerInterface.h */, - 120163B24E7C4D7C1FB51EF2A55B5765 /* UMFontScalersManagerInterface.h */, - 2EFB4E182C73321820B9428573F52D32 /* Pod */, - 8B3ABC3C38A94AEEE60954F5A9B502CA /* Support Files */, - ); - name = UMFontInterface; - path = "../../node_modules/unimodules-font-interface/ios"; - sourceTree = ""; - }; - 621068910AA34EDA4C5D654FA8FAA872 /* KSCrash */ = { - isa = PBXGroup; - children = ( - 3780D5DA51DE92E38255146B3070E523 /* Recording */, - 602AD8A51C5A4B48E55FE9E5435CF74A /* Reporting */, - ); - name = KSCrash; - path = KSCrash; + path = "../../ios/Pods/Target Support Files/RNUserDefaults"; sourceTree = ""; }; 6365CFDB7BC3B559FDC904527FA87B40 /* webp */ = { @@ -8843,51 +8812,16 @@ name = webp; sourceTree = ""; }; - 6390CAB1572D5253D5D33C925EB9888F /* RNGestureHandler */ = { + 64DF466FF9A4E307958C5E0FCDBA9102 /* Pod */ = { isa = PBXGroup; children = ( - 7EDFBDF41CED6FAE41BB61442F0B0095 /* RNGestureHandler.h */, - 06F58B6D4D009DF885F865490E96B18A /* RNGestureHandler.m */, - 3F2AF5DD4577BD5C771BFBD63198C5C5 /* RNGestureHandlerButton.h */, - 82FF44CFDFA9C8B491E83A8AED6962D6 /* RNGestureHandlerButton.m */, - 6928B4F8A8053CE75ECC6B5A5F36C92C /* RNGestureHandlerDirection.h */, - CFBA29F62FFEADA1B7E424BEDD68985F /* RNGestureHandlerEvents.h */, - 1C480EF2D8F50B07E22BCDC93BC3EB11 /* RNGestureHandlerEvents.m */, - 23E3C8E3DA32F49A12C06A02E61C9834 /* RNGestureHandlerManager.h */, - E0D0804389C818D5221C13368D7692BA /* RNGestureHandlerManager.m */, - 20FB00CC42A13FDD2A59B0BE7F7B1CA8 /* RNGestureHandlerModule.h */, - 95D5FD78F6A576EE09A9E489A59262EF /* RNGestureHandlerModule.m */, - CCF13BD0E7764B675172A99EB708F5D8 /* RNGestureHandlerRegistry.h */, - CC3CB154BAF16BF08628E0485999DA4B /* RNGestureHandlerRegistry.m */, - B98DE7DA0BD64473AEEE4FB0491582E5 /* RNGestureHandlerState.h */, - FB5D77F223E89D13F0E0D80F0E77FBBF /* RNRootViewGestureRecognizer.h */, - F54CB77B77D5EDDCF2C4F8D82E5CA667 /* RNRootViewGestureRecognizer.m */, - 76140A1B2B66EF8ED6E9E6E5274B112E /* Handlers */, - 44B4D363F90D66628CB3C80CBB0CA1A2 /* Pod */, - 1C23B511D7591F69D1033BFADCF8F21B /* Support Files */, - ); - name = RNGestureHandler; - path = "../../node_modules/react-native-gesture-handler"; - sourceTree = ""; - }; - 63BD32F9C75D78F139234BD5141DCCE1 /* Pod */ = { - isa = PBXGroup; - children = ( - 57BE4086EE8050E104190F1EA245D70B /* React-RCTSettings.podspec */, + 055F69FD2D7512308B1BA33F41124FEF /* LICENSE */, + D2DAD9FF432614C89D85FF250A14D230 /* react-native-safe-area-context.podspec */, + 14A4F5145130CAC211D64FD968297A25 /* README.md */, ); name = Pod; sourceTree = ""; }; - 655BD8BB1D574AD2AFEC373F7D8FF569 /* VirtualText */ = { - isa = PBXGroup; - children = ( - 09194B6B9B3142164C311680EBF2F1F5 /* RCTVirtualTextShadowView.h */, - EF8264C10FAFA998ECE1459FE3715723 /* RCTVirtualTextViewManager.h */, - ); - name = VirtualText; - path = Libraries/Text/VirtualText; - sourceTree = ""; - }; 65C5E7376A713AF21A6A08261DDCB326 /* Support Files */ = { isa = PBXGroup; children = ( @@ -8899,23 +8833,15 @@ path = "../Target Support Files/nanopb"; sourceTree = ""; }; - 675A403E6B27D27010224EB8C8D0B893 /* Support Files */ = { + 65C99A093427725331672E464DF86E82 /* Support Files */ = { isa = PBXGroup; children = ( - 30FDB4BB9D4B18A3362C318F3875355E /* UMBarCodeScannerInterface.xcconfig */, + A0CF3CBB7F85C217DF43B19FBAB34135 /* react-native-keyboard-tracking-view.xcconfig */, + CCA435F27CDCA26C481E7FB9BCC5F889 /* react-native-keyboard-tracking-view-dummy.m */, + BEA01B786E55F5DAA73ECDDD93BC0C7E /* react-native-keyboard-tracking-view-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; - sourceTree = ""; - }; - 675CF38A68957E02A83A37D235A4EEC5 /* Filters */ = { - isa = PBXGroup; - children = ( - 05FA73B7AD912E4AB625D716CB4D0797 /* BSG_KSCrashReportFilter.h */, - F1FC2163B7A4DE0D30675A882B672C96 /* BSG_KSCrashReportFilterCompletion.h */, - ); - name = Filters; - path = Filters; + path = "../../ios/Pods/Target Support Files/react-native-keyboard-tracking-view"; sourceTree = ""; }; 6797B7A25E0298E4F4B21C545C6D2ED7 /* Pods-ShareRocketChatRN */ = { @@ -8958,156 +8884,52 @@ path = RSKImageCropper; sourceTree = ""; }; - 69B20946AED9AFA03E992A549BD25785 /* UMNativeModulesProxy */ = { + 6A4DB3896AB669B2905032927570B2EB /* ios */ = { isa = PBXGroup; children = ( - 0CBE27C39EA1296C671FB2746107636F /* UMNativeModulesProxy.h */, - C16D25BEAD0D62391FD47C4E4D787BB6 /* UMNativeModulesProxy.m */, + 2E5039680E7D9FFB87016EDB262CBA55 /* RCTTurboModule.h */, + 8790AB5D40DDE84D1B3D0E455DAAE986 /* RCTTurboModule.mm */, + 572F35FF9A03047E01309659B1FFDEE7 /* RCTTurboModuleManager.h */, + DA4FD79BC4C080BBAC75F57A2F011894 /* RCTTurboModuleManager.mm */, ); - name = UMNativeModulesProxy; - path = UMReactNativeAdapter/UMNativeModulesProxy; + name = ios; + path = ios; sourceTree = ""; }; - 6AF9046E1663D336EE93D73721D40D72 /* Services */ = { + 6ADCCB4F27B31CC3D3F23908C9B2AA77 /* BaseText */ = { isa = PBXGroup; children = ( - 4E1D1699B9F50FFC234C23C80DCD5F73 /* UMReactFontManager.h */, - C2B2A2F2F71687AA956FAE4982B55903 /* UMReactFontManager.m */, - 176E24EB09806BF230DBF56B39E9E94C /* UMReactLogHandler.h */, - 9B5D6FCFFBDA61485998DCAECF09BADD /* UMReactLogHandler.m */, - C9D679CE046C913EAB6601E75F437777 /* UMReactNativeAdapter.h */, - 5118A149A8E980B6A5ECE891F4C115EC /* UMReactNativeAdapter.m */, - CDA8ABFACDD3F2E8D6E195044CD8D4DB /* UMReactNativeEventEmitter.h */, - 234A33960E097982922091DDB5DD6913 /* UMReactNativeEventEmitter.m */, + 9CD73E50320B66ECB101E6DEFFA7A035 /* RCTBaseTextShadowView.m */, + 6BB8826901BD569F68A1CFE865DB78A6 /* RCTBaseTextViewManager.m */, ); - name = Services; - path = UMReactNativeAdapter/Services; + name = BaseText; + path = BaseText; sourceTree = ""; }; - 6B169F89FD4211C0F5BC8CA716F48BFE /* RNVectorIcons */ = { + 6AECE095C4C98653878177EF8CC0FEFC /* Pod */ = { isa = PBXGroup; children = ( - 8FF434B46706119411FA61825883242B /* RNVectorIconsManager.h */, - 426614488C4A84088A29FF799BCFA49B /* RNVectorIconsManager.m */, - 755549AD934DBFDC4A847F012A9A5605 /* Pod */, - 499496C91F0759F60A1F0739C9D5FBB5 /* Resources */, - DF5B9D2ADA85D78C628BDA498EA6B086 /* Support Files */, - ); - name = RNVectorIcons; - path = "../../node_modules/react-native-vector-icons"; - sourceTree = ""; - }; - 6B8CE19827AA6A886D7192CC57ECFBCF /* UMImageLoaderInterface */ = { - isa = PBXGroup; - children = ( - BF572B91F33CCA4A9507BC19A3586FBE /* UMImageLoaderInterface.h */, - 5A0E03564413B5EC948818130AF11ECF /* Pod */, - C84681B7C677A616976CC998433D6E63 /* Support Files */, - ); - name = UMImageLoaderInterface; - path = "../../node_modules/unimodules-image-loader-interface/ios"; - sourceTree = ""; - }; - 6BC7DC714CD01BD5C4C832D99FE2582D /* Pod */ = { - isa = PBXGroup; - children = ( - 04063A56BB05EBE68D2F2D8AFCF21F03 /* LICENSE */, - 0FBBCEC7731A080E58E687DA537F7BCF /* react-native-orientation-locker.podspec */, - E4EC75C2C46DFA45D3E68EA29C9560FC /* README.md */, + 9F2DD1B30E3862662FED31609A912E32 /* EXFileSystem.podspec */, ); name = Pod; sourceTree = ""; }; - 6C5C84D1C26CD05194960802BC5594B1 /* Base */ = { + 6C2739C5D17938B1FBC5C3868DD9A417 /* config */ = { isa = PBXGroup; children = ( - 8A1A02A4104B810AC0CF0B5DE179BC9E /* RCTAssert.h */, - B430B1A49A0DBF42AEB177D9A9396E4B /* RCTAssert.m */, - F433A020043B480DC7234774E496F4ED /* RCTBridge.h */, - CF93CD62B84DFAE84148EF3D66B5E865 /* RCTBridge.m */, - F0D82E8B24736348178B778A501307D8 /* RCTBridge+Private.h */, - F3C2945F9B83D831E9968E314B14E454 /* RCTBridgeDelegate.h */, - 84128C09D86FC2EEBEE355BA47317155 /* RCTBridgeMethod.h */, - 14B18C479D8A99EF20249B4EDB5E82C8 /* RCTBridgeModule.h */, - B51E7D4A7044362FC9E5116437F6F839 /* RCTBundleURLProvider.h */, - 8333CE04D1EF8F103AC4FA080A8529FA /* RCTBundleURLProvider.m */, - E96690B495455960F79E39571CF51FF2 /* RCTComponentEvent.h */, - B828B7319126BE036DCB2EADF42112E8 /* RCTComponentEvent.m */, - A758825D2493D053994681A9AABB1588 /* RCTConvert.h */, - 45A54CB7FE43EDE7F2BD864A183726C1 /* RCTConvert.m */, - 4B197DB52E6AE91D411B5EF95389BD29 /* RCTCxxConvert.h */, - E3E2EB753553604B5574D4108338A793 /* RCTCxxConvert.m */, - C432B3F5228D1F6F5FBCFD6550268283 /* RCTDefines.h */, - 5B6930102712EA7C18C4254CB7D1BF16 /* RCTDisplayLink.h */, - A2BF1B2AF2C535785E03DECA25C0F0E3 /* RCTDisplayLink.m */, - 54D57F9A5F129DB563DB63D2EF975180 /* RCTErrorCustomizer.h */, - 0B0157AE7E8148C16CDE24AA0744625C /* RCTErrorInfo.h */, - 9B2C58D6A70501D55F5962177C44D3E9 /* RCTErrorInfo.m */, - 115F152C05353BEADB399201FA6C2D1A /* RCTEventDispatcher.h */, - 960786193F233345384121295E7AA56F /* RCTEventDispatcher.m */, - C5D1A6EB84C7A61CB1A61A0195830C35 /* RCTFrameUpdate.h */, - E68F7FFA01C75EACE6292ED98DA7153A /* RCTFrameUpdate.m */, - 7206AD40858137C2C95D47687B35CDD6 /* RCTImageSource.h */, - 2BA843B77D141E7E5EAD6639E82FFA32 /* RCTImageSource.m */, - 5F6253E6A38DFCFB26F4B0178A268ED6 /* RCTInvalidating.h */, - 646D4FEBFFC5D41B5F6A181726F6CFB5 /* RCTJavaScriptExecutor.h */, - 3C22DDE348837C5272779BF4D393C3A5 /* RCTJavaScriptLoader.h */, - 3C7D4AF74DA7A1D48531684DFCC1287F /* RCTJavaScriptLoader.mm */, - A7979EFA0044A7751DBF2F91E4119047 /* RCTJSStackFrame.h */, - 27F972F091BC08C0AB6B136244331BFE /* RCTJSStackFrame.m */, - 4094D81B29332EC52EB4A114E806C8EA /* RCTKeyCommands.h */, - 15A6BB79D8E29F4F7A980408E1A4A74C /* RCTKeyCommands.m */, - 4CA48834F4057D3E1182AFD7984E142A /* RCTLog.h */, - B31675120914B5F24A9F6CD3EFE3B30B /* RCTLog.mm */, - 89ACC87B5AF257B9EBBDB99C686F33E8 /* RCTManagedPointer.h */, - DE347CCC6CB1C9D009A596DE10BD2DFB /* RCTManagedPointer.mm */, - 1AD1DB4D3A9AAB54F4AF5D59F857A062 /* RCTModuleData.h */, - 9060679BFD0C09C936BCF4C7D048CBDC /* RCTModuleData.mm */, - E69F13AD5C4BB7A55D139B4594E5B26B /* RCTModuleMethod.h */, - 4E17146B13029796693BB08BCBD5390F /* RCTModuleMethod.mm */, - AF8133FBB15F2A5100127A7851F56135 /* RCTMultipartDataTask.h */, - E6F5E5D8FC87C499FFC947C0FDC91058 /* RCTMultipartDataTask.m */, - 9BD589DFD1BD4E0A110A1D788E71DCDB /* RCTMultipartStreamReader.h */, - 13D4693873290AEFB57A9DC64BBF4D51 /* RCTMultipartStreamReader.m */, - 72C34B123C348D7C5AB4218444FF9E56 /* RCTNullability.h */, - 0265CE3C52A210D9B8BE76D690841ED0 /* RCTParserUtils.h */, - F99CC4BE4EC1E8C5B621C4669D4D20DC /* RCTParserUtils.m */, - 3175D4F17FE054E65ECAE6AAB14DFB49 /* RCTPerformanceLogger.h */, - 80440715B10F2A9F22C602E9A6395021 /* RCTPerformanceLogger.m */, - DEA78C6D5969CDC7D313E66F1C19CD26 /* RCTReloadCommand.h */, - 91705702AE66D8DE8A2D8A2B1F6D45F5 /* RCTReloadCommand.m */, - FC96204E58C3433EC0EC724E81C61994 /* RCTRootContentView.h */, - E477EB4A4C992E646A28623B39AF83C7 /* RCTRootContentView.m */, - F8320C6F9D0460C60304F4EAD677FB95 /* RCTRootView.h */, - 4E5D1FBD6123E2EBFF4E8A8CD025B142 /* RCTRootView.m */, - 02585A3CB670D27DB49A28A54259260A /* RCTRootViewDelegate.h */, - F1FCB34252FEB2D78E17CB7FA3B031FF /* RCTRootViewInternal.h */, - AD4E046AB7EFC7482FC3EBD179AD1B34 /* RCTTouchEvent.h */, - 7BDFD734CCC15D9C7CB26857B917EDF7 /* RCTTouchEvent.m */, - 816F58046DFE66F94DAEA4107A443B86 /* RCTTouchHandler.h */, - BAC41DDB0B39CF7B503A188B07989D7D /* RCTTouchHandler.m */, - BB183ECE5FB81679146D0829623CBF28 /* RCTURLRequestDelegate.h */, - 809C5551A21A85F154BBD05AEC2776AE /* RCTURLRequestHandler.h */, - 63388F2BCE5126FB513A2351B6A2BD80 /* RCTUtils.h */, - ABC469483E8FAB36B0D21EE3FC9D77CC /* RCTUtils.m */, - 794758E19E42CCEB6330231A141184AD /* RCTVersion.h */, - 7671275585D773EF29D1D407C7ED15B7 /* RCTVersion.m */, - D8E0DF98A1C17EC204E1F71B85650A9B /* RCTWeakProxy.h */, - 6DEAC625D17C923841ACC83C2FDCDA15 /* RCTWeakProxy.m */, - 1F80ADDDE84BC607C5E45D7F1184837C /* Surface */, + 5FC607DFD390514534819C0DE585EAED /* RNFirebaseRemoteConfig.h */, + DB92B34B35282B7C1241702C5351DA4D /* RNFirebaseRemoteConfig.m */, ); - name = Base; - path = React/Base; + name = config; + path = RNFirebase/config; sourceTree = ""; }; - 6C7271F4031945D16A21F048CE83D598 /* UMModuleRegistryProvider */ = { + 6CEAEF635E6491C9188E65BBE9553CB1 /* Pod */ = { isa = PBXGroup; children = ( - 51C65E47429B552B172A74DDEB48E37A /* UMModuleRegistryProvider.h */, - B847A379045027BB5863803B549968A4 /* UMModuleRegistryProvider.m */, + 2B661F981723A07083B4D9B04FFAC6F1 /* React-RCTText.podspec */, ); - name = UMModuleRegistryProvider; - path = UMCore/UMModuleRegistryProvider; + name = Pod; sourceTree = ""; }; 6E685B78477838C811DA9B2C583947D4 /* glog */ = { @@ -9131,12 +8953,23 @@ path = glog; sourceTree = ""; }; - 6EE28FA22585BE6592EEA64C317C6EF7 /* turbomodule */ = { + 6EA322334211EA91503831F052DD9958 /* fabric */ = { isa = PBXGroup; children = ( - 835101B90FECFB488E0AF0ECE48F5FA8 /* core */, + 314A0722A68DB20CAA0AB438DECBE6AC /* crashlytics */, ); - name = turbomodule; + name = fabric; + path = RNFirebase/fabric; + sourceTree = ""; + }; + 6F0338EF8698EA5D87FB5F878A639EC3 /* BaseText */ = { + isa = PBXGroup; + children = ( + C7B596E3D4744EF24AC44C32E9E362CE /* RCTBaseTextShadowView.h */, + 651BADE3C93BF8E5CAE87709AEBEF393 /* RCTBaseTextViewManager.h */, + ); + name = BaseText; + path = Libraries/Text/BaseText; sourceTree = ""; }; 6F21D8227CB5318BA0CB5F92E4ABBDCB /* Network */ = { @@ -9156,6 +8989,41 @@ name = Network; sourceTree = ""; }; + 6F40144F1FEB40098D78DEC7FF22E230 /* RCTCustomInputController */ = { + isa = PBXGroup; + children = ( + 1A3ACA68B4F4DC3E1D5762FC9921F4D5 /* RCTCustomInputController.h */, + F49B8CF1119B9A61EBE7B99BB24D118C /* RCTCustomInputController.m */, + 9A1F2DCABC435441BFED3F2D05B8E482 /* RCTCustomKeyboardViewController.h */, + 3A8CA3243355E388ECA7BC6845078189 /* RCTCustomKeyboardViewController.m */, + ); + name = RCTCustomInputController; + path = lib/ios/RCTCustomInputController; + sourceTree = ""; + }; + 6F7E435ACF20CC8FFD966E649249C0E5 /* FBReactNativeSpec */ = { + isa = PBXGroup; + children = ( + 6FA6C91032EBF0342AE414E3FD255BA8 /* FBReactNativeSpec.h */, + B18FB1710FB66A87E75F38690B053462 /* FBReactNativeSpec-generated.mm */, + 0F76EA7D72085C02E194D4F76C361B47 /* Pod */, + 743864A738F7FB7B011E22F61CC58D68 /* Support Files */, + ); + name = FBReactNativeSpec; + path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; + sourceTree = ""; + }; + 6F8FFF653263334E532730D3AC85E5D4 /* Support Files */ = { + isa = PBXGroup; + children = ( + EFE015060906EFBDC1CAE15092322E3C /* rn-fetch-blob.xcconfig */, + 7A7C3E173B755347C9AF5941C40E03F5 /* rn-fetch-blob-dummy.m */, + F873A3B0C0FD515134FAA7794CA8756C /* rn-fetch-blob-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; + sourceTree = ""; + }; 6FB520D33139D6DAD61034EEAFAFE604 /* GoogleDataTransportCCTSupport */ = { isa = PBXGroup; children = ( @@ -9173,111 +9041,88 @@ path = GoogleDataTransportCCTSupport; sourceTree = ""; }; - 6FBFAB049EE2FC785B3FC0D6D911E9BA /* React-cxxreact */ = { + 6FDE322E165FABA36F3FE158E08164E7 /* Interfaces */ = { isa = PBXGroup; children = ( - 954080367EDE14FC90A093125A781A2A /* CxxModule.h */, - 1995C7EA2F0EFFDC567AED56055A0EDF /* CxxNativeModule.cpp */, - BD44312CAA7F36F9F47BA4A0BD0471BE /* CxxNativeModule.h */, - B39C5CA19C1C193728E947F3C113B539 /* Instance.cpp */, - 7BE78F517CB60485F9C194F3F800EC3A /* Instance.h */, - 2D32CFE4017C0FEC790568575C16997D /* JsArgumentHelpers.h */, - CB998E12C45F314505BC27A76C415407 /* JsArgumentHelpers-inl.h */, - 3814F84755388AD1C8BE044F65536D82 /* JSBigString.cpp */, - 5AA3E9AABC01B31E9DB6C9F889B2726D /* JSBigString.h */, - 585996EA11934C47C3280BCAF61A322C /* JSBundleType.cpp */, - 519D1636DB8FD61EC9BBEA2983CF7EA2 /* JSBundleType.h */, - EF326EB2E483F4FA8705427C3F6AA465 /* JSDeltaBundleClient.cpp */, - 97719D4653AA92D70917B72DB87C02D4 /* JSDeltaBundleClient.h */, - 6F1436153B58436CB30D0D8DCF949A58 /* JSExecutor.cpp */, - 74EF26258C1C91BC9CC7A0116601B044 /* JSExecutor.h */, - 18A087E44BFAA77EB640B626F079B2B1 /* JSIndexedRAMBundle.cpp */, - 909EC055269B78451EB554E6107EEFCE /* JSIndexedRAMBundle.h */, - 05FE56B66A4E98BACA63845317D46817 /* JSModulesUnbundle.h */, - DCDEB8A064D1D65C5FC47C3049617644 /* MessageQueueThread.h */, - 2B7D478665C615643A81DA89762EAB9E /* MethodCall.cpp */, - 2CEE8F7C1EB72AEE620FDFA213AA6B84 /* MethodCall.h */, - 817EFFEB546086A172FEE639D26D7DEC /* ModuleRegistry.cpp */, - B866269727FE8475702C65D5D6A459EE /* ModuleRegistry.h */, - 0E057C522C49DFB6F4247183BA32A315 /* NativeModule.h */, - 6FB5EB38561E65D3EF4253AE425990DB /* NativeToJsBridge.cpp */, - 49AEE8B3474A5568CDAE836D4544F99E /* NativeToJsBridge.h */, - 548D093BA6436E28D5E64ABEF5BC20DD /* RAMBundleRegistry.cpp */, - 79235824C8211FBEED50E4749E521A44 /* RAMBundleRegistry.h */, - DBB788C82457703874079923331D7462 /* ReactMarker.cpp */, - 2B45E38A956BC0C34EDCA95019C0E090 /* ReactMarker.h */, - 712ED9A35982875967AA9DF2575653AB /* RecoverableError.h */, - DC97CDAB52C4037177987D5EACD5438F /* SharedProxyCxxModule.h */, - 024D68F3AF64EF33F322D61B7AA13697 /* SystraceSection.h */, - 24C169E0864041E5F05B1B6BDF3ED454 /* Pod */, - D7E990FEF58D09CC543DA847215860F9 /* Support Files */, + F3E18198B01D542FCB2092F21BCCFBBC /* EXAppLoaderInterface.h */, + EE3057924E53F20FBF9FC10F358D615C /* EXAppRecordInterface.h */, ); - name = "React-cxxreact"; - path = "../../node_modules/react-native/ReactCommon/cxxreact"; + name = Interfaces; + path = EXAppLoaderProvider/Interfaces; sourceTree = ""; }; - 6FF860EA36EEC84632F10959EC5C01A6 /* EXPermissions */ = { + 70908F911438139CF49C4195D75E9C88 /* RawText */ = { isa = PBXGroup; children = ( - 11C1FBB4350B2D08E9EE4A6F11913624 /* EXAudioRecordingPermissionRequester.h */, - 5B7CC60875E6C101D016CB03063CBD2D /* EXAudioRecordingPermissionRequester.m */, - 769B103E567E2271D63B84E14111DF4C /* EXCalendarRequester.h */, - E5F451C78F4B39595EDA7ADCDA9F4B76 /* EXCalendarRequester.m */, - 86005D6419ECB39F0D79A272DEB26A5D /* EXCameraPermissionRequester.h */, - FE1D4FBCF03954D075035EB411B4CB73 /* EXCameraPermissionRequester.m */, - D2D3FB75CDE21750E73D11A0078FD826 /* EXCameraRollRequester.h */, - BB8DD00CF47EB6840BBDB9CC14EF4572 /* EXCameraRollRequester.m */, - 460AD3851E021B6C51B4870B45FFE1EE /* EXContactsRequester.h */, - 70D53277BEB6F1FD7F8214279B63494D /* EXContactsRequester.m */, - DB66B4A755AD16758D26FA46E333B4FF /* EXLocationRequester.h */, - F986B7275CD6BB9BBF71BF78737F5AFD /* EXLocationRequester.m */, - 08AECB1653989DA930B68E900E7D1BA9 /* EXPermissions.h */, - 05E6FA1010261B767C1111CE6097419C /* EXPermissions.m */, - D971561D00B974F4A1846DC3C13D9D2B /* EXReactNativeUserNotificationCenterProxy.h */, - 25C29B126F25A01E9276C8B99E0B52EB /* EXReactNativeUserNotificationCenterProxy.m */, - 4BDBE883674DE8582992A71F9296394E /* EXRemindersRequester.h */, - 42BD1965691774F7E02916CBF3984093 /* EXRemindersRequester.m */, - E9DD71D69F2C4920E78E0FF114BF07A7 /* EXRemoteNotificationRequester.h */, - 7C4E2AB246D3C5081E992FD4369A148B /* EXRemoteNotificationRequester.m */, - 38A81B7453C5897092810D717D38E29D /* EXSystemBrightnessRequester.h */, - 0F84AC8A6BED890A93DE25DDB236D6E2 /* EXSystemBrightnessRequester.m */, - 8DBEFBE3BE1476688DDA1ABBF2F7916A /* EXUserNotificationRequester.h */, - 2C538B065EEC8ED1BCC75BD8E92A6DE7 /* EXUserNotificationRequester.m */, - 30E86498E62C8CAD6E38F99CAA45D2A0 /* Pod */, - 7D69D960A93AA8B4F5103C426EAB2DDA /* Support Files */, + 27D693997B65B3E74EC78362163B2C77 /* RCTRawTextShadowView.m */, + 99B7819209679DD6A46C10252C34F927 /* RCTRawTextViewManager.m */, ); - name = EXPermissions; - path = "../../node_modules/expo-permissions/ios"; + name = RawText; + path = RawText; sourceTree = ""; }; - 72F65EDC1F3F91A5BBD5F6BF351961F9 /* CxxBridge */ = { + 7145FDA03AA5E8044DC5857B2F84FB1A /* Pod */ = { isa = PBXGroup; children = ( - 0E33A601ED837702331CA7F45EC0A5A1 /* JSCExecutorFactory.h */, - 8CD097EF1DD8D29465CC59BFDD5C8E2C /* JSCExecutorFactory.mm */, - 9A0F8A8EDD753C0E60C36136BE3334B6 /* NSDataBigString.h */, - D8463CB6990B9D893817B0E248FC48F8 /* NSDataBigString.mm */, - 1C1BE7BAC6B10A14CFE2008278BEA3F1 /* RCTCxxBridge.mm */, - B66627996CBB958C82EA874E48CA93BC /* RCTCxxBridgeDelegate.h */, - 2788D2D3E0705C7D482B0C43FC112B69 /* RCTMessageThread.h */, - 50BD815AA69C87C42AB3BAEFD7F5E3DA /* RCTMessageThread.mm */, - BE8D391CE038CB9915BF19593F70A815 /* RCTObjcExecutor.h */, - 0D74AFA503A667D1B494AD7B6E155FDE /* RCTObjcExecutor.mm */, + 34C6BC38DF0C014286439FD86C227B91 /* UMFontInterface.podspec */, ); - name = CxxBridge; - path = React/CxxBridge; + name = Pod; sourceTree = ""; }; - 73CC556A8ED99B0DE2B2CDB4A88436CE /* React-jsinspector */ = { + 7178F45C25920E7C2C08B028717AB0B1 /* Support Files */ = { isa = PBXGroup; children = ( - EEE1E8891ACBB4DC5D6D77253E55921E /* InspectorInterfaces.cpp */, - A63A11DFB96EC414CC42AF710C1F52EA /* InspectorInterfaces.h */, - 17E681DC7A691F03CE0A2BA4E97BB681 /* Pod */, - 273DD069E18851CE004CB236EA681C78 /* Support Files */, + CA5DD69CBB094BE309AC411E3A4A8836 /* react-native-jitsi-meet.xcconfig */, + 3FF0E5AA62D46D382DF71A8CEA9125FC /* react-native-jitsi-meet-dummy.m */, + D7CFB5FCCE46F67953383729DACA74B7 /* react-native-jitsi-meet-prefix.pch */, ); - name = "React-jsinspector"; - path = "../../node_modules/react-native/ReactCommon/jsinspector"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; + sourceTree = ""; + }; + 726A4F6AE472718059FBB6A63FD796E7 /* Support Files */ = { + isa = PBXGroup; + children = ( + 06450EC1161FF8F3EF268FB02764EC11 /* React-RCTVibration.xcconfig */, + 1E257C44BB7B9C78B7D3F7F17F66A6A7 /* React-RCTVibration-dummy.m */, + 822212AE700B6801B9E7B08859B1B8F9 /* React-RCTVibration-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; + sourceTree = ""; + }; + 7295C59BF94650FFEBEC58C278858A9A /* Support Files */ = { + isa = PBXGroup; + children = ( + 2C4D5A26D150618BD9D8ED373D8A0BEC /* RNReanimated.xcconfig */, + 983CCBE6DD41B2FCD46538E9B718F101 /* RNReanimated-dummy.m */, + 5AF94D4889A5AD54146EACCC531D3FC2 /* RNReanimated-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNReanimated"; + sourceTree = ""; + }; + 7376A97E02F04B0A9D0B6000F1236415 /* UMFaceDetectorInterface */ = { + isa = PBXGroup; + children = ( + 29B6FE2E3CE63643CC922532773E1513 /* UMFaceDetectorManager.h */, + 18394ACA39E148F292C123364D6A4311 /* UMFaceDetectorManagerProvider.h */, + 5C9E2D3BBFDD0333C4336C7DD83070E8 /* Pod */, + E3ECDDEB75DBFAD89A8E84B486D73911 /* Support Files */, + ); + name = UMFaceDetectorInterface; + path = "../../node_modules/unimodules-face-detector-interface/ios"; + sourceTree = ""; + }; + 743864A738F7FB7B011E22F61CC58D68 /* Support Files */ = { + isa = PBXGroup; + children = ( + 017DC2113A130DE5F6827A60DAEA3DB0 /* FBReactNativeSpec.xcconfig */, + 54F9E394F39D66C80BDDB1EEB2D34068 /* FBReactNativeSpec-dummy.m */, + 3A357814AEFDC202130359888B144EDA /* FBReactNativeSpec-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; sourceTree = ""; }; 74CE1FEEE134A6EA34F1456002F78100 /* decode */ = { @@ -9287,114 +9132,81 @@ name = decode; sourceTree = ""; }; - 74F116B9C72E10FC983920599BCF027E /* UMTaskManagerInterface */ = { + 753530E50B6D2D27E994368C9BC4D337 /* Nodes */ = { isa = PBXGroup; children = ( - E2DE351B1775224D29F696BFDD71B490 /* UMTaskConsumerInterface.h */, - C139864F460F04E1997FE1A4DC524E33 /* UMTaskInterface.h */, - 565A9BBF7857F9A6F627DF93296A6C48 /* UMTaskLaunchReason.h */, - C807ACF48B5496C75D21C7BD875CE3BB /* UMTaskManagerInterface.h */, - F1681B99D8F014DC22E7369A3836EDD4 /* UMTaskServiceInterface.h */, - 98FBB5B5B68B06DE570D98CAFD095B5E /* Pod */, - 38F716DB206D296020581891A2110D39 /* Support Files */, + 0FBED8C2E11F36E422C722A4D52E7B5C /* RCTAdditionAnimatedNode.h */, + 4A7A8D70217A1B4286D231AF4EDEABE3 /* RCTAnimatedNode.h */, + E84D1705F88764F441BF3B57EB5EAA26 /* RCTDiffClampAnimatedNode.h */, + BBDAA03DE55BA0D728CFE25CB9B48B22 /* RCTDivisionAnimatedNode.h */, + A7B9D8B13F050E3F14A6DECF67C4EEF5 /* RCTInterpolationAnimatedNode.h */, + 25CC2F827A9F947F10241043AD7BC871 /* RCTModuloAnimatedNode.h */, + 3DD1AC6AC1DFC192A113B0CB6AAB0727 /* RCTMultiplicationAnimatedNode.h */, + 6F687D158AB84629B6BC16F908CCA02A /* RCTPropsAnimatedNode.h */, + F925A11DFF486337DD823CC3FA6BED0C /* RCTStyleAnimatedNode.h */, + 67335C14839DACAF0F9B087343EA0525 /* RCTSubtractionAnimatedNode.h */, + FC02024978E9CA2B7007226DF9BC8B07 /* RCTTrackingAnimatedNode.h */, + 47CB1DCBBCC5C36889C4844863417462 /* RCTTransformAnimatedNode.h */, + 76BB0F64D39493D79E127825DE3F6FF8 /* RCTValueAnimatedNode.h */, ); - name = UMTaskManagerInterface; - path = "../../node_modules/unimodules-task-manager-interface/ios"; + name = Nodes; + path = Libraries/NativeAnimation/Nodes; sourceTree = ""; }; - 755549AD934DBFDC4A847F012A9A5605 /* Pod */ = { + 7588D8C3D855AD5C9F33DBF5B3855E08 /* Pod */ = { isa = PBXGroup; children = ( - 860518DA220CE65772B2C561D196CB59 /* LICENSE */, - F2D4E04EB66DBF2ADB3ECE6B70C3A48C /* README.md */, - 97B48372A993ABA2A80811602FF1D2DA /* RNVectorIcons.podspec */, + 6DB5CA6C84DC9CF88A2396E60E0E3A6A /* README.md */, + FEB060A66EA58791A65D9D2B1C4CCE9C /* RNLocalize.podspec */, ); name = Pod; sourceTree = ""; }; - 7582141A788BE8C33970DB214A52957D /* Pod */ = { + 7614151C5EA8F91B0DD0762168B9B9DD /* Support Files */ = { isa = PBXGroup; children = ( - 23B6279CC596CE6594A69C3CE867B1AE /* UMConstantsInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 75EFE8DC70F9D2100A90CC5EAD1CC975 /* UMCore */ = { - isa = PBXGroup; - children = ( - 167EB89C479F244A70B6CCB4DC9C482E /* UMAppDelegateWrapper.h */, - BEC0A2B51B9A055AA354B9F7C0FC8672 /* UMAppDelegateWrapper.m */, - 0A63DE8A3379062D18CF30247E1CB042 /* UMDefines.h */, - F20DD1CB8B6293D270D505E2D4E69EED /* UMExportedModule.h */, - 9AC47C8B3C17EB30C5162268DEDD5657 /* UMExportedModule.m */, - 7B099DD6CF385627ACAF7A6055576885 /* UMSingletonModule.h */, - 8123E787639BFD2900C6AA7A76A24C96 /* UMSingletonModule.m */, - 63C14DDCE72A4E5D97673C5C74DC0F46 /* UMUtilities.h */, - E9949FB7D742FB22FCA1B47A33AC492B /* UMUtilities.m */, - 53507FDF3A11C8248CC06B92D2272C13 /* UMViewManager.h */, - 031B2AC077C3A79567C435939CEF72D0 /* UMViewManager.m */, - CBF0DE69808ECAF1071E810B500E164B /* Pod */, - 465395A17042DC785AF73CC6E6953B2E /* Protocols */, - A1DC2A71104251E295BFC8B0447A24EF /* Services */, - 2ACA8AA47C0D5697B27805B95574CC28 /* Support Files */, - E227F3F9AA11E52174D7FA97E7A05BFF /* UMModuleRegistry */, - 6C7271F4031945D16A21F048CE83D598 /* UMModuleRegistryProvider */, - ); - name = UMCore; - path = "../../node_modules/@unimodules/core/ios"; - sourceTree = ""; - }; - 76140A1B2B66EF8ED6E9E6E5274B112E /* Handlers */ = { - isa = PBXGroup; - children = ( - 6576A3D11BEF41D5FA17A26087FF11EE /* RNFlingHandler.h */, - 01D2F92678B08D14F8B50093C9F20B38 /* RNFlingHandler.m */, - D05542AB868F073E68875B27D150A98A /* RNForceTouchHandler.h */, - B91DFDA9CE811D7C6C0DE77527650116 /* RNForceTouchHandler.m */, - 3BE09A555F5A524BA8D044492D90922E /* RNLongPressHandler.h */, - BEB60AC1AE5D6655DE9A4FD9F84B297D /* RNLongPressHandler.m */, - E8C2E627DE162F1D138CD2053921C51F /* RNNativeViewHandler.h */, - A9BBD50F562E09F4FC9D8723331D6081 /* RNNativeViewHandler.m */, - B7FFC86A3526F8B574934B3A26422B59 /* RNPanHandler.h */, - 7A096995BDDD186EB5EFB345A6923CFA /* RNPanHandler.m */, - 4B8B89C0B94AA9A885F792E8624A21E4 /* RNPinchHandler.h */, - 0EF27FB97B9D7EBE56623D54BDAE1297 /* RNPinchHandler.m */, - B5B71DEADE3F134C37C7CA658A9BDBE0 /* RNRotationHandler.h */, - 55658354B353F2230FBBC65FA8D1D406 /* RNRotationHandler.m */, - 8473A9B2C68AD12A595BE21616AA53FF /* RNTapHandler.h */, - 423819A3AB14312BA59EDF8E2AA24629 /* RNTapHandler.m */, - ); - name = Handlers; - path = ios/Handlers; - sourceTree = ""; - }; - 763223B9591CE8006D6C9F5F58938670 /* Pod */ = { - isa = PBXGroup; - children = ( - 5623DDE9035119EB1DA63CE5A5C8E2CF /* UMPermissionsInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 765FCBD6FD33959CD5E54F9EABE048D5 /* Support Files */ = { - isa = PBXGroup; - children = ( - 246E698546413681F941B6C956D6E955 /* UMSensorsInterface.xcconfig */, + 7E1BFA93837EAD077B5E764C1F41A4BC /* UMConstantsInterface.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; + path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; sourceTree = ""; }; - 76609BA350710DA80B0A51B2478AAF9D /* Support Files */ = { + 761A6F1F642C49FD8EA1C8E817A65651 /* Support Files */ = { isa = PBXGroup; children = ( - C8C73E7B045F4108D3D7B2ED855B3743 /* React-RCTNetwork.xcconfig */, - FCD538012C243D0B7FE34C682AAA6698 /* React-RCTNetwork-dummy.m */, - 82AC3C30C8C93B7EE2A34899D3018F27 /* React-RCTNetwork-prefix.pch */, + 86B96BD448BC9C22DBC68EC6B5A79722 /* UMTaskManagerInterface.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; + path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; + sourceTree = ""; + }; + 776096EDF588E089544EE308D7C9130E /* Pod */ = { + isa = PBXGroup; + children = ( + BDB2A54AFD88BEBD66755390BFC20E33 /* UMImageLoaderInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 7853BCEEAED2DAC4C22A18B7C23FF051 /* React-RCTImage */ = { + isa = PBXGroup; + children = ( + B2B936F67466D9DAE4DB945CE1F31B59 /* RCTAnimatedImage.m */, + F28149CCA82C0E65FA667B179B7297CC /* RCTGIFImageDecoder.m */, + A809D12346BF2C4A7B412AC3D1EE740C /* RCTImageBlurUtils.m */, + FA59AF698FC39EDC77B09342B24F02F6 /* RCTImageCache.m */, + 2E056E05030B4395FE01370071C1A335 /* RCTImageShadowView.m */, + 9F4FE60494185612D06775A177512938 /* RCTImageUtils.m */, + 1DD679A82877E89FC78016857AB31021 /* RCTImageView.m */, + BDE1539A4B971DDFECD344F5B03CBEA2 /* RCTImageViewManager.m */, + CF674F5C2EE4E534C77580819ADBACA9 /* RCTLocalAssetImageLoader.m */, + FE24745E5C82F23E2BB913D0242081C0 /* RCTResizeMode.m */, + EE9C2D73AD14BDED6EE493FCB85368EE /* RCTUIImageViewAnimated.m */, + B418D9FBE12D0D081D27ABEF7D7E10CE /* Pod */, + D1107C133EFCB2530C69E5D8E81A539B /* Support Files */, + ); + name = "React-RCTImage"; + path = "../../node_modules/react-native/Libraries/Image"; sourceTree = ""; }; 787CA6FB1E2414DEDEF75E1011BC60C2 /* Support Files */ = { @@ -9408,103 +9220,24 @@ path = "../Target Support Files/DoubleConversion"; sourceTree = ""; }; - 793A3131818FD934D7719FC469503A2B /* Text */ = { + 79503B00A09E11742A24FBD078FC18A7 /* Support Files */ = { isa = PBXGroup; children = ( - C1D9B07B8D59611CA4336F49FC6F237A /* NSTextStorage+FontScaling.m */, - 27CA2C38E38208FEB8B0821455E60FAD /* RCTTextShadowView.m */, - 3F13B387399DE000AB9D70D563F7A4AF /* RCTTextView.m */, - 678E3B811E2B5DAE511254082F40576D /* RCTTextViewManager.m */, + 8796D4948C0082A6756FC511A8EE65C0 /* FBLazyVector.xcconfig */, ); - name = Text; - path = Text; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; sourceTree = ""; }; - 7957AD764990C77D70ECFF6CE1575413 /* Views */ = { + 79BB86185898496F908194F1814E1183 /* Support Files */ = { isa = PBXGroup; children = ( - 7088D934002FF5FD6C1FCD97EA5336B6 /* RCTActivityIndicatorView.h */, - 9CFDBB581772024714FD0688A7201200 /* RCTActivityIndicatorView.m */, - 286397C424DBE1AAB294AC63C57F4C73 /* RCTActivityIndicatorViewManager.h */, - 0CB7BE9DC1FF73569EF920805D610F2C /* RCTActivityIndicatorViewManager.m */, - DABF64C8CA637730EF217FF4097BD858 /* RCTAnimationType.h */, - 15FA332601D3282C41BA50A2D8481E81 /* RCTAutoInsetsProtocol.h */, - 87D6D5A6D51FF6A8D1536D2084129B4C /* RCTBorderDrawing.h */, - 9E8151146709C4C6EA979DAB61A65085 /* RCTBorderDrawing.m */, - BF086C25B52612E2A5B9BEE973A32C47 /* RCTBorderStyle.h */, - 32A2B92EC96777B75672426E777F0E1A /* RCTComponent.h */, - 231FA1621BD63904ECE8FA0AE201AF9B /* RCTComponentData.h */, - 8BC69F90B2B7A23844026BBEC474CBC8 /* RCTComponentData.m */, - 7EAD07054F7004035835349D6A771190 /* RCTConvert+CoreLocation.h */, - 161E2E5E91C7FB74B68117012C42CC6B /* RCTConvert+CoreLocation.m */, - B29AB9EEAF6FC4CB09EC27F68BE0DBAC /* RCTConvert+Transform.h */, - CBD259C327377C693B4CE403402CFB77 /* RCTConvert+Transform.m */, - FCD8E155893454D90AA3098782571AA3 /* RCTDatePicker.h */, - 28A7D9EBA92D7AE9DC68B73FC5D3E56E /* RCTDatePicker.m */, - 311E9C6BB31C044DB983AADE5A2521F3 /* RCTDatePickerManager.h */, - BD12D651C2143BC1710E7D75F5DB718A /* RCTDatePickerManager.m */, - 053E019BD1912F57172168BAC0F1A82A /* RCTFont.h */, - E346DEA3E37B00DB83B03FBCEAAD30F7 /* RCTFont.mm */, - 9E1638A6BC858BF6693201C66328D8BC /* RCTLayout.h */, - E3544AA17D2941CE45A9B02FC12E622D /* RCTLayout.m */, - 19273CC937A393D069B4DD9B1C63888F /* RCTMaskedView.h */, - EE082B931344DEF3EA3083AA8E319113 /* RCTMaskedView.m */, - 2D068189902796A90299BF9FE48D6109 /* RCTMaskedViewManager.h */, - C3110F54910A34794326F428F5D19891 /* RCTMaskedViewManager.m */, - DFFC075B703E0F2D713B87FFD68C01EE /* RCTModalHostView.h */, - CE7F716DAE1FDA0CCC81EA4CA285A622 /* RCTModalHostView.m */, - 6FD5C53F9420C953E97968EEC277D3F3 /* RCTModalHostViewController.h */, - FC800C552B768304543ED5C421BB9485 /* RCTModalHostViewController.m */, - 59CAA48CCB157B840654CD64DE39DC0A /* RCTModalHostViewManager.h */, - 0C6A0BE6A61147E06A4D85E602A4A10F /* RCTModalHostViewManager.m */, - E5E6A269FD82280AE52486F1B37AF15E /* RCTModalManager.h */, - F0679D0105E10669A8210D90F88B7592 /* RCTModalManager.m */, - 25803CC314A2E644D9FCF2FAD9647006 /* RCTPicker.h */, - F7D258CDB53EFD2F3A44594CA7B4D269 /* RCTPicker.m */, - 93D2F70E0C2459107177CA5B393A881E /* RCTPickerManager.h */, - DFDA67AB734798D01BABFB49DD83A8C7 /* RCTPickerManager.m */, - BE3145A3A7B80D0DB04DEA6D9EA57722 /* RCTPointerEvents.h */, - A756C9D657CF92354B71ED278B702023 /* RCTProgressViewManager.h */, - 83A7440D1D68C4BC4C6E0BA4AE95D062 /* RCTProgressViewManager.m */, - 7020C0643DD3F4598728470F8C085BB8 /* RCTRefreshControl.h */, - E4B3498FD7A4E94C6C64AAE767D77C96 /* RCTRefreshControl.m */, - 88A354BC0F2C1179CEF4E0EA9D6EF8AA /* RCTRefreshControlManager.h */, - A3C5A069E7228C55ABB49F9E56A377A3 /* RCTRefreshControlManager.m */, - 782881264F37D7B95125BD0E4756C108 /* RCTRootShadowView.h */, - 409482F50DB4534EE8059682EB3F83DB /* RCTRootShadowView.m */, - A0DF0347154937771DC147662FF18BC9 /* RCTSegmentedControl.h */, - BD74F9D1FD2BFF0CD358E8BC9AF73290 /* RCTSegmentedControl.m */, - 51C7987CBEE2E31983712A75CDE006A2 /* RCTSegmentedControlManager.h */, - DFE376C1EEA06E6D124C9CD593D2B29E /* RCTSegmentedControlManager.m */, - BEF6FA9F937441C166875C1AA970A9C3 /* RCTShadowView.h */, - 1DA56485C935BBB20C05FCF19C991703 /* RCTShadowView.m */, - 6B33C8498F9242E1FB81C79D40ACE51F /* RCTShadowView+Internal.h */, - DCC2396290513A2898C8A429CEFB1F69 /* RCTShadowView+Internal.m */, - 4041BF4FA2D93438B9C7A71F7CF3F4DF /* RCTShadowView+Layout.h */, - F7140AEFC9BE5032FB209FCFFBC6BFF4 /* RCTShadowView+Layout.m */, - 840BD5098C73C7B81F7154F994384FB0 /* RCTSlider.h */, - 7B6406E40908A277BFB0BB8BFEFF9318 /* RCTSlider.m */, - 51C1E4B4335F14E33F3FDE9C641C2237 /* RCTSliderManager.h */, - 039512007FDD56FED1242A1489EDCE4E /* RCTSliderManager.m */, - 2C7CAF26651F6B5039A6B632F237DCC4 /* RCTSwitch.h */, - FE49D72798C7E925EFCDDBD0DA890D72 /* RCTSwitch.m */, - D09CAD783A0155F346BC9342B8C32F38 /* RCTSwitchManager.h */, - 982613590578A9B1AF82B09330E579D6 /* RCTSwitchManager.m */, - 776F39EA259FAAA98436B0E6941D9539 /* RCTTextDecorationLineType.h */, - 6F75CCCD362839EA27A1E88A7D38E5F7 /* RCTView.h */, - 1EB9CC6761C92510F2A1701038DB5C48 /* RCTView.m */, - 529EC12D2F101280E3C43C739F6C4329 /* RCTViewManager.h */, - E9AD3970059AE65F3247E3C4E6BB0B65 /* RCTViewManager.m */, - 0ACA51A6D2C3F9821EFC1856E07D9B48 /* RCTWrapperViewController.h */, - 4797CCB8CF0CADB93DDE7716466A76EF /* RCTWrapperViewController.m */, - 28A8445B45ADDD0D98A9B455A3D4A6D5 /* UIView+Private.h */, - 364347B22922DD5DD9C39372A883717A /* UIView+React.h */, - A8950D4F5B76C82ACD9D3DE19D66C7F9 /* UIView+React.m */, - BED8794EF1CE7793B6DF06A7BF58A291 /* SafeAreaView */, - 9B32642A1429DF3458E91997E1486270 /* ScrollView */, + 7E37B494353BC92326215A87DDE58DC3 /* RNAudio.xcconfig */, + 04E88BBB16763437A6B910CD7A4F0F15 /* RNAudio-dummy.m */, + 87DD248D6D22A607F1A00BAA4BAC5156 /* RNAudio-prefix.pch */, ); - name = Views; - path = React/Views; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNAudio"; sourceTree = ""; }; 7A83CB14D0BEC3190F624AB14B944A6E /* Support Files */ = { @@ -9528,38 +9261,84 @@ name = demux; sourceTree = ""; }; - 7C4082D05688962E6BD6EFA7F5493A31 /* UMFaceDetectorInterface */ = { + 7AD6A715928D8830771C92C2879738F1 /* Pod */ = { isa = PBXGroup; children = ( - C5737129727C33E8405D47709B499CA0 /* UMFaceDetectorManager.h */, - F56ABECA97437AD5C6688F7820D7752E /* UMFaceDetectorManagerProvider.h */, - B3BA3C7E259E2F3B922C0063291B7D41 /* Pod */, - 87008391C5B2F8AAF04DFA26E3A9BC66 /* Support Files */, + 0101CB7DFC8C7409C1AC3C0958B94646 /* LICENSE */, + B2CD117AB511359CC39EB680BCC4F9DB /* react-native-background-timer.podspec */, + B516D4F1C98D06F555A19242E0ACDE7A /* README.md */, ); - name = UMFaceDetectorInterface; - path = "../../node_modules/unimodules-face-detector-interface/ios"; + name = Pod; sourceTree = ""; }; - 7D69D960A93AA8B4F5103C426EAB2DDA /* Support Files */ = { + 7AE31AC5AD689B9F880488494FA3CC27 /* Source */ = { isa = PBXGroup; children = ( - 844BA9402CAF4673325EAEF3443DB5FB /* EXPermissions.xcconfig */, - 800C36B746A8C7FFA715AAF29B0DE159 /* EXPermissions-dummy.m */, - 1D1087FB295F855F9ECF86ABB7A244A0 /* EXPermissions-prefix.pch */, + AA4A38F5FF1925F0F1A8A882101C0A6B /* KSCrash */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXPermissions"; + name = Source; + path = Source; sourceTree = ""; }; - 7DAC4EF0AF4B2BBB45D4FAE714FA6D0D /* Support Files */ = { + 7B0CB8ED7B9EB87DA99048A431371D6F /* Pod */ = { isa = PBXGroup; children = ( - 5983F4816DA7116A310D03C866384722 /* react-native-jitsi-meet.xcconfig */, - 847F5E8AC05CA3450E2AC437B6203F46 /* react-native-jitsi-meet-dummy.m */, - 6E4E90F74CF7C46B31C84DC34B9B86A3 /* react-native-jitsi-meet-prefix.pch */, + 22BF282F4FFF508DCCDC32D23BAAEBCA /* LICENSE */, + 770DE3D3478C6FAB108C8595F9243B15 /* README.md */, + BF91AEB48C097339C06386B8E2B40013 /* RNImageCropPicker.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 7BA6621DC36170C061FE889107E14D3D /* Pod */ = { + isa = PBXGroup; + children = ( + A92C9CD9472AB74A5BBEC01C72ADFEE7 /* EXWebBrowser.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 7C3E8C1944FA8DDAAA3785E50039F30D /* Nodes */ = { + isa = PBXGroup; + children = ( + F696DA3EBFF288A5C816CE8667952FFB /* RCTAdditionAnimatedNode.m */, + 83774A380755DDC391A5D33B432516E2 /* RCTAnimatedNode.m */, + AF013465EC9DC0655024BD7A9269EA82 /* RCTDiffClampAnimatedNode.m */, + C877FDEA02D041D94AE39EA4AC49B00E /* RCTDivisionAnimatedNode.m */, + B5BD2AE058D3B8E4EC9B105A6810DF46 /* RCTInterpolationAnimatedNode.m */, + DCA8F72E600DEB62A52E063C1F79509D /* RCTModuloAnimatedNode.m */, + 08B2B0D06B9D7B70691E8465DCFB7425 /* RCTMultiplicationAnimatedNode.m */, + 762DB7CC730FF5FC8363DCACD171FAD5 /* RCTPropsAnimatedNode.m */, + 0E1A052172075B138D20CB6E0DA31213 /* RCTStyleAnimatedNode.m */, + AEEF8E5AAEBE71DDE9CBEE820CAF7A4B /* RCTSubtractionAnimatedNode.m */, + 2F240CDA6B07F41B525AB438AAD13A06 /* RCTTrackingAnimatedNode.m */, + 4777AB381CC1284EDA0E611BE4614020 /* RCTTransformAnimatedNode.m */, + 116AD8B5532A6F1CFF3B9C0DC48E9F43 /* RCTValueAnimatedNode.m */, + ); + name = Nodes; + path = Nodes; + sourceTree = ""; + }; + 7DB4199C2C06F0C74B39271D0804C68D /* Support Files */ = { + isa = PBXGroup; + children = ( + 1306AE27564BBAEDB776685199620800 /* RNDeviceInfo.xcconfig */, + 354108294849DABE3C6AF4F97BEEDE83 /* RNDeviceInfo-dummy.m */, + 6D03AFDE0E1E1CC61ED1DD1998A8A9F1 /* RNDeviceInfo-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; + path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; + sourceTree = ""; + }; + 7DC2DCF8DBAA86CB2772C410A80F06D5 /* Support Files */ = { + isa = PBXGroup; + children = ( + 41423C2312227BEFFA941916BEF3F7EF /* RNVectorIcons.xcconfig */, + 0F5DC2C599B897F3BEA50CCF17E2A4CA /* RNVectorIcons-dummy.m */, + DC2E27570828D8BC5CD6B2655B0FD12B /* RNVectorIcons-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNVectorIcons"; sourceTree = ""; }; 7E495B68F11DF3905F5074AE99C88D1A /* Support Files */ = { @@ -9571,77 +9350,62 @@ path = "../Target Support Files/FirebaseAnalytics"; sourceTree = ""; }; - 7EAAF782590592126E0FCFD651341E5B /* ios */ = { + 7EB67AC4D5CAAEF0FB5E34AB04B0F1F5 /* UMCore */ = { isa = PBXGroup; children = ( - 860A8DB78BC5A5FBF3473CA31B3A10F9 /* RCTTurboModule.h */, - 4A28166F5EB00DB34183211A2D1723B3 /* RCTTurboModule.mm */, - 7076C6B8A820759FF5146F67E4D41BE2 /* RCTTurboModuleManager.h */, - F6B39B6D4C80F5220FF7B4BEB1385C8E /* RCTTurboModuleManager.mm */, + ECC8574ACD8B682E7BD00CD19CC347D2 /* UMAppDelegateWrapper.h */, + 939D3B59085756A2F61F6BF7B7E2406C /* UMAppDelegateWrapper.m */, + FCF241689B409BA1AEDCA04357CE6637 /* UMDefines.h */, + 890769207E3B5BDFD30AB0E1EF540773 /* UMExportedModule.h */, + 251F94B663BD2ABE2DB4601D2EBD781D /* UMExportedModule.m */, + 64767E09B935FC6198E25614C280E48D /* UMSingletonModule.h */, + 4AB8BEDA02B948B9CF3D16A5FA07FB63 /* UMSingletonModule.m */, + 232AE8BBB19AE477D2ABAA1A37BA2118 /* UMUtilities.h */, + 89F1EAE3BEFF77D4E4D61071E8192112 /* UMUtilities.m */, + C7B1DA4959C2459DF10755381BBD59FC /* UMViewManager.h */, + 5833F8205A66F0EF65029B4686DADB52 /* UMViewManager.m */, + 99572ED0E584F8F2F64190AC176CEAF1 /* Pod */, + 089EC0605EB99CABFFD2DFAC48D80986 /* Protocols */, + 0AD51DC137D26A46B37573017E07EA11 /* Services */, + 397BD12FCDC0D40E272F1DF168D4344F /* Support Files */, + 1E1BB3A958A6134C27944E943ABBE54D /* UMModuleRegistry */, + B2BF0E6DECE7BDF1E58F465495353EC0 /* UMModuleRegistryProvider */, ); - name = ios; - path = ios; + name = UMCore; + path = "../../node_modules/@unimodules/core/ios"; sourceTree = ""; }; - 7FE7360B06C0F4EC7304CF4E231F8F3D /* Yoga */ = { + 809DA650B9FE3CA2BFF00157C3324FFF /* RNGestureHandler */ = { isa = PBXGroup; children = ( - E4643ED4C614DE3BB7895CEF96737F6C /* Bitfield.h */, - 2C05EF2452A2C2DB0E3675D2310BD554 /* CompactValue.h */, - AC1FB84400BE54B01B8CC2369F9AA339 /* log.cpp */, - CC7084FC948D815959B7B6BD66180E9D /* log.h */, - B55ADC2A5496582F8AFC444AD38F7667 /* Utils.cpp */, - 301700A7498F4770349055016170FED9 /* Utils.h */, - C1A75FDDDF0E5191D973435550A1D43B /* YGConfig.cpp */, - 4BB9B51007AA889B4110B34AEADB4D68 /* YGConfig.h */, - BD04BBFFD98E6CCF56F6DC88D27CBBF9 /* YGEnums.cpp */, - 175A8EF975AD50B5903597726ACAA5AF /* YGEnums.h */, - F1CC6A252CDDF4E2C7ACBFF3437CA88A /* YGFloatOptional.h */, - 59E0C30FDA2D0947DA0B6405EDCEFD81 /* YGLayout.cpp */, - 758CD3CD79E5DDB960072B757A0FB978 /* YGLayout.h */, - 6166575A9AA35BDB52E4FF7CB028DF04 /* YGMacros.h */, - 94711D5042B4505C432640758E3DD356 /* YGNode.cpp */, - 04FCB3B53F211ABF7F5D1CB9BA5BC072 /* YGNode.h */, - 5473EF292720C0B7F284D45EEDEFDB15 /* YGNodePrint.cpp */, - F0A42F10B4353A6B82F07BC94C65BFB4 /* YGNodePrint.h */, - 0D1C019BBF979173B6FA5AA9F9B7E0D9 /* YGStyle.cpp */, - AE444786FB6B08993DD69E5B974FB80B /* YGStyle.h */, - 7849C1539ADB91DA05CC853D3A02A4C3 /* YGValue.cpp */, - C5AE3FE00396E6932F0970D875D46BDD /* YGValue.h */, - 6E81E575145F6A12290F3B76FEE61239 /* Yoga.cpp */, - 211816840BAB72CC0A83D2C77B433D11 /* Yoga.h */, - F4FAEA848200B94F5DBB61ABD25BDA58 /* Yoga-internal.h */, - EBE4C3F763C0FDBC9696E34ECE3D7F7F /* event */, - 2E58F7A03B72FEE995E7029DC657D12E /* internal */, - FFD9A1CC67DAB42FF18B464EF3B67EE7 /* Pod */, - BF416977555B20CD9E7F2415CCFB91D6 /* Support Files */, + 444E4ACBE9151BC990478E19774A356B /* RNGestureHandler.h */, + CAA6CA499C28225F63CDDB4490A823C4 /* RNGestureHandler.m */, + 0BFB9ED64D3E73DD26C9FB9ADACBAFAA /* RNGestureHandlerButton.h */, + 7C8566338D0CE244B41A17EFEECB1B15 /* RNGestureHandlerButton.m */, + 0EE93EA297E446D0F0B127A62699EA36 /* RNGestureHandlerDirection.h */, + 81DC36E08CB987E699DEF80CF74F8C3C /* RNGestureHandlerEvents.h */, + DD2C4EC3A9DBE95E18C1A8834F48B8E4 /* RNGestureHandlerEvents.m */, + 75478D68F54983EDF815FD6B21AB4D88 /* RNGestureHandlerManager.h */, + 867460556219C1066B4AEBAE5DD40420 /* RNGestureHandlerManager.m */, + 5F9CFAE2929D195D6DDAC223ACDE0C9B /* RNGestureHandlerModule.h */, + 7D95A5D04E8E6EBFBDC82D9ADB73C6CC /* RNGestureHandlerModule.m */, + 0844A5E812C2B4DCD793BCD90067E0A8 /* RNGestureHandlerRegistry.h */, + 2D323359ECBAC16A11D1D0E7F7BCE87F /* RNGestureHandlerRegistry.m */, + AAB6B2301A1A2F3EA0CD228181C5EB93 /* RNGestureHandlerState.h */, + E096419FE9FDA14CD8D75711559F08F8 /* RNRootViewGestureRecognizer.h */, + E974EFB1ACC03ABA3E4B9C5BD13871C1 /* RNRootViewGestureRecognizer.m */, + AC0FA67F000889D73CC0F7279FC1BC5B /* Handlers */, + 1025A0CC81BE980E333AE6B340B15E6B /* Pod */, + DFBB0B1A1DA3EC333D2439266492821D /* Support Files */, ); - name = Yoga; - path = "../../node_modules/react-native/ReactCommon/yoga"; + name = RNGestureHandler; + path = "../../node_modules/react-native-gesture-handler"; sourceTree = ""; }; - 835101B90FECFB488E0AF0ECE48F5FA8 /* core */ = { + 815673397C33C924AC3DE47178059DCF /* Pod */ = { isa = PBXGroup; children = ( - 7BF4B4144448496E54C8FD65B93FAEC9 /* LongLivedObject.cpp */, - 7B7B349EA50F8AE8B9F99371816BF896 /* LongLivedObject.h */, - CFD405DA602A5C664E8B3B4BF46D8EFF /* TurboCxxModule.cpp */, - 217D400F0B0F4B8BC509E20302435275 /* TurboCxxModule.h */, - 2AE7B2C51D8B868E01FA302B8377E76F /* TurboModule.cpp */, - 3EB7EB53901A20B1B293078861868CD7 /* TurboModule.h */, - A4BB49182ABA6724F004AC43D7881FEE /* TurboModuleBinding.cpp */, - 54B5CB36DEBB42F4E0649F4F12104DA0 /* TurboModuleBinding.h */, - A279F1B542DE104E59383DE13AF1BF8F /* TurboModuleUtils.cpp */, - B4F6C8A6A3866286BF9A7904CF34F639 /* TurboModuleUtils.h */, - 4C1AEA15397E8A0846F0D8352C344B8F /* platform */, - ); - name = core; - sourceTree = ""; - }; - 83CA5E3B513C52DBEC8F2E83055E11A2 /* Pod */ = { - isa = PBXGroup; - children = ( - F7173118028326463CFCE8346FDE6864 /* EXFileSystem.podspec */, + 495A57DB193FB42E8F444475F307CA4E /* React-RCTAnimation.podspec */, ); name = Pod; sourceTree = ""; @@ -9668,91 +9432,108 @@ path = "../Target Support Files/glog"; sourceTree = ""; }; - 8648513A8FDDFDD7441C1FF82E4C0377 /* Source */ = { + 873D7A8ED042DF4CA18F0D7240D23F32 /* Headers */ = { isa = PBXGroup; children = ( - DA03B9B48754FCB178E797AF28333F2A /* BSG_KSCrashReportWriter.h */, - 1AAC61CDA0D1E91E602C8E62F111D7F6 /* BSGConnectivity.h */, - AEEC4562BAA6DFDE5EB55EC8AC55EBD8 /* BSGConnectivity.m */, - 942AEE3E4F57DECD83E5EBE0AFE392E0 /* BSGOutOfMemoryWatchdog.h */, - AF6C543389427701B8E24695FBD02007 /* BSGOutOfMemoryWatchdog.m */, - EB4550CFD3271A2081B5E60D492F2376 /* BSGSerialization.h */, - 0C7D2DDE0A07033F8C70ECC67FD49A26 /* BSGSerialization.m */, - 08A54DFD20CFDAF1C6CCA111590904CD /* Bugsnag.h */, - 5FD95955D3B4765FEBC08CF7331782A6 /* Bugsnag.m */, - 78B3B6AE784BADDD5D758437222C65CB /* BugsnagApiClient.h */, - 59C41018B72E4C05F42F13F88BDA59E6 /* BugsnagApiClient.m */, - 2FBC5440BBB2AACD20BF4C86430C0086 /* BugsnagBreadcrumb.h */, - 520616552F4CDC6711A250D688991868 /* BugsnagBreadcrumb.m */, - C0B0D9A66B925A38ECB551B6EECA7B61 /* BugsnagCollections.h */, - E46B7F615951CA4250249F381CEC40AB /* BugsnagCollections.m */, - B689AF58C3DD12470EB05FC02F8EC95A /* BugsnagConfiguration.h */, - 56F09924EA9BFCA9898A396EFB5B5EEE /* BugsnagConfiguration.m */, - 7F349ED663509E3BB573D7629FF2E65D /* BugsnagCrashReport.h */, - E84473C6E9D1249733F85BCA8A49A849 /* BugsnagCrashReport.m */, - 23C17C7A5587F27D2D7D801FE7DA5619 /* BugsnagCrashSentry.h */, - 28FC507597E33C9E428BF771E4DCAEDA /* BugsnagCrashSentry.m */, - 0963C4631B59C1013B08D66EA1C5A730 /* BugsnagErrorReportApiClient.h */, - 8328EA677FA6F030DDE99F03CEC5AFFC /* BugsnagErrorReportApiClient.m */, - 4FBE47804588921FB73C3F709A9EB9B7 /* BugsnagFileStore.h */, - 94A3367D6B7EC2F152005C37DE694F99 /* BugsnagFileStore.m */, - 850C2CFF5FCDF71AD5682FC1547661A9 /* BugsnagHandledState.h */, - 54A1941CE328BA47B2753D09B05841F3 /* BugsnagHandledState.m */, - BFC13C3F24BC248D0401305095B8EDE0 /* BugsnagKeys.h */, - 5E3BDF1C000C4F208B97FE56FFED14A3 /* BugsnagKSCrashSysInfoParser.h */, - FED232F543BF5785F6BA1CEB05E83444 /* BugsnagKSCrashSysInfoParser.m */, - 5E381B5AAD30611617F9B25038A05E7C /* BugsnagLogger.h */, - BFA627CB0BA3FCCDE73A71C4D9DA1B2E /* BugsnagMetaData.h */, - 6D49AC7AE40388D4E49E1A9D883574C1 /* BugsnagMetaData.m */, - 4269682A8F921C81F7B30C45BBC1A6F1 /* BugsnagNotifier.h */, - 1C2DEF2C1A2D0834AA1405A05D03E207 /* BugsnagNotifier.m */, - BD69311CDB472762AFE70B71C60777BA /* BugsnagSession.h */, - 5BA667A7AF2D5B4AD9BD9CA5982CD70A /* BugsnagSession.m */, - 7F00EF48643A1BAD4E6F017588A3452F /* BugsnagSessionFileStore.h */, - B2B164D44CDCC3851E4EFADAA3996F2C /* BugsnagSessionFileStore.m */, - 0FA8BE1C77A9C04D22CD0E48C13C95F1 /* BugsnagSessionTracker.h */, - 47DEC900CCD9CE14D447199013E3446B /* BugsnagSessionTracker.m */, - A8F62D82A5A85DCA86571FB4CDC441A1 /* BugsnagSessionTrackingApiClient.h */, - 1F08252394DC6CCA1A0989728C147FD6 /* BugsnagSessionTrackingApiClient.m */, - 64AD98C457C1EDB766B2F16343FE2A0C /* BugsnagSessionTrackingPayload.h */, - 81845E318AA062F0C44C0E3D1D3676D0 /* BugsnagSessionTrackingPayload.m */, - D60EEAAAEB07F8DC954BA13280205199 /* BugsnagSink.h */, - 22EC4163D98C0F3DE47C975E317C6607 /* BugsnagSink.m */, - 6F4745F36F4679B7151B5A5C6E16846D /* BugsnagUser.h */, - B9679A8EA1775A60748680631AD4E02F /* BugsnagUser.m */, - 802A3A41E328262EE0AB23980D8BA7A2 /* Private.h */, - 2947ADD58BCB3A917BA40FEFB7ECE27E /* KSCrash */, + 993DDFFA84E8A994B6AC09447757291B /* RTCAudioSession.h */, + CF9F7DB21A2A14CB2AE384B653AA5DEC /* RTCAudioSessionConfiguration.h */, + A57E0A5F8BBA090989770FD2FA5E2333 /* RTCAudioSource.h */, + 714F8966B0022C25EFB19C8121C8A1AE /* RTCAudioTrack.h */, + 72BC6B60B0A09D910DD548F0595DC562 /* RTCCallbackLogger.h */, + 1641DBA87791889F408662B110B3529B /* RTCCameraPreviewView.h */, + CEE89D9C163D08ECD6D26CACC63BF904 /* RTCCameraVideoCapturer.h */, + B469ADF99DB0A81E5D4650618770D48D /* RTCConfiguration.h */, + 2620BB440055C702856DCB12E2D269B8 /* RTCDataChannel.h */, + 69ADE6A42D65F96620E5FD19507DC76D /* RTCDataChannelConfiguration.h */, + BC847E594505B79F7A7DAE96D8E3E6C7 /* RTCDispatcher.h */, + 46FDF54DB236D5FC45213D38571670DC /* RTCDtmfSender.h */, + 51C13E1EAA956D76E06508287F9753BC /* RTCEAGLVideoView.h */, + AE52CA7F96D5E3CE8B46C31F9E414FA6 /* RTCFieldTrials.h */, + 154E76A701E0DDB64A223E02120777B2 /* RTCFileLogger.h */, + 43A1EC448893D1FB0444E625C6DA1711 /* RTCFileVideoCapturer.h */, + 10917B250A173D7014A652DDF2962DE3 /* RTCIceCandidate.h */, + 1381F6524A4168C3E8DF6856DCAB10C8 /* RTCIceServer.h */, + D6536348D7EA758B755E6F305F8E9CD5 /* RTCIntervalRange.h */, + F8A365D0B4E5F0314EDC622C963F016A /* RTCLegacyStatsReport.h */, + 55BB970DFD46CBAD6C8010ABFE55B961 /* RTCLogging.h */, + 5ACF54C9EBE01939512FD4D0284F68CA /* RTCMacros.h */, + A0717351221BC0B32CF891C96A7E343E /* RTCMediaConstraints.h */, + 65DBF226D023A7A892612FC0E8A71FCA /* RTCMediaSource.h */, + C382E44A54CE80939AA8A0B167D84862 /* RTCMediaStream.h */, + 1BC402F226C200467A0107D936FDF844 /* RTCMediaStreamTrack.h */, + E7237D9437B3176A161A441610C857EC /* RTCMetrics.h */, + E97E2D9B3EF092F01154F69368E0A352 /* RTCMetricsSampleInfo.h */, + 8196CE0F013D59D198A59D107C34807D /* RTCMTLVideoView.h */, + 6F50A9C5FAE8F3DCD54A64C1685E8428 /* RTCPeerConnection.h */, + 88215E29BC10030C0FABBB211469FD55 /* RTCPeerConnectionFactory.h */, + FF275F2A6854281FCDE21005A98E2DC8 /* RTCPeerConnectionFactoryOptions.h */, + 59CA7C5E4ED263B42048A5E611944826 /* RTCRtcpParameters.h */, + FB188CD9E28A724A10E631C1CBF6F8F0 /* RTCRtpCodecParameters.h */, + BA985EDDB1B2141BD2DB206CF7639906 /* RTCRtpEncodingParameters.h */, + 3954AC91AC370061280233DC5CEC9212 /* RTCRtpHeaderExtension.h */, + 663D581798F1AE2F2F2F9C435F8711BC /* RTCRtpParameters.h */, + 6DB17FFC399B485798FDB4DCD00FE089 /* RTCRtpReceiver.h */, + 9B16F16A8A8155FB0E670DE07E555915 /* RTCRtpSender.h */, + DB8378033267237BDAD0B0118FEF6C8B /* RTCRtpTransceiver.h */, + 7770191861666A734A0B9671284F0096 /* RTCSessionDescription.h */, + 787277FA20763291550C252B95F59577 /* RTCSSLAdapter.h */, + BF50473D16917383025432A8E6223ABE /* RTCTracing.h */, + 9AF98F684872BB9551EC154FF2EBF317 /* RTCVideoCapturer.h */, + 838225B4B410F29C8105CC6E8206140A /* RTCVideoCodec.h */, + 7D375B3523440620FA94C07A7D560133 /* RTCVideoCodecFactory.h */, + BC1B6948DAE6D4318C3A409593A9B883 /* RTCVideoCodecH264.h */, + D99A9B57178C342225E779D23CB685F7 /* RTCVideoDecoderVP8.h */, + B5849A395CBF0287C431D4FCC26AC6ED /* RTCVideoDecoderVP9.h */, + A84DA91A56DFD58200D05FD24D67CC4A /* RTCVideoEncoderVP8.h */, + 2606612E3C04EA90C68007FBBAC72964 /* RTCVideoEncoderVP9.h */, + FDCB24C51F499E9FD1556BBA7FC9932D /* RTCVideoFrame.h */, + 7216A032565B6464422EFE14760A1DF2 /* RTCVideoFrameBuffer.h */, + 726C1B2664776220FDC64EA7067EFFFA /* RTCVideoRenderer.h */, + F9BD112F846017FCC006D9367D4D9979 /* RTCVideoSource.h */, + 64895D06E2354A47652A676488CD63F2 /* RTCVideoTrack.h */, + 7EF374BC8CB16FB4250B0B4BA62CEADA /* RTCVideoViewShading.h */, + A073A96BCF15355311D8FADBE1A10813 /* UIDevice+RTCDevice.h */, + AB1349B7B63DF3A789D37D4B41E9CCB4 /* WebRTC.h */, ); - name = Source; - path = Source; + name = Headers; + path = Headers; sourceTree = ""; }; - 86600040119FA1C1FAE3267C2CE0E702 /* Pod */ = { + 87645807DDBF61B5D3BC77C913528FA3 /* React-jsiexecutor */ = { isa = PBXGroup; children = ( - 53A65B402C67A91B50D4AF5E7B143028 /* RCTRequired.podspec */, + 775C5F2D9351588B42DE522662B0967E /* JSIExecutor.cpp */, + 5A874A22D7671C43E98832DCC959F89F /* JSIExecutor.h */, + 566D1139888E4299C0F78272DF7FCCD5 /* JSINativeModules.cpp */, + 201C524D71C41C36DDC74B7D168B99BA /* JSINativeModules.h */, + 920E95F9BC17CACBF9D15DDAAD384224 /* Pod */, + AA3FC164FCBFF5893852DB3B47AFD3E1 /* Support Files */, + ); + name = "React-jsiexecutor"; + path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; + sourceTree = ""; + }; + 87C12CE33BC83605C1A8405D3B1FF049 /* Pod */ = { + isa = PBXGroup; + children = ( + 8CD83D4E3353580FA550B6D46653C7E2 /* React.podspec */, ); name = Pod; sourceTree = ""; }; - 87008391C5B2F8AAF04DFA26E3A9BC66 /* Support Files */ = { + 87CBB4E55EAA8F3F20C38768016D1D1A /* Default */ = { isa = PBXGroup; children = ( - FF83D25E147C6C117FF33937820128E1 /* UMFaceDetectorInterface.xcconfig */, + 39B6B087903CDC0E9D21105F318253E5 /* Base */, + A011B133F9C7D50A62FFC5E8694F4B9A /* CxxBridge */, + D887EB0FD9D2E7A9947C3095C668551D /* CxxModule */, + C451B1308F0E26F1AF02BBF7D7C80490 /* CxxUtils */, + EEE3E1D7FF52CEBEB5F11CB28DDC5ED2 /* Modules */, + A72AE1EF1CC741239DAEE96288552A98 /* Profiler */, + 95012776164CF9402C5B693CE4491344 /* UIUtils */, + CAF62788774BE8A54C7B4244906A36F1 /* Views */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; - sourceTree = ""; - }; - 87D340F77BC2B1B56306586A871E861C /* Support Files */ = { - isa = PBXGroup; - children = ( - 80730B8B348D13FE7DE65F28AC23D786 /* React-CoreModules.xcconfig */, - 854ADFE42484EFDD278C8B4ACC98C157 /* React-CoreModules-dummy.m */, - 3144AB7B187E397BB003F7227C641EA7 /* React-CoreModules-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; + name = Default; sourceTree = ""; }; 88161288E651ADFA386D29C1DD35472B /* Support Files */ = { @@ -9764,190 +9545,157 @@ path = "../Target Support Files/GoogleAppMeasurement"; sourceTree = ""; }; - 89B53159D738A80AB1EF6B88DC5C626B /* EXHaptics */ = { + 897573D64A02F00485784BF103A3968D /* Support Files */ = { isa = PBXGroup; children = ( - 6825151067F4F9C9692BB07A19D757AD /* EXHapticsModule.h */, - 3D11595D8227CD30F9B941E2A0FAEE55 /* EXHapticsModule.m */, - 5B1C485FB995C6D9EF1459E807D5C914 /* Pod */, - DEC8E8F77B0A70AE432082B6448EAAAC /* Support Files */, - ); - name = EXHaptics; - path = "../../node_modules/expo-haptics/ios"; - sourceTree = ""; - }; - 8A759D55712585293225EED82BCAD443 /* Transitioning */ = { - isa = PBXGroup; - children = ( - 93C302F55AD5D4039C0470EF2847D217 /* RCTConvert+REATransition.h */, - 002C4A2C1A9B72F1451A2D85943B13E4 /* RCTConvert+REATransition.m */, - D0303932CBA19C4343EA41C633571533 /* REAAllTransitions.h */, - 9CF5991AF2EB1CF341B46ED915556AFB /* REAAllTransitions.m */, - A71BBE57928DCF8B42CC78690CE5283F /* REATransition.h */, - 30EB7CA8BA2F24A1C99FF5190B92E6D9 /* REATransition.m */, - 1292D738A1B53982D585A05E833B3E32 /* REATransitionAnimation.h */, - DA86301CFF5D04DF5A63F5A98C87DADD /* REATransitionAnimation.m */, - 04333F8B209F6409F87D2E267F38CD03 /* REATransitionManager.h */, - 2C27F860BA508C99E69FFF02244A645B /* REATransitionManager.m */, - 4D935A965951AD2A988F3D4908D8060F /* REATransitionValues.h */, - 541BA8CA202444E82155D24B413099D1 /* REATransitionValues.m */, - ); - name = Transitioning; - path = ios/Transitioning; - sourceTree = ""; - }; - 8B1F56B75EF4D248EE8C952ACCB82098 /* perf */ = { - isa = PBXGroup; - children = ( - 89A4CF8AE47DC2DBA2A6C727BE40BB45 /* RNFirebasePerformance.h */, - D0B2AB376B2EA106097A34E061DF4E7E /* RNFirebasePerformance.m */, - ); - name = perf; - path = RNFirebase/perf; - sourceTree = ""; - }; - 8B3ABC3C38A94AEEE60954F5A9B502CA /* Support Files */ = { - isa = PBXGroup; - children = ( - 617F712DE7450321E2D0378105C832BD /* UMFontInterface.xcconfig */, + 96C8FEC1DF44C11F0D855096EB4729D5 /* RCTRequired.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFontInterface"; + path = "../../../../ios/Pods/Target Support Files/RCTRequired"; sourceTree = ""; }; - 8BB1938442E9230FA02CB87AE49FAB13 /* Support Files */ = { + 89B30C49BC60B3CF89377A92D888C866 /* EXAV */ = { isa = PBXGroup; children = ( - D2D84CF223A77580E5ADD76F41954CB1 /* RNFirebase.xcconfig */, - E3B0D166FD429889916B0214429CE1AC /* RNFirebase-dummy.m */, - 914AB8A600DF09859DA06A4430CF4913 /* RNFirebase-prefix.pch */, + BF9B218C823C2D271138977982DD3210 /* EXAudioSessionManager.h */, + A1A94FCEDB403641E8B272D81DD6E801 /* EXAudioSessionManager.m */, + DD5AC944A40B5905B0C61A7480154642 /* EXAV.h */, + 83584948FF87A463B67E7CE945146669 /* EXAV.m */, + AAC17B2AC17FE48D56861DD5EAD666A0 /* EXAVObject.h */, + A650C8652681E3C5CDF27E082D957EB4 /* EXAVPlayerData.h */, + 68816F470AA9306413FF3B71D165AB95 /* EXAVPlayerData.m */, + CB84BE947F697E00DFAF23320F89138E /* Pod */, + 261DCB588BD3E44BD03159D3D1879B2E /* Support Files */, + B715F0355466E7980D0F69BFF9652CBD /* Video */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFirebase"; + name = EXAV; + path = "../../node_modules/expo-av/ios"; sourceTree = ""; }; - 8BE3D8CF2A1E395970F36B22391178E3 /* Pod */ = { + 8A35E8B993B288C4E5EBDC0338DB4E0B /* React-Core */ = { isa = PBXGroup; children = ( - 5473BA03156039A43CE7FBC9218B8EF6 /* LICENSE */, - 3D3DEA3A19FC1E808E61CB2EBF10613B /* README.md */, - D1A142ED1A79FD8DDE432ADE1BBC91CE /* RNScreens.podspec */, + D60AD409CB9C28BC7135A6E6E7B73967 /* CoreModulesHeaders */, + 87CBB4E55EAA8F3F20C38768016D1D1A /* Default */, + 408CFF7087CE9A7E845F478E47404D2F /* DevSupport */, + E53E2746CE9D85BF11EFE811A69EB45C /* Pod */, + 4DEBBCD8A14109D5832FB0E8C04E566C /* RCTActionSheetHeaders */, + 1D57DE862F3630A804974DFB6F595436 /* RCTAnimationHeaders */, + D2EFB8A7174E6458B1FBAA51B7BE5707 /* RCTBlobHeaders */, + 52F70F97A245F77A2EC8A40658644F70 /* RCTImageHeaders */, + 997154A1D78273CFBD061EFB773927F6 /* RCTLinkingHeaders */, + C3E32B68A36D31E31E80C247002F31B6 /* RCTNetworkHeaders */, + E1372A1DEB8938B47362492F453407AF /* RCTSettingsHeaders */, + 2DB301EFE40B3576CDCF842889E4B664 /* RCTTextHeaders */, + 401A50569764357CB25B127D780066BA /* RCTVibrationHeaders */, + 33A16D8C61AAB4DC00F3F0A57D3A1869 /* RCTWebSocket */, + 94A0F09B5F323CE4902569C5A77C1149 /* Support Files */, + ); + name = "React-Core"; + path = "../../node_modules/react-native"; + sourceTree = ""; + }; + 8B73D1C4AA31A9F4974A07712B0BB553 /* Pod */ = { + isa = PBXGroup; + children = ( + 4F1A4DC7D806E7BE34BF58A9E2CA00D2 /* LICENSE */, + 1D76F72E14D8049C107A0F2656C6DCA8 /* README.md */, + 8B338B08C75FFFDDB14986E6C98510B2 /* rn-fetch-blob.podspec */, ); name = Pod; sourceTree = ""; }; - 8CF150B59F35B55BBD4100AA7B10867D /* Pod */ = { + 8C98A82AC757BD2350627FF7936F5CAA /* UMReactNativeAdapter */ = { isa = PBXGroup; children = ( - 7D5E8EFCB31507CF01F3A4C9CEB4B52C /* LICENSE */, - EF184C6984285990C055A6BE1A6CCA88 /* README.md */, - E9DDB0E8A16886923ECAB92CA093177A /* RNReanimated.podspec */, + B443A642A5EA66F29AB689D39DBE42AF /* UMBridgeModule.h */, + 033462D2767938DC8F549D4DD74674FB /* Pod */, + 5C706C30AD2D3C2A070A63F5E2882913 /* Services */, + 484B0FB62F8739B7C3FBF3B34F374FB3 /* Support Files */, + 6175B9748A54A11D0B07E477C00E74E6 /* UMModuleRegistryAdapter */, + EFAE2F7348B962F0F9D816F091E270F6 /* UMNativeModulesProxy */, + 3C46A484B60A26B77BC7FE93C8B6A6B0 /* UMViewManagerAdapter */, + ); + name = UMReactNativeAdapter; + path = "../../node_modules/@unimodules/react-native-adapter/ios"; + sourceTree = ""; + }; + 8DD1765D7CEA3A3BE59B21E870F031E2 /* turbomodule */ = { + isa = PBXGroup; + children = ( + 29C1E1970967B398787AEBC9CD380C95 /* core */, + ); + name = turbomodule; + sourceTree = ""; + }; + 8F6218790189CDAB1E1AA84C9FA67531 /* ReactCommon */ = { + isa = PBXGroup; + children = ( + A07C46D9AF86C0E51F39349B0E7C4E44 /* jscallinvoker */, + D837B77AD9D7DF072EAC297292EF1E9F /* Support Files */, + 8DD1765D7CEA3A3BE59B21E870F031E2 /* turbomodule */, + ); + name = ReactCommon; + path = "../../node_modules/react-native/ReactCommon"; + sourceTree = ""; + }; + 8FC475294EC8C7FD16B97C82E4ED108C /* Pod */ = { + isa = PBXGroup; + children = ( + 5F5A7E23867B636C356012B22557ED2E /* React-RCTLinking.podspec */, ); name = Pod; sourceTree = ""; }; - 8D3BDA29E85E0730D2EDC2F2A2FDD6CF /* Support Files */ = { + 8FEBE4808D360DF610ED70C542A25BB2 /* Frameworks */ = { isa = PBXGroup; children = ( - 7ED0ED0C53429C59231D1524A1283A71 /* UMCameraInterface.xcconfig */, + 1EC99E080317C598F9A1D756CCD331E5 /* JitsiMeet.framework */, + 8F655936934C9AECA7C695541C3AF39F /* WebRTC.framework */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; + name = Frameworks; sourceTree = ""; }; - 8E02F79D88C6F5756B666F92CAAF950C /* react-native-keyboard-input */ = { + 8FFB5B03B52410E1B916DC1215A3B58E /* EXFileSystem */ = { isa = PBXGroup; children = ( - C3EC7F7FB754DEA7AEBC68461AE7A500 /* LNInterpolation */, - CD47CF6EEC3C7DF5CF6D38253EDA7699 /* Pod */, - C7347667AFFE47235CCF766E45803F6B /* RCTCustomInputController */, - D1D89B1D878DD645C6BDA6FCD902C7F0 /* Support Files */, + 54460D655C793C68BA47321861CB11F3 /* EXDownloadDelegate.h */, + B0828B37E9C8FA2FCCDABEC6D37B29F8 /* EXDownloadDelegate.m */, + A21DA24A169977277D085E1318E4EC63 /* EXFilePermissionModule.h */, + CB9DAACEDEC6F23F306D137EB7802662 /* EXFilePermissionModule.m */, + A96264404BE6A0015E902B4B6928BE6F /* EXFileSystem.h */, + 721566D0385A7429019E02ABB5197FCD /* EXFileSystem.m */, + 5A737DB17929F15A37BFBD246677EE5D /* EXFileSystemAssetLibraryHandler.h */, + 64ADA5A37C6C80A0E4627AC0385FF7DA /* EXFileSystemAssetLibraryHandler.m */, + 61291D7351199DFFA919257072AE176A /* EXFileSystemLocalFileHandler.h */, + 5B17F5FD7E71FEDE5A02B0200C443138 /* EXFileSystemLocalFileHandler.m */, + 6AECE095C4C98653878177EF8CC0FEFC /* Pod */, + D1E3D368F0836A74CE9A638FD0E9EF34 /* Support Files */, ); - name = "react-native-keyboard-input"; - path = "../../node_modules/react-native-keyboard-input"; + name = EXFileSystem; + path = "../../node_modules/expo-file-system/ios"; sourceTree = ""; }; - 8E0A18ADD003D58761F491B120FD88C8 /* Pod */ = { + 9043CADA0B18AA77E87CCE60D2F863A0 /* Surface */ = { isa = PBXGroup; children = ( - A0A545C05573F12064B7325C73301F18 /* LICENSE */, - 08ABFDABBF149D49EE4E60FDB3604098 /* README.md */, - 09D7A1C1F65DDA1FA90D7A6C3926FF95 /* RNFastImage.podspec */, + 2129528167582F9ED8F7C99BE58F50A3 /* RCTSurface.h */, + C9A49FF778C3EC6F3ADAB38E8C2ECF0C /* RCTSurface.mm */, + 96B349183F53F57468E745F360A5109D /* RCTSurfaceDelegate.h */, + 5FC5F9BCF241EF73CDFB7493D7FE5198 /* RCTSurfaceRootShadowView.h */, + B82D17E046E84B7E6B9516A36ED373FE /* RCTSurfaceRootShadowView.m */, + 7D40F6A39BDA61424A9DDD375D53593B /* RCTSurfaceRootShadowViewDelegate.h */, + F80E9BD884241B5FE43821701D338F29 /* RCTSurfaceRootView.h */, + EF1DBFE040EC230677A0E19DE0CE562C /* RCTSurfaceRootView.mm */, + B544D7779B342794E331D070204D03FB /* RCTSurfaceStage.h */, + 6486B62D1BE044C670C172DFF3227E97 /* RCTSurfaceStage.m */, + C58C2D12BB4864EDCD37473B576FD877 /* RCTSurfaceView.h */, + D182C2AE3A508C0EF6843366FF367D27 /* RCTSurfaceView.mm */, + 853F8F5BA89A980C0FFC570294958EEB /* RCTSurfaceView+Internal.h */, + 5B0108FAA8051326527284A2099913E8 /* SurfaceHostingView */, ); - name = Pod; - sourceTree = ""; - }; - 8E8C306DF978F84B3F94C84E57B738F9 /* Pod */ = { - isa = PBXGroup; - children = ( - 317B34867118020D733C7CDA101AE215 /* LICENSE */, - DB5B650D6FE6BC53FBB72B33C0987CA6 /* react-native-video.podspec */, - 6BA3B7E2AE1C7C3F91FC867049DA2E60 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 8ED07E2F6925F11244A690A484406A18 /* Support Files */ = { - isa = PBXGroup; - children = ( - FA61FB17BBA7E27DED4FFC12A673BC10 /* RNDeviceInfo.xcconfig */, - 893CF7C62DB6E217ADF4DC9828608CFF /* RNDeviceInfo-dummy.m */, - 827E125A3A7B2F774A4C468AB0C5D420 /* RNDeviceInfo-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; - sourceTree = ""; - }; - 8F6B42B61E62188E5048743364BFC403 /* RCTActionSheetHeaders */ = { - isa = PBXGroup; - children = ( - ACDEEA55D44FB38E92FBEF46803F44C6 /* RCTActionSheetManager.h */, - ); - name = RCTActionSheetHeaders; - sourceTree = ""; - }; - 8F8B6CC52F931318F1A715A0879A394B /* bugsnag-cocoa */ = { - isa = PBXGroup; - children = ( - 8648513A8FDDFDD7441C1FF82E4C0377 /* Source */, - ); - name = "bugsnag-cocoa"; - path = "bugsnag-cocoa"; - sourceTree = ""; - }; - 8FFE14E1E851FFFEF3DB5E91D8B813C0 /* jsi */ = { - isa = PBXGroup; - children = ( - 1446835FEDECC51A317070EAD5239174 /* decorator.h */, - 32A58D33C411245EC750F5EC30D1E527 /* instrumentation.h */, - A87B08921DA1FD316868980B3BC5563C /* jsi.cpp */, - AB2DA7EA4AA7965B657836614D3A0711 /* jsi.h */, - EE90A65E06B102DC4868B237FD7423C7 /* jsi-inl.h */, - 714D00DA0DC7E0E895AF109A52359A72 /* JSIDynamic.cpp */, - D201004AC766A6E485B5083CBCCB5A61 /* JSIDynamic.h */, - EB2F3DC5822BA6D5641A4C9806F92AAD /* jsilib.h */, - B45B341F157B58B3C22B654E1CBD01D5 /* jsilib-posix.cpp */, - 13A364609C20443EDD280E1FFE3D8BCD /* jsilib-windows.cpp */, - A8409E0D848A65CD708D222A71A51347 /* threadsafe.h */, - ); - name = jsi; - path = jsi; - sourceTree = ""; - }; - 9005149F2FA787409250BAD7A51CA624 /* RNReanimated */ = { - isa = PBXGroup; - children = ( - DD54DCB986E15163233721E9EEB78F73 /* REAModule.h */, - 7C2E004F8107F52F54333F8F5921536C /* REAModule.m */, - A1271D4DCA0FBAF6EC0F4BA51E1D196B /* REANodesManager.h */, - BA983F831A1606960AFB450FE6AC2EC6 /* REANodesManager.m */, - 4699E8755D889A793A6041F26BEA5057 /* Nodes */, - 8CF150B59F35B55BBD4100AA7B10867D /* Pod */, - 9BAC5E0AA0CD4C1AC3D514AB13A053DF /* Support Files */, - 8A759D55712585293225EED82BCAD443 /* Transitioning */, - ); - name = RNReanimated; - path = "../../node_modules/react-native-reanimated"; + name = Surface; + path = Surface; sourceTree = ""; }; 905F72DE967C9D9AA1DC5B4F0851572E /* QBImagePickerController */ = { @@ -9978,115 +9726,257 @@ path = QBImagePickerController; sourceTree = ""; }; - 91765E4D941EA9BA56EA8B2CEA5A7FF9 /* React-RCTNetwork */ = { + 908C29DF4A8DD73C495337C573AA7BB2 /* Support Files */ = { isa = PBXGroup; children = ( - 8B28F70FA859C6D9B8123D23EB436395 /* RCTDataRequestHandler.m */, - DF1A6D5E96C959D1115FD4F7297B0B91 /* RCTFileRequestHandler.m */, - 08F2428556DB3754851094706C1583AA /* RCTHTTPRequestHandler.mm */, - 3A2A6E90B220EA4C8894E1AA4826629C /* RCTNetInfo.m */, - E3CB2E86953B06D0BC70EC78B4128E41 /* RCTNetworking.mm */, - E261F254D70CB13AFD69F6D63DE19484 /* RCTNetworkTask.m */, - 1EB3453AFA56A870F77E5111722416FD /* Pod */, - 76609BA350710DA80B0A51B2478AAF9D /* Support Files */, - ); - name = "React-RCTNetwork"; - path = "../../node_modules/react-native/Libraries/Network"; - sourceTree = ""; - }; - 919653B6EABAB8F9A2494B610442B1C6 /* Support Files */ = { - isa = PBXGroup; - children = ( - 5C449790E042A3AC81AB73A2CE6B3EDD /* rn-extensions-share.xcconfig */, - 30797487CF57A7A232B61D28D62BEB27 /* rn-extensions-share-dummy.m */, - 83A5D5C55F98E6B8620483F875D14213 /* rn-extensions-share-prefix.pch */, + 619246498A0A6A66E5E04CDDDD853542 /* EXAppLoaderProvider.xcconfig */, + EF91170238E06257631C5B0654BCBAE6 /* EXAppLoaderProvider-dummy.m */, + 7EB732C343DADB2C57363E1BB537C158 /* EXAppLoaderProvider-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-extensions-share"; + path = "../../../ios/Pods/Target Support Files/EXAppLoaderProvider"; sourceTree = ""; }; - 91AAADFE31119C3EFDA9D82A512F9C28 /* UMReactNativeAdapter */ = { + 91B62AA0DC6EF46DB2CD53C5BCD2A1E4 /* LNInterpolation */ = { isa = PBXGroup; children = ( - EA70A056927DA6B56FE74784469829D5 /* UMBridgeModule.h */, - F09D4D9FBA74B91C07058D28F72E735C /* Pod */, - 6AF9046E1663D336EE93D73721D40D72 /* Services */, - 44C05DBA63BDC4804EDBBD0DB72C3916 /* Support Files */, - E3258550B957B325DF95664E736F71AF /* UMModuleRegistryAdapter */, - 69B20946AED9AFA03E992A549BD25785 /* UMNativeModulesProxy */, - 09766F1D2553DFEC460845E89C81E3C0 /* UMViewManagerAdapter */, + 24AF0CEFAE4F634EACCB528E4D7EB495 /* Color+Interpolation.h */, + 3CEFA9FAB49EC1AA776F01C2C2163C68 /* Color+Interpolation.m */, + A355BFFC5DB9F1BDF85A32D211C8ECDE /* LNAnimator.h */, + F5E13D4427DDCDE77FC01C304B75DD9C /* LNAnimator.m */, + B9801943FF6EE3E75F3DD169BA3E45B5 /* LNInterpolable.h */, + 69295757F6021A84ED2DFD60E89869D3 /* LNInterpolable.m */, + 63C86DC2C6226AC8085ABDE12400FDCF /* LNInterpolation.h */, + EBA48551C603648180A104803CF66318 /* NSValue+Interpolation.h */, ); - name = UMReactNativeAdapter; - path = "../../node_modules/@unimodules/react-native-adapter/ios"; + name = LNInterpolation; + path = lib/ios/LNInterpolation; sourceTree = ""; }; - 920E59C7B103F3D70FB222143F14F33A /* UIUtils */ = { + 91F599B97ECE8957ADF69CDCA13B9DCE /* Development Pods */ = { isa = PBXGroup; children = ( - 3A16FA363552E8747CB528C5DAA63C75 /* RCTUIUtils.h */, - 5ED3276AB5A7CC1FC6981F6BFB803FC4 /* RCTUIUtils.m */, + 496D52DC3734706909B422A0CAC868F4 /* BugsnagReactNative */, + AC5BF2E683499BB8F6004C8C1C0D6E18 /* EXAppLoaderProvider */, + 89B30C49BC60B3CF89377A92D888C866 /* EXAV */, + 468701A202A1A7399863F00B3B413009 /* EXConstants */, + 8FFB5B03B52410E1B916DC1215A3B58E /* EXFileSystem */, + FAC4362E0067752B0830A26C621AB51F /* EXHaptics */, + 01FC57A48478760E41765ADBD784DEBA /* EXPermissions */, + DE1C2C02B477B0BB3107F8997CF76733 /* EXWebBrowser */, + 132B86BB5872A7A8F5CD78D7818B2A30 /* FBLazyVector */, + 6F7E435ACF20CC8FFD966E649249C0E5 /* FBReactNativeSpec */, + A86F730674F3D285172E22683708A8DD /* RCTRequired */, + C100B1E1DA0626D5EF1E52320481B081 /* RCTTypeSafety */, + C8F00516700FB00672B6FB1987A7D227 /* React */, + 8A35E8B993B288C4E5EBDC0338DB4E0B /* React-Core */, + F6E38164083E57CE3EB44C4D36F08B3A /* React-CoreModules */, + D4DCF974D8C7836E4E5BB81C271667E7 /* React-cxxreact */, + 58AAEFD9779AE008FEA55CB6FDA2705E /* React-jsi */, + 87645807DDBF61B5D3BC77C913528FA3 /* React-jsiexecutor */, + 4A8E6C7EB14A233946608B1AB301D4C0 /* React-jsinspector */, + B0415A77E95F49BEC70A051E7E5180DD /* react-native-background-timer */, + E18065E349C6430BAFFE4136903440C2 /* react-native-document-picker */, + 0B072FECE7AEED933F1BDA63578A94FA /* react-native-jitsi-meet */, + 62DC43BB2BEC60247810738357A5B1FF /* react-native-keyboard-input */, + A8E3678D8E647782D87293B42B6DEFC3 /* react-native-keyboard-tracking-view */, + 1AD4B5A4E932F85DE3D40E8521E91088 /* react-native-notifications */, + DE166B6954BB790B03156C2EE3AE154A /* react-native-orientation-locker */, + 1F190A854C916353F5D0234C5FEC5163 /* react-native-safe-area-context */, + E0187D80BD0A6E55E0F2B6ED0D55D9EE /* react-native-splash-screen */, + 3FEC0EDBB080B3783D92410CD38C0FC0 /* react-native-video */, + 3E748E08C982B93AD76951B2117F937C /* react-native-webview */, + E64FDCDD238B6325086B001D7DDC27ED /* React-RCTActionSheet */, + D6936387F6ADFA9B9410EEE5FEE5835D /* React-RCTAnimation */, + 1767C1DD3F7327E290E7ABE7F2FB67FE /* React-RCTBlob */, + 7853BCEEAED2DAC4C22A18B7C23FF051 /* React-RCTImage */, + 29944DF13C2E54EC655501858F6183E2 /* React-RCTLinking */, + 6200D361B999B07DC442EE3A89C15376 /* React-RCTNetwork */, + BD79CDF6C6936DC603E5EED4C73C9F9D /* React-RCTSettings */, + EF0B78A35B9B81A33899CFFC6E93D57E /* React-RCTText */, + BEC63E0545AA2FFE66584C8251AC587E /* React-RCTVibration */, + 8F6218790189CDAB1E1AA84C9FA67531 /* ReactCommon */, + 54AA9C7A9F935A486FB9976782D45057 /* rn-extensions-share */, + C24702E537E96FAF56D6A3A9346286DF /* rn-fetch-blob */, + 9E40E52053A5061CF62D3158C0005A76 /* RNAudio */, + F8312B6580A4C867AAB871C59C74C6F4 /* RNDeviceInfo */, + 5FA251EB23717ABBA79A2B720C274831 /* RNFastImage */, + 13CB49A536D43E0F916DA58B161B63B2 /* RNFirebase */, + 809DA650B9FE3CA2BFF00157C3324FFF /* RNGestureHandler */, + DDBF7E7B546118A3B452F0D7BA4606FE /* RNImageCropPicker */, + 62B46AE3CBBAA7AEB4D6FBA0F10C456C /* RNLocalize */, + AC6A120CACDEB584F2084E8EFC0047D7 /* RNReanimated */, + F0957677BDF1419922AA88F5C7A6A669 /* RNScreens */, + 4FAE05EB22F85C4C38C70921DF981959 /* RNUserDefaults */, + BC73608A70D523C3468C05DEF42D30DF /* RNVectorIcons */, + 4AD8087E0497C8D0634DF75A82B61B7D /* UMBarCodeScannerInterface */, + 4C864CBCE69EEF8FFB1983DB681079C2 /* UMCameraInterface */, + 3EFAB349B99C07EB5DBC93FF47CAAB63 /* UMConstantsInterface */, + 7EB67AC4D5CAAEF0FB5E34AB04B0F1F5 /* UMCore */, + 7376A97E02F04B0A9D0B6000F1236415 /* UMFaceDetectorInterface */, + E021F44994F30AA58641831078089425 /* UMFileSystemInterface */, + DAB8CAE4C8C7689318BDB201FF03F3F7 /* UMFontInterface */, + 2803C2B5DF9725682DEA908EF1E8024E /* UMImageLoaderInterface */, + D0CA0CBA3FBF6D6910BCD0A6DBF3CEF8 /* UMPermissionsInterface */, + 8C98A82AC757BD2350627FF7936F5CAA /* UMReactNativeAdapter */, + DE9934EC75AF0FF71E86D7715298F2BC /* UMSensorsInterface */, + 45F7089BEA71DF91EAE4BC14BFAF8466 /* UMTaskManagerInterface */, + 4F2D97E8B8A1ADCCEE7D5B7593A9274E /* Yoga */, + ); + name = "Development Pods"; + sourceTree = ""; + }; + 920E95F9BC17CACBF9D15DDAAD384224 /* Pod */ = { + isa = PBXGroup; + children = ( + 1706C6BF039DB985DA39DCF2E6586CB7 /* React-jsiexecutor.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 9351AEC820875CCBDA9F6CD2F7F348BE /* Support Files */ = { + isa = PBXGroup; + children = ( + 6201253636E913A3A0D972B978096D59 /* UMFontInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFontInterface"; + sourceTree = ""; + }; + 9412168C9269DD09811FCC49D98D2F5C /* Support Files */ = { + isa = PBXGroup; + children = ( + C3086FDE80F3C329FBDF3470894E6E73 /* RNFirebase.xcconfig */, + E95E8A846A57DB75E2F787FD8AB962E8 /* RNFirebase-dummy.m */, + 14087C329CD830DF4347A62B752415E1 /* RNFirebase-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNFirebase"; + sourceTree = ""; + }; + 94A0F09B5F323CE4902569C5A77C1149 /* Support Files */ = { + isa = PBXGroup; + children = ( + B06861B6BCD98E2920DE1208E03D1B08 /* React-Core.xcconfig */, + FC178F385C4B458AA797C2F4281BA561 /* React-Core-dummy.m */, + 9E76B5C93BF8EF0CBFC0DEE40AFF59E3 /* React-Core-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React-Core"; + sourceTree = ""; + }; + 94B7274D6E5D38AF52C7F126D86561D7 /* Pod */ = { + isa = PBXGroup; + children = ( + 912BB1BF72FF15F45FB0B8ADE8812570 /* LICENSE */, + 0FDAD75CBC0F4B18FF7D5EF3AE037225 /* README.md */, + 0EDC0C9CEBF17B69830466FA69FFC7BF /* RNDeviceInfo.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 95012776164CF9402C5B693CE4491344 /* UIUtils */ = { + isa = PBXGroup; + children = ( + 848B065D7A2A028195742CCE26F6C524 /* RCTUIUtils.h */, + 72A868378DE5C5494FFD4E6B80935751 /* RCTUIUtils.m */, ); name = UIUtils; path = React/UIUtils; sourceTree = ""; }; - 9387ABAC0FC758A2CB3B0D8957BF8412 /* React-RCTImage */ = { + 983471F60B05255D89C4BF1672A379C5 /* Products */ = { isa = PBXGroup; children = ( - B927CA7FE290FDC81A3D3CE25E8BD65B /* RCTAnimatedImage.m */, - 30B0F3F2328B38797B3B0FBFC8593A2D /* RCTGIFImageDecoder.m */, - 37E11CC366C21475A840AF9A7F291CF2 /* RCTImageBlurUtils.m */, - 21430C8D5EAB9BE7EC7DA6C7FCDAA0B8 /* RCTImageCache.m */, - 712C7E7317155EDB8C02A2D38CED634F /* RCTImageShadowView.m */, - 886232F4032E6259EBE730AE77517D3F /* RCTImageUtils.m */, - 4B7D9379DF0C09770B2B2AD35FDAB7AF /* RCTImageView.m */, - F710808415E7C61FDC6A93C1FE487030 /* RCTImageViewManager.m */, - 073AA0DABE1C1F2E136E34E275BBACF1 /* RCTLocalAssetImageLoader.m */, - 9595208313A3C0C1EE57D66C2F6ECC36 /* RCTResizeMode.m */, - 25139CEBB612E299D6FAD3996ED540D4 /* RCTUIImageViewAnimated.m */, - D6815C2C41E82405262D17A37ECFC11C /* Pod */, - 07CCA01323BC85C27C938F806D715B88 /* Support Files */, + 578BA57E573FD4A55295FA5E25CC58DD /* libBugsnagReactNative.a */, + 659A269762C07BCCCD06B381625F24C2 /* libDoubleConversion.a */, + F55CDF019ACA2217732F35553D42466C /* libEXAppLoaderProvider.a */, + 6DEA9914C54EB495C743EE6B7123C5FC /* libEXAV.a */, + 9104D6E90869CF4DD9F81824D2415D5F /* libEXConstants.a */, + CB82849F1F6FC462F3A50E932BC8C0EC /* libEXFileSystem.a */, + 9A03947CE2339B9152C4A4C8F7F2FE73 /* libEXHaptics.a */, + 77D3515313915883A91B4D382D37D81D /* libEXPermissions.a */, + 3520A6863EFA9777DEAE6B7D7B21E5BE /* libEXWebBrowser.a */, + F60224A2FA0ECB20CB39284C596433FC /* libFBReactNativeSpec.a */, + 774D3BC7734E6A2EAAA21E4B11D5A811 /* libFirebaseCore.a */, + 3D3E1A3EDFA4B5FA204815C239797E8B /* libFirebaseCoreDiagnostics.a */, + BA0501686230C169300BEAC0CFDF99EF /* libFirebaseInstanceID.a */, + CED89ECA78AFB932B7320D7D5667B82B /* libFolly.a */, + 417D87CE168CA4EC2CF9A1914C4B2170 /* libglog.a */, + 8522D1311D8A8EEB05EB5FF97D616AD3 /* libGoogleDataTransport.a */, + CBF682EEE52E0BFF5D740021D12EB670 /* libGoogleDataTransportCCTSupport.a */, + B4BBD3F4DCBF4684D97C369EE4AE97AC /* libGoogleUtilities.a */, + 65D6BAECB13B97CC1CF3A596399BA248 /* liblibwebp.a */, + 6C8671A0DC50529C47D3FFB143FF3AFE /* libnanopb.a */, + 0D7E44E269126782618E5EA42143C5EC /* libPods-RocketChatRN.a */, + BA76D51CB685A8D3D845F08992BF57C8 /* libPods-ShareRocketChatRN.a */, + CAE0ACF9C9C3F738A9F297AE3BDACC72 /* libQBImagePickerController.a */, + 09D8A137651A52A46AF870A7D9436A23 /* libRCTTypeSafety.a */, + 3E9F48B26088013B625FBD61C19A0A37 /* libReact-Core.a */, + AE5D5924E9524D24B4C78999594601F8 /* libReact-CoreModules.a */, + 30550BF834830A430953570C26BA34BB /* libReact-cxxreact.a */, + 32484BFF36488CC96783EF792DF22A50 /* libReact-jsi.a */, + 0D982FF377AD4A1F8AD82E06DC8C7CAE /* libReact-jsiexecutor.a */, + 8B58B0BFBCFAC01FB1151D82A93B1338 /* libReact-jsinspector.a */, + 06620BAA9B290FC2C0A843500D0A7E9F /* libreact-native-background-timer.a */, + 25FD868EF5C2D69F6FF1B430E63FC231 /* libreact-native-document-picker.a */, + FE2852FAE58D7B22076BE01E6A658084 /* libreact-native-jitsi-meet.a */, + 8FCAA2817AE3F8AC3B8230897287EBF7 /* libreact-native-keyboard-input.a */, + 04B71057546640A46BBB688900760369 /* libreact-native-keyboard-tracking-view.a */, + 235836769D9E02E0AA10037437BF043B /* libreact-native-notifications.a */, + 934FAD7BD442FCC32A88864EC43DB732 /* libreact-native-orientation-locker.a */, + 0D06F4B4361CF3BC16E2F9F0631362E1 /* libreact-native-safe-area-context.a */, + 36F5679F1EB6B81D48E293BC8C0DC39A /* libreact-native-splash-screen.a */, + 2C977B894F8AB4087D3133C1CDA6073B /* libreact-native-video.a */, + BC71266EE396E0AF9465AA30A2656959 /* libreact-native-webview.a */, + EFF331495097C1F9A56015604BE276B5 /* libReact-RCTActionSheet.a */, + 20C67792A66D004A09D448B9D690472C /* libReact-RCTAnimation.a */, + DFDC71CC528CD516EBE0949D4046A3A7 /* libReact-RCTBlob.a */, + B62C361531A11D304C4E01B938A90C95 /* libReact-RCTImage.a */, + 09FF962CAF88BBC18D852C27F967045D /* libReact-RCTLinking.a */, + CB9535677DE7DF46883CE340FD0A5CFD /* libReact-RCTNetwork.a */, + 1CE007DD64EEDCD841D50DB3C8FDCC67 /* libReact-RCTSettings.a */, + 508C8E5B4FBC388D865BC713B4CDB0E7 /* libReact-RCTText.a */, + 7A69CAD3BDA83AE301555B162C333302 /* libReact-RCTVibration.a */, + 024A7DA4C02ECDB852F8CBEB55DD8579 /* libReactCommon.a */, + E97360910423F8A02F061200764D98F4 /* librn-extensions-share.a */, + 5257976D35ED1ED6929F44302C576FD0 /* librn-fetch-blob.a */, + 8436F77BAD643A5138290011692C0F83 /* libRNAudio.a */, + FDA7A6F69EB7C8A8B899369C8124C509 /* libRNDeviceInfo.a */, + 5F86DAA21566953F371995177BF826DC /* libRNFastImage.a */, + F07935B83A1279A78510B6FF8E94E4EF /* libRNFirebase.a */, + 6FEB1C239B3B874EAB1FDFAF2AA954C6 /* libRNGestureHandler.a */, + 9684911C233FAF0E0748FA1664366AE1 /* libRNImageCropPicker.a */, + 00D13666115C44ED93A89482C8D18ACB /* libRNLocalize.a */, + 6B72BBBD460676E45ED8FD674F815B8F /* libRNReanimated.a */, + 069E9AAC32DF981B33640FE83825701D /* libRNScreens.a */, + 240CCE1E86C9C2BB3EBA19810C8DA0A2 /* libRNUserDefaults.a */, + F584F64EB858EF704C5DA703F0F9C141 /* libRNVectorIcons.a */, + A672EAB82A86B0F23AF82F0F78F972C0 /* libRSKImageCropper.a */, + 6E05E07DB306A19A19C8EC64818DC828 /* libSDWebImage.a */, + 5AE46C4D8BE44CFD170DB603316B972B /* libSDWebImageWebPCoder.a */, + 1EFD8B407C4DD0EA6C5DFE03070884FC /* libUMCore.a */, + 2072E5E02215B6D6FDC9547BA30AB058 /* libUMReactNativeAdapter.a */, + D6938FD59A2A273E2C6B63F1BC024D35 /* libYoga.a */, + 7767AAE46DE9FC6C676FFAEF7734AF52 /* QBImagePicker.bundle */, ); - name = "React-RCTImage"; - path = "../../node_modules/react-native/Libraries/Image"; + name = Products; sourceTree = ""; }; - 945F62906F4C0DC400C17A3924682255 /* Pod */ = { + 99572ED0E584F8F2F64190AC176CEAF1 /* Pod */ = { isa = PBXGroup; children = ( - 745EEA1CF8981988CEB06F9F0B2C5D0D /* LICENSE.md */, - DB14BF8B82F97702BD1C3B9C8833BF8F /* react-native-document-picker.podspec */, - 4912F21818C6FA63E3907CC95ECA7E6A /* README.md */, + 8FFF6D821078C94E552CF45AC957ECE1 /* UMCore.podspec */, ); name = Pod; sourceTree = ""; }; - 96A16B5C7D99F810C0323E2AC6081434 /* DevSupport */ = { + 997154A1D78273CFBD061EFB773927F6 /* RCTLinkingHeaders */ = { isa = PBXGroup; children = ( - D2EDB348A764D3260D6FFFF79896A60A /* DevSupport */, - D1E9E02075F373E567F18DC5C98C5870 /* Inspector */, + CC172B850C2D53176C545D094C4010A4 /* RCTLinkingManager.h */, ); - name = DevSupport; - sourceTree = ""; - }; - 98FBB5B5B68B06DE570D98CAFD095B5E /* Pod */ = { - isa = PBXGroup; - children = ( - EAB2A2657A4F2C963181A215A520800C /* UMTaskManagerInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 996AA4E8689CF3DA9C3F2F5FA5A4CE3E /* Support Files */ = { - isa = PBXGroup; - children = ( - 7C2411315370F0F40849929564814801 /* React-RCTLinking.xcconfig */, - 8C9A1D221AA0129822BA0C4E42FB0DC2 /* React-RCTLinking-dummy.m */, - FFF9BD6CF8C13EBD7A9DF44D4548B85C /* React-RCTLinking-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; + name = RCTLinkingHeaders; sourceTree = ""; }; 99E77EDDB8BF9E4B476AA4E6FF856A62 /* Pods-RocketChatRN */ = { @@ -10104,85 +9994,16 @@ path = "Target Support Files/Pods-RocketChatRN"; sourceTree = ""; }; - 9ADCBE87D2464CFF83A6B1FF47F72444 /* Support Files */ = { + 9CA92C9DBEC0DA1C87B655E60633EE93 /* Pod */ = { isa = PBXGroup; children = ( - B9767166BB7EC94BB583AC6F3DEB384A /* react-native-orientation-locker.xcconfig */, - 6A65FC483E3CEEB1485F55F67CD8811A /* react-native-orientation-locker-dummy.m */, - B4237A76E7D33535D94193EE57668477 /* react-native-orientation-locker-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; - sourceTree = ""; - }; - 9B32642A1429DF3458E91997E1486270 /* ScrollView */ = { - isa = PBXGroup; - children = ( - F2D58A1385CFCB5147D88A4CFFF451D3 /* RCTScrollableProtocol.h */, - 5FF8B9A845F797E602C93951FB9ADF44 /* RCTScrollContentShadowView.h */, - 62A1499BED17DB9F3F41D75009D9E620 /* RCTScrollContentShadowView.m */, - E320330B66430A462BF3A29625FE42EC /* RCTScrollContentView.h */, - F9AA815341F1D7613002795B68AB9D8A /* RCTScrollContentView.m */, - 7309A97BDAFFC8413AD37EDEFEFD3C75 /* RCTScrollContentViewManager.h */, - ECF15DE2627B474080EEBA2573769CD1 /* RCTScrollContentViewManager.m */, - EFF554A8814B7B98EB1EDDCD9FE13C58 /* RCTScrollView.h */, - D11D5581B4814C0A6DD0BBC33AF5A3EC /* RCTScrollView.m */, - D09B324CD047987B92F0B8F9E2AD00FE /* RCTScrollViewManager.h */, - 95280DD5FD256146429B7FE9B6AEFEB9 /* RCTScrollViewManager.m */, - ); - name = ScrollView; - path = ScrollView; - sourceTree = ""; - }; - 9B5D5B99815F5C5B1078C0C6E39F02AB /* EXAV */ = { - isa = PBXGroup; - children = ( - 2A20A9F426CEE2F5DA1B66C3D6C9BAAE /* EXAudioSessionManager.h */, - 424EC02E1CD4560F59C5709DBBC52234 /* EXAudioSessionManager.m */, - 41D0001F50410B45E4E336A028F1D7B9 /* EXAV.h */, - D25847856E4823402A310E9043720C4F /* EXAV.m */, - 38448BA7043409609588CEFB91FED396 /* EXAVObject.h */, - 53ADBB31A8997EC58CC2A4D300371A98 /* EXAVPlayerData.h */, - 925C0A8084715BB08C5E52CF23FA5ABF /* EXAVPlayerData.m */, - 1357F8EEA3D83FBE5CB53D53B1B6D5B3 /* Pod */, - EB6B71A7FBB34FE438C2817CF4598C27 /* Support Files */, - BB09F144BC7642C9DF1B58680F4E92D2 /* Video */, - ); - name = EXAV; - path = "../../node_modules/expo-av/ios"; - sourceTree = ""; - }; - 9BAC5E0AA0CD4C1AC3D514AB13A053DF /* Support Files */ = { - isa = PBXGroup; - children = ( - B804A5AB0F7E88A2EB7B803767045769 /* RNReanimated.xcconfig */, - F3F14887A794592FA779F85062B2F68C /* RNReanimated-dummy.m */, - FF17DE33D62C7C51DF70584C5E154754 /* RNReanimated-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNReanimated"; - sourceTree = ""; - }; - 9BD10667EAA2EBA676E0B084D7FCB443 /* Pod */ = { - isa = PBXGroup; - children = ( - D4FE9563D76D3CB9C9DC30538A962747 /* RCTTypeSafety.podspec */, + F1D7127FF82BFB0E826754739C497BF2 /* LICENSE.md */, + 6AFF432B82FB8C187DE4B0169614D086 /* react-native-document-picker.podspec */, + E14C2C3058FFB23946C646EFAB4F80C5 /* README.md */, ); name = Pod; sourceTree = ""; }; - 9D16DA22EFDF57CE70BE02A3370E9A25 /* RNUserDefaults */ = { - isa = PBXGroup; - children = ( - 4C6B478B9015F5BF081FD0D8BF2DC3F4 /* RNUserDefaults.h */, - 74E21148DF38CF77BFB90D2B15301B85 /* RNUserDefaults.m */, - B3EB62EBB5A132B203829ABDB34B5130 /* Pod */, - B467F7D39A6044B88B5471A80387D9FB /* Support Files */, - ); - name = RNUserDefaults; - path = "../../node_modules/rn-user-defaults"; - sourceTree = ""; - }; 9D4EB518D7F0A515F262BEBA6D6C71EE /* Resources */ = { isa = PBXGroup; children = ( @@ -10196,47 +10017,39 @@ name = Resources; sourceTree = ""; }; - 9D61A9C1CECCE877DA4EAD43E92002D4 /* UMPermissionsInterface */ = { + 9D6CFAD122584DF887A74CE192A206A1 /* Pod */ = { isa = PBXGroup; children = ( - 595463DD6247AE89E1B71AB2EF2B412B /* UMPermissionsInterface.h */, - 2074F9BFDFDFF1CA85053014D4E1D341 /* UMUserNotificationCenterProxyInterface.h */, - 763223B9591CE8006D6C9F5F58938670 /* Pod */, - 2CF68B86C037A9F0FAA27D7837708CAB /* Support Files */, + 0C831984132689885AE6AC44B1841122 /* advancedIos.md */, + 79012EC3BEA910B1EA0A5BDD54518B6B /* installation.md */, + D5CAF0426CC8602ABB0F6D80017FAB30 /* LICENSE */, + 9CCC71AF6E6609097C49E6F1207F3BE6 /* localNotifications.md */, + 0144BEE221AF5F9B8187D0144A26F360 /* notificationsEvents.md */, + 0D60994BE7EF6FD4DBF9C755EB774862 /* react-native-notifications.podspec */, + 91217FB9F8814F03547FA7BD3DFEE402 /* README.md */, + E92C620CE1B63D49CC5AE08CBF921339 /* subscription.md */, ); - name = UMPermissionsInterface; - path = "../../node_modules/unimodules-permissions-interface/ios"; + name = Pod; sourceTree = ""; }; - 9D82C9AE562FA3FD768A579CC62032B5 /* notifications */ = { + 9E40E52053A5061CF62D3158C0005A76 /* RNAudio */ = { isa = PBXGroup; children = ( - 5278B1FEB9A35D11BDF58962E9945138 /* RNFirebaseNotifications.h */, - 4E9D98E671C391AA6ACA3CD80C82BB92 /* RNFirebaseNotifications.m */, + 215EEF42FD9BFDA9D6FF901E450852BB /* AudioRecorderManager.h */, + 786FAE4427DCBD8624506EBA34FC6832 /* AudioRecorderManager.m */, + DBB22015DF57F7660EC48DAC0976BCFE /* Pod */, + 79BB86185898496F908194F1814E1183 /* Support Files */, ); - name = notifications; - path = RNFirebase/notifications; + name = RNAudio; + path = "../../node_modules/react-native-audio"; sourceTree = ""; }; - 9ED9EE8E9A4B205EB9CACB51DF434137 /* RCTImageHeaders */ = { + 9EBB66C99A319DBB2AB6E3AE276DB735 /* Pod */ = { isa = PBXGroup; children = ( - EC8C659250092F28C97385344E6E30C4 /* RCTAnimatedImage.h */, - 2BD06EC8D71451488BC2F7D676E96F00 /* RCTGIFImageDecoder.h */, - 045F76DD8A74D3DE51F83DCDB48CB294 /* RCTImageBlurUtils.h */, - 783C6A2F05BA0C839F198CEC78F9CAD0 /* RCTImageCache.h */, - E51D207B847CEBEE94542C146B1A0C3F /* RCTImageDataDecoder.h */, - A931FDF2119AEC8264E53F485E9E618B /* RCTImageLoaderProtocol.h */, - 7FDEBB2E6A544C5B48D0057F999E8152 /* RCTImageShadowView.h */, - 7B033295ACFFCA9AC4BC2CC5C977D881 /* RCTImageURLLoader.h */, - 49B84496FB17E2566D4A934E487B8B85 /* RCTImageUtils.h */, - 37F188493F6654882DE5E6B2BDE19215 /* RCTImageView.h */, - 91EBA865D0C502CA9FA10F17E6E08E1A /* RCTImageViewManager.h */, - 0D4F13081A2DAAE56F0E60ABA70DAC2B /* RCTLocalAssetImageLoader.h */, - 4EEF39F163209B9DBEEF20E98DE9CEFE /* RCTResizeMode.h */, - 1E52070B6CA2BB60AF403C543D08BCFE /* RCTUIImageViewAnimated.h */, + 67E6E074A5ED3A11F8C781BC2D5B704D /* React-RCTVibration.podspec */, ); - name = RCTImageHeaders; + name = Pod; sourceTree = ""; }; 9F325055A8E77E056AC63A92E2CFC530 /* Crashlytics */ = { @@ -10256,12 +10069,43 @@ path = Crashlytics; sourceTree = ""; }; - A0791C5BF4071DA9EB59349157A4C304 /* Pod */ = { + A011B133F9C7D50A62FFC5E8694F4B9A /* CxxBridge */ = { isa = PBXGroup; children = ( - 08845B1DD8D8091F59514EE5B15D42E2 /* React-RCTBlob.podspec */, + 040AD4918C2FD2E9E3E8F19F3759E798 /* JSCExecutorFactory.h */, + B494ACFDE55946CF40551A1829ACE47F /* JSCExecutorFactory.mm */, + 8075DB9392E1E119627413F160134EB5 /* NSDataBigString.h */, + 735EAB53A7BAB574078D81C0D2728495 /* NSDataBigString.mm */, + 27CB8C427E5B72F714A527AAD9246B11 /* RCTCxxBridge.mm */, + C14A5062CC867D03815B2265B53E7E5E /* RCTCxxBridgeDelegate.h */, + B3E2EA32BCCA958A61D82BEE7A7A9B6F /* RCTMessageThread.h */, + BC579760A47409D34DA48F491B94F6E1 /* RCTMessageThread.mm */, + 3ACC53A5021630E058E11AF3FB28BA08 /* RCTObjcExecutor.h */, + 17F050B48D705759FDEA14CB987EC4AB /* RCTObjcExecutor.mm */, ); - name = Pod; + name = CxxBridge; + path = React/CxxBridge; + sourceTree = ""; + }; + A03D86753B521BA3454CF6BFF405E88E /* Support Files */ = { + isa = PBXGroup; + children = ( + 3C6AF31BAE7BA5E1BDF8D2A0CEABBBC3 /* React-cxxreact.xcconfig */, + 1FFB45ADC206854B90BDA7AC82681DD4 /* React-cxxreact-dummy.m */, + 3AC2E1C485E92CB9CE76490962932C98 /* React-cxxreact-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; + sourceTree = ""; + }; + A07C46D9AF86C0E51F39349B0E7C4E44 /* jscallinvoker */ = { + isa = PBXGroup; + children = ( + 4BA78FB33C4C0287447DA3B317ADEA57 /* BridgeJSCallInvoker.cpp */, + D91A787FA4BDC8B6812704EA4D081DCB /* BridgeJSCallInvoker.h */, + 00B5EBAA909399655E13F84F09ABB65D /* JSCallInvoker.h */, + ); + name = jscallinvoker; sourceTree = ""; }; A0C21B7AFB42BA5D0927771793FDBCBB /* Support Files */ = { @@ -10274,60 +10118,32 @@ path = "../Target Support Files/FirebaseCore"; sourceTree = ""; }; - A0F28FCE7CD11A5EC12E03C926DAAE6D /* Support Files */ = { + A1464B28AF17517C0F23CE6E22204713 /* Singleline */ = { isa = PBXGroup; children = ( - 7C07529AA42AD79CD10707073C2D41BF /* React.xcconfig */, + E8FAE4D218F2A1B60EB6DC23FB89130A /* RCTSinglelineTextInputView.h */, + 0E1ED6FF5B003DE56EABC082DDC2D039 /* RCTSinglelineTextInputViewManager.h */, + A5FCAAFF930356FC7B7C2C57B18C5A8B /* RCTUITextField.h */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React"; + name = Singleline; + path = Singleline; sourceTree = ""; }; - A1DC2A71104251E295BFC8B0447A24EF /* Services */ = { + A3182A541FDE3B98B092D8105C727B6C /* Multiline */ = { isa = PBXGroup; children = ( - FF0F846D3ED3A74F6BC6CC6B55D540C4 /* UMLogManager.h */, - 434A1FD0BB70624CEC889E7AA19462B4 /* UMLogManager.m */, + 693265ECC22B28EFAFAD387255BCF05A /* RCTMultilineTextInputView.m */, + 40230EA7E7F0D84886311A1A836150C4 /* RCTMultilineTextInputViewManager.m */, + CCA1304BAA7241ED6B50653FFC89D859 /* RCTUITextView.m */, ); - name = Services; - path = UMCore/Services; + name = Multiline; + path = Multiline; sourceTree = ""; }; - A288AA8DB9DF4FB702B920B6CB2C5C9C /* react-native-webview */ = { + A3E73775EE81270C63B79E2E121DBCDF /* Pod */ = { isa = PBXGroup; children = ( - A98CBC136302FCDF57A99CDE8D1DE06D /* RNCUIWebView.h */, - E9264D11530D03447BB65495F6EBA22A /* RNCUIWebView.m */, - BD73EE30197CA10BE60B039B9764A9D8 /* RNCUIWebViewManager.h */, - 81784DAC436ED67FD954E0ED8A08A36D /* RNCUIWebViewManager.m */, - DD319BCE7393201FBF4C301547141771 /* RNCWKProcessPoolManager.h */, - E482EFA0E65870EC4D10D4807F35DE46 /* RNCWKProcessPoolManager.m */, - 0704FC21B1B8C2BA8E1329975B5FCEC2 /* RNCWKWebView.h */, - 8DFC3CE5C71F5BC9B468244DCD89961F /* RNCWKWebView.m */, - A048DD02EA4A10EA8D145ACCB12A76F7 /* RNCWKWebViewManager.h */, - 74C5B099EAE467F69BF778D8C17007F2 /* RNCWKWebViewManager.m */, - 5F1E03633C38754EF613FBCE2029251D /* Pod */, - 0B96ECDAEB7BE548FB5B478AD5818D18 /* Support Files */, - ); - name = "react-native-webview"; - path = "../../node_modules/react-native-webview"; - sourceTree = ""; - }; - A2C06E88E46DEF10BB63B45AAD184172 /* Support Files */ = { - isa = PBXGroup; - children = ( - 70669A610A42FE4F39BECE28CD4632B9 /* React-RCTSettings.xcconfig */, - D4747430DED00A1BF927230B54130799 /* React-RCTSettings-dummy.m */, - ADC66475E4CBD2E2B09EE786769CC3A2 /* React-RCTSettings-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; - sourceTree = ""; - }; - A34430A7471950A41BEAAE2C436849BA /* Pod */ = { - isa = PBXGroup; - children = ( - 5E947CD94981359E3C9787C0E96B5A69 /* UMSensorsInterface.podspec */, + 39B7AFA32D39C3A49A3A8E0C0480A1BF /* EXPermissions.podspec */, ); name = Pod; sourceTree = ""; @@ -10346,16 +10162,33 @@ name = mux; sourceTree = ""; }; - A593FF0759EF65C5602D713A6B139FAC /* RNLocalize */ = { + A4B20F85A5F5B04BFCC7D665601E55C5 /* auth */ = { isa = PBXGroup; children = ( - 6DCDEE3756A474945988DA54A6C93377 /* RNLocalize.h */, - B679806DF758FBB0C803752D3ACA53FD /* RNLocalize.m */, - 56889B97DBD32A95A1E1EB086D455530 /* Pod */, - B032EB60781C4CDC97D49AD30E128980 /* Support Files */, + AACD188B8847DF291AD28198CAFCCB5C /* RNFirebaseAuth.h */, + 81B045DF98DB06AC327DEB44AF93A324 /* RNFirebaseAuth.m */, ); - name = RNLocalize; - path = "../../node_modules/react-native-localize"; + name = auth; + path = RNFirebase/auth; + sourceTree = ""; + }; + A501BDC08522F2636ABD41F810721C61 /* Support Files */ = { + isa = PBXGroup; + children = ( + C1CAD5976621EE402483B2B1C29A1FB3 /* UMFileSystemInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; + sourceTree = ""; + }; + A572B8C6B0BB5AD253A9BDD66D8FC774 /* perf */ = { + isa = PBXGroup; + children = ( + 38AEF83E084F9694EBD0F9840EC668F3 /* RNFirebasePerformance.h */, + D2C46D3526544147DF57134EB39E11AC /* RNFirebasePerformance.m */, + ); + name = perf; + path = RNFirebase/perf; sourceTree = ""; }; A5ADA69422B84A7580C82CAA5A9168D1 /* Targets Support Files */ = { @@ -10367,32 +10200,129 @@ name = "Targets Support Files"; sourceTree = ""; }; - A72B836D93F0E89E92DAA6F33C6E3F1E /* Pod */ = { + A5D643B713AFDF4043CEEFAA9A553DD8 /* Pod */ = { isa = PBXGroup; children = ( - 30230B337C7722F6D22F202F64BE05C9 /* UMCameraInterface.podspec */, + B43A77EB90C5A42018C43240A00B756E /* EXConstants.podspec */, ); name = Pod; sourceTree = ""; }; - A764D4677C67A1A33F3E88BDAAF9E86D /* config */ = { + A6144A07A7A76E0AE803C3008D265647 /* WebRTC.framework */ = { isa = PBXGroup; children = ( - 18CA1F463B7F118303AB338DEC4851A4 /* RNFirebaseRemoteConfig.h */, - C606E2C22A944930E009692C8A974707 /* RNFirebaseRemoteConfig.m */, + 873D7A8ED042DF4CA18F0D7240D23F32 /* Headers */, ); - name = config; - path = RNFirebase/config; + name = WebRTC.framework; + path = ios/WebRTC.framework; sourceTree = ""; }; - A7D0FF035C42EB5D9895F84F5BD54707 /* analytics */ = { + A72AE1EF1CC741239DAEE96288552A98 /* Profiler */ = { isa = PBXGroup; children = ( - 569F787951278B680CAFAE9ED37EF891 /* RNFirebaseAnalytics.h */, - 5D16295547E5670D3B98A08360078F4C /* RNFirebaseAnalytics.m */, + FD25802F372D5730497A35D712B0FD04 /* RCTFPSGraph.h */, + 1EF47FA061198F479E947CF198973DAC /* RCTFPSGraph.m */, + 14E3A053EC00A615C2225238B60165F9 /* RCTMacros.h */, + 645DD68B4C7BA5F1A4E047A531EF3640 /* RCTPerfMonitor.m */, + 1F4092AD5BED4EDA89AE141BA29865FD /* RCTProfile.h */, + F8EEFBE25D2B4D5E320C0E2C094F902B /* RCTProfile.m */, + E563354BBF88A993DC96BDA59F1ADBDE /* RCTProfileTrampoline-arm.S */, + 940DE94715EB27ED225D02CA6BDE4045 /* RCTProfileTrampoline-arm64.S */, + C99BD064EAD25CEE5509438F9BFA1FFD /* RCTProfileTrampoline-i386.S */, + D724DB8C18F240D68DE0EED6767CF761 /* RCTProfileTrampoline-x86_64.S */, ); - name = analytics; - path = RNFirebase/analytics; + name = Profiler; + path = React/Profiler; + sourceTree = ""; + }; + A7CA956F080B5781A09394F29D5928A6 /* Pod */ = { + isa = PBXGroup; + children = ( + 07230686A7FE4744C65EA117C9F1AD58 /* LICENSE */, + 16FE7933774952F25D51EB17F44CEBC1 /* react-native-keyboard-tracking-view.podspec */, + BD4BADA04798461EA88602BB54F59EC1 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + A86AA7DAD71DC129EDCA9CEB7BF64949 /* Pod */ = { + isa = PBXGroup; + children = ( + 29C4EE29FE14C17D7D9DA4AA898CC2AE /* LICENSE */, + B3E70F856208B69AEC240B3165938108 /* README.md */, + F1B9140C8A808B3D9FC8F102680454D8 /* rn-extensions-share.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + A86F730674F3D285172E22683708A8DD /* RCTRequired */ = { + isa = PBXGroup; + children = ( + 5820B13AE1105DD1DDCD6B35BDB6AF92 /* RCTRequired.h */, + 079B13C2BE64C4201148DCDACD8CF059 /* Pod */, + 897573D64A02F00485784BF103A3968D /* Support Files */, + ); + name = RCTRequired; + path = "../../node_modules/react-native/Libraries/RCTRequired"; + sourceTree = ""; + }; + A87B9D6AB59B518832F2CF2A3372D507 /* TextInput */ = { + isa = PBXGroup; + children = ( + B5B15DB473A729898FB1C4406C5E05BB /* RCTBackedTextInputDelegate.h */, + 6BE7E30C650EE8CD55EB0738623C80CB /* RCTBackedTextInputDelegateAdapter.h */, + 776AE251A86EEEB3DC7F3C5AC146BDDE /* RCTBackedTextInputViewProtocol.h */, + A2B6E61A4C49F83E6022AC2D08049CEB /* RCTBaseTextInputShadowView.h */, + 11D07A6C8C17178AE2756E9C5C3FB189 /* RCTBaseTextInputView.h */, + 0F67E3A26B0AFD7D4BF218BCD4F290F5 /* RCTBaseTextInputViewManager.h */, + B2C9A34370C9237B9740314606719BEB /* RCTInputAccessoryShadowView.h */, + 7CE570B3EB77507C794598F33BBDCCC2 /* RCTInputAccessoryView.h */, + D3F7A49D41EA1323739A8EEDF655D070 /* RCTInputAccessoryViewContent.h */, + 0634E471C8D2991463FCABC1359891F4 /* RCTInputAccessoryViewManager.h */, + A171A41048E3753FE41D2C7BF8916BF0 /* RCTTextSelection.h */, + 4CF3D34D109926EC7838597A544C0A76 /* Multiline */, + A1464B28AF17517C0F23CE6E22204713 /* Singleline */, + ); + name = TextInput; + path = Libraries/Text/TextInput; + sourceTree = ""; + }; + A8E09CFD8C7C8EC029C274260C176A26 /* admob */ = { + isa = PBXGroup; + children = ( + 1DC638E79AC0F815080FA80FF52C5299 /* BannerComponent.h */, + FF75650F65D87DC6FF88532D8B457B9A /* BannerComponent.m */, + B50DCEF697EBFA84F81921591BB31CD7 /* NativeExpressComponent.h */, + 7F48DE3A5D6D619A6A2F5633222411D1 /* NativeExpressComponent.m */, + A356977D978F70519D2B726F6CA2BFDD /* RNFirebaseAdMob.h */, + A30C86DEEC074F3692FC989FD0B5FE29 /* RNFirebaseAdMob.m */, + DC5D55CF69CD3E09C5335B4D17E7BC00 /* RNFirebaseAdMobBannerManager.h */, + DB48D08D4C5DE12205EDBA56D9A5C5EE /* RNFirebaseAdMobBannerManager.m */, + 8DFD8066C7991B46A4E2656B71CC0596 /* RNFirebaseAdMobInterstitial.h */, + A1EC4C554AC2FA34564E493D9F67EE84 /* RNFirebaseAdMobInterstitial.m */, + 84DDBB86A5F6C876477F97ACC5F79517 /* RNFirebaseAdMobNativeExpressManager.h */, + 744B7771C2A9BC9034B5B75DC4C0FA68 /* RNFirebaseAdMobNativeExpressManager.m */, + 7878A0DFC4CAEB0223BB1438FC79CAA2 /* RNFirebaseAdMobRewardedVideo.h */, + 4A8998B1E2D3451AD0135D3A738035A0 /* RNFirebaseAdMobRewardedVideo.m */, + ); + name = admob; + path = RNFirebase/admob; + sourceTree = ""; + }; + A8E3678D8E647782D87293B42B6DEFC3 /* react-native-keyboard-tracking-view */ = { + isa = PBXGroup; + children = ( + A3E8DD3B951421DD403AA3714BF4A26A /* KeyboardTrackingViewManager.h */, + 503E24161AC2E60D69DB7F568F8B2DB2 /* KeyboardTrackingViewManager.m */, + 3550F8FB29D5E3BA0B88C57F3CF17109 /* ObservingInputAccessoryView.h */, + 73C96F87183854B9403A7A28CE021A70 /* ObservingInputAccessoryView.m */, + 5A0786DD9557387B23E4AE8C3ADA815E /* UIResponder+FirstResponder.h */, + 6B51F6B6F5399E4AE55B813B2506B798 /* UIResponder+FirstResponder.m */, + A7CA956F080B5781A09394F29D5928A6 /* Pod */, + 65C99A093427725331672E464DF86E82 /* Support Files */, + ); + name = "react-native-keyboard-tracking-view"; + path = "../../node_modules/react-native-keyboard-tracking-view"; sourceTree = ""; }; A9CEBF818C3F749EC133B3C2AA41C1E0 /* boost-for-react-native */ = { @@ -10404,201 +10334,141 @@ path = "boost-for-react-native"; sourceTree = ""; }; - AA151C7735C95BBA135BD8F4AC5AF6A5 /* EXWebBrowser */ = { + AA3FC164FCBFF5893852DB3B47AFD3E1 /* Support Files */ = { isa = PBXGroup; children = ( - 85E30C1680F295F6C85B2AA5C7F9E7A5 /* EXWebBrowser.h */, - 3640174E5C2BB1DDD77D0D39BD854A22 /* EXWebBrowser.m */, - B96CE0F2F0E4542190D7A87D878AE204 /* Pod */, - 127EC7DBD26CD89FA0F8A79021B33EFD /* Support Files */, - ); - name = EXWebBrowser; - path = "../../node_modules/expo-web-browser/ios"; - sourceTree = ""; - }; - AB9DB849116D7E9FABCD92908882040B /* Modules */ = { - isa = PBXGroup; - children = ( - 8F1BEB586B4D73B7397166B74493B0FF /* RCTAccessibilityManager.h */, - 32A35499ECD9E27A86AFB49950BE9B92 /* RCTAccessibilityManager.m */, - ACB20F36E3467B8B419AF134154184F0 /* RCTAlertManager.h */, - C18DD10AA225D10340E87E9FDB0D2E52 /* RCTAlertManager.m */, - 05EBCA5ACE8CEDF5B8D3C55CC9D697AA /* RCTAppState.h */, - 18DF4010656CAD060057D63A7A33B9A7 /* RCTAppState.m */, - 519BE69174D61344D2C6AEABE9A5A15C /* RCTAsyncLocalStorage.h */, - 6052CE7E6233D6E9F70EC09AE944FF2D /* RCTAsyncLocalStorage.m */, - DA51C24792BFABC1AB85AF381A9BFE0C /* RCTClipboard.h */, - 3DC040E976AC0D325774D6A3FA856F1B /* RCTClipboard.m */, - 544F265948AA6E54B679E21CF0B43D4F /* RCTDeviceInfo.h */, - FADD7CA66FCF85647A9C4B1C87617E0A /* RCTDeviceInfo.m */, - 290A5CF51092C9911670D58CE1EC126E /* RCTDevSettings.h */, - 67585D4C5FBA7E512FBBC672E7BA8D6F /* RCTDevSettings.mm */, - 72F2F599E53648A85E26C4156B81AFF2 /* RCTEventEmitter.h */, - 35E28ECEAAF2B93628AABA76D593BDCD /* RCTEventEmitter.m */, - ECABA3C58DE70B76E43260813CBBCB78 /* RCTI18nManager.h */, - 864DFD0B4DB12CA9815E25CEE7E84D82 /* RCTI18nManager.m */, - 9336E696A5C9B4ABB34D5E52D336040A /* RCTI18nUtil.h */, - 273C2DBB8D2A77E862429B26FC3A0DAA /* RCTI18nUtil.m */, - 278476170389242F3A608B71E41F158D /* RCTKeyboardObserver.h */, - 2D308E0C724DEA2FDD523243CAF81234 /* RCTKeyboardObserver.m */, - EC5CC880858241D52588A211BE14BCDB /* RCTLayoutAnimation.h */, - BE2002769D716B1EF2D93B7A62742650 /* RCTLayoutAnimation.m */, - 2167528798589D9EEE09064D358F63B8 /* RCTLayoutAnimationGroup.h */, - 5BA88B3B28AF8D1F1AF0C5B1F8C0C5D0 /* RCTLayoutAnimationGroup.m */, - 52CFC8319E55A485B1CFA0F4F6657FD0 /* RCTRedBox.h */, - 799F3CA914EFC240F482FC1A3409673E /* RCTRedBox.m */, - A28A885DB5C7E3687C339B35DBA9D577 /* RCTRedBoxExtraDataViewController.h */, - 5CAE1E12567C4AC8AAB010F5B5299EF1 /* RCTRedBoxExtraDataViewController.m */, - 989A346A8ECBE457D21A1DCE60ED1BB9 /* RCTSourceCode.h */, - 39C4F0E77856CD00DF096646A8A3CC0C /* RCTSourceCode.m */, - 75262489B2DD9E36CABAD8F96B4D3039 /* RCTStatusBarManager.h */, - EE69AD244370F4536E0D86A878ADBE7A /* RCTStatusBarManager.m */, - 9F360CFB41C9A8126AF9A74DDD500BFB /* RCTSurfacePresenterStub.h */, - B2E1BDC3A338EFC910A3C5C6A89A0531 /* RCTSurfacePresenterStub.m */, - C504584E8224E095C31AE23E97049947 /* RCTTiming.h */, - 228FC8C869C9325D9E4257025CAFDAE8 /* RCTTiming.m */, - 858A80AC98FE571D286A65CFEFF138BC /* RCTUIManager.h */, - 0292B7CDB9E49FAFF7AC16B3319A13D1 /* RCTUIManager.m */, - F798CBEB8949EF34969B9184EFA5DCB9 /* RCTUIManagerObserverCoordinator.h */, - 4ADD4B3AE18C6A914C90C761F0A7027D /* RCTUIManagerObserverCoordinator.mm */, - 446B8CE97A0CEE9982AA2EBA4C525437 /* RCTUIManagerUtils.h */, - 48D8A6A9316926B226AA53312D33BF18 /* RCTUIManagerUtils.m */, - ); - name = Modules; - path = React/Modules; - sourceTree = ""; - }; - AC544CDFABD9BC79E86626380B072B24 /* Support Files */ = { - isa = PBXGroup; - children = ( - 884D1F437B9578B91A113DCA5BDB2901 /* React-RCTAnimation.xcconfig */, - 20E3E017F976C85456F5E3E9FD1DCC61 /* React-RCTAnimation-dummy.m */, - 191FC44E2364531010D90EAC85478DAD /* React-RCTAnimation-prefix.pch */, + 50050C62246B736C56C79B2D8F35C32D /* React-jsiexecutor.xcconfig */, + AF037CF64FD98D38974D33762A6B7AEE /* React-jsiexecutor-dummy.m */, + A1CD0DB9E012BF94E858BCCF9B9F3A8E /* React-jsiexecutor-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; + path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; sourceTree = ""; }; - AC61030E46E14B63FA645F65BEB60932 /* UMConstantsInterface */ = { + AA4A38F5FF1925F0F1A8A882101C0A6B /* KSCrash */ = { isa = PBXGroup; children = ( - EE1B93A91C26EF53CADB900FC3375894 /* UMConstantsInterface.h */, - 7582141A788BE8C33970DB214A52957D /* Pod */, - 609E55D312EC2476506BBD1D9EF5B8F8 /* Support Files */, + 303CAC34BB7FB4345D93568056713CD2 /* Recording */, + 3CAFDF45C80177C70E5C19D485DB7087 /* Reporting */, ); - name = UMConstantsInterface; - path = "../../node_modules/unimodules-constants-interface/ios"; + name = KSCrash; + path = KSCrash; sourceTree = ""; }; - AC887AB562A93E631934607E5A80A973 /* RNAudio */ = { + AC0FA67F000889D73CC0F7279FC1BC5B /* Handlers */ = { isa = PBXGroup; children = ( - 769D16E0BBBBCABBE7F5A315FB1D4717 /* AudioRecorderManager.h */, - A9CBE5EDD1A08F9BBD6ED751C0B6E090 /* AudioRecorderManager.m */, - B82F41D224F97B2260D872E6C25D325E /* Pod */, - 4057FB02C37B236E88AB6FCAD1B7FA37 /* Support Files */, + 856A205B78B70693FFBB66826C0F09E6 /* RNFlingHandler.h */, + 3007AA5094F3919B637E9E207729FE7B /* RNFlingHandler.m */, + 71C363E37185BB4997E2F5DB99601DBA /* RNForceTouchHandler.h */, + 9D6701F23C1B02C3789AE879D4EA3B20 /* RNForceTouchHandler.m */, + E27183475FF0DBE7A188184F39DE0204 /* RNLongPressHandler.h */, + 06F3E00F0148BA34E169ADA74D7E0DD9 /* RNLongPressHandler.m */, + 14C36476961E46A2F97DAF28F884B6F8 /* RNNativeViewHandler.h */, + 1B1D529BC11B174370DF4310A5F8B086 /* RNNativeViewHandler.m */, + 0EB523ED45A3938CCDAD3464836C01AE /* RNPanHandler.h */, + 87E9F38D85AE21DD2A7E002BECD22369 /* RNPanHandler.m */, + 285C10879981A54909D0F796332831D1 /* RNPinchHandler.h */, + 8680D4DFF516853807BF9B762DD1472E /* RNPinchHandler.m */, + 11B6E5A24E63214705CAD00868E11574 /* RNRotationHandler.h */, + 1B5CACD3CC824D102D17D83A52815ABB /* RNRotationHandler.m */, + BBF326A80F02EA2256F124D42EEF3805 /* RNTapHandler.h */, + 426E04BEAC8D35F840DE9A56AAA70DA0 /* RNTapHandler.m */, ); - name = RNAudio; - path = "../../node_modules/react-native-audio"; + name = Handlers; + path = ios/Handlers; sourceTree = ""; }; - ADC228421CC740DF207D38E704FFCE01 /* RCTBlobHeaders */ = { + AC5BF2E683499BB8F6004C8C1C0D6E18 /* EXAppLoaderProvider */ = { isa = PBXGroup; children = ( - DBEA20B2096FC481FD953A7C7B9B4C73 /* RCTBlobManager.h */, - 681071BC750225F967B40443B78A2217 /* RCTFileReaderModule.h */, + BB6C2548D64FF0D2DBE6E2F45A38BCF7 /* EXAppLoaderProvider.h */, + 8758F2938DDA0D727485CD838FBA1ADC /* EXAppLoaderProvider.m */, + 6FDE322E165FABA36F3FE158E08164E7 /* Interfaces */, + 3B46CB2DCA7186A7CFA3C49C16CFD6DF /* Pod */, + 908C29DF4A8DD73C495337C573AA7BB2 /* Support Files */, ); - name = RCTBlobHeaders; + name = EXAppLoaderProvider; + path = "../../node_modules/expo-app-loader-provider/ios"; sourceTree = ""; }; - AE496024D5FAE87AC6D0A4D6B39F5F5F /* Tools */ = { + AC6A120CACDEB584F2084E8EFC0047D7 /* RNReanimated */ = { isa = PBXGroup; children = ( - 8ACBA2403B6914136AB18C882EC9DBD4 /* BSG_KSArchSpecific.h */, - C82F229D9E944295E826EF102441184B /* BSG_KSBacktrace.c */, - 0A8CC69E6564B343ACE870DF47982292 /* BSG_KSBacktrace.h */, - 6060F8FC98DC79960340C414B470DCC6 /* BSG_KSBacktrace_Private.h */, - 234A07345C1BD13E73FD298F1DA08691 /* BSG_KSCrashCallCompletion.h */, - FDD0DC51876FEDD563B014D667E23423 /* BSG_KSCrashCallCompletion.m */, - 8FE4030B5C8F3B86413D3D99EB8757C3 /* BSG_KSDynamicLinker.c */, - 2C99D970FCA64BE40044898301576334 /* BSG_KSDynamicLinker.h */, - E00CA3DD7631C80163263795AEF04C0D /* BSG_KSFileUtils.c */, - CC82AC4D3188CAC47F92BD901916EB3F /* BSG_KSFileUtils.h */, - 9CDA400FF10058D7984BC78BE308E138 /* BSG_KSJSONCodec.c */, - 4D9573F8234E7A253B8F152612009897 /* BSG_KSJSONCodec.h */, - A0ECA59A83A655CBC05E2FD344902F68 /* BSG_KSJSONCodecObjC.h */, - 0EEB5354D5AF6B675E9B7C1798BF015F /* BSG_KSJSONCodecObjC.m */, - E14F6825C0F43B512C03F5A3139C49E8 /* BSG_KSLogger.h */, - C8ABFF105AC704B4DFECAF248C4ADCDF /* BSG_KSLogger.m */, - 9E24C028D631450C5BB0BC6181E012B0 /* BSG_KSMach.c */, - 13AC49A67652DE6B0E1169DCF55AD1BD /* BSG_KSMach.h */, - 6E8BD3B09A237ECDC94F116B47E18C2F /* BSG_KSMach_Arm.c */, - 2B1769ECED986A1016B92E04081BB820 /* BSG_KSMach_Arm64.c */, - 233F44D531B8DBC2E5D8F5284BDF8165 /* BSG_KSMach_x86_32.c */, - B8D62298397AB98E6962A42DFCA4422F /* BSG_KSMach_x86_64.c */, - C41501FA6ED3459433CE429F83F3A95A /* BSG_KSMachApple.h */, - DC2709C4A5BE89BE0D90AB30D754722C /* BSG_KSObjC.c */, - 9D188B3A994EF48492D596334DAB83E1 /* BSG_KSObjC.h */, - 59D390ADFA929F123753582B55482667 /* BSG_KSObjCApple.h */, - 72E6BCA3D7306CFFF701D26766498A5C /* BSG_KSSignalInfo.c */, - 052F18F75CBE8D8527343972F983724C /* BSG_KSSignalInfo.h */, - 67CB2C58555251A8CF370F17C38D713C /* BSG_KSSingleton.h */, - 717EE1F3241D7CA3F34703DDCC738F82 /* BSG_KSString.c */, - C5A0F193FBBF6413D8A61F784E82A2EF /* BSG_KSString.h */, - 9C3328D71E30443739271866F6E41C5B /* BSG_KSSysCtl.c */, - E212B2434BCA31E99F01A9D8A6ABA96A /* BSG_KSSysCtl.h */, - 2E960E6AAA4AB279827B0F54F6DCD9D0 /* BSG_RFC3339DateTool.h */, - 99FF4B217358CD093EC1595F5E8E1E9B /* BSG_RFC3339DateTool.m */, - 3A72763C0DC542C39E3298476D2324D8 /* NSError+BSG_SimpleConstructor.h */, - 28771B806F156F63B272C5859AC6E569 /* NSError+BSG_SimpleConstructor.m */, + 5DF7056840A2903181CF83B44D463F94 /* REAModule.h */, + 29ADAE6C90F175E647FD94E4E13F786F /* REAModule.m */, + 651B1DA5A925370B0A1EDB7082B8438D /* REANodesManager.h */, + 0086C4C22F3D149EAFADC1EF559A4081 /* REANodesManager.m */, + DDFAF1270330A9984FEA63D8CB378086 /* Nodes */, + 12BAF32DB89E9EB991453117264569C0 /* Pod */, + 7295C59BF94650FFEBEC58C278858A9A /* Support Files */, + BF34E81E42FBD70DA4A0D338D51BB008 /* Transitioning */, ); - name = Tools; - path = Tools; + name = RNReanimated; + path = "../../node_modules/react-native-reanimated"; sourceTree = ""; }; - AF08A6000D93DFDD4187BF6F3A233AAE /* database */ = { + AC6FF05FA0CA182519C3B1E9CF657CC2 /* Singleline */ = { isa = PBXGroup; children = ( - 807E3AD33EB396565457697EE2B4B260 /* RNFirebaseDatabase.h */, - EE8D5A11546D69FA854CFD86E521B833 /* RNFirebaseDatabase.m */, - 132BA2F5C7656EA1F08594B446B7CBB2 /* RNFirebaseDatabaseReference.h */, - EDA00E8DA0AF10098066249FCBF72581 /* RNFirebaseDatabaseReference.m */, + 20106C657E923B8B530B7C179B68637E /* RCTSinglelineTextInputView.m */, + 8478588275F89E9EC07658D73672AE58 /* RCTSinglelineTextInputViewManager.m */, + B9E2FC09CAD11A63DFA5276B5366241C /* RCTUITextField.m */, ); - name = database; - path = RNFirebase/database; + name = Singleline; + path = Singleline; sourceTree = ""; }; - B032EB60781C4CDC97D49AD30E128980 /* Support Files */ = { + AD7E553737D8802A4518629A01E57FA9 /* Pod */ = { isa = PBXGroup; children = ( - 35A579D0C7A01ECD4D9FFFC9086DDDA7 /* RNLocalize.xcconfig */, - A490DA9E70562B499E63B60320210C2B /* RNLocalize-dummy.m */, - B36C8E865E4369E817FF07101604628A /* RNLocalize-prefix.pch */, + 3080942A7E24191503BB31134104ED85 /* Yoga.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + AD8B49C431890DB7B9D3D828A04F575D /* Support Files */ = { + isa = PBXGroup; + children = ( + 7C2180C4C2DD7664E68FBCB10059207A /* React-RCTActionSheet.xcconfig */, + 18141B471E675E44E27C6AE39EB2459F /* React-RCTActionSheet-dummy.m */, + 2F2CBE041011856FFD10A87E4475D86D /* React-RCTActionSheet-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNLocalize"; + path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; sourceTree = ""; }; - B099CD4F303CFE0441F859260B6AFD76 /* Support Files */ = { + AE7934F2AE5964862661A9A26313FEC1 /* Support Files */ = { isa = PBXGroup; children = ( - 4ADA1183F0ACCB431682507B4CC7D1DB /* react-native-video.xcconfig */, - 37F0EECEB5F8260AF82A6AF2D0C58EC4 /* react-native-video-dummy.m */, - 343C32942FC5B812BF28849545A8ACD9 /* react-native-video-prefix.pch */, + ABB239C559398D72DA4182E9A9EF9281 /* react-native-webview.xcconfig */, + 028387FB621C70BD4C8F7688A6A4B8DB /* react-native-webview-dummy.m */, + A9A5A009143A121E91B4ECB5E4117620 /* react-native-webview-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-video"; + path = "../../ios/Pods/Target Support Files/react-native-webview"; sourceTree = ""; }; - B2D45331D3AC09D3FF7D2B6FC35363B5 /* Support Files */ = { + B0415A77E95F49BEC70A051E7E5180DD /* react-native-background-timer */ = { isa = PBXGroup; children = ( - 4C9EE071CDAC3B2EECD1FB30E7DB3ABB /* React-RCTVibration.xcconfig */, - 61C3084A77B2BAB03030D4E584D23AE9 /* React-RCTVibration-dummy.m */, - EA4C5E848DDF885E6821E87FFDFD830E /* React-RCTVibration-prefix.pch */, + 5BDCA2B511AA84A52E9E0DCE3384D2E2 /* RNBackgroundTimer.h */, + 3798963A6D4FECB3CB0CE414C53C553E /* RNBackgroundTimer.m */, + 7AD6A715928D8830771C92C2879738F1 /* Pod */, + D646C5263A39091ECDD8ABE5CDC979C5 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; + name = "react-native-background-timer"; + path = "../../node_modules/react-native-background-timer"; + sourceTree = ""; + }; + B2BF0E6DECE7BDF1E58F465495353EC0 /* UMModuleRegistryProvider */ = { + isa = PBXGroup; + children = ( + 1FFA08AD88D8F0C551A3135E816B1864 /* UMModuleRegistryProvider.h */, + 3E41673C909C08709B97EEBC55CA72A2 /* UMModuleRegistryProvider.m */, + ); + name = UMModuleRegistryProvider; + path = UMCore/UMModuleRegistryProvider; sourceTree = ""; }; B336C7C8BE98BC1C5C9AC4181ADE31CE /* FirebaseInstanceID */ = { @@ -10674,39 +10544,20 @@ path = FirebaseInstanceID; sourceTree = ""; }; - B3BA3C7E259E2F3B922C0063291B7D41 /* Pod */ = { + B418D9FBE12D0D081D27ABEF7D7E10CE /* Pod */ = { isa = PBXGroup; children = ( - 9A03D408CDA30BAE10EADED04E5E4B2B /* UMFaceDetectorInterface.podspec */, + 442F481324FE13FF40321FD68DC3BB39 /* React-RCTImage.podspec */, ); name = Pod; sourceTree = ""; }; - B3EB62EBB5A132B203829ABDB34B5130 /* Pod */ = { + B4E828A091CCB8F586DB90FD69A6300F /* Pod */ = { isa = PBXGroup; children = ( - 24FAFF281DAC7378C25891AC05A6AE10 /* LICENSE */, - BBA7527C1C64611D976B48DCA5DB2F01 /* README.md */, - 5392923341C75A0A2940F9D97D894C0D /* RNUserDefaults.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - B467F7D39A6044B88B5471A80387D9FB /* Support Files */ = { - isa = PBXGroup; - children = ( - BC52A2F9EC3448D5AB934A7E681763FD /* RNUserDefaults.xcconfig */, - DF94B228DF9ED4ADEB286D2A78FFDF34 /* RNUserDefaults-dummy.m */, - F858E7897991B1DC9F7CE2BD179B44F6 /* RNUserDefaults-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNUserDefaults"; - sourceTree = ""; - }; - B49D859A713923CEF80474974FF7ADA9 /* Pod */ = { - isa = PBXGroup; - children = ( - 685F65A36534E04F0B9AD9CA269461B6 /* React-RCTActionSheet.podspec */, + B52D0654728195FA8447A0CECDC91381 /* LICENSE */, + 333210D95F6C5555AC90B585304A118E /* react-native-splash-screen.podspec */, + 5903CE137B6C6E815CDF61D0FE240FEC /* README.md */, ); name = Pod; sourceTree = ""; @@ -10723,16 +10574,15 @@ path = libwebp; sourceTree = ""; }; - B6178E9E4C58441E0C419E85680A82F1 /* react-native-orientation-locker */ = { + B57F2F4B20C459885EF2586953CA6328 /* Support Files */ = { isa = PBXGroup; children = ( - CFEA128847EF8ED3C06427F753FB054A /* Orientation.h */, - 56CC7C3D3536DCD6CA439D0D445B8FEE /* Orientation.m */, - 6BC7DC714CD01BD5C4C832D99FE2582D /* Pod */, - 9ADCBE87D2464CFF83A6B1FF47F72444 /* Support Files */, + 0F4709C78CF4014F50C704B529CAD4FF /* RNFastImage.xcconfig */, + 5FADE7C54F900C8DEE5447960742499C /* RNFastImage-dummy.m */, + D86F0194DA38FBCDB83F8A864E8EA0A8 /* RNFastImage-prefix.pch */, ); - name = "react-native-orientation-locker"; - path = "../../node_modules/react-native-orientation-locker"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNFastImage"; sourceTree = ""; }; B62C2A6441EFDDBFF9EECD4F4A128262 /* Resources */ = { @@ -10754,55 +10604,30 @@ path = "../Target Support Files/SDWebImageWebPCoder"; sourceTree = ""; }; - B76387C86591313B296EC35D6D226A19 /* Nodes */ = { + B6D531A1114863418757C21C87CC813C /* Support Files */ = { isa = PBXGroup; children = ( - 3B289E7F2F15A57CC89179131BE50FEC /* RCTAdditionAnimatedNode.m */, - E91AED9E3DEB12A15A0C1D9AF7D6A14D /* RCTAnimatedNode.m */, - D426D3B4538E31F2F6DB0DEA8FDEEA90 /* RCTDiffClampAnimatedNode.m */, - E8FAC6307468F60320136F1F3A70E464 /* RCTDivisionAnimatedNode.m */, - 133E3B3693D0825DE99696BEA3A98B39 /* RCTInterpolationAnimatedNode.m */, - A8DCA5E7B4E4BB37A7FE47EA6FD5E788 /* RCTModuloAnimatedNode.m */, - 907FDAB7A7008AAD800494DD59DFD35A /* RCTMultiplicationAnimatedNode.m */, - C9D9856F57AA907EF3B985BD830B5251 /* RCTPropsAnimatedNode.m */, - 45570AD81EF7454074C069CE713D1694 /* RCTStyleAnimatedNode.m */, - 4811161CED5987E250343488233AD41F /* RCTSubtractionAnimatedNode.m */, - 1F9998D0A4F27171329437B647B6ADB5 /* RCTTrackingAnimatedNode.m */, - 5D3DEC355A295A702AD939CBCA570CCF /* RCTTransformAnimatedNode.m */, - F924B7F564A7C928E4C2BA77C4AC97BB /* RCTValueAnimatedNode.m */, + E5196BF93A86C382EDFD56E80F8D1558 /* rn-extensions-share.xcconfig */, + 1542E51DBFB43DAFE233E3A9BB2DF524 /* rn-extensions-share-dummy.m */, + B88EFE28F93756C273DFD31B81D94A21 /* rn-extensions-share-prefix.pch */, ); - name = Nodes; - path = Nodes; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/rn-extensions-share"; sourceTree = ""; }; - B82F41D224F97B2260D872E6C25D325E /* Pod */ = { + B715F0355466E7980D0F69BFF9652CBD /* Video */ = { isa = PBXGroup; children = ( - 77980905B933DC6CBA5A89031914EEE0 /* LICENSE */, - 138AF62361BCB59E61C98407087E2DE3 /* README.md */, - 955B4BF5886FFB9B666A610CFCCC3316 /* RNAudio.podspec */, + 7AC0B5BB1CAA9498E6514E0CAC55C6C8 /* EXVideoManager.h */, + 06865963575AC15785519AEA22E48E00 /* EXVideoManager.m */, + B199AB1DC90082B31061593EE95C4A63 /* EXVideoPlayerViewController.h */, + DAB30C9A67672B75CA52254835439EA3 /* EXVideoPlayerViewController.m */, + 7DC267C629FF91AC4E846925EB5D7A32 /* EXVideoPlayerViewControllerDelegate.h */, + EBD55BE82C9E20E33873519B430A8955 /* EXVideoView.h */, + 297FBFCC72DB52AB5912D75419F57939 /* EXVideoView.m */, ); - name = Pod; - sourceTree = ""; - }; - B96CE0F2F0E4542190D7A87D878AE204 /* Pod */ = { - isa = PBXGroup; - children = ( - 47003DC8953C2298487236EBE160D48B /* EXWebBrowser.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - B9E2C348B50D13C936FED41383AF39E4 /* react-native-background-timer */ = { - isa = PBXGroup; - children = ( - 515D4CCFE37889074F3E05277EAF55AC /* RNBackgroundTimer.h */, - F5A81A280EA4DE0A82A1242B61D58A72 /* RNBackgroundTimer.m */, - 27635EC4937ABE4CBEADAA86A4A708D4 /* Pod */, - 24001117DEDF0CDE9FEFD3F5296CB1C7 /* Support Files */, - ); - name = "react-native-background-timer"; - path = "../../node_modules/react-native-background-timer"; + name = Video; + path = EXAV/Video; sourceTree = ""; }; BA4A261C9A963D3C54CD06369F2D8D2B /* Support Files */ = { @@ -10816,72 +10641,52 @@ path = "../Target Support Files/Folly"; sourceTree = ""; }; - BA644995843895AB691CB0737EB33810 /* Pod */ = { + BC59562DFD2EACF5CA3477A31FCE58F2 /* Support Files */ = { isa = PBXGroup; children = ( - 3B3C9A5354F34B93E75A31D96EF075E6 /* LICENSE */, - A7E935B855FEB44627BF2A9B9FF8BA5F /* README.md */, - C7BB46CC480012CCA3BF74F60B24177E /* rn-extensions-share.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - BB09F144BC7642C9DF1B58680F4E92D2 /* Video */ = { - isa = PBXGroup; - children = ( - 6C85A56AD116BB1363176296E8C76E8D /* EXVideoManager.h */, - EB180F2C926BB44BE91322607071BF4C /* EXVideoManager.m */, - 916BB2BEF13944038BC8D1A8666AD7EB /* EXVideoPlayerViewController.h */, - 80A8302F3687F959D295EB70EB085DFA /* EXVideoPlayerViewController.m */, - ABA7D17947BF9037B3F73C84CA322ABB /* EXVideoPlayerViewControllerDelegate.h */, - F5998EDFB4EA5B76D0A18781D58AB215 /* EXVideoView.h */, - 9AEA06F137290DBDE0F03BB8F4A095FC /* EXVideoView.m */, - ); - name = Video; - path = EXAV/Video; - sourceTree = ""; - }; - BB76AC4CA3434658C204C1F86738590A /* RawText */ = { - isa = PBXGroup; - children = ( - 0C7841F919759FEA18B5E9E76A56FC94 /* RCTRawTextShadowView.m */, - 96D76BF7F46445BC1360A5C8D0CD94F5 /* RCTRawTextViewManager.m */, - ); - name = RawText; - path = RawText; - sourceTree = ""; - }; - BB8CEA6766ADA72237008B134328E178 /* Support Files */ = { - isa = PBXGroup; - children = ( - 9E1F2B15CF7018FF290E064A0770F577 /* React-Core.xcconfig */, - ECA6E6DF5E16E4BB3513AF26C2F14F3D /* React-Core-dummy.m */, - C67AF0C017AA58BBD6A2F42C350A4943 /* React-Core-prefix.pch */, + 83D96954D7B8DED2049154ED3600AD5B /* BugsnagReactNative.xcconfig */, + BEBEEB2BA458978D5205A4AC168DC5E5 /* BugsnagReactNative-dummy.m */, + 13810C55BD5FD81EB34EB05B2F8D3A8D /* BugsnagReactNative-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React-Core"; + path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; sourceTree = ""; }; - BDA0EE241598BB2E0ABE7F04F2A11C52 /* Support Files */ = { + BC73608A70D523C3468C05DEF42D30DF /* RNVectorIcons */ = { isa = PBXGroup; children = ( - F8412A0B0D032095263B6C94695433F9 /* EXConstants.xcconfig */, - 8024E6D7A87A1352AB2376681FE77335 /* EXConstants-dummy.m */, - 3442FA7760E8229A7FBB18976E373BE6 /* EXConstants-prefix.pch */, + 1F1E2CA5BE8776DAAAF119FD9B5F87C9 /* RNVectorIconsManager.h */, + 5272D0CF4BF47B787A08940E3AB2ECF1 /* RNVectorIconsManager.m */, + 36FBC4703FC12D6D113030FC6590C91E /* Pod */, + 62209506B3FD569EB6AD649FF3C8D8AE /* Resources */, + 7DC2DCF8DBAA86CB2772C410A80F06D5 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXConstants"; + name = RNVectorIcons; + path = "../../node_modules/react-native-vector-icons"; sourceTree = ""; }; - BDEAC568E611E1B5C8B6171EB6499709 /* Support Files */ = { + BD5D29AE9553341B6B27F827CCC48D68 /* Drivers */ = { isa = PBXGroup; children = ( - 9116F4D919CCC884DCBFB8F2E5CFCFC5 /* react-native-document-picker.xcconfig */, - D0BFA0CD89DAF8B6CEFC90EB66C88F4F /* react-native-document-picker-dummy.m */, - 28BB727AC25FF20390F0D4F6BBE384E1 /* react-native-document-picker-prefix.pch */, + 278C4B70C3C680A06F659F43BF294756 /* RCTAnimationDriver.h */, + 4BA488A9A61BC81D516B696AA827A6F5 /* RCTDecayAnimation.h */, + 3BB130BFEBA123BF5F40864D7327A1CE /* RCTEventAnimation.h */, + CEA6DC59ED78B3FCF9A7C182534BA84A /* RCTFrameAnimation.h */, + 5C5D0B1E26192BAFC79DDEDDF5A11BEA /* RCTSpringAnimation.h */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-document-picker"; + name = Drivers; + path = Libraries/NativeAnimation/Drivers; + sourceTree = ""; + }; + BD79CDF6C6936DC603E5EED4C73C9F9D /* React-RCTSettings */ = { + isa = PBXGroup; + children = ( + 5A8A8C33EB0EDB9C95243DD765FD381D /* RCTSettingsManager.m */, + 29F619657A7D3199A6D3863C88EA2378 /* Pod */, + EB3FAB929C295D2C6CC53DB96C8E42F4 /* Support Files */, + ); + name = "React-RCTSettings"; + path = "../../node_modules/react-native/Libraries/Settings"; sourceTree = ""; }; BEBBC7C90685EDCDEF2ED87E920884AC /* Firebase */ = { @@ -10894,153 +10699,132 @@ path = Firebase; sourceTree = ""; }; - BECE11E8232CA5D3F3FE37E4FD5559F5 /* vendor */ = { + BEC63E0545AA2FFE66584C8251AC587E /* React-RCTVibration */ = { isa = PBXGroup; children = ( - 8F8B6CC52F931318F1A715A0879A394B /* bugsnag-cocoa */, + F58C71BF7E379F34A5CFFB04132BF0B5 /* RCTVibration.m */, + 9EBB66C99A319DBB2AB6E3AE276DB735 /* Pod */, + 726A4F6AE472718059FBB6A63FD796E7 /* Support Files */, ); - name = vendor; - path = cocoa/vendor; + name = "React-RCTVibration"; + path = "../../node_modules/react-native/Libraries/Vibration"; sourceTree = ""; }; - BED8794EF1CE7793B6DF06A7BF58A291 /* SafeAreaView */ = { + BF34E81E42FBD70DA4A0D338D51BB008 /* Transitioning */ = { isa = PBXGroup; children = ( - 0A405AECFC1392628DEA9E741B4087EB /* RCTSafeAreaShadowView.h */, - 216C4CF777B3BC98185108EDCCB8AB3C /* RCTSafeAreaShadowView.m */, - 8A57961F42FB1C57919DCEA01F4AC650 /* RCTSafeAreaView.h */, - 11E07CD2F41DF98D1A7576BF3ECB85D2 /* RCTSafeAreaView.m */, - E380014D1CD129168DF8BE782A0499E8 /* RCTSafeAreaViewLocalData.h */, - CBDCA198B6442671F614F967ED74C497 /* RCTSafeAreaViewLocalData.m */, - 8335D1CE75534CCD543BE3EA35D4F912 /* RCTSafeAreaViewManager.h */, - 2E48D87E8D14A3EAE2C05E984EB86575 /* RCTSafeAreaViewManager.m */, + 49C1F0D487D2C5C5224F6F55109DC4F1 /* RCTConvert+REATransition.h */, + 8DF0DBF281A2D1985CD87D17A738539C /* RCTConvert+REATransition.m */, + 673EECF6EDA15A73134989558149C7F5 /* REAAllTransitions.h */, + E2DFC110533BBD6C6C73C679331C3DF4 /* REAAllTransitions.m */, + 4147092B4D61809637AFD41B72A335A0 /* REATransition.h */, + 0435115B6D5EF1B9043C434167912090 /* REATransition.m */, + C23BB8FCFCE960A47537246A74E0A6E2 /* REATransitionAnimation.h */, + 7F14E3D092C47891DDD7AD1F4EE5F85E /* REATransitionAnimation.m */, + CA2DFB549BFC30949D3D4AE605668DEA /* REATransitionManager.h */, + EA8C5AAF2E9A9C9FD9292B8C34FABA02 /* REATransitionManager.m */, + E2DB8A21748BB05BFF874734C01BBDE2 /* REATransitionValues.h */, + C17AA84604C018DFF873285A00CC7074 /* REATransitionValues.m */, ); - name = SafeAreaView; - path = SafeAreaView; + name = Transitioning; + path = ios/Transitioning; sourceTree = ""; }; - BF416977555B20CD9E7F2415CCFB91D6 /* Support Files */ = { + C012D4310F672FACE20764C78AE6DDF6 /* event */ = { isa = PBXGroup; children = ( - 3738738E40C256878035DDF4259511E9 /* Yoga.xcconfig */, - 834F21163628FC6624462039BADCF7E6 /* Yoga-dummy.m */, - 08D4D6F0A96DCF213D2538A04884F939 /* Yoga-prefix.pch */, + B7798917671A874980962FCD53594BFC /* event.cpp */, + E561B5B55FD08CF6E1375EA185DDEB04 /* event.h */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/Yoga"; + name = event; + path = yoga/event; sourceTree = ""; }; - BF59BE1E80A04869F55B2D027CC437A3 /* Multiline */ = { + C100B1E1DA0626D5EF1E52320481B081 /* RCTTypeSafety */ = { isa = PBXGroup; children = ( - 8B554C75B17DBF9D797AFAE6314A64EB /* RCTMultilineTextInputView.h */, - AF9D973DFEE1FEF3DF20202F45BE3BE7 /* RCTMultilineTextInputViewManager.h */, - 26401B6DCFA787B64E545ADF40CB2C26 /* RCTUITextView.h */, + 77740901B2C87FF8651D4854A7827888 /* RCTConvertHelpers.h */, + E788DB650A2F048C9895E115E28DAB84 /* RCTConvertHelpers.mm */, + B9FD1D31B90E278FA72DAB3D57F9552F /* RCTTypedModuleConstants.h */, + 2B19EA38D947F5749AC7F4FCD174137C /* RCTTypedModuleConstants.mm */, + 19205549AEC29911A16D7CF1431CA05B /* Pod */, + 41BD15DFC2E9EF0C83B96B4BFA169285 /* Support Files */, ); - name = Multiline; - path = Multiline; + name = RCTTypeSafety; + path = "../../node_modules/react-native/Libraries/TypeSafety"; sourceTree = ""; }; - BFE9394F3641EA5B6AE76AB3ED4CBA0E /* Support Files */ = { + C1F3CFEA40AC53C3236E25E6B4C66398 /* TextInput */ = { isa = PBXGroup; children = ( - C9E77B660C22879AD0E5B67ACE606165 /* ReactCommon.xcconfig */, - A0EB7E0F161D656A9FCBD4D8F2D82DB9 /* ReactCommon-dummy.m */, - 4ECF350B828462243E9F61823031B222 /* ReactCommon-prefix.pch */, + 6D9C382E153E060B6AB643777323C8CB /* RCTBackedTextInputDelegateAdapter.m */, + 3886881A0D844FE147AEA3539AA6998D /* RCTBaseTextInputShadowView.m */, + 6FDC36111855918B2B2EC72F82BB034C /* RCTBaseTextInputView.m */, + A380B5186909C7542770E62A6D8D5CDF /* RCTBaseTextInputViewManager.m */, + D3DCBB875E7F31DF611DD837CB4C9350 /* RCTInputAccessoryShadowView.m */, + 7CF6B3841437E559192BB78C854424C4 /* RCTInputAccessoryView.m */, + D54F1F028E4A287D59D425629876E6C4 /* RCTInputAccessoryViewContent.m */, + 621E02A8CCE771D7BDA3F07506D55844 /* RCTInputAccessoryViewManager.m */, + 6A3D59CAD2355BFE231F5BC7D309BB2D /* RCTTextSelection.m */, + A3182A541FDE3B98B092D8105C727B6C /* Multiline */, + AC6FF05FA0CA182519C3B1E9CF657CC2 /* Singleline */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactCommon"; + name = TextInput; + path = TextInput; sourceTree = ""; }; - C0329313BEA1ABD74B58993C4A9437A4 /* RNFastImage */ = { + C24702E537E96FAF56D6A3A9346286DF /* rn-fetch-blob */ = { isa = PBXGroup; children = ( - D9F513E2F486762B6E230D21111C8319 /* FFFastImageSource.h */, - 66CD69948C7F4149204906340EBB5ED0 /* FFFastImageSource.m */, - E83C05DCECA6232493931757F6D3B884 /* FFFastImageView.h */, - 6271BC82171D5F738496BFD7D3EDE5D0 /* FFFastImageView.m */, - CB5073B9A26565A0967980E34B3D17B6 /* FFFastImageViewManager.h */, - 64D49FCE0BC019ACA1AD34E2A11742A8 /* FFFastImageViewManager.m */, - E16B6C34322A45B7EC5714D08E52E257 /* RCTConvert+FFFastImage.h */, - A08ABDAC6EEF823927BAE510DB2CDBA2 /* RCTConvert+FFFastImage.m */, - 8E0A18ADD003D58761F491B120FD88C8 /* Pod */, - D1900CD004210980DC84B1BF7B41323A /* Support Files */, + 9694FDEA45518C8EECE0DA08E69A1492 /* IOS7Polyfill.h */, + BBE2A73BEE72F398152D5D38F8059991 /* RNFetchBlobConst.h */, + 5DE274C24107961E9EBB96060A1AC2EF /* RNFetchBlobConst.m */, + 94A2DD95CC4EB6EC7600FF0B58EC17C6 /* RNFetchBlobFS.h */, + 0561FD42E9D0E127C6E8ADEC323CAAE9 /* RNFetchBlobFS.m */, + 84FDB5DEC3FA82CFFC892A002C81B52F /* RNFetchBlobNetwork.h */, + 14BAD30572F735577B7DBEF7E1CB78B7 /* RNFetchBlobNetwork.m */, + 70C7E0B66AD4DEE9049384C1DEE47B81 /* RNFetchBlobProgress.h */, + 719C288348AA425392BAB76E5A486BEC /* RNFetchBlobProgress.m */, + ADD491F2581002166439D6FCA66E2505 /* RNFetchBlobReqBuilder.h */, + EEA207F51AB8E95B10B2C93C125AF47E /* RNFetchBlobReqBuilder.m */, + 2B38AC74F716BF198F0AC7A81A8E82A2 /* RNFetchBlobRequest.h */, + 3B724632B0346DA2227C3E5512C4C605 /* RNFetchBlobRequest.m */, + 8B73D1C4AA31A9F4974A07712B0BB553 /* Pod */, + FEA34DE3A636B2B6B67EFE11C22B52EF /* RNFetchBlob */, + 6F8FFF653263334E532730D3AC85E5D4 /* Support Files */, ); - name = RNFastImage; - path = "../../node_modules/react-native-fast-image"; + name = "rn-fetch-blob"; + path = "../../node_modules/rn-fetch-blob"; sourceTree = ""; }; - C099A2F5F14F9225AB6B369956DF73F0 /* Support Files */ = { + C3E32B68A36D31E31E80C247002F31B6 /* RCTNetworkHeaders */ = { isa = PBXGroup; children = ( - B5C340D4A14F573589F590FCD59B6DAC /* rn-fetch-blob.xcconfig */, - 960E0C71600CDC13B81D851EFBD7FF42 /* rn-fetch-blob-dummy.m */, - 9B4CEA0B339DD9BA11C76F59624F983F /* rn-fetch-blob-prefix.pch */, + 7D16CB2D93478EF175BE2530948E2ACA /* RCTDataRequestHandler.h */, + E5D67042060FC0A284FC9593D78490D1 /* RCTFileRequestHandler.h */, + 1CC5C24EC9634242BDEBA62DCEB0821F /* RCTHTTPRequestHandler.h */, + C7F9421C8E92E1B5B91EEA501EB4D352 /* RCTNetInfo.h */, + 6ABB3B9A70B7C524EF1EBB06045D1FBC /* RCTNetworking.h */, + 9785AC6BF08EB7C1D9FBC44859508FDB /* RCTNetworkTask.h */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; + name = RCTNetworkHeaders; sourceTree = ""; }; - C1E3B42F4CE0767CFD6F52CF38E23B79 /* Pod */ = { + C407B8DD884772393FF4F70FDCE675C8 /* Core */ = { isa = PBXGroup; children = ( - 175E34AE7E7C3E84DAC1BFC90DEBCFBD /* LICENSE */, - 3B4FAB01D20930A63E839D844304C6AB /* README.md */, - 9796738AA8A4CA8537AA4A7956A73B1D /* RNDeviceInfo.podspec */, ); - name = Pod; + name = Core; sourceTree = ""; }; - C2343C10FAC63606DC5ED54839B8C416 /* Support Files */ = { + C451B1308F0E26F1AF02BBF7D7C80490 /* CxxUtils */ = { isa = PBXGroup; children = ( - ABC6B3F79A08E31D5471FA0A46D7D591 /* react-native-keyboard-tracking-view.xcconfig */, - 52F89AE914D50068C9FE8BF233C8C28D /* react-native-keyboard-tracking-view-dummy.m */, - 551027FA80229BFBA3F0E2EDEBB67A10 /* react-native-keyboard-tracking-view-prefix.pch */, + 9C8FDB233D42D9B5E81028A145BC44AA /* RCTFollyConvert.h */, + 3F2A8F1CF3BC3AC3B5492A25F74433CE /* RCTFollyConvert.mm */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-keyboard-tracking-view"; - sourceTree = ""; - }; - C3EC7F7FB754DEA7AEBC68461AE7A500 /* LNInterpolation */ = { - isa = PBXGroup; - children = ( - E427651E7E91747BDA13455AE366AD34 /* Color+Interpolation.h */, - 4A87B231929EFFC2E90F77CF24115852 /* Color+Interpolation.m */, - CEDC101390EB641DCCE9B731F22164F1 /* LNAnimator.h */, - 602CC196350DA341701989B3B1F7EB79 /* LNAnimator.m */, - 2FD208A987D26707807DEACD92EAEDC2 /* LNInterpolable.h */, - 4A81435DAD7CD2A3348C7562AD5CF388 /* LNInterpolable.m */, - 485E068FB316247945A2F317A3D5F413 /* LNInterpolation.h */, - 68FECB0093AB4D2892F83593C416C054 /* NSValue+Interpolation.h */, - ); - name = LNInterpolation; - path = lib/ios/LNInterpolation; - sourceTree = ""; - }; - C3FDE3F84769A10143A31473B11DB23A /* FBLazyVector */ = { - isa = PBXGroup; - children = ( - BAC50E6BEC3FD6735E90BB3ADBD23BC0 /* FBLazyIterator.h */, - 0B52ECD67E93F2A773C2038090118631 /* FBLazyVector.h */, - 2CD78924A56B4E6B22FE876285552A35 /* Pod */, - 05645075CDAC53DC6E967838044377F2 /* Support Files */, - ); - name = FBLazyVector; - path = "../../node_modules/react-native/Libraries/FBLazyVector"; - sourceTree = ""; - }; - C4A8E7A1E9D79A99D48F512A680248F4 /* EXAppLoaderProvider */ = { - isa = PBXGroup; - children = ( - EBFDCE06E15F8221E156383918A0D9DF /* EXAppLoaderProvider.h */, - E88294587B5C2275DE92123388A5C415 /* EXAppLoaderProvider.m */, - FFB49321E58B14E4F9A287BC727EB575 /* Interfaces */, - D58F879D99E2E6A65DE9D4A02C88B556 /* Pod */, - DC0845EAA6FD1232177F42198C7044E1 /* Support Files */, - ); - name = EXAppLoaderProvider; - path = "../../node_modules/expo-app-loader-provider/ios"; + name = CxxUtils; + path = React/CxxUtils; sourceTree = ""; }; C583B66EEA8DFB10208A0D1AAE9CFD4E /* encode */ = { @@ -11059,84 +10843,6 @@ name = Frameworks; sourceTree = ""; }; - C5F63323DE9E692F67E20AB73039B184 /* Headers */ = { - isa = PBXGroup; - children = ( - 831AC8636A034EA15EBB3C98700524ED /* RTCAudioSession.h */, - AD6D9FE62A19C65EE313AFBDEDCBBDF6 /* RTCAudioSessionConfiguration.h */, - 94E45A84B67CDABEFC105CC4644E041A /* RTCAudioSource.h */, - 7C297843BEFFDFD616D44202F0742AD5 /* RTCAudioTrack.h */, - C556416AE8FA44165F45655B57F9A65B /* RTCCallbackLogger.h */, - 3CB070D5B1ADF1EEA6FC9955D41FC07F /* RTCCameraPreviewView.h */, - 7595D7CC61617FA498C9DDBD523493F2 /* RTCCameraVideoCapturer.h */, - 540BE54E6D353A9726CE1ABAC8D0F3B7 /* RTCConfiguration.h */, - 1AE0955C20775F95D5770B29EABBA3D5 /* RTCDataChannel.h */, - 8CD281938F2C18237513EEACEF92E842 /* RTCDataChannelConfiguration.h */, - 330C6D34155334CA60162A092226AB2D /* RTCDispatcher.h */, - EE504627642BEB89DC972A7C34EA8B27 /* RTCDtmfSender.h */, - 67E566C7ABDDCA6D458B5F60F84E5B2E /* RTCEAGLVideoView.h */, - 20D5773D092E2441727D255A9F69BA55 /* RTCFieldTrials.h */, - 021B9DC548910DED65B01E56976E107C /* RTCFileLogger.h */, - FF5CB84510B55C4B97F9FC36D72DC9BD /* RTCFileVideoCapturer.h */, - 550328F52CC3C6883332344007BFF391 /* RTCIceCandidate.h */, - 200E05DE7F33800201E0EE42D6A7CC14 /* RTCIceServer.h */, - 357433FCCF10A2E8CB375A024D932A57 /* RTCIntervalRange.h */, - 670A510C8819A35C0FFE8B3CDED7650A /* RTCLegacyStatsReport.h */, - D9490B260356D5DD04A0A98DB79CF269 /* RTCLogging.h */, - C54D07D5CE862248ABE7CAAE0423910D /* RTCMacros.h */, - 71912D96CB52D6E72B8B2BE7F57AF914 /* RTCMediaConstraints.h */, - A95AB4D649C04218556B94815ABED40A /* RTCMediaSource.h */, - 859729F5482B6F35A5D91DA533BF872C /* RTCMediaStream.h */, - 51C06B8346CC58F2C59DD750882D83E7 /* RTCMediaStreamTrack.h */, - EE2DAFA587449DD1657B952CEBA630CE /* RTCMetrics.h */, - AC98DB15560DE4A1352031D68744389A /* RTCMetricsSampleInfo.h */, - D30EFAFD0F4CC34AE6A89AF3D3B42174 /* RTCMTLVideoView.h */, - 845D89D4E6DAE1558B7ECB0B0D64582E /* RTCPeerConnection.h */, - 3DAB2A845217DBACA89044C4BE1B7019 /* RTCPeerConnectionFactory.h */, - E7BBDD8987640335ADD37D376E0B6811 /* RTCPeerConnectionFactoryOptions.h */, - AB862353DEEFD81FF02220B9996FC342 /* RTCRtcpParameters.h */, - 814FAF3CD3BE0AD73BF417D24534210B /* RTCRtpCodecParameters.h */, - 5040BD35048B8F691BA62F2531461875 /* RTCRtpEncodingParameters.h */, - BD2C6247240F521F7FE1126E9423B04B /* RTCRtpHeaderExtension.h */, - D81D2902FAB494BBC793F02E38E114FA /* RTCRtpParameters.h */, - 344C87F600D9EE9F7A992A471B2EA1BD /* RTCRtpReceiver.h */, - ED706D302AC0048A975286FE023067F7 /* RTCRtpSender.h */, - 602FA28D3B195AF84796D141D0AA5D78 /* RTCRtpTransceiver.h */, - AD8A160785B2C1B85BB8263EFC4D08A7 /* RTCSessionDescription.h */, - 99C8458C6DA7B45E5631DCADB8208566 /* RTCSSLAdapter.h */, - 56F50B475006F5C7C264F551848907FD /* RTCTracing.h */, - 8FD63DBEFE0291AFC77E36B865519D46 /* RTCVideoCapturer.h */, - 074695E8C64F1E757B5174980557B465 /* RTCVideoCodec.h */, - F8C1601321E4734D957C5DE726205731 /* RTCVideoCodecFactory.h */, - 019963B53F9322159F9603E3050460DA /* RTCVideoCodecH264.h */, - 2F45235E0F148A83AD05C96C4B23AEE3 /* RTCVideoDecoderVP8.h */, - 66529168085BF13D1F96D56C10F5BA16 /* RTCVideoDecoderVP9.h */, - 6B1F7841E91ECC7B3E771D3CD4EFA831 /* RTCVideoEncoderVP8.h */, - 81EAC4862520863E3A386A873685068B /* RTCVideoEncoderVP9.h */, - 883E1317B6A54AA5F1A5636AA294F53C /* RTCVideoFrame.h */, - 56AB738FCCB8FB6996AD995E8A0BC641 /* RTCVideoFrameBuffer.h */, - 9344AE9ADFE5AD5A00956E2CF06B2281 /* RTCVideoRenderer.h */, - 26BD4EB705D121E99953420BC33E2420 /* RTCVideoSource.h */, - 22DAC7FA09CDDAFA2025177956F43829 /* RTCVideoTrack.h */, - 7FE814CFAB4A5C5A92A9A6ED48D7468E /* RTCVideoViewShading.h */, - CE69E32D582FA333BAC513CAD8D4B09E /* UIDevice+RTCDevice.h */, - 5649BC01BD083848350299D96C614D5E /* WebRTC.h */, - ); - name = Headers; - path = Headers; - sourceTree = ""; - }; - C601DBB782B3EE588F43256DCC9D869C /* Support Files */ = { - isa = PBXGroup; - children = ( - C6D78F3CBC90BCC7511EF05DCECBF137 /* RNScreens.xcconfig */, - 7FF518877698CDD8197DAC93287BF22A /* RNScreens-dummy.m */, - 87A87D0534B0C67225A4E165AFE26AC2 /* RNScreens-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNScreens"; - sourceTree = ""; - }; C6B6295D141A8B0B368F6EE6E4381EDD /* Support Files */ = { isa = PBXGroup; children = ( @@ -11147,25 +10853,25 @@ path = "../Target Support Files/FirebaseInstanceID"; sourceTree = ""; }; - C7347667AFFE47235CCF766E45803F6B /* RCTCustomInputController */ = { + C80F5F327A82C460CEDB234B6693D781 /* Support Files */ = { isa = PBXGroup; children = ( - 0EC6F16D28DE0AC26FD3262C2825D95A /* RCTCustomInputController.h */, - 17C34550067C826AF77528EE0599DD07 /* RCTCustomInputController.m */, - 08E74F7067B07B7FA1E2F87CECA1084D /* RCTCustomKeyboardViewController.h */, - 0889B027F2783DB1FDE44677F938B492 /* RCTCustomKeyboardViewController.m */, - ); - name = RCTCustomInputController; - path = lib/ios/RCTCustomInputController; - sourceTree = ""; - }; - C84681B7C677A616976CC998433D6E63 /* Support Files */ = { - isa = PBXGroup; - children = ( - 828F335103F7F4C0361DB8848987D415 /* UMImageLoaderInterface.xcconfig */, + 9A27433536D54C21478A075F44C6B093 /* EXWebBrowser.xcconfig */, + 563822FDB79137D0421AAFBC6FBA7A59 /* EXWebBrowser-dummy.m */, + 5CF143D0AAD0A0E9EDC090C575946FDF /* EXWebBrowser-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; + path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + sourceTree = ""; + }; + C8F00516700FB00672B6FB1987A7D227 /* React */ = { + isa = PBXGroup; + children = ( + 87C12CE33BC83605C1A8405D3B1FF049 /* Pod */, + 3A33C07BD6ECE733101CDA1F848BCD52 /* Support Files */, + ); + name = React; + path = "../../node_modules/react-native"; sourceTree = ""; }; C999D80ACEB1C4A286BD9D195D4ADB09 /* FirebaseCoreDiagnosticsInterop */ = { @@ -11187,15 +10893,137 @@ name = Frameworks; sourceTree = ""; }; - CB8FA9C0A3A28CDB31DD567DB1FE22E5 /* Support Files */ = { + C9F2955C401BAFB2B8E90A7FF8EF9E37 /* Pod */ = { isa = PBXGroup; children = ( - 3C2DBA525AE7F5D8C434EDDDCC04CED3 /* React-jsi.xcconfig */, - FE6F16EC1891DDA88992C80E2F014217 /* React-jsi-dummy.m */, - 3697A856D79FE78630EAFFD61769AA44 /* React-jsi-prefix.pch */, + 573697D869940F3C95F1F1C9304649E8 /* React-jsinspector.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + CAF62788774BE8A54C7B4244906A36F1 /* Views */ = { + isa = PBXGroup; + children = ( + 8A8E9402BC87211DB0AE56F478EE9E4A /* RCTActivityIndicatorView.h */, + 82CDC329E68EE52D6E6EC99BAEEA1154 /* RCTActivityIndicatorView.m */, + 38B102188B49D1E48D9B805CB5D49FB3 /* RCTActivityIndicatorViewManager.h */, + 4A8692F8329A6E790C24A6E450FC3B4D /* RCTActivityIndicatorViewManager.m */, + 406AC12A65E4004888E089CCEEC1C49F /* RCTAnimationType.h */, + B3739944967F1784A44D81785BEAE566 /* RCTAutoInsetsProtocol.h */, + CAA40A664C3D4C732482D9D9E78269AD /* RCTBorderDrawing.h */, + DD629E21B521B46FA7B96D55086A5F1E /* RCTBorderDrawing.m */, + 9AD6434F0066D51DF829BA58F4EFEFF2 /* RCTBorderStyle.h */, + 30A61D6BA406FD3518D81BBD4BDB9122 /* RCTComponent.h */, + 44BBCEA6993FAEC2173B75CD7EE02612 /* RCTComponentData.h */, + 3C9C08DB769E4D178116F8D4FE162AAF /* RCTComponentData.m */, + D4F01AAD7CB9648EDD4903DCFC9D468B /* RCTConvert+CoreLocation.h */, + 9301B78A0D020EF63865912E1F227F73 /* RCTConvert+CoreLocation.m */, + 65693A67C1BDB8B6E78AB1823E6202C0 /* RCTConvert+Transform.h */, + C2375E9ED0BD930A847A78A8F0DACA96 /* RCTConvert+Transform.m */, + E33E40BBC606D616834A4103003B91AE /* RCTDatePicker.h */, + B2A3911AE8735FE0579B57BF38C415C3 /* RCTDatePicker.m */, + 880750D15764CF01F47D658AE99A3E12 /* RCTDatePickerManager.h */, + CBD88173ECBC18FB0617900CCF8E2720 /* RCTDatePickerManager.m */, + 52BB84C18FFA26A6BF6F78D149F2F769 /* RCTFont.h */, + EF30538B0A7478C40A501B1988510D6A /* RCTFont.mm */, + C20A905513637256A5D3A98B90894BC0 /* RCTLayout.h */, + 5196FE966ED0E6E91746B450DFAB0838 /* RCTLayout.m */, + 3E6DA31649B87594C19ADE57BFBBAE0F /* RCTMaskedView.h */, + AFF6530F3B4C1E1AC8DB8D75B640D4BD /* RCTMaskedView.m */, + 2B72AE536F8B8C2AA6D9A56CCEC1DD4F /* RCTMaskedViewManager.h */, + 63138858F5592323DEE334EE1BC465FD /* RCTMaskedViewManager.m */, + 4449535CB23CB4DB2505514C5766F3E6 /* RCTModalHostView.h */, + 28E86485C9C373DCCDE0F272759FB94E /* RCTModalHostView.m */, + F090BE13F20793DFFACEF7AFEE442987 /* RCTModalHostViewController.h */, + E05754C48F54E4BE3182E0BA035B8B20 /* RCTModalHostViewController.m */, + 227B079101349A1247C9864F6D0702EF /* RCTModalHostViewManager.h */, + 68104266FCA89891569DEEB4B4E94EA3 /* RCTModalHostViewManager.m */, + 09BA6B5F4933A9065D79D5E807AD54F3 /* RCTModalManager.h */, + 7175D1998B8E5541F362B5AFA4403160 /* RCTModalManager.m */, + 7B52B5BB6216EBD02881F75790A07E13 /* RCTPicker.h */, + A2273DB842F6857A504420A7BEA421D3 /* RCTPicker.m */, + 2A54535212456A395C1685CFAB7AB20A /* RCTPickerManager.h */, + 69EB7BF524AD0245AD2BA7B8EE24C5C1 /* RCTPickerManager.m */, + 2E3FF804545A3D7676103453272D4207 /* RCTPointerEvents.h */, + 6FCBB8A89C552E6D39E0C41C409BE701 /* RCTProgressViewManager.h */, + A6A1A288EEA788FB0FE68D29F9947982 /* RCTProgressViewManager.m */, + B63F605A34DABD21A4CEC821C3CE2AE4 /* RCTRefreshControl.h */, + 7B9CEBE1FBBDBB5D473461A39D9A65C4 /* RCTRefreshControl.m */, + CC5E1BC2080BF624F1360EA33C884DCC /* RCTRefreshControlManager.h */, + D086BDC8EE58AF8B7506367350503C87 /* RCTRefreshControlManager.m */, + 58335CBB2F8ADFEE01930DDCC188925C /* RCTRootShadowView.h */, + E4426E25538C8C6CFEC721B5AD10AB6C /* RCTRootShadowView.m */, + F9FDD43A4EBA179107314B4D67768121 /* RCTSegmentedControl.h */, + 68D3341FCF40F5CF5594CFAECD249AB0 /* RCTSegmentedControl.m */, + 083240A48F5F633498F445DC5EA39E52 /* RCTSegmentedControlManager.h */, + 258B401F49795B5516F76F11B529A247 /* RCTSegmentedControlManager.m */, + EB360CC720C5485D028F9B482206D046 /* RCTShadowView.h */, + D518267F621AABCE1AEEA5E4D96B0F12 /* RCTShadowView.m */, + 1E6FAD20119C2A28FCD3AE1E2B37732F /* RCTShadowView+Internal.h */, + D5668FBAE8B2362798A6E63208DC49B3 /* RCTShadowView+Internal.m */, + 3DA225ADFC08E7BA3A023A5869183C39 /* RCTShadowView+Layout.h */, + 2E47890F881BBB8DCEFDB2FB78F8E35D /* RCTShadowView+Layout.m */, + 6903BA9656FA1FDA362025E8D4A82097 /* RCTSlider.h */, + 32AD5BF8C0BE27DFF135A2549E663391 /* RCTSlider.m */, + D35C46F3C4D2A2C913E985B6DC331EE8 /* RCTSliderManager.h */, + 6A344931648C96CFB36A6D25EEACDD7C /* RCTSliderManager.m */, + 1450A29A2ECA7F7F52819FBF1080E96D /* RCTSwitch.h */, + E3840C1128E2D918D5FD34FD02BA879C /* RCTSwitch.m */, + 8053259662D09AA8415EC0F35ADD8FDA /* RCTSwitchManager.h */, + E3693BD21A8AB71ADADE3299FE493832 /* RCTSwitchManager.m */, + 2BA90E5CF1AD526DEE8E4F31EF6C571B /* RCTTextDecorationLineType.h */, + F25C521F40E45F6EDA7B5A44B2F9A0FC /* RCTView.h */, + 5DC2762CAC29DB0CC70413E6C95CA944 /* RCTView.m */, + B122D41247F6D07F3102CB64BCF52B49 /* RCTViewManager.h */, + 0C13EBC780C052C78D94EFCA56250435 /* RCTViewManager.m */, + 3245737CF751F5AECA0A503ECA82271D /* RCTWrapperViewController.h */, + 97502A36BBC67AA4C616D00C30135D5F /* RCTWrapperViewController.m */, + 9BB084FDA0E48D4C1D390A3924DA2D89 /* UIView+Private.h */, + 85DA31FFB26088223BA11F5C4586CED6 /* UIView+React.h */, + 1BB1E26CD232CDAEBBD66781A6D18B6A /* UIView+React.m */, + FE7C07B271AA9CA5ACDEAEC93AB69EF9 /* SafeAreaView */, + 603C4559CA02615BDD2724C13D24AB8D /* ScrollView */, + ); + name = Views; + path = React/Views; + sourceTree = ""; + }; + CAF69240FAED7E5114FF39FD7F75DBEC /* Support Files */ = { + isa = PBXGroup; + children = ( + 24341991C9041CDF4FDF7F98CB64C9B4 /* UMBarCodeScannerInterface.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsi"; + path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; + sourceTree = ""; + }; + CB6EF64F6B5DF95817C9A979D7EB70AA /* Pod */ = { + isa = PBXGroup; + children = ( + 8FD4AD340FC214EE1123C835D8C8FE58 /* LICENSE */, + D905C7F6A78E8CB4BAA9977EEE5E9256 /* README.md */, + D63C7908A83EB34E7004779295B74A87 /* RNScreens.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + CB7A8944538D599FEA65F217FBBFD088 /* Support Files */ = { + isa = PBXGroup; + children = ( + 024933D8DBC8B77315547CC1F1D2DD2D /* RNLocalize.xcconfig */, + 56AB378952DF036D49BED91E5F1F7340 /* RNLocalize-dummy.m */, + 175BC4A48744D552EC6D842A5A2FA5E6 /* RNLocalize-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNLocalize"; + sourceTree = ""; + }; + CB84BE947F697E00DFAF23320F89138E /* Pod */ = { + isa = PBXGroup; + children = ( + E7C22D559F5AACEE4ACF0E7404995F00 /* EXAV.podspec */, + ); + name = Pod; sourceTree = ""; }; CB9AB95A7270461AFF98F2B913F50089 /* Environment */ = { @@ -11207,37 +11035,6 @@ name = Environment; sourceTree = ""; }; - CBF0DE69808ECAF1071E810B500E164B /* Pod */ = { - isa = PBXGroup; - children = ( - 2DA489AEBF2BFF867E09F5B60963824F /* UMCore.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - CD47CF6EEC3C7DF5CF6D38253EDA7699 /* Pod */ = { - isa = PBXGroup; - children = ( - DBCD18ED6ECF37304F4180B2DE3CE1B5 /* LICENSE */, - CD4E9DD06E7FC929193069CD507CA2DD /* react-native-keyboard-input.podspec */, - 186300837274C6FC5F58B3B99C28D6E1 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - CD498F82FBA4B6A4DC32BD8DCEB0D46D /* RCTNetworkHeaders */ = { - isa = PBXGroup; - children = ( - 5FE5261A84C48DFD6D4E6F2D179451E2 /* RCTDataRequestHandler.h */, - 2D45D1BFFC3F90AFE8E36AE506FBC1EA /* RCTFileRequestHandler.h */, - 5C2D3167765BDE5DFEF39D55466493C8 /* RCTHTTPRequestHandler.h */, - 40395B670155BDF3C22C04B25B743A69 /* RCTNetInfo.h */, - 98152A2B2328E641A0AA5E255CCA3CBC /* RCTNetworking.h */, - E468CB2D7E39677577EDE1E1CD5B3AC2 /* RCTNetworkTask.h */, - ); - name = RCTNetworkHeaders; - sourceTree = ""; - }; CE3D4958A792E4F7FA482DC98263158A /* MethodSwizzler */ = { isa = PBXGroup; children = ( @@ -11248,43 +11045,58 @@ name = MethodSwizzler; sourceTree = ""; }; - CE5CA0801A336A42C46C1077335F4C39 /* react-native-video */ = { + CEDACDE30C639FCD09ACED195D36C881 /* Pod */ = { isa = PBXGroup; children = ( - 8E8C306DF978F84B3F94C84E57B738F9 /* Pod */, - B099CD4F303CFE0441F859260B6AFD76 /* Support Files */, - 004780D45122DA72A53132617C12EDD9 /* Video */, + 69FBD73EDA7A5F15216DF60FA6CE4C5E /* React-jsi.podspec */, ); - name = "react-native-video"; - path = "../../node_modules/react-native-video"; - sourceTree = ""; - }; - CEADDDE0E688FC3266192C2F5DEC31CD /* SurfaceHostingView */ = { - isa = PBXGroup; - children = ( - 6C384724752D5B87BE1CEDC7D2F75D81 /* RCTSurfaceHostingProxyRootView.h */, - 6A678F724671CC0ACFFB2FBD3EC35014 /* RCTSurfaceHostingProxyRootView.mm */, - 5BEBCC6ECF678F0FBFC11E586996E7F1 /* RCTSurfaceHostingView.h */, - 839C97C432976E496B1C43C7735C85A7 /* RCTSurfaceHostingView.mm */, - EE87301A2B40FBA63B66EF0AAE2E4462 /* RCTSurfaceSizeMeasureMode.h */, - 55CDE9C58723ADE684A7D823EE7CDA20 /* RCTSurfaceSizeMeasureMode.mm */, - ); - name = SurfaceHostingView; - path = SurfaceHostingView; + name = Pod; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - 50730591C3E131988D839484C0E58979 /* Development Pods */, + 91F599B97ECE8957ADF69CDCA13B9DCE /* Development Pods */, D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, 33C9409F639F73DC93A67940BDF8D840 /* Pods */, - 475A3A43E890DBD5493F0236FA4CE5BA /* Products */, + 983471F60B05255D89C4BF1672A379C5 /* Products */, A5ADA69422B84A7580C82CAA5A9168D1 /* Targets Support Files */, ); sourceTree = ""; }; + CF15587896C3D01DBD20444DFECCD51D /* internal */ = { + isa = PBXGroup; + children = ( + FA6C4F5EA7FED6E8B0042E9CDE849CFB /* experiments.cpp */, + 383A0666D89BB6A1BAB1CF830C29DD47 /* experiments.h */, + 278DEF1C4576075250821C4A53615C20 /* experiments-inl.h */, + ); + name = internal; + path = yoga/internal; + sourceTree = ""; + }; + D01502D6729B0840DF06EFABCFFDB752 /* KSCrash */ = { + isa = PBXGroup; + children = ( + 7AE31AC5AD689B9F880488494FA3CC27 /* Source */, + ); + name = KSCrash; + path = KSCrash; + sourceTree = ""; + }; + D0808AAEDC52978605021419FF2A4A0F /* Text */ = { + isa = PBXGroup; + children = ( + 04C7F7E550A95A300EA10E222112848F /* NSTextStorage+FontScaling.h */, + 60169723F416C6E12FBFAC63CAB57B8F /* RCTTextShadowView.h */, + 8A3F35EEE02E752F06C8D29DE4F1E003 /* RCTTextView.h */, + F528C63BA9C042F1E3493994696E3814 /* RCTTextViewManager.h */, + ); + name = Text; + path = Libraries/Text/Text; + sourceTree = ""; + }; D09096931434B1DFA96E06567AA58F52 /* Support Files */ = { isa = PBXGroup; children = ( @@ -11297,36 +11109,27 @@ path = "../Target Support Files/QBImagePickerController"; sourceTree = ""; }; - D0C45137D35513EA982CF07D07A9C150 /* Pod */ = { + D0CA0CBA3FBF6D6910BCD0A6DBF3CEF8 /* UMPermissionsInterface */ = { isa = PBXGroup; children = ( - D18C7569FE926F1D9C04C243B7234158 /* RNFirebase.podspec */, + BB3E6BDE9852186C2F89456FE139FC94 /* UMPermissionsInterface.h */, + E8AC455AB6642962B0513E266BCFF20F /* UMUserNotificationCenterProxyInterface.h */, + EC7A08A449B1F9040388A8633DBE971A /* Pod */, + 320D27D4767DC22FE920C91EA3CEF938 /* Support Files */, ); - name = Pod; + name = UMPermissionsInterface; + path = "../../node_modules/unimodules-permissions-interface/ios"; sourceTree = ""; }; - D1880E7BD118ADB975F9516E5DCB5189 /* Headers */ = { + D1107C133EFCB2530C69E5D8E81A539B /* Support Files */ = { isa = PBXGroup; children = ( - 6F7977379199D30597CDC9944240F9E4 /* JitsiMeet.h */, - 9D9FA4FC6DF8E830719459727D5ECAB1 /* JitsiMeet-Swift.h */, - 99F55336CA51A544DA22557825A83866 /* JitsiMeetConferenceOptions.h */, - BA040D64A0E9FBCBDF0150118A81B746 /* JitsiMeetView.h */, - 46935949380002F57FC1F47D09E7E074 /* JitsiMeetViewDelegate.h */, - ); - name = Headers; - path = Headers; - sourceTree = ""; - }; - D1900CD004210980DC84B1BF7B41323A /* Support Files */ = { - isa = PBXGroup; - children = ( - 2DDD1DD47E9C22159E8E450C71DD1E4F /* RNFastImage.xcconfig */, - 05185C8282C11E5465822CE5A4DBE13C /* RNFastImage-dummy.m */, - AFE538A8F74CFCE232A55F49041A4214 /* RNFastImage-prefix.pch */, + C70881379A1A9D1C8EBFDF89776553F0 /* React-RCTImage.xcconfig */, + A7FFACCD0A9D24295B320FAFF43B1135 /* React-RCTImage-dummy.m */, + 8B370A153301E0B5496EFD03C2834F93 /* React-RCTImage-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNFastImage"; + path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; sourceTree = ""; }; D19455872FB15489DD771F9A2BE619D0 /* FirebaseCore */ = { @@ -11384,114 +11187,182 @@ name = CoreOnly; sourceTree = ""; }; - D1D89B1D878DD645C6BDA6FCD902C7F0 /* Support Files */ = { + D1E3D368F0836A74CE9A638FD0E9EF34 /* Support Files */ = { isa = PBXGroup; children = ( - 90990DB5B1E9FD2BEC6C581F7B47FBFC /* react-native-keyboard-input.xcconfig */, - 5231A22C48E362EB0DD36886103DF5CC /* react-native-keyboard-input-dummy.m */, - E021473EC4630814170E3113CF3B7FDC /* react-native-keyboard-input-prefix.pch */, + B9815352B5AD138BB0B3D5D8E8ACBD78 /* EXFileSystem.xcconfig */, + 3B1C3566A07F3528AFA69DAC5D07CA6B /* EXFileSystem-dummy.m */, + 66499A1122D7FC740A65683AB128E1AC /* EXFileSystem-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-keyboard-input"; + path = "../../../ios/Pods/Target Support Files/EXFileSystem"; sourceTree = ""; }; - D1E9E02075F373E567F18DC5C98C5870 /* Inspector */ = { + D1F1ED18FCD661495420F74DA2FB5A2D /* storage */ = { isa = PBXGroup; children = ( - 780DDC9C63AB689CABFFF37736234AAF /* RCTInspector.h */, - 1CC7B5B63491C7977DDB0FF43509312D /* RCTInspector.mm */, - 5E2CCA3420B30843EDAC5AE8901604A6 /* RCTInspectorPackagerConnection.h */, - 2D7F2036C94E9C972E622D6FAB8A428F /* RCTInspectorPackagerConnection.m */, + 26302D552DCDBD054E070D7DD51F39B8 /* RNFirebaseStorage.h */, + 02C7C66DFB9DD66F620C3C8C774532A6 /* RNFirebaseStorage.m */, ); - name = Inspector; - path = React/Inspector; + name = storage; + path = RNFirebase/storage; sourceTree = ""; }; - D2B7EEA676260185AC73ED34040F7492 /* Pod */ = { + D2C072E69A320297A611AEEDAC0B1CBC /* Support Files */ = { isa = PBXGroup; children = ( - 29DE2AA01C76E506BFB69F91D3D7F90B /* UMFileSystemInterface.podspec */, + BB09793108C7309E166DD7F6431EA1D7 /* react-native-orientation-locker.xcconfig */, + CA3557B85A6351B8B481AD7B98A54E2B /* react-native-orientation-locker-dummy.m */, + 3332E79CFDFFCEDAD82E7395F4E80C2F /* react-native-orientation-locker-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; + sourceTree = ""; + }; + D2EFB8A7174E6458B1FBAA51B7BE5707 /* RCTBlobHeaders */ = { + isa = PBXGroup; + children = ( + A3F8F0FCC5B1C0A31483BE6787C7D940 /* RCTBlobManager.h */, + 9A127CD6A0C37EFC59A04DD7E4C7A291 /* RCTFileReaderModule.h */, + ); + name = RCTBlobHeaders; + sourceTree = ""; + }; + D3A204C8CD097E0EB3946AAB34376F72 /* Pod */ = { + isa = PBXGroup; + children = ( + 3A28E7A0751A12FF1107E477BAD11FEB /* FBLazyVector.podspec */, ); name = Pod; sourceTree = ""; }; - D2EDB348A764D3260D6FFFF79896A60A /* DevSupport */ = { + D44F347B5B265AC827AECC9A0897718A /* converters */ = { isa = PBXGroup; children = ( - 2675FEE1C5CC622E6FC7BE1A262FCAEA /* RCTDevLoadingView.h */, - 9B9690EB13E23BDAF9A0F9ECFAB1982D /* RCTDevLoadingView.m */, - 3F62B220D58A201F449412D9D6D89F08 /* RCTDevMenu.h */, - 088BC08256EE16FB9D1600C61EA7F1DA /* RCTDevMenu.m */, - 5827FBD292A7B6B9D9D09650FB0B7754 /* RCTInspectorDevServerHelper.h */, - 712C28D8153DB4FBC0218EF9578B8D57 /* RCTInspectorDevServerHelper.mm */, - 5E2F5BB3DBC0E27EBE7BF3983F5113A5 /* RCTPackagerClient.h */, - 4E27F6DE823CA3EAF16EA4D8E1D12EEA /* RCTPackagerClient.m */, - F1F724C9FC2FB1766FCE69B75AC8861B /* RCTPackagerConnection.h */, - F3EF8237148305F068A9321C7E8291A1 /* RCTPackagerConnection.mm */, + 9C612160739BB69042D52AD892C64554 /* RCTConvert+UIBackgroundFetchResult.h */, + 308928E7A546335085AEDA026EF00756 /* RCTConvert+UIBackgroundFetchResult.m */, ); - name = DevSupport; - path = React/DevSupport; + name = converters; + path = RNFirebase/converters; sourceTree = ""; }; - D3441D02DA38739978A0E113936B58B0 /* Pod */ = { + D4914CF76F184259C87A731C165E4005 /* JitsiMeet.framework */ = { isa = PBXGroup; children = ( - 598152B889676E3C4637F003E88A8661 /* LICENSE */, - 71D668F96FAE4D0A055CDFDD5DD8D0C3 /* react-native-splash-screen.podspec */, - C51C2026F45418B528689CC462CDE643 /* README.md */, + F76BD452A8B612446E9F6420CCAE349F /* Headers */, ); - name = Pod; + name = JitsiMeet.framework; + path = ios/JitsiMeet.framework; sourceTree = ""; }; - D420784E18780EBA1479B0647CD497E2 /* CoreModulesHeaders */ = { + D4DCF974D8C7836E4E5BB81C271667E7 /* React-cxxreact */ = { isa = PBXGroup; children = ( - 77FA87602F55FB4A63DA8567BFA156A3 /* CoreModulesPlugins.h */, - 614A73D88C1380781FFF21A62E788F4E /* RCTExceptionsManager.h */, - C59E3995282AAFDEE53C840CF2AB879B /* RCTImageEditingManager.h */, - A7927F6FB82A8D8187C65539C8543078 /* RCTImageLoader.h */, - A5627F36C89EA4E324B594B82049CCEF /* RCTImageStoreManager.h */, - 5FFE160F8480C5134B62F8D18FBB2D06 /* RCTPlatform.h */, + 48E9ABA92A27F5B25D22B2476BD981DC /* CxxModule.h */, + AA60099AF92CE1A9777F8B7CE2C36B4E /* CxxNativeModule.cpp */, + 2D39C8BEF9B469F3D9DAC70037B78025 /* CxxNativeModule.h */, + 4957DCF776385665BE1CA74C4C1D0F3B /* Instance.cpp */, + D68D5FA26C31018142C8B1561C2C016C /* Instance.h */, + E20B78A3A4F66E5F6881811762EA7F52 /* JsArgumentHelpers.h */, + 5772B55631A745C37783EC7C709EF79C /* JsArgumentHelpers-inl.h */, + A2A5323626069A0FF9A17631E5CCC31C /* JSBigString.cpp */, + A425ABC3BFD99E7D65616567518E2BFD /* JSBigString.h */, + AAC8DCEBA187EC9AC3701829A82616CD /* JSBundleType.cpp */, + FB6E0B285548B30DED6A6248BA9BFEFC /* JSBundleType.h */, + 5F064E42B455BE53CAE2D7E6B59201EF /* JSDeltaBundleClient.cpp */, + DA26D204A30ED51CCE0BD106B23C0230 /* JSDeltaBundleClient.h */, + F5FEC669E3BD8C866C11286114FB510B /* JSExecutor.cpp */, + 8BD37A0EF96478DD1BE2118DB36A5AC5 /* JSExecutor.h */, + 2DBC5B39B683FAF0B22E8345E8FA0AC4 /* JSIndexedRAMBundle.cpp */, + 9B1403DBBCFEAA585EB3BA40D8B8D749 /* JSIndexedRAMBundle.h */, + 99DD3DB01EE1A06040E37EFC499A396F /* JSModulesUnbundle.h */, + D1D9F42749D286DA3C3D85F382605AEA /* MessageQueueThread.h */, + B66F7863B169D795F41BBADAB844A438 /* MethodCall.cpp */, + 82C15BFB58FEAF5A22DE0B1748BCA46D /* MethodCall.h */, + C34ABEBDE4D8492B795DDD2CA747380D /* ModuleRegistry.cpp */, + B699A1175DE352460EF2B0B142E1298A /* ModuleRegistry.h */, + 55FFD76EB09D336F689900DD9663CCE2 /* NativeModule.h */, + 020A6B2EB8E76E9D6E47C3E946F29E95 /* NativeToJsBridge.cpp */, + C9AE0B6CB928A67EC2BD1D1E3387E5E9 /* NativeToJsBridge.h */, + AD5C0DA7F535E3ECF324E45733E4DDC1 /* RAMBundleRegistry.cpp */, + 7B2C39C9CE469B4A332CBC27B252EAA2 /* RAMBundleRegistry.h */, + 9DB542FD3D0B96A4F4391D29499D94A6 /* ReactMarker.cpp */, + F43EAFAEB8C9C31F3BDF9A39DF0FCFFB /* ReactMarker.h */, + FE68A9C711BE0042E8ADE867539ACC62 /* RecoverableError.h */, + 6CEFB3485E06EA5B2BADC8F2873030FC /* SharedProxyCxxModule.h */, + 8AFE60A615ADE23BA85FC290DBE1A765 /* SystraceSection.h */, + 2E374AD08DD4E4BAEA47AFFF300F8D38 /* Pod */, + A03D86753B521BA3454CF6BFF405E88E /* Support Files */, + ); + name = "React-cxxreact"; + path = "../../node_modules/react-native/ReactCommon/cxxreact"; + sourceTree = ""; + }; + D60AD409CB9C28BC7135A6E6E7B73967 /* CoreModulesHeaders */ = { + isa = PBXGroup; + children = ( + 31E470CC14E82E7C6A7FE9A256BFB0EB /* CoreModulesPlugins.h */, + 8E63FAD4665FF5DB554FDF20534BF8E6 /* RCTExceptionsManager.h */, + 8471316B270247E1270FAD82B76A5B23 /* RCTImageEditingManager.h */, + 4EF4D7E123638224D0B51EBBA8963165 /* RCTImageLoader.h */, + 39720CF863C5D962B6BE9C4B0368C228 /* RCTImageStoreManager.h */, + 8308FD9589FAE440E2FFAEB5F872C426 /* RCTPlatform.h */, ); name = CoreModulesHeaders; sourceTree = ""; }; - D535F7960DE82803D0FD45A34D23B720 /* Support Files */ = { + D646C5263A39091ECDD8ABE5CDC979C5 /* Support Files */ = { isa = PBXGroup; children = ( - CAE65338D4166647374D7B7BAEB9B4F8 /* RNImageCropPicker.xcconfig */, - EBDAF24F802E12C7AAB1A8C63B048BFB /* RNImageCropPicker-dummy.m */, - 80FB878784C299522EF162ECF2E29A44 /* RNImageCropPicker-prefix.pch */, + AA3C169E0715A7983E2D8A445482B9CD /* react-native-background-timer.xcconfig */, + 4AAD8C1F4911585A04EFD83712CC75A7 /* react-native-background-timer-dummy.m */, + 892B9CED75181C28686A00796101E0C3 /* react-native-background-timer-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; + path = "../../ios/Pods/Target Support Files/react-native-background-timer"; sourceTree = ""; }; - D58F879D99E2E6A65DE9D4A02C88B556 /* Pod */ = { + D6936387F6ADFA9B9410EEE5FEE5835D /* React-RCTAnimation */ = { isa = PBXGroup; children = ( - 650FFC332195A1D747F6928FB57DDD96 /* EXAppLoaderProvider.podspec */, + EB06C422D9B67EBB917F90449B3F9505 /* RCTAnimationUtils.m */, + A65B3EC0C674A8437A43B4C3D3AE0536 /* RCTNativeAnimatedModule.m */, + 57CE1D18A14A6BABC2FC5E303D8B9D7F /* RCTNativeAnimatedNodesManager.m */, + F2FD74D219DCCF5DEEC37F3852F35F55 /* Drivers */, + 7C3E8C1944FA8DDAAA3785E50039F30D /* Nodes */, + 815673397C33C924AC3DE47178059DCF /* Pod */, + 300705AA4025EB621324B44C9D72D392 /* Support Files */, ); - name = Pod; + name = "React-RCTAnimation"; + path = "../../node_modules/react-native/Libraries/NativeAnimation"; sourceTree = ""; }; - D6815C2C41E82405262D17A37ECFC11C /* Pod */ = { + D837B77AD9D7DF072EAC297292EF1E9F /* Support Files */ = { isa = PBXGroup; children = ( - 61668DB60F50D901EF22075B3DCCACF7 /* React-RCTImage.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - D7E990FEF58D09CC543DA847215860F9 /* Support Files */ = { - isa = PBXGroup; - children = ( - 12FD286CCA8495FB5C0057661A13EDBB /* React-cxxreact.xcconfig */, - 11F1C0F40EDD14850023BC7C600AEBEA /* React-cxxreact-dummy.m */, - 002330595AAFC31D5A30A8460B1BC560 /* React-cxxreact-prefix.pch */, + 9F8BCF87FBCD5F997519A8F55C3A7752 /* ReactCommon.xcconfig */, + 16D8618D47B0D1DDCE5EE7A13529C47A /* ReactCommon-dummy.m */, + 4BEA44F8CC2B1A0D65D67723D9974753 /* ReactCommon-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; + path = "../../../ios/Pods/Target Support Files/ReactCommon"; + sourceTree = ""; + }; + D887EB0FD9D2E7A9947C3095C668551D /* CxxModule */ = { + isa = PBXGroup; + children = ( + EE9A9A8D7FED4FFC97D7ABDC30B692C3 /* DispatchMessageQueueThread.h */, + C778DFBE739DE87DAC7AD75A1E031227 /* RCTCxxMethod.h */, + 74AC1BAACC23EB74B404414837736266 /* RCTCxxMethod.mm */, + 2C1F72F0BD2A08E12586D00494C63204 /* RCTCxxModule.h */, + AB81A377426BA316EA4B0473C0E2B276 /* RCTCxxModule.mm */, + 7F67251E9C29873713656C6A8938E171 /* RCTCxxUtils.h */, + 0CBDC0B5D095A5D4C73F6A26260BACF3 /* RCTCxxUtils.mm */, + 2B83CDCA7BE8BB67105ACC12019F5CC2 /* RCTNativeModule.h */, + 680D18079110593F12BB5BF78E604EAE /* RCTNativeModule.mm */, + ); + name = CxxModule; + path = React/CxxModule; sourceTree = ""; }; D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { @@ -11501,40 +11372,38 @@ name = Frameworks; sourceTree = ""; }; - DA85C42148305773D3D9C6A8CED2C1CC /* EXConstants */ = { + DAB8CAE4C8C7689318BDB201FF03F3F7 /* UMFontInterface */ = { isa = PBXGroup; children = ( - B3A93AE402EDF1485DA4B4A5AF61A8C2 /* EXConstants.h */, - C0A06E253AD3D4FA7736DB1E5C6EA5DF /* EXConstants.m */, - 365218A250FD18C75E06B7403B341F07 /* EXConstantsService.h */, - E3A9649E834BBCCF4F0B32C6998F598D /* EXConstantsService.m */, - 110160E9E24020CC18551AA746E7D3CF /* Pod */, - BDA0EE241598BB2E0ABE7F04F2A11C52 /* Support Files */, + B712A811A95C5FF2DDCB62A4BCAC6CD6 /* UMFontManagerInterface.h */, + A42A33CA4A7462D2C285F9D92E401288 /* UMFontProcessorInterface.h */, + 25B7C93F9137D39DC92DCA9DCC0C3044 /* UMFontScalerInterface.h */, + 55154B54EE4865F57F5711F9AEE66225 /* UMFontScalersManagerInterface.h */, + 7145FDA03AA5E8044DC5857B2F84FB1A /* Pod */, + 9351AEC820875CCBDA9F6CD2F7F348BE /* Support Files */, ); - name = EXConstants; - path = "../../node_modules/expo-constants/ios"; + name = UMFontInterface; + path = "../../node_modules/unimodules-font-interface/ios"; sourceTree = ""; }; - DC0845EAA6FD1232177F42198C7044E1 /* Support Files */ = { + DBB22015DF57F7660EC48DAC0976BCFE /* Pod */ = { isa = PBXGroup; children = ( - E5EC125FBD06D04A9ED25061720D8707 /* EXAppLoaderProvider.xcconfig */, - 69D28CD3E747291CBDED94E8F270D224 /* EXAppLoaderProvider-dummy.m */, - 7D91B77264527373475F8A9075E98D1B /* EXAppLoaderProvider-prefix.pch */, + BB27E23F624B07700E5BC096AB174C14 /* LICENSE */, + CC3239C87CAD4514F6D700F30B839462 /* README.md */, + 567B56D2C796F5972DB5525C5FC67726 /* RNAudio.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAppLoaderProvider"; + name = Pod; sourceTree = ""; }; - DC2D6EF05AC07704D9B5E103A22C1EF6 /* Singleline */ = { + DCC0ACB9E9B91461F5BBFA02CF7C7F4A /* instanceid */ = { isa = PBXGroup; children = ( - 2044349ACBA13B10320CE610FD274CDF /* RCTSinglelineTextInputView.m */, - 351EC724329F620BF206EBDD54080720 /* RCTSinglelineTextInputViewManager.m */, - 1DC6C60D01081B238A711C97EE63CF3E /* RCTUITextField.m */, + FB8115753F4704FE108290195CF3D86A /* RNFirebaseInstanceId.h */, + AC927CC5D5DBA2EE28F31A2BE9E5B4ED /* RNFirebaseInstanceId.m */, ); - name = Singleline; - path = Singleline; + name = instanceid; + path = RNFirebase/instanceid; sourceTree = ""; }; DCD32508C0D831B61B9C1608F8B43B13 /* FirebaseAnalytics */ = { @@ -11547,6 +11416,22 @@ path = FirebaseAnalytics; sourceTree = ""; }; + DDBF7E7B546118A3B452F0D7BA4606FE /* RNImageCropPicker */ = { + isa = PBXGroup; + children = ( + 9367F3F80FB4DA9DE9C2087A02487CCA /* Compression.h */, + E986712B01E8C99AC088661DE5C6235E /* Compression.m */, + 7CA044417A337AFA0C9369FD09F890F4 /* ImageCropPicker.h */, + CAF5F2FA5C5764EF3607ECC2A748C3C3 /* ImageCropPicker.m */, + 83454D1C2F4F7652AD5FC8DAB5443EE1 /* UIImage+Resize.h */, + 1108C4EAFDDFA4429E0A2F9BB6E06B44 /* UIImage+Resize.m */, + 7B0CB8ED7B9EB87DA99048A431371D6F /* Pod */, + 3CC8BF65EAC88752AB9F6D0A6D26D0E2 /* Support Files */, + ); + name = RNImageCropPicker; + path = "../../node_modules/react-native-image-crop-picker"; + sourceTree = ""; + }; DDF7CB7F940955A7AEC6BDF86F0F4968 /* Support Files */ = { isa = PBXGroup; children = ( @@ -11558,198 +11443,242 @@ path = "../Target Support Files/libwebp"; sourceTree = ""; }; - DEC8E8F77B0A70AE432082B6448EAAAC /* Support Files */ = { + DDFAF1270330A9984FEA63D8CB378086 /* Nodes */ = { isa = PBXGroup; children = ( - DA6B3F8075E47D4DBA47869501409698 /* EXHaptics.xcconfig */, - 5ADEA1A8FB531F75151FDA17F7DF56FF /* EXHaptics-dummy.m */, - 30DBD669AE462A1E9D44B769646B8561 /* EXHaptics-prefix.pch */, + 301284AEE036F0F9F9F8C4DD634126A1 /* REAAlwaysNode.h */, + B5EB9C763083FC66442C03EDEBB099B0 /* REAAlwaysNode.m */, + 1C3B34A1681B0CF09D087F28BE5B198B /* REABezierNode.h */, + A2895436FA26C0B09A11F511F4FEA0DB /* REABezierNode.m */, + F03E92701B927C3D2F709EEE919A5F84 /* REABlockNode.h */, + 68A0586193EAAA0FDA5689FA78A48F49 /* REABlockNode.m */, + DB356D244D73F77E110E549ABD8161AB /* REAClockNodes.h */, + 0594FB0A915C130560EDA762CB22435B /* REAClockNodes.m */, + 4E33362888E1CFC0E1660407237C36CF /* REAConcatNode.h */, + E0173234F52D540979F8C3F93C302BF9 /* REAConcatNode.m */, + FB2F527D5960511EC99FE1E634D8589C /* REACondNode.h */, + 01FF454E1A26E73CEB3E4A937CB669CC /* REACondNode.m */, + 4D81F0DAD71C94F388CA56FA7AD475E9 /* READebugNode.h */, + 6E63E1E88A927C1D9DF91057F3E2DF75 /* READebugNode.m */, + C05440DE7AEDC433EE007D0A499468EE /* REAEventNode.h */, + 85E8965240E870A33B8E5ABF719BB4E8 /* REAEventNode.m */, + 133BD491F5DD8B0DF35E946C8DEBA30A /* REAJSCallNode.h */, + C478C38681D80CE7EAB7CE07BC58768F /* REAJSCallNode.m */, + 85381644A4EA16890C52DADEC1C15249 /* REANode.h */, + 496C136B3E821FA2E95DA9B0665C0FE2 /* REANode.m */, + 6086141A9B5A9D0197F805079033C2CA /* REAOperatorNode.h */, + ACDCAD340D72814FA1D47411EBC872DA /* REAOperatorNode.m */, + BE198CE5996ED4DFCC4AA5591D2B427E /* REAPropsNode.h */, + 271F27E7527C4BB4F565FED763BEFF42 /* REAPropsNode.m */, + 692E0A6F538450F43E1A8386D1F00E72 /* REASetNode.h */, + 8AAB3FD810D6111FB3B9053D1761F428 /* REASetNode.m */, + 577F3CEA612E64199FF56159EBE2DA0B /* REAStyleNode.h */, + 914FDDA6D6F17E08C72950ECA22FA6D5 /* REAStyleNode.m */, + 85FFEA0EA30D02DB5C96E92331483A6C /* REATransformNode.h */, + C9F171DE6D8B89954C60A824C6BC6524 /* REATransformNode.m */, + 19DC805E4F75413FCE81213DEABAA314 /* REAValueNode.h */, + F24CAB35F78694897A06293B1BECAF99 /* REAValueNode.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXHaptics"; + name = Nodes; + path = ios/Nodes; sourceTree = ""; }; - DEF7AC23EB89A1FAAA42A2371B958C48 /* TextInput */ = { + DE166B6954BB790B03156C2EE3AE154A /* react-native-orientation-locker */ = { isa = PBXGroup; children = ( - D7D6C76A0CC4E29642AA995E5B207425 /* RCTBackedTextInputDelegate.h */, - F6CB18E81EB5BBC1BA963619DEF82FB7 /* RCTBackedTextInputDelegateAdapter.h */, - 5FC3B9919FB23C6ED6EEBCB4F7118FB0 /* RCTBackedTextInputViewProtocol.h */, - 811757FAB06905B7FB9660C497BBC927 /* RCTBaseTextInputShadowView.h */, - E9A7362D0B4592165074C69EECE25B16 /* RCTBaseTextInputView.h */, - 8A5C524E049C1E72F169ED5046047CEB /* RCTBaseTextInputViewManager.h */, - E07F75C2202CCBB305FAE378EA75B5C0 /* RCTInputAccessoryShadowView.h */, - CB8B12C52AE984A3128A420CB4442F11 /* RCTInputAccessoryView.h */, - 757A21D63AF87B505D7A9F48C9C6F745 /* RCTInputAccessoryViewContent.h */, - 87D85EEB99234929D3C3B840B4842934 /* RCTInputAccessoryViewManager.h */, - 4103E5D22024414FEBC368E41E6B0FA8 /* RCTTextSelection.h */, - BF59BE1E80A04869F55B2D027CC437A3 /* Multiline */, - E2F7C03493F2567D652CF256010F6C7A /* Singleline */, + 921A0622A5C88DE709E970E706A0762F /* Orientation.h */, + 238FE67EDE346139DFEEEB5E6578B6C3 /* Orientation.m */, + 2EB264F30277111484C61FCCC192FD25 /* Pod */, + D2C072E69A320297A611AEEDAC0B1CBC /* Support Files */, ); - name = TextInput; - path = Libraries/Text/TextInput; + name = "react-native-orientation-locker"; + path = "../../node_modules/react-native-orientation-locker"; sourceTree = ""; }; - DF5B9D2ADA85D78C628BDA498EA6B086 /* Support Files */ = { + DE1C2C02B477B0BB3107F8997CF76733 /* EXWebBrowser */ = { isa = PBXGroup; children = ( - 98D20B600B4CB23C0132B4592AF3D14B /* RNVectorIcons.xcconfig */, - EB2C0F0288889CB5356F89329F9A432A /* RNVectorIcons-dummy.m */, - C3B8419AF9BE9E55B63627F973FED5D9 /* RNVectorIcons-prefix.pch */, + 46F635BE10A77E855C99B88B6FC10775 /* EXWebBrowser.h */, + 17743B9E1CC2D79F94D36F534A8AB073 /* EXWebBrowser.m */, + 7BA6621DC36170C061FE889107E14D3D /* Pod */, + C80F5F327A82C460CEDB234B6693D781 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNVectorIcons"; + name = EXWebBrowser; + path = "../../node_modules/expo-web-browser/ios"; sourceTree = ""; }; - E0B1F19F1A4CDF36D89F11E8904463EF /* RCTTextHeaders */ = { + DE9934EC75AF0FF71E86D7715298F2BC /* UMSensorsInterface */ = { isa = PBXGroup; children = ( - 337C91820DCF429BDF552DD61942B319 /* RCTConvert+Text.h */, - D81EAFF97C6B2431E7B66891FA606C38 /* RCTTextAttributes.h */, - 6959E0CA21B8E6A19ACA9DFBE7568D35 /* RCTTextTransform.h */, - 43DAB6790BE0667B8CCD889F97E99F7C /* BaseText */, - 0F83F5F667BB279D2E3DFD7A72AB60E1 /* RawText */, - E4D564BC63A4E6CF099CC9FFA0C26695 /* Text */, - DEF7AC23EB89A1FAAA42A2371B958C48 /* TextInput */, - 655BD8BB1D574AD2AFEC373F7D8FF569 /* VirtualText */, - ); - name = RCTTextHeaders; - sourceTree = ""; - }; - E0EFCF3BEF1C0A3F4A43690C7FC29F1D /* Pod */ = { - isa = PBXGroup; - children = ( - 01D459611ACD49F6296302580F8F0172 /* React.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - E12E2E153AD17620BE761A619A79A955 /* Profiler */ = { - isa = PBXGroup; - children = ( - 3434AB2C795DFF5066BD8DB26942F527 /* RCTFPSGraph.h */, - 062CE919492F26377744105E3A4BB0A8 /* RCTFPSGraph.m */, - A6D2000D624583DC8BFB62705BD356BF /* RCTMacros.h */, - 1CA54B109A863CB8816A4C71E3CA42EC /* RCTPerfMonitor.m */, - 2165E7F41FF05854F25D07BB91F328E0 /* RCTProfile.h */, - 2FEE895C3510BEC204D4824A51DD7A31 /* RCTProfile.m */, - FFD62DCC16E6B68D561EAA50BB6336D7 /* RCTProfileTrampoline-arm.S */, - E23A1147D0F357AF3303C538FF40F94C /* RCTProfileTrampoline-arm64.S */, - 70B970961C2F3B5000B0EE8ABF17A2C5 /* RCTProfileTrampoline-i386.S */, - 5DAFCE1971931E9347AD180C001F8B3D /* RCTProfileTrampoline-x86_64.S */, - ); - name = Profiler; - path = React/Profiler; - sourceTree = ""; - }; - E227F3F9AA11E52174D7FA97E7A05BFF /* UMModuleRegistry */ = { - isa = PBXGroup; - children = ( - 1A3D63B612126AE138FA17F713BDDB8B /* UMModuleRegistry.h */, - 5F7069FF59F1735B403A2682F109F68E /* UMModuleRegistry.m */, - DDA1EFB3F0B2BA756AF27AB8E6BC67C7 /* UMModuleRegistryDelegate.h */, - ); - name = UMModuleRegistry; - path = UMCore/UMModuleRegistry; - sourceTree = ""; - }; - E2F7C03493F2567D652CF256010F6C7A /* Singleline */ = { - isa = PBXGroup; - children = ( - 9E31F1E5B4E4DA3366E0B7FDE21835F1 /* RCTSinglelineTextInputView.h */, - 5CD0C0E15FE92C2CD6C99AB6482A37F6 /* RCTSinglelineTextInputViewManager.h */, - C6BA0DA9A42BF72CD1D0557441A778DA /* RCTUITextField.h */, - ); - name = Singleline; - path = Singleline; - sourceTree = ""; - }; - E3258550B957B325DF95664E736F71AF /* UMModuleRegistryAdapter */ = { - isa = PBXGroup; - children = ( - 0714225B3E9669B358308FCD207C952A /* UMModuleRegistryAdapter.h */, - 6436267E744D2F7B2B077E186BD29DC0 /* UMModuleRegistryAdapter.m */, - 8DBB9724792F06FB38B656212C889AED /* UMViewManagerAdapterClassesRegistry.h */, - C0D5886475B6246F510D98F09167BEC2 /* UMViewManagerAdapterClassesRegistry.m */, - ); - name = UMModuleRegistryAdapter; - path = UMReactNativeAdapter/UMModuleRegistryAdapter; - sourceTree = ""; - }; - E34F22B017E15744E406DAF1E578E0FB /* RNFirebase */ = { - isa = PBXGroup; - children = ( - 17B13C774AB503B6312CDE26CBE9CA5F /* RNFirebase.h */, - 1016EC618A277565403F12E1051EB6A7 /* RNFirebase.m */, - 02ADDCBE575728142E45669BF1875E09 /* RNFirebaseEvents.h */, - 4DF51D0CC454A66F5E3CC78310A27191 /* RNFirebaseUtil.h */, - 3D59A161EF4CED1ACD8E863BF7BC09C1 /* RNFirebaseUtil.m */, - 22A42B354255A3FB0F60D6BBAB3CB381 /* admob */, - A7D0FF035C42EB5D9895F84F5BD54707 /* analytics */, - 0ECB2DD9E67A8C8F989D1AFDCC2D66EA /* auth */, - A764D4677C67A1A33F3E88BDAAF9E86D /* config */, - 537621AA18A9D9A7BB2BB49511A7502B /* converters */, - AF08A6000D93DFDD4187BF6F3A233AAE /* database */, - FF4607C01C768F6BCF97FB9A40DCFA90 /* fabric */, - 5ECB16F8A221B70A206CEA0232F87FDA /* firestore */, - 0F27A5B87B83B6BF4F642DC5DAC191A9 /* functions */, - 06CAFBB14C874EEABCD9F72CBF560C5A /* instanceid */, - 169B2AA745224559047F58EC5E5DB3E5 /* links */, - 0D00014A85FC9F0F676018FC61780CD6 /* messaging */, - 9D82C9AE562FA3FD768A579CC62032B5 /* notifications */, - 8B1F56B75EF4D248EE8C952ACCB82098 /* perf */, - D0C45137D35513EA982CF07D07A9C150 /* Pod */, - 0433AA30449AD2014CE18A8971DD3C01 /* storage */, - 8BB1938442E9230FA02CB87AE49FAB13 /* Support Files */, - ); - name = RNFirebase; - path = "../../node_modules/react-native-firebase/ios"; - sourceTree = ""; - }; - E37DC44FA9D63277E9652654C30BC70B /* UMSensorsInterface */ = { - isa = PBXGroup; - children = ( - DC0456F8A3FA896849DB899E8CF6E7FD /* UMAccelerometerInterface.h */, - E5E066BCE8B089D2C4119125029F4443 /* UMBarometerInterface.h */, - 470FEEE3AC29F338433ED929A5EED978 /* UMDeviceMotionInterface.h */, - 61FFA59D4E091DA878EF080AE1CCB6EF /* UMGyroscopeInterface.h */, - 0E984230E45217D3C215C065248C65A7 /* UMMagnetometerInterface.h */, - 9F0168E8F3494D2B40B6C16BCBDA3124 /* UMMagnetometerUncalibratedInterface.h */, - A34430A7471950A41BEAAE2C436849BA /* Pod */, - 765FCBD6FD33959CD5E54F9EABE048D5 /* Support Files */, + FF633E2FA8C77991B948A4F495F14E46 /* UMAccelerometerInterface.h */, + 9D176633631EE22663F9C8F1FB1E3EB4 /* UMBarometerInterface.h */, + 8A500DB65BBBF4ACC4BA8E4DD95DAB8D /* UMDeviceMotionInterface.h */, + 71B0D8D3D3136C027DCA0A5C9482113D /* UMGyroscopeInterface.h */, + B4D870BA7E29F39599167B224F875EA4 /* UMMagnetometerInterface.h */, + 1681B16C062799C5D851A07AB6ADA9FF /* UMMagnetometerUncalibratedInterface.h */, + ED0AF6CC5D78AC81C011E020080F3FB4 /* Pod */, + 5D0A076A398A2AF004FC19062D7B020D /* Support Files */, ); name = UMSensorsInterface; path = "../../node_modules/unimodules-sensors-interface/ios"; sourceTree = ""; }; - E4D564BC63A4E6CF099CC9FFA0C26695 /* Text */ = { + DF9B15EDD2E2B87AD44D35093BC96A6A /* Support Files */ = { isa = PBXGroup; children = ( - 29456E71E5CA6F0D9A1BC45AC249B438 /* NSTextStorage+FontScaling.h */, - 0AC91388E5FE2A91C9CC93F6095B699A /* RCTTextShadowView.h */, - 3685360A7BD99E6847628EE5D1FF83EA /* RCTTextView.h */, - 50B34085F0F13D095EF1FD8BF71002DD /* RCTTextViewManager.h */, + 1CD2482528E8085932F448164C50569B /* react-native-keyboard-input.xcconfig */, + 08133871DFA5EF95E613E0B0960BBC2E /* react-native-keyboard-input-dummy.m */, + E7C9F9A08D263FEF607177FC8B0AF11C /* react-native-keyboard-input-prefix.pch */, ); - name = Text; - path = Libraries/Text/Text; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-keyboard-input"; sourceTree = ""; }; - E4F70F90A03EC7DD0946A482FFD5FA0F /* Pod */ = { + DFBB0B1A1DA3EC333D2439266492821D /* Support Files */ = { isa = PBXGroup; children = ( - 0737BA4AB69DB037F13EA3F6F3C9BAAA /* React-RCTAnimation.podspec */, + A70849E86F884989BEA7B48A7F7F668F /* RNGestureHandler.xcconfig */, + 6ABB3832FAC78038F5CA03BB7E60869A /* RNGestureHandler-dummy.m */, + F7AE490F1B59C108D26169706A770658 /* RNGestureHandler-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNGestureHandler"; + sourceTree = ""; + }; + DFCD2BBF1C2DC385B3184BB4D578CF30 /* Pod */ = { + isa = PBXGroup; + children = ( + E83617202556DE729B7B51E57122C0E4 /* React-RCTNetwork.podspec */, ); name = Pod; sourceTree = ""; }; - E5F27A4A1E3A08FC24DE87C3FA5782E6 /* CxxUtils */ = { + DFDEC2F0FE8EAD31D20BF5A5BC35F1E4 /* Tools */ = { isa = PBXGroup; children = ( - E99900E603189BB46294B0E8E87D9E8D /* RCTFollyConvert.h */, - 3A34C74025F8A6F0A9116F44104CF61C /* RCTFollyConvert.mm */, + 5394F24A17B647EC262837BDBA53C7CB /* BSG_KSArchSpecific.h */, + BC2889F3709FF3024B5063FBEF2046E7 /* BSG_KSBacktrace.c */, + 86EF96D3E4F392A4A732B1F9A4AD62EC /* BSG_KSBacktrace.h */, + 5A909E30365AD747E8B59F723B160C95 /* BSG_KSBacktrace_Private.h */, + 6175E2955F82A4C443773B0CE97A2B19 /* BSG_KSCrashCallCompletion.h */, + 8D106A44EA50316E16B763984AD60D49 /* BSG_KSCrashCallCompletion.m */, + 23ABA778EC22E58F916583D0A755B2FF /* BSG_KSDynamicLinker.c */, + 2D5AAA77C076D7EF3E5658626FD83840 /* BSG_KSDynamicLinker.h */, + B90E8E18A14721E61AD8520D3DD4FF50 /* BSG_KSFileUtils.c */, + 69C3CC4A484D265A4AEA1BA14674813C /* BSG_KSFileUtils.h */, + 1C7EE72423A02CA0502FB138F6D16627 /* BSG_KSJSONCodec.c */, + 6FB1876F02B2FB0C5F29D988B6E3AB9E /* BSG_KSJSONCodec.h */, + FE1D6E92C60A564E1E4F7A261072F192 /* BSG_KSJSONCodecObjC.h */, + 33C4F1F33D1D4CF4E159BFD75BBB0083 /* BSG_KSJSONCodecObjC.m */, + 57C5AE81E490D8342312D188A1807F15 /* BSG_KSLogger.h */, + 2795ABC502CD10381189161967F50860 /* BSG_KSLogger.m */, + 3C8316088184A89BF29CC5B7DB57B3B9 /* BSG_KSMach.c */, + BAEDD389FDB86F2C9595891300B20C34 /* BSG_KSMach.h */, + DDF536DF4758AB8D249D4010CB726CC2 /* BSG_KSMach_Arm.c */, + 7A4547ABE320FC123A36407A29057EAB /* BSG_KSMach_Arm64.c */, + C3505850F5817377AC1F374285BFE525 /* BSG_KSMach_x86_32.c */, + BA3156A4ABC0881F79EDFB84436B30AC /* BSG_KSMach_x86_64.c */, + BC60DD1A1BE5782A175CC1ACBE755F58 /* BSG_KSMachApple.h */, + 8F6CB6C3B997DE152704041AFE42B169 /* BSG_KSObjC.c */, + D56B003B00CF06FDF9A497D77B0EEDC7 /* BSG_KSObjC.h */, + 83B7ACCC6F5CE0782C08320AC04EC886 /* BSG_KSObjCApple.h */, + 8D8616AC5F1A68099E836657BA35100E /* BSG_KSSignalInfo.c */, + 4E582B228FEEC070129398FC2EAEA8F0 /* BSG_KSSignalInfo.h */, + C464B95B7116CFB68C982C5AB3B74F93 /* BSG_KSSingleton.h */, + 3D1CCE22AB1807F99B20FBCC50E462D5 /* BSG_KSString.c */, + ECE0FF1B10879B200928F7B72D85692F /* BSG_KSString.h */, + E4F59CF3B1654F7690A58B63A6C4403D /* BSG_KSSysCtl.c */, + 98756B359767BE27BD0358E2486D2402 /* BSG_KSSysCtl.h */, + B99E059E125A95B102A51F9D9E615634 /* BSG_RFC3339DateTool.h */, + 0083549C5FBF70C93EFDF71076193222 /* BSG_RFC3339DateTool.m */, + EA86E092BF51DDFE44B603B6D14E3642 /* NSError+BSG_SimpleConstructor.h */, + DC2C443A9EC399C362B961C99806AF4D /* NSError+BSG_SimpleConstructor.m */, ); - name = CxxUtils; - path = React/CxxUtils; + name = Tools; + path = Tools; + sourceTree = ""; + }; + E0187D80BD0A6E55E0F2B6ED0D55D9EE /* react-native-splash-screen */ = { + isa = PBXGroup; + children = ( + 3AFDD915EB02BC97A62EC9670510F13F /* RNSplashScreen.h */, + 6C2292F1CE7237AD035A7F47CB460D3F /* RNSplashScreen.m */, + B4E828A091CCB8F586DB90FD69A6300F /* Pod */, + 0FBACEB4A11DB3078D2BE38F5859CD10 /* Support Files */, + ); + name = "react-native-splash-screen"; + path = "../../node_modules/react-native-splash-screen"; + sourceTree = ""; + }; + E021F44994F30AA58641831078089425 /* UMFileSystemInterface */ = { + isa = PBXGroup; + children = ( + 861F9982A188194C1342F2016541D643 /* UMFilePermissionModuleInterface.h */, + 78FAE0D508CEEB3C2F6F7607F61F6A60 /* UMFileSystemInterface.h */, + 0A1F9800C8D2CEABA26A0DDDE0458F8F /* Pod */, + A501BDC08522F2636ABD41F810721C61 /* Support Files */, + ); + name = UMFileSystemInterface; + path = "../../node_modules/unimodules-file-system-interface/ios"; + sourceTree = ""; + }; + E1372A1DEB8938B47362492F453407AF /* RCTSettingsHeaders */ = { + isa = PBXGroup; + children = ( + 91AC3D3B0949A03A9EB05917C7D2A28B /* RCTSettingsManager.h */, + ); + name = RCTSettingsHeaders; + sourceTree = ""; + }; + E18065E349C6430BAFFE4136903440C2 /* react-native-document-picker */ = { + isa = PBXGroup; + children = ( + 46CF012EACDB97270CE8BD37584A6C29 /* RNDocumentPicker.h */, + C0F6CD9EAA9363E8E921B4ADFB253D75 /* RNDocumentPicker.m */, + 9CA92C9DBEC0DA1C87B655E60633EE93 /* Pod */, + 43E8275353C396D1877215A0B2669662 /* Support Files */, + ); + name = "react-native-document-picker"; + path = "../../node_modules/react-native-document-picker"; + sourceTree = ""; + }; + E3988AE7528056E25D7939AD2E3FD312 /* Support Files */ = { + isa = PBXGroup; + children = ( + 127E8C75221F5BB1DC8E0B817100CA49 /* Yoga.xcconfig */, + F3BC296DF6FCD6D6BFB48EED061DB46A /* Yoga-dummy.m */, + CA512A977C70AF81AD169694C88423E1 /* Yoga-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/Yoga"; + sourceTree = ""; + }; + E3ECDDEB75DBFAD89A8E84B486D73911 /* Support Files */ = { + isa = PBXGroup; + children = ( + 5EE502E4120DAA7BD0F02A66BE40A332 /* UMFaceDetectorInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; + sourceTree = ""; + }; + E53E2746CE9D85BF11EFE811A69EB45C /* Pod */ = { + isa = PBXGroup; + children = ( + 9C0D1CABF4C90AAB003082B61C84C6B6 /* React-Core.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + E64FDCDD238B6325086B001D7DDC27ED /* React-RCTActionSheet */ = { + isa = PBXGroup; + children = ( + 75D8082D84EF5FD5832C7FE5F25BFB7F /* RCTActionSheetManager.m */, + 26967DC082259A872E4B694E3417F7D1 /* Pod */, + AD8B49C431890DB7B9D3D828A04F575D /* Support Files */, + ); + name = "React-RCTActionSheet"; + path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; sourceTree = ""; }; E67C1053C08017DDA767F627268AEAD4 /* NSData+zlib */ = { @@ -11761,79 +11690,218 @@ name = "NSData+zlib"; sourceTree = ""; }; - E69A74D44CFA6D4393B994F2B51A1AB4 /* Pod */ = { + E7D687D042079F6568BECF1A68B37F1F /* RawText */ = { isa = PBXGroup; children = ( - C3015B67A27D9B577EB9128D77C6B369 /* React-Core.podspec */, + 19E491D0C674ACE6B77CA31A6678757C /* RCTRawTextShadowView.h */, + 9140EBF996CB25BBC64302FA7A506C0C /* RCTRawTextViewManager.h */, ); - name = Pod; + name = RawText; + path = Libraries/Text/RawText; sourceTree = ""; }; - E69B1246BAF1EBC520CB9ECCA1E596D0 /* Pod */ = { + E9F51941FD0FD85D4C8C8305347B2DEB /* Support Files */ = { isa = PBXGroup; children = ( - AB8AA014E9E9B9C06F7442B16198E656 /* React-RCTVibration.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - EB6B71A7FBB34FE438C2817CF4598C27 /* Support Files */ = { - isa = PBXGroup; - children = ( - C37213CB53C46CD9F8E69CB2AE2C631C /* EXAV.xcconfig */, - BAB9FDF47570C4513C24F97CB70A1534 /* EXAV-dummy.m */, - 7BFC91D3401393A4CEBFC2334B7B3129 /* EXAV-prefix.pch */, + 4AB984D733BC5993EE88552D2D202953 /* React-RCTLinking.xcconfig */, + A4E2986C1839698D63F1CC863E946114 /* React-RCTLinking-dummy.m */, + 7AD1C07F3523B9BD92F621AEA3D38209 /* React-RCTLinking-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAV"; + path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; sourceTree = ""; }; - EBE4C3F763C0FDBC9696E34ECE3D7F7F /* event */ = { + EB3FAB929C295D2C6CC53DB96C8E42F4 /* Support Files */ = { isa = PBXGroup; children = ( - 49133F9E39E7DE84566F8F57F8499E5D /* event.cpp */, - 5091EDCDCAB59DCEB68EB64708BC6AD0 /* event.h */, + F07188FD7EF6D9A8DC53986DE79B5A4C /* React-RCTSettings.xcconfig */, + 18B540432DEB29B437320A782EADF37C /* React-RCTSettings-dummy.m */, + 8BBDF929EC7F210339F76339A2A8E022 /* React-RCTSettings-prefix.pch */, ); - name = event; - path = yoga/event; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; sourceTree = ""; }; - EFC208048BC6658073ABA7043A40C7AD /* react-native-document-picker */ = { + EC7A08A449B1F9040388A8633DBE971A /* Pod */ = { isa = PBXGroup; children = ( - 2FB7A9AFB2ACE00A1881442273623E90 /* RNDocumentPicker.h */, - 4FD392D07628F0FE9008C4C7FC653FED /* RNDocumentPicker.m */, - 945F62906F4C0DC400C17A3924682255 /* Pod */, - BDEAC568E611E1B5C8B6171EB6499709 /* Support Files */, - ); - name = "react-native-document-picker"; - path = "../../node_modules/react-native-document-picker"; - sourceTree = ""; - }; - EFF3D8C4984CF5E43BC450061B2E2B33 /* react-native-keyboard-tracking-view */ = { - isa = PBXGroup; - children = ( - A2AE3843922E718F0CA15A9E0C542F2D /* KeyboardTrackingViewManager.h */, - BDF73D0B3870AD69027A5399EB6AD8FA /* KeyboardTrackingViewManager.m */, - 39F0E960CB6D606FF9F667455409D121 /* ObservingInputAccessoryView.h */, - 2EC26CD16A3EAAA3CC3515C4F8DBEC92 /* ObservingInputAccessoryView.m */, - DB6B711A6070F2AA7E021F095D156297 /* UIResponder+FirstResponder.h */, - A7D9EE39E5652C9C655C895949EC4F3F /* UIResponder+FirstResponder.m */, - 39CFC949A4DF6DC62B212AD3DE2FB93C /* Pod */, - C2343C10FAC63606DC5ED54839B8C416 /* Support Files */, - ); - name = "react-native-keyboard-tracking-view"; - path = "../../node_modules/react-native-keyboard-tracking-view"; - sourceTree = ""; - }; - F09D4D9FBA74B91C07058D28F72E735C /* Pod */ = { - isa = PBXGroup; - children = ( - D89BD1619EBD1C5F996B512ECEBFC16B /* UMReactNativeAdapter.podspec */, + B2D3D6F6049746B5A5D3A816F249CA5F /* UMPermissionsInterface.podspec */, ); name = Pod; sourceTree = ""; }; + ECDE397CA636A86B7A7178411A058CB4 /* Source */ = { + isa = PBXGroup; + children = ( + 0DD54B37D563E96BEDFD08B8C912E75F /* BSG_KSCrashReportWriter.h */, + F5D48CFAFFE59BD35D6C2A3381B7F91E /* BSGConnectivity.h */, + 37090CD9EC4FF1D1BF5D88DC1A631BCD /* BSGConnectivity.m */, + F7043B74452BD705C688700D50CF98BF /* BSGOutOfMemoryWatchdog.h */, + 3E2D53DC098A62E6B032AA193144B181 /* BSGOutOfMemoryWatchdog.m */, + 84F3FA5A68ABE7171031AE3F0A4A7289 /* BSGSerialization.h */, + 26186657DACDF70F963F73FBD86FEEC3 /* BSGSerialization.m */, + E9086234EFE765AEDAE2D77AD62A5EEF /* Bugsnag.h */, + 365FCC24F83C8C3D685AD3315C3B5733 /* Bugsnag.m */, + A5DE7320F90848D843384F5FDFC19752 /* BugsnagApiClient.h */, + B5BEF82643604A1AB8D994837070534D /* BugsnagApiClient.m */, + A19500584ADEDF73297A233305C77ADB /* BugsnagBreadcrumb.h */, + 7695A58E398410B2FC07F8D42181A8D4 /* BugsnagBreadcrumb.m */, + FCB906867341E043954FCACB47B1F999 /* BugsnagCollections.h */, + 9CB45FDF492ADF176D4CA9E7F079EE58 /* BugsnagCollections.m */, + D59F5ED7689ABD2E0ACB3E04628C60C7 /* BugsnagConfiguration.h */, + 901B7276A7310B7F317E8C37026F64A0 /* BugsnagConfiguration.m */, + 1D6227C6B085AC5019169664CBF57DF8 /* BugsnagCrashReport.h */, + 5FB925A9C6C7A5324D5B20A7BA0AA7D4 /* BugsnagCrashReport.m */, + 9C14D4FF8ABD2BD460D882FBB23B87D3 /* BugsnagCrashSentry.h */, + 55AE24A9531DFA46C30FDEA89B825612 /* BugsnagCrashSentry.m */, + BEDCDA7F5FB4E2A3C075E3C438C20C24 /* BugsnagErrorReportApiClient.h */, + 527E034D119A5442CF99CA23766A658B /* BugsnagErrorReportApiClient.m */, + 4AAC71A320ED283EFD0FED2E6EA4F92A /* BugsnagFileStore.h */, + DA6DAB4FCEF17B8113C896C04CB7A020 /* BugsnagFileStore.m */, + 8CF2BFB1C54DF14C029020E89D3F7EF6 /* BugsnagHandledState.h */, + B693AE3A3EB76E15F666A0B208831A5C /* BugsnagHandledState.m */, + 27613BCDFA06C2A212ACBFB07E1608EB /* BugsnagKeys.h */, + F3AA95F10D58284419216BA25AD4BA2B /* BugsnagKSCrashSysInfoParser.h */, + 6BDFF2C70EE039818C98480435A6DB0B /* BugsnagKSCrashSysInfoParser.m */, + 58C4A07324C9BBD9B4B95C41AFFE98D5 /* BugsnagLogger.h */, + 730C8FA5A42BD932184682E648E109A9 /* BugsnagMetaData.h */, + 86401CF6D57258D7243C22527A70EFAB /* BugsnagMetaData.m */, + 32574B32C917CF9475E053D0B5C005CA /* BugsnagNotifier.h */, + 177D75F47EC8803CB485D7935943CFA4 /* BugsnagNotifier.m */, + CE45ABEFBDD5053A4586A48B1F2EC826 /* BugsnagSession.h */, + 905D308C527F25AAEC313C2FD4878D6A /* BugsnagSession.m */, + E96F63550790D0741226AD298322C5D9 /* BugsnagSessionFileStore.h */, + 1ED9CAC5F54C10F0B934A4E27A501827 /* BugsnagSessionFileStore.m */, + 6932E428340E10D46E9AE22CEE1C33A4 /* BugsnagSessionTracker.h */, + A8040DE5C02D614BEBBEDCEFF2067604 /* BugsnagSessionTracker.m */, + FCF0C886BE92A39E64AF450364C3A295 /* BugsnagSessionTrackingApiClient.h */, + CB3820CF16BF258CE29F6B172405DA86 /* BugsnagSessionTrackingApiClient.m */, + 66D1E191EE8D6006F67565325E787A2D /* BugsnagSessionTrackingPayload.h */, + CB9F5150D7C5BE2AF5ABA138C89030BF /* BugsnagSessionTrackingPayload.m */, + FA53F83EF0A612EC38E2E05D7E8CE4C1 /* BugsnagSink.h */, + 5972DE267E881AE87853079EF15A3FB9 /* BugsnagSink.m */, + E56A4A99297B8367A0249D822512795D /* BugsnagUser.h */, + D5E388B2F109F2CAE5E43CFE21637BB8 /* BugsnagUser.m */, + 90A4AAB4C526B1637A7E61C03C4EA800 /* Private.h */, + D01502D6729B0840DF06EFABCFFDB752 /* KSCrash */, + ); + name = Source; + path = Source; + sourceTree = ""; + }; + ED0AF6CC5D78AC81C011E020080F3FB4 /* Pod */ = { + isa = PBXGroup; + children = ( + A9BB6EE7361B27BBBEEDAABB87231602 /* UMSensorsInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + EEE3E1D7FF52CEBEB5F11CB28DDC5ED2 /* Modules */ = { + isa = PBXGroup; + children = ( + 44F20F42ED840CC498B7D42A814AAA36 /* RCTAccessibilityManager.h */, + 841A0C9988820216A7F53DE45B312417 /* RCTAccessibilityManager.m */, + 8D82F57DC8246D953B74B678614286FC /* RCTAlertManager.h */, + 0D881F1F572362DDBC3778325671E1A1 /* RCTAlertManager.m */, + F83F815FE6C16C9634D0BAABFC54D471 /* RCTAppState.h */, + 5F007CD62A49E9DCA8495377094A803B /* RCTAppState.m */, + 94AFDE44ED262464B51A211686DAF1FF /* RCTAsyncLocalStorage.h */, + 64E2422412C6521F5985B0A214977611 /* RCTAsyncLocalStorage.m */, + D9CB62457DE962F5C0BC85ED973124EB /* RCTClipboard.h */, + F5F96E48491E8310AE926BB152CE5182 /* RCTClipboard.m */, + 7E9448FDF3CD6382B2BFC44BA0ADB4B8 /* RCTDeviceInfo.h */, + 5F17C21DCA9744110D947283A8152F82 /* RCTDeviceInfo.m */, + 9244A66B259F4B2EAE601E3AB833344A /* RCTDevSettings.h */, + 5FAA43024A9ABC65BE0D1E3D002CD556 /* RCTDevSettings.mm */, + D88964CA7660593B4AB528338DF1943F /* RCTEventEmitter.h */, + 6036B0874238C1BA500770702C08A9CF /* RCTEventEmitter.m */, + E0D15A4C59B58AC5E989AC80120575B6 /* RCTI18nManager.h */, + 870F559C6ACC8EE1A323123B26A154A9 /* RCTI18nManager.m */, + 8F30CD1A53CF420CCEC8AB03C9657DB9 /* RCTI18nUtil.h */, + 96E1773C4F45862B86488DFD4AF17A1B /* RCTI18nUtil.m */, + 4F81ADEB10A6B3A3B25B93A2E11378B7 /* RCTKeyboardObserver.h */, + 11D8FD7A94DDCEF03B802B1347891927 /* RCTKeyboardObserver.m */, + CE39A51FA230D244ABE587F602D16FEF /* RCTLayoutAnimation.h */, + 8F4A649519492F8C3CA765B27CBF757A /* RCTLayoutAnimation.m */, + 71B67FB99DFDF34429AE4141D65EA772 /* RCTLayoutAnimationGroup.h */, + D02882A27829973F671E9FF724BE74E0 /* RCTLayoutAnimationGroup.m */, + ADDBFF7060BE74FD5948ECC3794E84F9 /* RCTRedBox.h */, + 2003C5C1C4DE3A689213E35D670D4593 /* RCTRedBox.m */, + 901E1111E9842CEAE3A54CFB675A2261 /* RCTRedBoxExtraDataViewController.h */, + 039E4B207B51A177D92BBDF7985D24F5 /* RCTRedBoxExtraDataViewController.m */, + D8CD7DDA6304EEC670E45CE8A7C38657 /* RCTSourceCode.h */, + 15A6A50F4E3A83C18811BA90B7E6F5AB /* RCTSourceCode.m */, + 915EBCCD574AA116367DE17F575ABF1A /* RCTStatusBarManager.h */, + 153B8441978363A2F350EAE31600EBDE /* RCTStatusBarManager.m */, + 2DBB42105D13FD92172E921865400626 /* RCTSurfacePresenterStub.h */, + A0E6BC76AEB9A75EB1DA9E6E7966382A /* RCTSurfacePresenterStub.m */, + D297D1CD88D6EC383B4F171C315963DA /* RCTTiming.h */, + 3233FD512651D6526B0227C3B2DA648C /* RCTTiming.m */, + 421D3D8FCABB7A062F1697390A469AE4 /* RCTUIManager.h */, + 5443E20FCAF7E2D163807DE044983E50 /* RCTUIManager.m */, + EABB1EA41FF52ADE760181A27C759732 /* RCTUIManagerObserverCoordinator.h */, + 5846A5D53C266A75875A578049E04E0C /* RCTUIManagerObserverCoordinator.mm */, + 08A8795192F8E02DE9C585569CDAC06D /* RCTUIManagerUtils.h */, + C780E0FCA9FA33EA09A500410333B0DC /* RCTUIManagerUtils.m */, + ); + name = Modules; + path = React/Modules; + sourceTree = ""; + }; + EF0B78A35B9B81A33899CFFC6E93D57E /* React-RCTText */ = { + isa = PBXGroup; + children = ( + 35805890D0D4351BAB9C215F44CEE54D /* RCTConvert+Text.m */, + C37CCC986F14F3787DD4306646D2EEB8 /* RCTTextAttributes.m */, + 6ADCCB4F27B31CC3D3F23908C9B2AA77 /* BaseText */, + 6CEAEF635E6491C9188E65BBE9553CB1 /* Pod */, + 70908F911438139CF49C4195D75E9C88 /* RawText */, + 26425064D86D40926AF13BA23D51E4B1 /* Support Files */, + 601506F7183EF996DE67F21E3EA172B2 /* Text */, + C1F3CFEA40AC53C3236E25E6B4C66398 /* TextInput */, + 3A83480FC4C0BD529931FB844277012F /* VirtualText */, + ); + name = "React-RCTText"; + path = "../../node_modules/react-native/Libraries/Text"; + sourceTree = ""; + }; + EFAE2F7348B962F0F9D816F091E270F6 /* UMNativeModulesProxy */ = { + isa = PBXGroup; + children = ( + F193806B174373DF2D1FECCE29EB9F7B /* UMNativeModulesProxy.h */, + AF079B678CB2895C68C623954775C232 /* UMNativeModulesProxy.m */, + ); + name = UMNativeModulesProxy; + path = UMReactNativeAdapter/UMNativeModulesProxy; + sourceTree = ""; + }; + EFE031B29BA1E89D71415B3AA4C252A3 /* Pod */ = { + isa = PBXGroup; + children = ( + B4533A5BB4373D311653A4CCEEBC1400 /* UMBarCodeScannerInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + F0957677BDF1419922AA88F5C7A6A669 /* RNScreens */ = { + isa = PBXGroup; + children = ( + 2EFEC6AFA0FD6CFDDB6A7F67BECD0216 /* RNSScreen.h */, + F7482E18D9F417819A17FE031157147E /* RNSScreen.m */, + E899721F07FC53C17F67E4DF4059FE2B /* RNSScreenContainer.h */, + BD8DBE269BA238914D954406B85132D5 /* RNSScreenContainer.m */, + 536E085AFAD167F6CAE31F62B9700186 /* RNSScreenStack.h */, + 2CE70BB6FB2323587C1CA383B415A65D /* RNSScreenStack.m */, + 1C194D9BA620CBFDC4E35208A1B0FB7F /* RNSScreenStackHeaderConfig.h */, + 6AEB8F93FF15D9E4E046432B41A1053F /* RNSScreenStackHeaderConfig.m */, + CB6EF64F6B5DF95817C9A979D7EB70AA /* Pod */, + 09A7AA3C581A5D9114357A5EF1959DB1 /* Support Files */, + ); + name = RNScreens; + path = "../../node_modules/react-native-screens"; + sourceTree = ""; + }; F0F87365F3F22273CB139EB51F4237DD /* GoogleAppMeasurement */ = { isa = PBXGroup; children = ( @@ -11844,147 +11912,200 @@ path = GoogleAppMeasurement; sourceTree = ""; }; - F1CE5E50F845D0BB286BB918621A825C /* React-RCTAnimation */ = { + F2FD74D219DCCF5DEEC37F3852F35F55 /* Drivers */ = { isa = PBXGroup; children = ( - E3ABBA63C07AE6739FEF6B4BF5EEF596 /* RCTAnimationUtils.m */, - 6BDEA29BE76A4CD995FF5FF996D2E3AF /* RCTNativeAnimatedModule.m */, - 0BF787392FD5C27D258A3A6FD290E125 /* RCTNativeAnimatedNodesManager.m */, - 3198C9969EFB103C9566956DC1DC0153 /* Drivers */, - B76387C86591313B296EC35D6D226A19 /* Nodes */, - E4F70F90A03EC7DD0946A482FFD5FA0F /* Pod */, - AC544CDFABD9BC79E86626380B072B24 /* Support Files */, + 3BE2EDAF428C0889ECA70E4294B600BB /* RCTDecayAnimation.m */, + 933A4BF892559C92FC404D874D4511B2 /* RCTEventAnimation.m */, + 11E25508F92273B8104AF7DE3CB82098 /* RCTFrameAnimation.m */, + 87FFC3F76DD90122CE8B84D30F4E809D /* RCTSpringAnimation.m */, ); - name = "React-RCTAnimation"; - path = "../../node_modules/react-native/Libraries/NativeAnimation"; + name = Drivers; + path = Drivers; sourceTree = ""; }; - F33ED307F86B17AD9E4FA12C00023216 /* RCTWebSocket */ = { + F326878F573764AEF9B0A013190EC42F /* Filters */ = { isa = PBXGroup; children = ( - 47764B5801E587EFFBEAF16D08AE9227 /* RCTReconnectingWebSocket.h */, - 101C77344A89374DE4888F86BFBCA8B0 /* RCTReconnectingWebSocket.m */, - CE0C0E79F56FCD18A2B573D45426E2B7 /* RCTSRWebSocket.h */, - 4CA2D8F54C76A9153F9B373817DED279 /* RCTSRWebSocket.m */, - 469669C51717AB3A9AE23299B5A20099 /* RCTWebSocketExecutor.h */, - DF970844235792870CAED48BA5088B8A /* RCTWebSocketExecutor.m */, - 73F22E8B31686E17D1206A0A698338E7 /* RCTWebSocketModule.h */, - DBFFA3665B7EE403F664F59B2140602D /* RCTWebSocketModule.m */, + E9F0B0D0B818BFFA969FEE61400A5B98 /* BSG_KSCrashReportFilter.h */, + A7E0F0BD8AB70C2E21CB1571171730A2 /* BSG_KSCrashReportFilterCompletion.h */, ); - name = RCTWebSocket; + name = Filters; + path = Filters; sourceTree = ""; }; - F523E3E0533A1BF8CA0B43F9B66A6D27 /* UMBarCodeScannerInterface */ = { + F3A1DBE13DE6FD4A43DD36DBECCCAF38 /* Pod */ = { isa = PBXGroup; children = ( - 95D947441D203EA69BEB88EE67C084A2 /* UMBarCodeScannerInterface.h */, - 9761A1449929263CD7059F624029269B /* UMBarCodeScannerProviderInterface.h */, - F9A72D910A8BAE5166BFD6C63349BC06 /* Pod */, - 675A403E6B27D27010224EB8C8D0B893 /* Support Files */, - ); - name = UMBarCodeScannerInterface; - path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; - sourceTree = ""; - }; - F6AB69FCAC1A0B479146C8287F86C5C1 /* react-native-notifications */ = { - isa = PBXGroup; - children = ( - 16C6183676AD6537323D5EC6ADBB976F /* RCTConvert+RNNotifications.h */, - EB4B68395005DDC314F908569392A5DF /* RCTConvert+RNNotifications.m */, - 4F2070EA5C2939BB8B9EEF82F40F3162 /* RNBridgeModule.h */, - 9AECAC593EDC245BC0F0D174C0B21B8E /* RNBridgeModule.m */, - 6783D109F54B3921CA42A49BBCF61D6D /* RNCommandsHandler.h */, - 81F6F2327C04302F52ACF04E88825CA0 /* RNCommandsHandler.m */, - CB47C6F7161CC32B42084E85D4EB30FB /* RNEventEmitter.h */, - 9E601D78FD0F51EF75CA7085D90D007A /* RNEventEmitter.m */, - 139735F9A71CE25B9FEFC4C3B2DC27AC /* RNNotificationCenter.h */, - 0D0CEB6B757EBE5E0F1851DBDCF878FE /* RNNotificationCenter.m */, - 324A9FC4255F80E0335160E098E2ADB9 /* RNNotificationCenterListener.h */, - 88A12BDA62F70EEAEB23AF1858281A67 /* RNNotificationCenterListener.m */, - 24AB5D5E6F6D2FF4A938C3B1279D8FB8 /* RNNotificationEventHandler.h */, - CFC16F106B3905E77911EE2CD8D20F1D /* RNNotificationEventHandler.m */, - 7997276F6893A14A22CA551705B8F16A /* RNNotificationParser.h */, - 9828A9961B8C1F61D324DF58BE8A2A26 /* RNNotificationParser.m */, - FE821DD517EE9360F620E7C8AD1A64E1 /* RNNotifications.h */, - 773E7AF4488F669CAE4C15E126F53ADC /* RNNotifications.m */, - 924B406DEFA1E551D87470FD163D8099 /* RNNotificationsStore.h */, - B94A3145CB73779AAD6D1D47F0697C22 /* RNNotificationsStore.m */, - 39575354205DC74A3674EACF0EA9A8A5 /* RNNotificationUtils.h */, - D3267B9CC7B825EBB5EF6F0BAEC6DE20 /* RNNotificationUtils.m */, - FCEA8442C0547AF1CC36C240A7D135E1 /* RNPushKit.h */, - 2692AFC129DDBD9886CD8EFC94FB2767 /* RNPushKit.m */, - 6D0D8351A0AFB8B617B481D2BF67B56D /* RNPushKitEventHandler.h */, - A59769F417E8426D4124D3D1CC2FE59C /* RNPushKitEventHandler.m */, - 313751F77B96E015612CE89641D98470 /* RNPushKitEventListener.h */, - 07D3DE767B9D147CC4E77CA01D1E2A8C /* RNPushKitEventListener.m */, - 5E2C5170F713647ABB3F2C637F32707D /* Pod */, - 5B5CAD2F5727550A2611BAB2F5775E04 /* Support Files */, - ); - name = "react-native-notifications"; - path = "../../node_modules/react-native-notifications"; - sourceTree = ""; - }; - F6E427397187959BCC461D758BC525CB /* Support Files */ = { - isa = PBXGroup; - children = ( - 5538474B2860C1237420F4669067F4A4 /* UMFileSystemInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; - sourceTree = ""; - }; - F939CA006D2448C1A18D23E9F1D58FAC /* React */ = { - isa = PBXGroup; - children = ( - E0EFCF3BEF1C0A3F4A43690C7FC29F1D /* Pod */, - A0F28FCE7CD11A5EC12E03C926DAAE6D /* Support Files */, - ); - name = React; - path = "../../node_modules/react-native"; - sourceTree = ""; - }; - F9A72D910A8BAE5166BFD6C63349BC06 /* Pod */ = { - isa = PBXGroup; - children = ( - F6D6759D4368815F6458A8F20F0B6CF3 /* UMBarCodeScannerInterface.podspec */, + 01FB22602923ECAF71FB0618D4E8AEB9 /* UMCameraInterface.podspec */, ); name = Pod; sourceTree = ""; }; - FB39F9AA6D3953CDE0FB35FC6C82EE9A /* React-RCTBlob */ = { + F4FDFA1E3CDA7AEAE7833DEEC035E3C8 /* Support Files */ = { isa = PBXGroup; children = ( - 412F6BC0A1148E9E66A4B5402C5D2CD1 /* RCTBlobCollector.h */, - 3128E78C4F227B716F48FDA25D3F4077 /* RCTBlobCollector.mm */, - 730463F9485034FFC10C8E01300968BE /* RCTBlobManager.mm */, - 4E2D977CCD40D6AE475F0F1759ECCDA1 /* RCTFileReaderModule.m */, - A0791C5BF4071DA9EB59349157A4C304 /* Pod */, - 56E6FC2029F8504D4917EAB07BD26FAE /* Support Files */, - ); - name = "React-RCTBlob"; - path = "../../node_modules/react-native/Libraries/Blob"; - sourceTree = ""; - }; - FE4614397159908BE58351E9B18B3808 /* Support Files */ = { - isa = PBXGroup; - children = ( - 4639AB5798CD989E823A570067978431 /* EXFileSystem.xcconfig */, - A6A3450BAA3F678BC74B25A04D7E5F02 /* EXFileSystem-dummy.m */, - 6CEDB0D6D02C6BE9F14AA5FE2A38372C /* EXFileSystem-prefix.pch */, + 7350275BD251B642BAB74FC441322D9B /* EXHaptics.xcconfig */, + 3503FCE61F9999AFC779E2DD3D376D8D /* EXHaptics-dummy.m */, + 11C878DB1D66559AB2ECC44526C968CB /* EXHaptics-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXFileSystem"; + path = "../../../ios/Pods/Target Support Files/EXHaptics"; sourceTree = ""; }; - FF39F753CAEE6019C23474A167FBD530 /* Support Files */ = { + F5B78A3B1C228CA51C4AA40148144C7C /* Support Files */ = { isa = PBXGroup; children = ( - 9264E499FE27E84AFC69C9EB7C663766 /* FBReactNativeSpec.xcconfig */, - B3D2AA05E5984B03DF83A2AEC254AF74 /* FBReactNativeSpec-dummy.m */, - A4664F91ACCDBFA209ED6341CBF140FA /* FBReactNativeSpec-prefix.pch */, + 4A7FCD47EEC660089D4553601E338AEB /* react-native-video.xcconfig */, + AA2D60A70366B5F533E720EE05F8728F /* react-native-video-dummy.m */, + 7907013961E66CFAB57B850B101195B4 /* react-native-video-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; + path = "../../ios/Pods/Target Support Files/react-native-video"; + sourceTree = ""; + }; + F5E2ECF771FCFA2C77F61960B30E3814 /* Support Files */ = { + isa = PBXGroup; + children = ( + 6DB8239AC448346BC395F6963BBA8AB0 /* React-RCTNetwork.xcconfig */, + 06231FE790724419459C5E614277CF63 /* React-RCTNetwork-dummy.m */, + 402F56EB97846FB05095C54C5FB4CEF0 /* React-RCTNetwork-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; + sourceTree = ""; + }; + F6AF23BC4FA68AF493407450F8B5BEF8 /* Pod */ = { + isa = PBXGroup; + children = ( + 752E498790A9E7EC557DFF8093ABAA4E /* LICENSE */, + 346AF034D312301DE94E5DBE13EB67F3 /* react-native-jitsi-meet.podspec */, + ACEABFB2E3E74557AC5F59BB4F23894C /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + F6E38164083E57CE3EB44C4D36F08B3A /* React-CoreModules */ = { + isa = PBXGroup; + children = ( + B9A6D143DDBF9DED4488D4740350DB72 /* CoreModulesPlugins.mm */, + 6592C6645F4F6E958633DE955A707555 /* RCTExceptionsManager.mm */, + 0B5C4E2B11EE5F2CA3F82AAEE6EFD16E /* RCTImageEditingManager.m */, + 230FE4A7FB3854BA37021B5666853F47 /* RCTImageLoader.mm */, + E66BDC5F5859B5A17D0C6EC5E12EDFA2 /* RCTImageStoreManager.m */, + 43A23B7AA3F12BB5CF8EF2B272616200 /* RCTPlatform.mm */, + 4724935AAB49E1A205B6297BEF036B4A /* Pod */, + 49E754DB8BB093D3FBCC7774FD521B2B /* Support Files */, + ); + name = "React-CoreModules"; + path = "../../node_modules/react-native/React/CoreModules"; + sourceTree = ""; + }; + F76BD452A8B612446E9F6420CCAE349F /* Headers */ = { + isa = PBXGroup; + children = ( + 298301BD78268EEFC1A39C4AE6C257C6 /* JitsiMeet.h */, + ADA7B9D84EF6231347C6EC48A75600D3 /* JitsiMeet-Swift.h */, + B61FC0166F0344183236C8004643AD87 /* JitsiMeetConferenceOptions.h */, + 17F094DDA7339EDD385DBC0E97D2C101 /* JitsiMeetView.h */, + 99F54E94C08A7B8AC9B55141B2455814 /* JitsiMeetViewDelegate.h */, + ); + name = Headers; + path = Headers; + sourceTree = ""; + }; + F8312B6580A4C867AAB871C59C74C6F4 /* RNDeviceInfo */ = { + isa = PBXGroup; + children = ( + 916D6056E826DDA75D50E10E2ED17C4F /* DeviceUID.h */, + AA2F1D16219C46D61411C758E01D69F6 /* DeviceUID.m */, + C71CC85EC1E8456E2822BEE4773FC8EB /* RNDeviceInfo.h */, + 526CAA4479506B054FDD902FC6CF1464 /* RNDeviceInfo.m */, + 94B7274D6E5D38AF52C7F126D86561D7 /* Pod */, + 7DB4199C2C06F0C74B39271D0804C68D /* Support Files */, + ); + name = RNDeviceInfo; + path = "../../node_modules/react-native-device-info"; + sourceTree = ""; + }; + F88375AB5A3B5AC0F218C4A50B348A95 /* Support Files */ = { + isa = PBXGroup; + children = ( + 05FF947CF810B027D74CAA6CF3DACA74 /* react-native-notifications.xcconfig */, + A52E170FB2F9F5EDA285B07188EC6887 /* react-native-notifications-dummy.m */, + 47BC4789057D8955F9B8C1772F47248A /* react-native-notifications-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-notifications"; + sourceTree = ""; + }; + F8B24525CE9878652EFC7C78DC044974 /* Pod */ = { + isa = PBXGroup; + children = ( + B7BF78C87CA60FA19F8B3C09C7F05CC0 /* LICENSE */, + 1D3D28B4CA7822F55445A8055D66C6A4 /* react-native-webview.podspec */, + C1EC0AE616DD508988EA9AB1F05C048F /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + FA0BCF491563CA2F57558342958F2F56 /* analytics */ = { + isa = PBXGroup; + children = ( + 9C13ABD3CF7DAC54F8A08323BDFFBE74 /* RNFirebaseAnalytics.h */, + 27C12A379F33A702A7EF080C6CBEF928 /* RNFirebaseAnalytics.m */, + ); + name = analytics; + path = RNFirebase/analytics; + sourceTree = ""; + }; + FAC4362E0067752B0830A26C621AB51F /* EXHaptics */ = { + isa = PBXGroup; + children = ( + 2F492D6837FF7F3BDE44215A7B44BCB3 /* EXHapticsModule.h */, + ED4322EF065334EF690334E729C2949E /* EXHapticsModule.m */, + 536168BC19D96B025DAF3D686DF8FBC5 /* Pod */, + F4FDFA1E3CDA7AEAE7833DEEC035E3C8 /* Support Files */, + ); + name = EXHaptics; + path = "../../node_modules/expo-haptics/ios"; + sourceTree = ""; + }; + FE7C07B271AA9CA5ACDEAEC93AB69EF9 /* SafeAreaView */ = { + isa = PBXGroup; + children = ( + 0EF30FE74F36D157FC58BC0033FC3A29 /* RCTSafeAreaShadowView.h */, + 79C312CC70D871E60298BB2AD50AA1EB /* RCTSafeAreaShadowView.m */, + 3A79ADE1E505ED3EAAA0729840969BEA /* RCTSafeAreaView.h */, + 889CAB79398BB0029362BB880C5007F3 /* RCTSafeAreaView.m */, + 1648671A030BC5711F00B16227E49F17 /* RCTSafeAreaViewLocalData.h */, + 19DEB28D1056B1A2B077A411AD95611B /* RCTSafeAreaViewLocalData.m */, + 6D2CB35C37F72D6B5464B5C5A54FF005 /* RCTSafeAreaViewManager.h */, + 217BB7C109DCA46710EE41D9230CDCD6 /* RCTSafeAreaViewManager.m */, + ); + name = SafeAreaView; + path = SafeAreaView; + sourceTree = ""; + }; + FEA34DE3A636B2B6B67EFE11C22B52EF /* RNFetchBlob */ = { + isa = PBXGroup; + children = ( + 002676D3AC83EC6DFED207E063A5C60C /* RNFetchBlob.h */, + 96206F808402F18E47EAB412A4DA7456 /* RNFetchBlob.m */, + ); + name = RNFetchBlob; + path = ios/RNFetchBlob; + sourceTree = ""; + }; + FEE21857C98C8669C113D0ABB0591C0E /* Support Files */ = { + isa = PBXGroup; + children = ( + 914A219B23B3CFEBF97BAF31EB26B0BC /* React-jsi.xcconfig */, + 4106499F22B96B283BBAB1DBD3936495 /* React-jsi-dummy.m */, + 680671720F1A7D62B039F14078F861A1 /* React-jsi-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsi"; sourceTree = ""; }; FF3BB0590EA6094CA6992BEAC61C3AE5 /* Logger */ = { @@ -11997,54 +12118,14 @@ name = Logger; sourceTree = ""; }; - FF4607C01C768F6BCF97FB9A40DCFA90 /* fabric */ = { + FF595B841F66776C8700EE5F471A0DA4 /* notifications */ = { isa = PBXGroup; children = ( - 4B79A6CF3F059E17FD317451C9E2FBDC /* crashlytics */, + E467224E1ECAC715668839A01796EA04 /* RNFirebaseNotifications.h */, + 2B457EAC7B9E5D1C64091C6212B8D9C5 /* RNFirebaseNotifications.m */, ); - name = fabric; - path = RNFirebase/fabric; - sourceTree = ""; - }; - FFB49321E58B14E4F9A287BC727EB575 /* Interfaces */ = { - isa = PBXGroup; - children = ( - 6A0A3F50A26FA605F31B77E82428F065 /* EXAppLoaderInterface.h */, - 8CB0DBCFCF87BF97E069B6478537F9BE /* EXAppRecordInterface.h */, - ); - name = Interfaces; - path = EXAppLoaderProvider/Interfaces; - sourceTree = ""; - }; - FFD98B31C46E24F123561D36D73337B9 /* Default */ = { - isa = PBXGroup; - children = ( - 6C5C84D1C26CD05194960802BC5594B1 /* Base */, - 72F65EDC1F3F91A5BBD5F6BF351961F9 /* CxxBridge */, - 1C4B9E69E7515D15DDF53B874343C586 /* CxxModule */, - E5F27A4A1E3A08FC24DE87C3FA5782E6 /* CxxUtils */, - AB9DB849116D7E9FABCD92908882040B /* Modules */, - E12E2E153AD17620BE761A619A79A955 /* Profiler */, - 920E59C7B103F3D70FB222143F14F33A /* UIUtils */, - 7957AD764990C77D70ECFF6CE1575413 /* Views */, - ); - name = Default; - sourceTree = ""; - }; - FFD9A1CC67DAB42FF18B464EF3B67EE7 /* Pod */ = { - isa = PBXGroup; - children = ( - 7DDEEBE053612C76FD74E9E602204933 /* Yoga.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - FFDAFD42B774D832AE7978891D2D9811 /* Pod */ = { - isa = PBXGroup; - children = ( - 04AC2125B2308221FC5DCCA637672DC6 /* React-jsiexecutor.podspec */, - ); - name = Pod; + name = notifications; + path = RNFirebase/notifications; sourceTree = ""; }; /* End PBXGroup section */ @@ -12058,31 +12139,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 02E8F3CE24D2439EF926E4FB7BC12608 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 6BF020554ADB0AB1B954C8A650F5992D /* QBAlbumCell.h in Headers */, - CFA641417AB3CF2E56A2D1AF4147DB84 /* QBAlbumsViewController.h in Headers */, - C1C8C903BECB2B56ECD7BC65E0236380 /* QBAssetCell.h in Headers */, - 03E25BCF43F2B49BDD8BBF674C102BC9 /* QBAssetsViewController.h in Headers */, - 887B19E94CE661A28C81A9A3CAC7A071 /* QBCheckmarkView.h in Headers */, - 74DEA86A42BAC81C3088F2E37B426E7A /* QBImagePickerController.h in Headers */, - 4942EA066CB214BC8393C6C1A5C68ED7 /* QBSlomoIconView.h in Headers */, - 55F319DD2FBCB7236C86CB50916CE740 /* QBVideoIconView.h in Headers */, - 715E673997FBCE338AA30BA752E0FDFE /* QBVideoIndicatorView.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 04774DBAF32626FDC56C5728017373AC /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 16F28ED5E8ECACAE5BE82B299D068DDF /* DeviceUID.h in Headers */, - 18F0F9C4B445B28C354E1AE70AEC6DF1 /* RNDeviceInfo.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 04F91B2CB9FF943E35EFBC7576EE9F5A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -12149,19 +12205,45 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 0EF4B1C7828F43CC78646F8E461266DC /* Headers */ = { + 08CD3DF9245FB07622E32DA1E568E046 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 79B1AF5209EF8B1EE021B49C45A18DC4 /* CGGeometry+RSKImageCropper.h in Headers */, - 8E010A24AC0D9BA6D5A4A5CDE01AB82B /* RSKImageCropper.h in Headers */, - C826673291431B4B0F55D945F4A653EE /* RSKImageCropViewController+Protected.h in Headers */, - 83D2C390DA0781291D0958C40AAB449F /* RSKImageCropViewController.h in Headers */, - 8EA3BAC84ED1357FF307A8573139EBCE /* RSKImageScrollView.h in Headers */, - 1DFC8657F1F3CD03011F815DFFD0B659 /* RSKInternalUtility.h in Headers */, - AD105DDE250F35AB653EB30D00FBE1EF /* RSKTouchView.h in Headers */, - 071269AC8426870256DE850D26D16360 /* UIApplication+RSKImageCropper.h in Headers */, - 22838872B356B4AF34721F61409AAD23 /* UIImage+RSKImageCropper.h in Headers */, + B836861178E85DC6FCA34D851DC41DB5 /* Color+Interpolation.h in Headers */, + 8940E75F71586AC262E3C101AF8DEB53 /* LNAnimator.h in Headers */, + 261FEBBE6DB03A0C9CDC0E2F66F9EFF6 /* LNInterpolable.h in Headers */, + 2BBFF13F237BE2684D4466164F9DA5EB /* LNInterpolation.h in Headers */, + FCC34D09CC58A248801BD9A58310F023 /* NSValue+Interpolation.h in Headers */, + EF26346E98791D8AE31DCF4413E9BB08 /* RCTCustomInputController.h in Headers */, + B27679D7BB32E8D0760DFD440253E723 /* RCTCustomKeyboardViewController.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 11D44297CDEA9088EBB130ADC6ADF1CC /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 3E855A14695E9DAA62E4A76D40408C09 /* CGGeometry+RSKImageCropper.h in Headers */, + A494AF91A61A45C70482BFBA77ADBB5F /* RSKImageCropper.h in Headers */, + A7B3CE7889D46E3ACC39E6A3679F8E31 /* RSKImageCropViewController+Protected.h in Headers */, + 99CAD0E72733FCC187C2DC94FCD85C37 /* RSKImageCropViewController.h in Headers */, + 48AC41978C9E1F3BA480FF4D97252BAE /* RSKImageScrollView.h in Headers */, + BA2AB4C7D8C0577E6A2CA5B006FB48A2 /* RSKInternalUtility.h in Headers */, + 69F3230807B73FC8DDD6702DBD4A8808 /* RSKTouchView.h in Headers */, + F2A9509EC57D2A6FD4478281FDF899EA /* UIApplication+RSKImageCropper.h in Headers */, + 5C401C621E415BA027034B4B70477EAE /* UIImage+RSKImageCropper.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 14F6779511C2F11B215391F498588CFB /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 7B071B33D51B9356323BAF92F719650D /* RNCUIWebView.h in Headers */, + 24A683EFF94922AD5BCD7FD1401CA584 /* RNCUIWebViewManager.h in Headers */, + 1E4A158E19E5D640974292420BBAAB12 /* RNCWKProcessPoolManager.h in Headers */, + F02A74FFB87DA6616B56795C3760F243 /* RNCWKWebView.h in Headers */, + D3DE888FC11177BE173054C3C9AC9176 /* RNCWKWebViewManager.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12209,6 +12291,48 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 199AC1CA8C5076361C04F6E9FFA9BA47 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 80C5B20198644D959E329F9825CB1059 /* RNSScreen.h in Headers */, + 9689158560CF9444E9D7E3E1E0EB2AD6 /* RNSScreenContainer.h in Headers */, + D5230DFEB5E2727DD0F73FC3F869AB43 /* RNSScreenStack.h in Headers */, + AA986F76CDA695810C1290987BEA9B09 /* RNSScreenStackHeaderConfig.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 1C84AF7FF5C1F7A65908BF32B134807C /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 8036266653E825685FDBEFB521DEDBCB /* RCTConvert+REATransition.h in Headers */, + 33AF2274BA594645B3CCFA3D45E61EF1 /* REAAllTransitions.h in Headers */, + A471A1AB3DCF13E62151136F677D3015 /* REAAlwaysNode.h in Headers */, + AEDC1AEB75E3E4C3284F50F47CB95840 /* REABezierNode.h in Headers */, + 0FDEA0FDF5EDFA58BCBB974A2BF8215B /* REABlockNode.h in Headers */, + D083246508465E885682A8AFA104AD86 /* REAClockNodes.h in Headers */, + 34048863D0588BA6D9B2D5600E93921A /* REAConcatNode.h in Headers */, + 79299080371B416104CF984C70D6EB23 /* REACondNode.h in Headers */, + 5C65CE740DFB0976F1A9AFCB62276816 /* READebugNode.h in Headers */, + 5A44C0CFD44AE007C29BA7CFF67077FE /* REAEventNode.h in Headers */, + 1D26A9F8BC2B0A9CE1C6CE5CFFDAE0E0 /* REAJSCallNode.h in Headers */, + ED71CA87D8CFF0267430338509E042FA /* REAModule.h in Headers */, + 5B1F0CCA6080A51536C93F7F4619DB84 /* REANode.h in Headers */, + F95B2C6D1DA2D50E212CC427D91D0134 /* REANodesManager.h in Headers */, + DEC8ED6E13B326E9B31B9A4CA63AD697 /* REAOperatorNode.h in Headers */, + 0B8EB77E8022251E109DF153C8418535 /* REAPropsNode.h in Headers */, + DE1A3BD105E711453129E52EA1D58443 /* REASetNode.h in Headers */, + 8DC2BFA747E27D7E62F16264FC19D063 /* REAStyleNode.h in Headers */, + 27BB8AB948D080CF5CFC7FF75F5B59E8 /* REATransformNode.h in Headers */, + 4BB018F6706187E497F136B5FFAB5610 /* REATransition.h in Headers */, + 0B2C424EDC9B06C6CCD88E332E97AE20 /* REATransitionAnimation.h in Headers */, + 99932AEA0E05B339FC0B5234B230914D /* REATransitionManager.h in Headers */, + 48637BBF5A108504FBA06D9651D2038A /* REATransitionValues.h in Headers */, + DA28996B00D2FCE3F9ACEFAC92EA58E4 /* REAValueNode.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 1D8B6318F5AAA17AE352DD76B0029C8F /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -12226,13 +12350,36 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 21F1C8C5813ED3BD13A5866B4E15BD67 /* Headers */ = { + 1DBE5F90EA7F72813344155B4813A474 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - C3AC791C401B6C45669F8CDD7DA69904 /* SDImageWebPCoder.h in Headers */, - 6CB1E7C44AB0F063E70843E3CB4396E3 /* SDWebImageWebPCoder.h in Headers */, - 8AB9F935C4A7BB1ECCE78959FB6D08BE /* UIImage+WebP.h in Headers */, + 194E8B34C61824667B638781C584FAAE /* RNSplashScreen.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 1E48DF4C248D33C93936551937C037F2 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 1E903EC5F633922FE494151E7191743C /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + D62E7A895678B19D51AD7BE078C1835F /* ReactNativeShareExtension.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 1F06C2CCE8E9D3657FE1AD6D9205E2DE /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 87B47351516A3CDD135C525A6A683C35 /* SDImageWebPCoder.h in Headers */, + BA99B58D3AE5FA4B06EA9065A20127EE /* SDWebImageWebPCoder.h in Headers */, + A401020CF5EBD87A38196B5792A4FE50 /* UIImage+WebP.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12266,79 +12413,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 2D50B2120DE6804454378A0C89DEC06B /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 0E25AB2F6049EB1521920014605A335F /* JitsiMeet-Swift.h in Headers */, - 307702DAFED5B6B9B1138A4657C5653C /* JitsiMeet.h in Headers */, - 25B76E6EA75B572F2465B93EEF59B3C6 /* JitsiMeetConferenceOptions.h in Headers */, - C5BA042E6835A64D1126967625374EF1 /* JitsiMeetView.h in Headers */, - 8AA3113428ACBB1F73AFBE11898D9F53 /* JitsiMeetViewDelegate.h in Headers */, - 57FD496A1B884C467DE3EAB43A21FCA9 /* RNJitsiMeetView.h in Headers */, - D9535963D2CB4BF1464E3665EBAC6226 /* RNJitsiMeetViewManager.h in Headers */, - B677EB807350B4D77ACE0EB110E3A601 /* RTCAudioSession.h in Headers */, - 2819B1A890BCCCC8F66B7BA0C4BD1C2B /* RTCAudioSessionConfiguration.h in Headers */, - 409DCD97D8A5D4173CB1C709F13F54E5 /* RTCAudioSource.h in Headers */, - 4B05794DB937C1138982FE6075BA318D /* RTCAudioTrack.h in Headers */, - 0D017956BBA993A3EAED7F8CC0F0CE62 /* RTCCallbackLogger.h in Headers */, - 47C8FED7534756473E73E6E4F2DC47DB /* RTCCameraPreviewView.h in Headers */, - ADBDB3338CAF800EE3CABB296FA4AC34 /* RTCCameraVideoCapturer.h in Headers */, - DA0FA0FF36B79DED8A71F5AA5C83EEC3 /* RTCConfiguration.h in Headers */, - D0A654F2A571969819017224D87A8175 /* RTCDataChannel.h in Headers */, - 0AB66ADC4DF0B22822E0612F38B69F9B /* RTCDataChannelConfiguration.h in Headers */, - E6EF950E4556EE54AC73FD13A8D0D62E /* RTCDispatcher.h in Headers */, - EBA8B766527721E3093D2BDC6A8F6953 /* RTCDtmfSender.h in Headers */, - 60EB82C911D6E26FC2304E542E9E7507 /* RTCEAGLVideoView.h in Headers */, - 3CC37F830C8AFB168035AA0F3830D214 /* RTCFieldTrials.h in Headers */, - C22B81E28527295AF6577A21B4DE45BC /* RTCFileLogger.h in Headers */, - 3BE8ACA55D534539C2559EB1567B7D33 /* RTCFileVideoCapturer.h in Headers */, - 6344F0ACE5BB39039D303F7BEFB052CC /* RTCIceCandidate.h in Headers */, - 4674401D35E56C1F6E65FB6480C9764C /* RTCIceServer.h in Headers */, - 0AEAF5EAC260B4BC688FFBEA9CBFA045 /* RTCIntervalRange.h in Headers */, - 53D7005AE1887F2F3BBEC6CCAB51A0DA /* RTCLegacyStatsReport.h in Headers */, - B5537025A1BA1ED1E9C4C097F4F46BFA /* RTCLogging.h in Headers */, - BF3C26A7BD11F4354DAA8D2E9010E530 /* RTCMacros.h in Headers */, - 0190BB9AF5CD7D812CA30DC1DABA0090 /* RTCMediaConstraints.h in Headers */, - 4AC8011E23465C2F8A192D20C2AD8D14 /* RTCMediaSource.h in Headers */, - C00AE7D932CF9F7617728F63E779B97E /* RTCMediaStream.h in Headers */, - 4531992ED891F2C6B85144E2E06DB689 /* RTCMediaStreamTrack.h in Headers */, - 3142C186A60FDFFA9B053386E66CD6D1 /* RTCMetrics.h in Headers */, - EE8B5C2BD899EDAB90CA3A04F9D6958E /* RTCMetricsSampleInfo.h in Headers */, - DE156B9BDD6BDA00C3D729CBF7DD4867 /* RTCMTLVideoView.h in Headers */, - A7860E2CF882B23ED6356BFC6EABEFF9 /* RTCPeerConnection.h in Headers */, - 9EA2C71A2C05B632021CD234D35C7B69 /* RTCPeerConnectionFactory.h in Headers */, - D04292604803241603C6E6B247EC9D92 /* RTCPeerConnectionFactoryOptions.h in Headers */, - E3A1A4E777722D460358ACD28065361B /* RTCRtcpParameters.h in Headers */, - BDF76F6203FE59FD8D6C6291ADDD533C /* RTCRtpCodecParameters.h in Headers */, - B7FA0ABE9FF6410AB4C6D1EE2F9E2019 /* RTCRtpEncodingParameters.h in Headers */, - 1B578CF52E3AF44ACCC48F37FE3DF994 /* RTCRtpHeaderExtension.h in Headers */, - 9EB2B267750F940F29A01C67EB02A21A /* RTCRtpParameters.h in Headers */, - E2973BB556B52F7BE5212BCE7682053D /* RTCRtpReceiver.h in Headers */, - 6C40A4899FC99FEFCCCD3A8DB32F7ADD /* RTCRtpSender.h in Headers */, - 67C56AE0DCC99E4CD30B0F50D109A51D /* RTCRtpTransceiver.h in Headers */, - FF0A4959AA4AC2A3D83BA570EA9426C7 /* RTCSessionDescription.h in Headers */, - 7AF108C4C97213E485D935BC53D272B4 /* RTCSSLAdapter.h in Headers */, - ED022E0E0B3B7D67D394AAB84496DEF0 /* RTCTracing.h in Headers */, - 36628010BAAFF22CF5CB6B121447926F /* RTCVideoCapturer.h in Headers */, - 8829D5ABF0FA447F72266B8F78FD4478 /* RTCVideoCodec.h in Headers */, - DE75412C7206DAC0A56C33B30520DC9A /* RTCVideoCodecFactory.h in Headers */, - D858E9D688AE698E9FA9D42A50F977B2 /* RTCVideoCodecH264.h in Headers */, - 546ED3F1267A3182DF44533892EDB117 /* RTCVideoDecoderVP8.h in Headers */, - 70FE84936E8E6EF848F3FED392048F5F /* RTCVideoDecoderVP9.h in Headers */, - F84DB0C7CC285ED6F75B9F9D778A266F /* RTCVideoEncoderVP8.h in Headers */, - A51BE3A7415A218301DE130AB7EA7150 /* RTCVideoEncoderVP9.h in Headers */, - 90287943AB6D42E3BE7F894BF9DDF248 /* RTCVideoFrame.h in Headers */, - D868E22EEA497562B296D93433C4180D /* RTCVideoFrameBuffer.h in Headers */, - 907C49E950B2BA64EB3382E6235B4BFA /* RTCVideoRenderer.h in Headers */, - 7054AC994B724BCC6232E9DA86018A3F /* RTCVideoSource.h in Headers */, - 2673194DF03F621991F04793BB861BEF /* RTCVideoTrack.h in Headers */, - 3E46DCF57663FA104F69BDEC9DD11BF8 /* RTCVideoViewShading.h in Headers */, - CBDB6C6D47FD2A71AE9FA22E8AC9909A /* UIDevice+RTCDevice.h in Headers */, - 8BF25177F34DE2E55922A7CDB26D6725 /* WebRTC.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 2D65EEE4243E1E4B5ED8AD7AD8391A8A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -12583,62 +12657,187 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3E7862A16680487F39BAEB512FBCB45D /* Headers */ = { + 393D92ABA2C972ECBB0F4D8ABB10230E /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 878158ED23BDF684A716C90F2C6309BF /* KeyboardTrackingViewManager.h in Headers */, - 530B56F52DCE768887DD26BC27FC7D44 /* ObservingInputAccessoryView.h in Headers */, - 477F817C6E719CB4E3DD39043DBD416A /* UIResponder+FirstResponder.h in Headers */, + 59A27A76152C84D9F8F7E1E9DA83B96C /* NSBezierPath+RoundedCorners.h in Headers */, + 75C9CAE694A51DAFA1BAB1925F3D92C4 /* NSButton+WebCache.h in Headers */, + 45435C88F05F819DDD9317C34778B6E6 /* NSData+ImageContentType.h in Headers */, + 0607AFAC1994ABCA5CDB85509A688956 /* NSImage+Compatibility.h in Headers */, + C22AC2258E09924FFE5CED63C14620E4 /* SDAnimatedImage.h in Headers */, + 47846280989B83E0E81201AB6519EF4E /* SDAnimatedImageRep.h in Headers */, + BF1D58DA635D64D8FF2279CC338B9966 /* SDAnimatedImageView+WebCache.h in Headers */, + 7522F353E44CF3FE87017A8B9D69BCE3 /* SDAnimatedImageView.h in Headers */, + 4677C3F8B59D3B4EE7A53E431C7A98D9 /* SDAsyncBlockOperation.h in Headers */, + 3FE305BC2BF6A59A80186E09DDB012E1 /* SDDiskCache.h in Headers */, + E2FD855A9DF7227F70556706B0594457 /* SDImageAPNGCoder.h in Headers */, + 341380E44D4722C561A20D6F28A387B4 /* SDImageAPNGCoderInternal.h in Headers */, + B896AC1D6D421F34FD7117767BB06EA7 /* SDImageAssetManager.h in Headers */, + B3B3F100ABCA97466DF82E44B13B9FE7 /* SDImageCache.h in Headers */, + 7CA1772E3EAAAA1C9B8FB09B9EB4D5D3 /* SDImageCacheConfig.h in Headers */, + 692A595702C25C39D08488B09963FA90 /* SDImageCacheDefine.h in Headers */, + 73A9E454F466B065C3411F127647301F /* SDImageCachesManager.h in Headers */, + B00B1B8F2215DD0AFFF8E2FB5E057874 /* SDImageCachesManagerOperation.h in Headers */, + 3AFF0A6DF9B16C89F69F387017C8D983 /* SDImageCoder.h in Headers */, + 4EEDAA7E0FEE1C283049C711B9B2B49C /* SDImageCoderHelper.h in Headers */, + AC93D4A9B2755B711C4B8724E0A5533D /* SDImageCodersManager.h in Headers */, + A42C65B4F89B0EF59FE73B0DC1EC1FB0 /* SDImageFrame.h in Headers */, + A6F6F839D70066890E5106A6A744076E /* SDImageGIFCoder.h in Headers */, + 6A1D07E959C36B1D7CABD22D77AE9829 /* SDImageGIFCoderInternal.h in Headers */, + E6D04A19D4CA7107C282A648F3EFAF21 /* SDImageGraphics.h in Headers */, + E0AFBC27CADBB12E12855C0E75025580 /* SDImageIOCoder.h in Headers */, + E8785B8BB3CAF7B1CC82D17B3B3E3792 /* SDImageLoader.h in Headers */, + 4D67157D13F251D69F6E816C962FA6B3 /* SDImageLoadersManager.h in Headers */, + E2B1364A62BD666931200A9518124254 /* SDImageTransformer.h in Headers */, + A970F6BD84607066AD080F486A4C9BEF /* SDInternalMacros.h in Headers */, + DCEBD54F0337E28FE5070D1E501D61DC /* SDMemoryCache.h in Headers */, + 52F2A89459696E89E7DCEF4B544D1A9C /* SDmetamacros.h in Headers */, + 65374B149148C70C01ABC2DB007DF4F9 /* SDWeakProxy.h in Headers */, + 1DF89719EF83FB863FAD03F5BE5907D2 /* SDWebImage.h in Headers */, + 201C1DBFD35193149972A76A9196660C /* SDWebImageCacheKeyFilter.h in Headers */, + BBCD5D84BD786D42F298740F80EC9D7A /* SDWebImageCacheSerializer.h in Headers */, + 8C441CE1112B71C027157B0B4634076A /* SDWebImageCompat.h in Headers */, + 51F838EFC805D37B10B9DD6A86FA74EB /* SDWebImageDefine.h in Headers */, + F9CB6E69475F65B09224D238841621B1 /* SDWebImageDownloader.h in Headers */, + EC69712F34E69E45C7475BA093968542 /* SDWebImageDownloaderConfig.h in Headers */, + 2CE7D4CA1AF7687B1E92FE5DDFBF419F /* SDWebImageDownloaderOperation.h in Headers */, + 783EF426619838F0FD3FB53C3F501CAD /* SDWebImageDownloaderRequestModifier.h in Headers */, + 11D3E18383B3AFD3111F4AA16826103D /* SDWebImageError.h in Headers */, + 9DDCA6CC02895AF92FE4FDECA8A91BC5 /* SDWebImageIndicator.h in Headers */, + 59136E16B44531F059EF7B784216E06C /* SDWebImageManager.h in Headers */, + 43CF2EFDFE78CD5EFCAC5319D2288C0C /* SDWebImageOperation.h in Headers */, + 66F59FDD72D7D3B6034140CB9116FA44 /* SDWebImageOptionsProcessor.h in Headers */, + 681AC22F4116075787A35C9B2F4680AF /* SDWebImagePrefetcher.h in Headers */, + 81B3ECACF5B3FAE1F22BC792E4403333 /* SDWebImageTransition.h in Headers */, + 524E21BA5B2C2D0D3803784A8E394A00 /* UIButton+WebCache.h in Headers */, + B5A58168F911ADAFE5452E239ABD62AD /* UIColor+HexString.h in Headers */, + 580C905C8F990879D69D68D202D1F9AA /* UIImage+ForceDecode.h in Headers */, + 86A23BD529539188DAE159FF2D8B827D /* UIImage+GIF.h in Headers */, + CA23126A2ABFF722D6D73A8A569D70F4 /* UIImage+MemoryCacheCost.h in Headers */, + C12166A2A19FCDB6ED6DDF26F5798ADA /* UIImage+Metadata.h in Headers */, + FB3A4B7AA59E69A00912B7872C73FEEC /* UIImage+MultiFormat.h in Headers */, + 6C2ABB0CC7D37F2F79DEDFE475C15761 /* UIImage+Transform.h in Headers */, + 6A0E13A9A603F7AE8F1D69241B3CB8A5 /* UIImageView+HighlightedWebCache.h in Headers */, + FAF738DA55AB64A4E987D5D26DEC872F /* UIImageView+WebCache.h in Headers */, + 05D9FBAAE17CCAEC7A719D5FCB4C931C /* UIView+WebCache.h in Headers */, + 30EBF06BCE90BD8C761F9E9DC8C9B4D8 /* UIView+WebCacheOperation.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4425AB480EB3FBF52ED38FCEA53C6781 /* Headers */ = { + 3D17B76DA25681152D814D20EA6FC1BE /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - A83CB848E6282F748F9EC71568018A4C /* RNFlingHandler.h in Headers */, - 60FAA03A208514DDA5FA1B99C80C8915 /* RNForceTouchHandler.h in Headers */, - B5E0630C715C75293DFA96943823ABAC /* RNGestureHandler.h in Headers */, - E42C9A8C813E0D53EE4525F7E43074FE /* RNGestureHandlerButton.h in Headers */, - 21A33E4C1B8F56C99B36D6341930D784 /* RNGestureHandlerDirection.h in Headers */, - C4DAA1673B378DA41F0D51CC8F6B0AB6 /* RNGestureHandlerEvents.h in Headers */, - B8FC1B327013E2D189784307C365AC4A /* RNGestureHandlerManager.h in Headers */, - 73F2057C0D8B55FD49B327219140E73D /* RNGestureHandlerModule.h in Headers */, - 18307F5C7D272B71FC1A9DB4828B3B18 /* RNGestureHandlerRegistry.h in Headers */, - E9A3CB05EA55527BEBA643F476864BD4 /* RNGestureHandlerState.h in Headers */, - EF99C4FEAF1FD5EB6E773216FEF60A96 /* RNLongPressHandler.h in Headers */, - 079BD0BF2F64CFE99FCB684370097C7F /* RNNativeViewHandler.h in Headers */, - F46EB36C93128F54BDFC52437D895EDA /* RNPanHandler.h in Headers */, - 10D1C4E32DAC24E825CECC72DAB4DF7A /* RNPinchHandler.h in Headers */, - 500DA73F9D2855E64E514A42BE5A6ED7 /* RNRootViewGestureRecognizer.h in Headers */, - 25A679E08CD562EE47F0F4CAA08DE67D /* RNRotationHandler.h in Headers */, - F20A461A387D99C9EFA54ED179F27614 /* RNTapHandler.h in Headers */, + C89D347C87AE41FF36A0D95688676493 /* DeviceUID.h in Headers */, + A481931853133798CB7677DB8B4F088F /* RNDeviceInfo.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4890E732B999CC2457EDA689DC4DA805 /* Headers */ = { + 45C56EEAA800AD77F903BF323A6CBEA2 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 280AE76B1314A572C42246827AFC9325 /* Compression.h in Headers */, - 150A1A914377D845429047F5AC3481AA /* ImageCropPicker.h in Headers */, - 79D28003D1DE5426C80BEEDDB83BF662 /* UIImage+Resize.h in Headers */, + 53C76A24563C508E530A94901A7E2FFF /* JitsiMeet-Swift.h in Headers */, + C62DFF6E6FE5D325AA4DB0069F0D7450 /* JitsiMeet.h in Headers */, + A321483B71FB462C9BD1989B4AB3D466 /* JitsiMeetConferenceOptions.h in Headers */, + 453A313A6F8190E97DE9E935EA6C041D /* JitsiMeetView.h in Headers */, + B32F985DABDA929FE0A0E8EBBB9852DC /* JitsiMeetViewDelegate.h in Headers */, + 828C92E88CE108C7543E195B5B0862BD /* RNJitsiMeetView.h in Headers */, + AF084E0D4BA789FD4C8A1BDDDEDE5E05 /* RNJitsiMeetViewManager.h in Headers */, + 08E9A26FDDFE70607DEC5BFBB8429495 /* RTCAudioSession.h in Headers */, + ED83DD13D27F2076C118F5F26A02903C /* RTCAudioSessionConfiguration.h in Headers */, + 2567302E73972DAF2C1AEC5F74F7BFE6 /* RTCAudioSource.h in Headers */, + 8637928C8084799D8987A22308A40B37 /* RTCAudioTrack.h in Headers */, + 4AB2C3C5E57AC01DC84ADD20602B0810 /* RTCCallbackLogger.h in Headers */, + 24C648DA44DE8E8601D12BFB59C38949 /* RTCCameraPreviewView.h in Headers */, + 409DFE7F78C6CB77374D465F88FFC7D4 /* RTCCameraVideoCapturer.h in Headers */, + 3824A1BF01E732F6B2D11639B701EBB8 /* RTCConfiguration.h in Headers */, + 811235B35A41301ECD93CB42B7B4682B /* RTCDataChannel.h in Headers */, + 40E802348C6CC3615FD96431637FAAA1 /* RTCDataChannelConfiguration.h in Headers */, + 05CB465AD4F12063F9D19F432DEFA8B6 /* RTCDispatcher.h in Headers */, + F379FF1F9E8120BAD225860153D0D045 /* RTCDtmfSender.h in Headers */, + 478B1FB6AE4A2BE8AA51832443A5F390 /* RTCEAGLVideoView.h in Headers */, + C1A596024626AA622A4BC843C83FDAEC /* RTCFieldTrials.h in Headers */, + 1425D1ED69B8C37E901EF2F1E7DD235A /* RTCFileLogger.h in Headers */, + 0524716A01C00CFC301D7BD38835EA69 /* RTCFileVideoCapturer.h in Headers */, + 1C487925D74EB5B30F5D42C239264F28 /* RTCIceCandidate.h in Headers */, + DA0C4DF27CE71C0F6425282DCDC9F6D5 /* RTCIceServer.h in Headers */, + 4A4545EB6F233C23438A2D6E2D2D3C93 /* RTCIntervalRange.h in Headers */, + A5AE8BFA8866C7771EBDEF5F234BB684 /* RTCLegacyStatsReport.h in Headers */, + 62D4B9AC2AD33ECAE206D30C957417B1 /* RTCLogging.h in Headers */, + DF53AE786207E29079EBFE6D62BD2097 /* RTCMacros.h in Headers */, + 1172407460D2EF876D2942D1EF636896 /* RTCMediaConstraints.h in Headers */, + 29E0A466646822BF7992EB5EED19D722 /* RTCMediaSource.h in Headers */, + BE0D5439AE9AB86A8675072840B4174F /* RTCMediaStream.h in Headers */, + 605F0C709490DE11C0BD51DA71621794 /* RTCMediaStreamTrack.h in Headers */, + EC78036D6FBEF2AF9A1F3874B4C0B701 /* RTCMetrics.h in Headers */, + 504D21C6D8ED46FA330EBF872CFB2D74 /* RTCMetricsSampleInfo.h in Headers */, + 7CB27A19EF8D431CC03C9CE96195265C /* RTCMTLVideoView.h in Headers */, + D2767B71738BD4DF7655C02285FB55EE /* RTCPeerConnection.h in Headers */, + FDA6DA82435CD934601CCC7690F602B6 /* RTCPeerConnectionFactory.h in Headers */, + 11931E9DCCC418BB192D20983AD69545 /* RTCPeerConnectionFactoryOptions.h in Headers */, + 484BA56ABE986678844DAB665D2E6CE8 /* RTCRtcpParameters.h in Headers */, + D514590925D9FEF069143671B260ECEF /* RTCRtpCodecParameters.h in Headers */, + 695455CED3568AA4129B3014FC3EBF01 /* RTCRtpEncodingParameters.h in Headers */, + E80CC09F37E12876F1D40DCE07BE37BE /* RTCRtpHeaderExtension.h in Headers */, + F91C24452C6428220D5D664CEE90C4B4 /* RTCRtpParameters.h in Headers */, + 0608FF72B775C9CF4F97F54DB573D13F /* RTCRtpReceiver.h in Headers */, + 8316A4FB88627BB6EDF48C6240FB99C4 /* RTCRtpSender.h in Headers */, + 429E6533B4EE14BD374216E2AD750697 /* RTCRtpTransceiver.h in Headers */, + 0B9ABE3C3F610E7FC36BE7377DF44527 /* RTCSessionDescription.h in Headers */, + 6940FBE8BF9D3ACA5ACC39947D1309F6 /* RTCSSLAdapter.h in Headers */, + A2E914DB0829145BEBF1F96705A3C1B0 /* RTCTracing.h in Headers */, + 17C2016CE33EAB68AE95C0BA2A8A650E /* RTCVideoCapturer.h in Headers */, + 62EC4384418F2BAA8F0C85EF4F2F13C9 /* RTCVideoCodec.h in Headers */, + 59663678A156BD4DB3E126F529E4D362 /* RTCVideoCodecFactory.h in Headers */, + 2AC252CD11D8210E4459CB190F05D118 /* RTCVideoCodecH264.h in Headers */, + EFE50FAAED71B763441DAFE9D41C2CAB /* RTCVideoDecoderVP8.h in Headers */, + 48B863BF0F96B0BDA51F7CDC80232E88 /* RTCVideoDecoderVP9.h in Headers */, + E3A8C17A8C210EFA42096F8A31E0F9E1 /* RTCVideoEncoderVP8.h in Headers */, + 67F28AD5467C5D83B36462F13E4737A2 /* RTCVideoEncoderVP9.h in Headers */, + 1FDFB90B7E52B0ED0CCAEAE4D10C1BD8 /* RTCVideoFrame.h in Headers */, + 0F5DFC93BD709B17E8C0C03D2E04C9B8 /* RTCVideoFrameBuffer.h in Headers */, + 63CD5ECCCB607BDB1ED3E70085940F63 /* RTCVideoRenderer.h in Headers */, + 5EE76984424C85385970733484CA4065 /* RTCVideoSource.h in Headers */, + 3899FE6DA6AA2873FDEAC13EAB68AB0B /* RTCVideoTrack.h in Headers */, + 364368FF85944E1E4231CF5AF5BF8AB6 /* RTCVideoViewShading.h in Headers */, + BF9698CA6FFCEC379E28E8185F85DF88 /* UIDevice+RTCDevice.h in Headers */, + 2D1354263163AAE7FB85C0AA45AC7951 /* WebRTC.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4AFCFA23C698796F2FD20BDB42B9E43D /* Headers */ = { + 47BC5A83D79274E4841CD0BE60C4E3CF /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 09E1E2635AFB97A60EBB68B2D0BCFBD5 /* IOS7Polyfill.h in Headers */, - 4456834E416563A7C0ABDF3575948D16 /* RNFetchBlob.h in Headers */, - 061ECC76B7FA81F678B60827FC62AD29 /* RNFetchBlobConst.h in Headers */, - DED0F1AB917A56A519FDA6A39BCFDC86 /* RNFetchBlobFS.h in Headers */, - 8C155BF7EC9EC0C6DBFAF8482A797A91 /* RNFetchBlobNetwork.h in Headers */, - 7336BBE6C5D3FF126F082E3BB2D50C4D /* RNFetchBlobProgress.h in Headers */, - E00A457075499BC2FAD94D41E14C9179 /* RNFetchBlobReqBuilder.h in Headers */, - 0B92FCE07205EC05AAB26A4D42514511 /* RNFetchBlobRequest.h in Headers */, + 2B237E1520CBF06FD71091F1E1631C63 /* BannerComponent.h in Headers */, + 12DA569568864F0B43FA059A3C43423E /* NativeExpressComponent.h in Headers */, + 51F7FE1859EC6EB5A38C8CAFBC28360B /* RCTConvert+UIBackgroundFetchResult.h in Headers */, + 3C27203737CCD27C60F9A5921817F438 /* RNFirebase.h in Headers */, + 78B94C146C412FBFD166AE49ABD15B60 /* RNFirebaseAdMob.h in Headers */, + 8664D8B1FA54FD899589F9F5F35EA0C6 /* RNFirebaseAdMobBannerManager.h in Headers */, + 71E29FF4F88C4F2B8D054205D3F4A55B /* RNFirebaseAdMobInterstitial.h in Headers */, + 9D96176BAD32664F930AE8292F771492 /* RNFirebaseAdMobNativeExpressManager.h in Headers */, + 6D0D12115FCBD55FAC3D02BEB5D8FC7D /* RNFirebaseAdMobRewardedVideo.h in Headers */, + F9D8F2787331C1FD57D9905E91FE6989 /* RNFirebaseAnalytics.h in Headers */, + 812C046882DA68E9755B2CD5360305D7 /* RNFirebaseAuth.h in Headers */, + 9F0BADAA46BF5E53B1242BC8A10B1F03 /* RNFirebaseCrashlytics.h in Headers */, + 88137405BDCA92DAD3DD33E8A7368EDD /* RNFirebaseDatabase.h in Headers */, + 96788C13B5A15E887EADB8033EC2FFFC /* RNFirebaseDatabaseReference.h in Headers */, + 48D35753003C77C5E487A36A9896C42A /* RNFirebaseEvents.h in Headers */, + 0EC1F8891E00DE4CA00FDD78E8689836 /* RNFirebaseFirestore.h in Headers */, + 611007A30BD51A47805ED03472D806D8 /* RNFirebaseFirestoreCollectionReference.h in Headers */, + D56B854FD926E461E3C8BB397EC99324 /* RNFirebaseFirestoreDocumentReference.h in Headers */, + 7F2CBE5C49448337784F3F47091DF2AB /* RNFirebaseFunctions.h in Headers */, + D288BFD8E11918F93E9524A634F47E97 /* RNFirebaseInstanceId.h in Headers */, + A3435E902A92D6745338D1D8BDFAADA6 /* RNFirebaseLinks.h in Headers */, + 361A6CAD11C93AE110F59D7391877C2D /* RNFirebaseMessaging.h in Headers */, + 5D1BE62485182B53598841932CFA84FC /* RNFirebaseNotifications.h in Headers */, + 9A2840DAABE5BFDBD24D21E7835148F6 /* RNFirebasePerformance.h in Headers */, + 27E6EEAE92AD1078CBAA3D991A064E23 /* RNFirebaseRemoteConfig.h in Headers */, + 9EF0351744849AD5902CDADFE0806A35 /* RNFirebaseStorage.h in Headers */, + 6580CA92EF4F6FFE92C2803B9D4FA282 /* RNFirebaseUtil.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12670,6 +12869,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 4D57A90878068803FCC99450F39F088D /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 56993CEF035063367476FDB4B7465899 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -12698,22 +12904,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5D8D21845561112CDB85A68686EA9215 /* Headers */ = { + 60D82814057AB2E29CF6FE5D1FEC1E92 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 9E7796E429952562164E5A9B6C387E79 /* RNUserDefaults.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 5F52B45A972C896AEAB080BCACD12E14 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - F2E630BBC518CE79F8DF8A7EE1499BA4 /* FFFastImageSource.h in Headers */, - 1F9933E56E951CD24B5FE59A1DF30EC4 /* FFFastImageView.h in Headers */, - 6407DA67149C9B89D517DC8A6BAF0B70 /* FFFastImageViewManager.h in Headers */, - B11E7BFD70BF2509FF20701AE2B07C3F /* RCTConvert+FFFastImage.h in Headers */, + 4DA2A03EFEE02C0F204EFAA0C912D229 /* RNUserDefaults.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12735,77 +12930,37 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 626FD4773C8E7BD9554E097726E7A4CD /* Headers */ = { + 65B1EF98BC9F36D6EF4E0BDF0E2E85BA /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 361B14F85720471401775A9F3CA22960 /* BannerComponent.h in Headers */, - 1FA093AEF62AE2BE20CAD11695130091 /* NativeExpressComponent.h in Headers */, - 4501F02B61C64DFD75D3C410E8C18FD9 /* RCTConvert+UIBackgroundFetchResult.h in Headers */, - 8CC4A31DAE15C7A8F766DD6973D25032 /* RNFirebase.h in Headers */, - 4433F070D4A57CC518CA517D5D7EDE23 /* RNFirebaseAdMob.h in Headers */, - 28E83AC94D53EFF4D180E0A742AA733B /* RNFirebaseAdMobBannerManager.h in Headers */, - FF5720C8A3C8BAA340512C69EFAC9485 /* RNFirebaseAdMobInterstitial.h in Headers */, - F28D98AB77ACCA579A9E7A62912FE23D /* RNFirebaseAdMobNativeExpressManager.h in Headers */, - 14074A5960FD59A6E01AAA8BAC92788B /* RNFirebaseAdMobRewardedVideo.h in Headers */, - 37A3BE9BC211683254BFF6A372F97A05 /* RNFirebaseAnalytics.h in Headers */, - 5E14C443FB6DF23A6B141BB1AFF588CB /* RNFirebaseAuth.h in Headers */, - 026BEE9141E52447313D1D1CE091683C /* RNFirebaseCrashlytics.h in Headers */, - 11892AE99894A03C18DA993F7C3A1E26 /* RNFirebaseDatabase.h in Headers */, - 0D60F47F1C096244710398B1BBF8397D /* RNFirebaseDatabaseReference.h in Headers */, - 1F5E662DA11E04E32401070187F7B106 /* RNFirebaseEvents.h in Headers */, - B479CF11BEA5A71A03AAF37385513FDB /* RNFirebaseFirestore.h in Headers */, - F169AA7FC866402757061FF1F5D05392 /* RNFirebaseFirestoreCollectionReference.h in Headers */, - 24A0427A84E9937758D8E1D2DE34906A /* RNFirebaseFirestoreDocumentReference.h in Headers */, - D3EDB5D45D9206742CB0AE433965FCAC /* RNFirebaseFunctions.h in Headers */, - 832186AEEE8A6301F29EE2778DCA504E /* RNFirebaseInstanceId.h in Headers */, - 754DCA27E4198FA5758C7440843FE864 /* RNFirebaseLinks.h in Headers */, - 912C9C31F4DDC1C7A24089B645A5ADDF /* RNFirebaseMessaging.h in Headers */, - 49A72925D4803758EFB20A0CB642C6F9 /* RNFirebaseNotifications.h in Headers */, - D2F98859A35CCEEA5B597B270B2DB74B /* RNFirebasePerformance.h in Headers */, - 051F3485F0058081B93F24E585B983C5 /* RNFirebaseRemoteConfig.h in Headers */, - ECA963C290230A90DD0EC67B25F03B46 /* RNFirebaseStorage.h in Headers */, - BC0292F8A6EB1B807B1DAFBA3D31A3FA /* RNFirebaseUtil.h in Headers */, + 3F23F28F0BD0A04428F991996459F68D /* IOS7Polyfill.h in Headers */, + E4E8761CF2AE49F8204B4A0B904580C3 /* RNFetchBlob.h in Headers */, + 32EC230E9A7CBEF14A45D133AB11CB6A /* RNFetchBlobConst.h in Headers */, + A5825ED3780A31FA1C8B2A66A8F1340C /* RNFetchBlobFS.h in Headers */, + 6093143B0BFF05A65AC0E12C028C8620 /* RNFetchBlobNetwork.h in Headers */, + EDC631FA3291472264A0A1E0CE08238C /* RNFetchBlobProgress.h in Headers */, + DEBA40CB1CCAC1BCF90BAED810ED44D3 /* RNFetchBlobReqBuilder.h in Headers */, + E1249F4F1421385F62A79E9924A68F73 /* RNFetchBlobRequest.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 65FE1BDD7EA84F6FA47A86F5EF0F927E /* Headers */ = { + 660BD652788845440F89DE30330A0CB5 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 656AECDFB3A553F1BF122E39D0716A98 /* UMBridgeModule.h in Headers */, - DA2519929E23C30DA0CC5FC78905C490 /* UMModuleRegistryAdapter.h in Headers */, - 6BE95626E14B629519556BB88B5A283E /* UMNativeModulesProxy.h in Headers */, - 167E4228FA0F2352D7EAFE7C4BABD49D /* UMReactFontManager.h in Headers */, - EBA76B34F8287D18B5A0898B6FB78FB2 /* UMReactLogHandler.h in Headers */, - 9258086C822B13C25DE00563EE085101 /* UMReactNativeAdapter.h in Headers */, - ACDEB9203605A36E054EF47C59FB613D /* UMReactNativeEventEmitter.h in Headers */, - 54560E3D8CBEE89EFD3851F13BE51589 /* UMViewManagerAdapter.h in Headers */, - 336346130CC998028634B4AB5777A665 /* UMViewManagerAdapterClassesRegistry.h in Headers */, + 7817EA94446118E43703CDB79B57C038 /* RNCSafeAreaView.h in Headers */, + C3BC7B071566F6448BB349F7CE87570C /* RNCSafeAreaViewManager.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6642F3BE1DE8E2F5D16C5E2C233F71C7 /* Headers */ = { + 77BDE236A2157C848C7965C97AFD9EA2 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 0233CB05B1658518DE55C0BE26A1D3F9 /* AudioRecorderManager.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 70BABF4E1097665A69E9E518BA2A9AF7 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - AA98A648CB3B804C4184DF32EB174F06 /* Orientation.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 72287A49A3F0C2B137897946812F7480 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 79BC92FFF2F81EE004B98203FB133D95 /* RNDocumentPicker.h in Headers */, + 9234559CD3C19B2CCC5E6E35AC8E6EF4 /* Compression.h in Headers */, + 04C6547239D730B02E65E269B46BCA0F /* ImageCropPicker.h in Headers */, + D4031BAF5AA8F4510D2C6AC07894B197 /* UIImage+Resize.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12886,6 +13041,27 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 81CC2E015022D934B2CAED21C324F947 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 12373E47061262B4F5631B67C4A2ECE4 /* RCTConvert+RNNotifications.h in Headers */, + 5131842C2B8011E85660F70459BF2469 /* RNBridgeModule.h in Headers */, + C4D4ECA4AF964ED87FDB0CE86DF56F4F /* RNCommandsHandler.h in Headers */, + 20C50D70DD42F95AE7C28811E6F5B5D1 /* RNEventEmitter.h in Headers */, + 26E9C6B427E74202266F868F6D3B3AA2 /* RNNotificationCenter.h in Headers */, + B828D8AC1935D45391624C8C3A37D77F /* RNNotificationCenterListener.h in Headers */, + F820A99E5934E0A7E0F7BA2B05A7C0E2 /* RNNotificationEventHandler.h in Headers */, + F5CC01D8358A03BD0FA6669302E862CF /* RNNotificationParser.h in Headers */, + C464EDD333DE56F0415C8F3CDB3E98AD /* RNNotifications.h in Headers */, + 3AC38F68F918BDB89ABE44BEADAD6982 /* RNNotificationsStore.h in Headers */, + FABA2F0CA880607B595003DEF1459225 /* RNNotificationUtils.h in Headers */, + 1F0D7FD087732135F68120C579F49386 /* RNPushKit.h in Headers */, + 4044E0F94A24EE9D527440BE16EE5A18 /* RNPushKitEventHandler.h in Headers */, + 7CCB018908CDF129172550CBCBFE566D /* RNPushKitEventListener.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 89C68E4127297AAB36A30F848FAF3423 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -12895,14 +13071,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 8D057DBAC5B6CE733DC07A3400C009C2 /* Headers */ = { + 8CC49F194DF754D1965747B456CD1CD7 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 5825B7B00A4FE12BC7EF118506E894E6 /* RNSScreen.h in Headers */, - A77F4378C4F7BAFDC18E620249B58B35 /* RNSScreenContainer.h in Headers */, - B28B53D498BC5EDA6A609EA8F6CEF053 /* RNSScreenStack.h in Headers */, - 45586CA77B946017F67214625CCB9147 /* RNSScreenStackHeaderConfig.h in Headers */, + 663FF22F237896B0B086B89E18B5BC60 /* RNLocalize.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12922,32 +13095,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 92849CE2C612F3F99EAB9CD434A14FEC /* Headers */ = { + 9661D222AFBE4F668C66C2E821AFF40E /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 4C4373B796FEE0693EFECD9602352314 /* RNSplashScreen.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 9671C4AD201B87A636641F5918857909 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 96A01F4091D96E68B6A461443C7BD3FA /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - CCBEFC47F72009012A9399D8A59DB879 /* Color+Interpolation.h in Headers */, - 1C7824984010D7619A12000D3C17DBAD /* LNAnimator.h in Headers */, - 28E68C5E487D381C748E8A14278521B6 /* LNInterpolable.h in Headers */, - 923FF066BC581F2DD154E26A802290BF /* LNInterpolation.h in Headers */, - 5724A30AF0FE8BF898573EBBFCEE2B96 /* NSValue+Interpolation.h in Headers */, - 68375371934A4545C12983D3A4AC22E9 /* RCTCustomInputController.h in Headers */, - 5FAD0A751E1895305A46C4702908D4ED /* RCTCustomKeyboardViewController.h in Headers */, + 1839BE5F409CB52748B0E90C9453528C /* RNBackgroundTimer.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12962,87 +13114,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A1A7F17616C797DF499390CC2B645F77 /* Headers */ = { + A1EF8BC2BD4B2BAE96E050FE2EBA4582 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 4C28A2C54D25099E8BE46026D094784F /* NSBezierPath+RoundedCorners.h in Headers */, - 089D6499498954B395C850F1982AA2CF /* NSButton+WebCache.h in Headers */, - F29B93B8AC55B9288CED1EA0E8F4BC74 /* NSData+ImageContentType.h in Headers */, - 6495520FC207EC40B0526F36C6642F40 /* NSImage+Compatibility.h in Headers */, - 72CC4FBD6E7376CFD8A4560F28630D37 /* SDAnimatedImage.h in Headers */, - ED847C2F828901FCD0890B5ACD9BBC02 /* SDAnimatedImageRep.h in Headers */, - E80F876BA044C640CB805363B37EFE96 /* SDAnimatedImageView+WebCache.h in Headers */, - 44D904013DAE238628E56CA40E5659AF /* SDAnimatedImageView.h in Headers */, - AE0DA7567047964FE237245111052C3B /* SDAsyncBlockOperation.h in Headers */, - 733DAF810B3050C9DCA127822580866A /* SDDiskCache.h in Headers */, - 6D053C28CD6E7D4A7A187C22D42DBDB4 /* SDImageAPNGCoder.h in Headers */, - 87AF411D0D7BC2530CE0D12B674E60A6 /* SDImageAPNGCoderInternal.h in Headers */, - 4EC42E63957EE5E414C100E5D4973D9A /* SDImageAssetManager.h in Headers */, - F863258FEA8B8816AF99FDBE5B98752D /* SDImageCache.h in Headers */, - C4A45C69501451CF8577B44F6A388443 /* SDImageCacheConfig.h in Headers */, - C1DAD0BCC7E1FE86077635C0E97CF1DE /* SDImageCacheDefine.h in Headers */, - F0B4B9C6AC5F6E8F4F8E71F8E9039931 /* SDImageCachesManager.h in Headers */, - E2015C18ACB4BA2E83587737DBBED1D3 /* SDImageCachesManagerOperation.h in Headers */, - 80F21A2AB9B29C62BF6D8A543147DA6B /* SDImageCoder.h in Headers */, - 1B2EB123597141ED57BF5915F4CBF34F /* SDImageCoderHelper.h in Headers */, - CFE2DB69A9C2653F8E48A4CF2AB40CDB /* SDImageCodersManager.h in Headers */, - 18BB72FA4FA6B665DEB5CB1B963A0807 /* SDImageFrame.h in Headers */, - 52C7ADA4C0BA487B2F52C85596828E50 /* SDImageGIFCoder.h in Headers */, - 7FC3D1DFCBF45F71109CE0CFD3B34BAA /* SDImageGIFCoderInternal.h in Headers */, - 87FF7677BE6B422ACFD441FFEEAA1170 /* SDImageGraphics.h in Headers */, - E97F362D0B36FBE91793B97C1132F0FE /* SDImageIOCoder.h in Headers */, - 9A6481D9DCD65EB64BBBBC5B69D5A969 /* SDImageLoader.h in Headers */, - 0F92A58BD61B9EE2950E0B91DF2A027F /* SDImageLoadersManager.h in Headers */, - 3048B26B78ED15ECDB68B564FE60FCBE /* SDImageTransformer.h in Headers */, - 3FD7E25279237B91D4E427EF8ED784E2 /* SDInternalMacros.h in Headers */, - 4E7450C96274C7236120E2B653B77C16 /* SDMemoryCache.h in Headers */, - 3AE40FB4DC7626478D8E8CBF0EB26F69 /* SDmetamacros.h in Headers */, - ADD2AEEE5548989C3234C0401CA7E38E /* SDWeakProxy.h in Headers */, - 24B5854716E91E06CCE3AD51BE54CC56 /* SDWebImage.h in Headers */, - 2D94A7F720A87F8E8CBB6B3E1F47ECBD /* SDWebImageCacheKeyFilter.h in Headers */, - D464BCA6658B187A90D6C3028D353EDB /* SDWebImageCacheSerializer.h in Headers */, - A4E0BF76E3B4D9CD2721EE55FE43A0B4 /* SDWebImageCompat.h in Headers */, - E46558C17D1EB54343727FF934BD0352 /* SDWebImageDefine.h in Headers */, - CCB72325644FDA68D3156B56CFE29086 /* SDWebImageDownloader.h in Headers */, - 5A963D590B04472E7AE3D9620154E884 /* SDWebImageDownloaderConfig.h in Headers */, - 7C35F92C9ED2EB78D1C4BE25A0BBE95B /* SDWebImageDownloaderOperation.h in Headers */, - 224BFE3AB6B1669CB925F9647D7D818A /* SDWebImageDownloaderRequestModifier.h in Headers */, - 3CE15AB0820E4D67302133BBBBFAFD0A /* SDWebImageError.h in Headers */, - CAA25862E9273B8EA873C285E2EDB605 /* SDWebImageIndicator.h in Headers */, - D6521E20710443E45EBD3A97A4A4F3AB /* SDWebImageManager.h in Headers */, - 05A4AA5408315AE4F544C905057EA769 /* SDWebImageOperation.h in Headers */, - 1B43961811586340F288EEFBFCE377C2 /* SDWebImageOptionsProcessor.h in Headers */, - F2E56EF45E808D80A02CEC738732864B /* SDWebImagePrefetcher.h in Headers */, - 57F0F85E4D739DAA04388E92D6F7DCB6 /* SDWebImageTransition.h in Headers */, - A68565AADFEBC8691EE1D2861E45AEF4 /* UIButton+WebCache.h in Headers */, - 919CFEC7B6450ECF22844A35E0256B16 /* UIColor+HexString.h in Headers */, - 71ED9E8A3725C6D8E61E6F212973EC2B /* UIImage+ForceDecode.h in Headers */, - 3726B9D248710A919ED5C9F06B0B7D03 /* UIImage+GIF.h in Headers */, - 0978FE58F48ED2FD75A428FC6FDCB304 /* UIImage+MemoryCacheCost.h in Headers */, - A253793DE53972266348B39BED07895F /* UIImage+Metadata.h in Headers */, - E0D5B9077D8E9104593F49480CA00EDF /* UIImage+MultiFormat.h in Headers */, - DE4D52E0A204C7E8B0913185E7019B5E /* UIImage+Transform.h in Headers */, - F9E61AB437D5CDF5C5740CE74BA2D40A /* UIImageView+HighlightedWebCache.h in Headers */, - FBD5E9EE8D92F8CCA7E5BFF85FC08059 /* UIImageView+WebCache.h in Headers */, - 49385287EFDE1B754EC3925BA48B341A /* UIView+WebCache.h in Headers */, - 5DD2FEB84DBD5A9C6461812AD2793C56 /* UIView+WebCacheOperation.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A209ACBD2B1F0822DEED3A753074775B /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 0F5076C66AD32BE726FFCC89EB6140AE /* ReactNativeShareExtension.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A48D4750D4ED7F20002C3236CB801AAD /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 803E1940687F149D1C816AEB8868462E /* RNVectorIconsManager.h in Headers */, + E46D352CDFF056D77C6C1B5CBC614D85 /* RNVectorIconsManager.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -13060,6 +13136,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + AC62C6279F72FBAAD0CE8CCE177EA741 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 4D17B5E877041CD806C4D05D10EE9441 /* AudioRecorderManager.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; AC87EA80AD4786D1A603503DC346B082 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -13067,25 +13151,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B09C8481A97081E68594502D7AE86B21 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - D8E3DF8D5FA07C3D2C2BC853F182F106 /* RCTVideo.h in Headers */, - D425FF56C2494DADF95484EE83FFF941 /* RCTVideoManager.h in Headers */, - C1276EECE6D422B68E13E47C7B81E35C /* RCTVideoPlayerViewController.h in Headers */, - CC686A66420A3DA0F5F812E453C41597 /* RCTVideoPlayerViewControllerDelegate.h in Headers */, - E187750FECA70688A596911DC55E469D /* UIView+FindUIViewController.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B0CFC69215F25B55F686A65986694323 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; B0F62D7238095DB6BCBB81393A4C4A7A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -13101,31 +13166,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B314EA20F09F9ABFFD554CB3E2EDDA9E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 26118CD1C4DF6A7ABF1D6623EC7F2849 /* RCTConvert+RNNotifications.h in Headers */, - DDE345FE044D3BD64E645C543340BD96 /* RNBridgeModule.h in Headers */, - 332BF9DE06A8C382D5AF750CDA85D66E /* RNCommandsHandler.h in Headers */, - 5B987D9A0BAAA801C41B608252BC820D /* RNEventEmitter.h in Headers */, - F840FDF8752259CBAD1B542B2F7AAC05 /* RNNotificationCenter.h in Headers */, - B48F0699A2146884367D34434CC96280 /* RNNotificationCenterListener.h in Headers */, - 5A17BD833C5FB753D349E7D5F3412439 /* RNNotificationEventHandler.h in Headers */, - BE6384C0088831B334B12F2D831D92DD /* RNNotificationParser.h in Headers */, - 3635E2F63011AE26D2DD94C7C8CF19F9 /* RNNotifications.h in Headers */, - 4D121AA390BA08677C8FD7500893610C /* RNNotificationsStore.h in Headers */, - D16439EDD03A01F79DAD484F20688D80 /* RNNotificationUtils.h in Headers */, - 8CAB262D594C9CA4031D07B5DCF543D3 /* RNPushKit.h in Headers */, - 00FB836143F5C8AFFB2A939B0F2FEBD8 /* RNPushKitEventHandler.h in Headers */, - 884404D6B4E2B38BCF798BE9E4B5212C /* RNPushKitEventListener.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B791AB2F0E864397282E450D1C4FED46 /* Headers */ = { + B31D21F8FDC32122A3820A27F6D97F03 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + DEBC2DBC6B016F4848EA6B1C7AAAE40C /* KeyboardTrackingViewManager.h in Headers */, + 48C5CCC125ED8CFD690B305A2544F94B /* ObservingInputAccessoryView.h in Headers */, + A3403146E2AD4F285F137A0680CF0C71 /* UIResponder+FirstResponder.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -13148,6 +13195,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + BF43FD13A12572ABFDAC25E7A009B393 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 1E26609F571CEE207B742AFAF8A9B7AC /* Orientation.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; BF9A4D441EE286E434A67A01289FE76B /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -13185,11 +13240,27 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - CFD59CB8B3CBA3115FD5D353935FE34F /* Headers */ = { + D309314835403952ED853CED45598B93 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 14A693ACDB76A06075456A2ED5BD698C /* RNLocalize.h in Headers */, + 61CDE75B53EC0963197E49E35210467A /* QBAlbumCell.h in Headers */, + 019007D29192F7B10CE198186095B92A /* QBAlbumsViewController.h in Headers */, + EE9B586EB0A46A64464F5777180E33F7 /* QBAssetCell.h in Headers */, + 6C697D051CA10AEDC9D9C676843997C4 /* QBAssetsViewController.h in Headers */, + 5832930DEAD6DAB954289242B1B7FAF0 /* QBCheckmarkView.h in Headers */, + 9C33A3B2165B2446665C9C08957E018B /* QBImagePickerController.h in Headers */, + 407E0B10FA4AD4A393D78FCBEEDC612B /* QBSlomoIconView.h in Headers */, + 32DB3410DD858D5062392CCDFCBEA57C /* QBVideoIconView.h in Headers */, + 8C527E904BFB1665987E6E4F74A43941 /* QBVideoIndicatorView.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D3AAE407022AC4E9BC1E869ACA4B57FB /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + BBFFF7416BC1C20A1B8BD87257F13063 /* RNDocumentPicker.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -13245,6 +13316,30 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + E11C8D2F10B384A5CE9120CB149165F1 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 5418C92F0F0A4EC8A0B91B3544091D5B /* RNFlingHandler.h in Headers */, + 962C1BC6D2697D2787C53886360DA2BA /* RNForceTouchHandler.h in Headers */, + CAF743EE99EA16768C29B1D1F07CCAF1 /* RNGestureHandler.h in Headers */, + 103543D34028B435839D34055D9DB529 /* RNGestureHandlerButton.h in Headers */, + F08DAA680F2C395E6489D60A9B71CC18 /* RNGestureHandlerDirection.h in Headers */, + B13476652C0D2D610E8D3596BF26F1A0 /* RNGestureHandlerEvents.h in Headers */, + CDCC25A566AA7F8A7E999391855CA6DF /* RNGestureHandlerManager.h in Headers */, + 3C5782C2A850957A2D85883FAEB56987 /* RNGestureHandlerModule.h in Headers */, + B5EE178373ABDB48583FA1CE04FD9A05 /* RNGestureHandlerRegistry.h in Headers */, + C1219DAEB82B1A9799B6CF07BDB08DC5 /* RNGestureHandlerState.h in Headers */, + B9C8CE2CA4EB322385296D22A8A3E01A /* RNLongPressHandler.h in Headers */, + 2995AC927E037C9D682B8C1047541D7C /* RNNativeViewHandler.h in Headers */, + DCA72580269373E582EE470221FF7EAC /* RNPanHandler.h in Headers */, + A1C22F94D8C6F2B308B1A8AB67474519 /* RNPinchHandler.h in Headers */, + C74FC497940AEDC401FD45B2FA8E2979 /* RNRootViewGestureRecognizer.h in Headers */, + A45F6FC6D0A124AB8EE9D0CB70AA74D4 /* RNRotationHandler.h in Headers */, + 7085F1C8FC1607E4AD06A830D9FED5C9 /* RNTapHandler.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; E3E91DD2DC9C4B4426B7ECDC0A3CD26E /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -13272,6 +13367,22 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + E58C3DE31B16BDBD8D64D83CC3E7E2C4 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 675ADA84C00913485A0EFAE38D34A8F5 /* UMBridgeModule.h in Headers */, + 66E31D883AF8831D57D1E03F465FD56F /* UMModuleRegistryAdapter.h in Headers */, + 273740B394BF771AEB103A407D941867 /* UMNativeModulesProxy.h in Headers */, + 1DED56A2111205D9C0D91399DD83405B /* UMReactFontManager.h in Headers */, + D7929B673E4C44FD318E28930BEFE219 /* UMReactLogHandler.h in Headers */, + 53C0E5C5491EA9A39CA095640E93F034 /* UMReactNativeAdapter.h in Headers */, + EF54116025B49769BF040DA6A1ADE421 /* UMReactNativeEventEmitter.h in Headers */, + 702C00AE1B107ACBF6128D5EF20CBEF4 /* UMViewManagerAdapter.h in Headers */, + 47FA781ACA1CDDDE87698ACB530F2569 /* UMViewManagerAdapterClassesRegistry.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; E5F095CAB79C8058585F0BE37E98A415 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -13297,6 +13408,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + E60D195EBF1A145FEEE897BB09E5CE4C /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; E878A576929A6F843017ABC6ECDC8E42 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -13354,45 +13472,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - EF878718B7FC6BE08E9DB43780519638 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 600ED764F718E31E18C8657E3819279B /* RCTConvert+REATransition.h in Headers */, - 2B775B5C0CEE4EA0CD768F135F845C8B /* REAAllTransitions.h in Headers */, - 2AA778D0BAAF39A15A6D28507D4F1C5B /* REAAlwaysNode.h in Headers */, - EF45AD0A8DEAEE1356599F5ED587841E /* REABezierNode.h in Headers */, - 3AD0C260A0F7BC03E5F5323E53C32C79 /* REABlockNode.h in Headers */, - 498D98051E9B5C900DDA02261F9FB085 /* REAClockNodes.h in Headers */, - 06271464CDE31E003CC5D3FA704CF4A6 /* REAConcatNode.h in Headers */, - 87D8BBF0064409F1D4F7E1F77121B8A2 /* REACondNode.h in Headers */, - 41BA4170CB606185AFEA1252A47AC393 /* READebugNode.h in Headers */, - C6E8F7C5095E82E67D00E882DE3D0F98 /* REAEventNode.h in Headers */, - D23DC736BA88A20872832E48415D86CD /* REAJSCallNode.h in Headers */, - 8DCBFDC4834E63FCB883152F1F6B5312 /* REAModule.h in Headers */, - 617F83B58106D0B8CDDCB27679A39FD9 /* REANode.h in Headers */, - 727A1D2F75A19383A02497FBFB07E918 /* REANodesManager.h in Headers */, - 6C5FC117C832C9B663DE6F0087EB132B /* REAOperatorNode.h in Headers */, - 662D8B23C0899901F4518528D4D8715E /* REAPropsNode.h in Headers */, - 6B48D79B89A51A32AE8F5AD10198780F /* REASetNode.h in Headers */, - A6E5DD6C43D8133B6E8C7D9532F8056F /* REAStyleNode.h in Headers */, - 41D5DB22A692F13E54B5D80D17928062 /* REATransformNode.h in Headers */, - EF66715D631E83CCF8D3DD4994066055 /* REATransition.h in Headers */, - 372C7F71C9B78932C820CEBCA9A3C665 /* REATransitionAnimation.h in Headers */, - 5E1D957F97B6249851899EF6C8583881 /* REATransitionManager.h in Headers */, - 339CF8E8A0466D116DC12D2F304C202D /* REATransitionValues.h in Headers */, - AAE231F856E47555226D8B1BEC2E292C /* REAValueNode.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F00EC2DB53835202F7A6D396C76CC283 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 433DD7FA4A6821184B35DE8BAD3492AC /* RNBackgroundTimer.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; F3AF543F4BB145D6C681ABABE0582226 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -13400,6 +13479,18 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + F4F194FBADDB23513E273576C91F734A /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 6B8166A0AE5399CD4226570B33A7CA8B /* RCTVideo.h in Headers */, + EDE0B20B2000084D5B8FFB3261C204AE /* RCTVideoManager.h in Headers */, + BEF9014758C3810060AF5ADC0A1E1A82 /* RCTVideoPlayerViewController.h in Headers */, + D4B552CF0D3A81C87DAD3FE4C89019BD /* RCTVideoPlayerViewControllerDelegate.h in Headers */, + B61A094A67214561D654239733B41566 /* UIView+FindUIViewController.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; F6EE5A5903B367750D80F96180E9A24D /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -13438,38 +13529,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - FC0D6A590BA140E133033C0A80CD47CC /* Headers */ = { + F9C01C72339DDDC0C8B12FF21F048366 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 336760D8A5971F71A75451160845CA30 /* RNCUIWebView.h in Headers */, - 139281DF1A6F934C3E0E0E6EF5D6DD25 /* RNCUIWebViewManager.h in Headers */, - 788CAC1A3BC906B09CCFCF563D9FC745 /* RNCWKProcessPoolManager.h in Headers */, - B7417F01EDABFE5CCFF4EF244182537A /* RNCWKWebView.h in Headers */, - 421B5731A8FD78F71F5D0F4D08A8D875 /* RNCWKWebViewManager.h in Headers */, + EA3AE6B60E5ABF752CCFE94E2997C360 /* FFFastImageSource.h in Headers */, + 0521671729988774F28E06ACABD9CC1F /* FFFastImageView.h in Headers */, + E1AF5E689FEAA26D0B7CC2C5B003A020 /* FFFastImageViewManager.h in Headers */, + 66A88077C59FA83BDAAB4189CA6DB8D6 /* RCTConvert+FFFastImage.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ - 012AE749BB302180A2F0730AF8E0490E /* SDWebImage */ = { - isa = PBXNativeTarget; - buildConfigurationList = B39EDA4EBC69DBF9519E77D865135E90 /* Build configuration list for PBXNativeTarget "SDWebImage" */; - buildPhases = ( - A1A7F17616C797DF499390CC2B645F77 /* Headers */, - D7D4821F09082041E3B517AFD46F6E2A /* Sources */, - 6385F590BA62B2701243DCB69E086313 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = SDWebImage; - productName = SDWebImage; - productReference = 301567460D8660C931BC4A8ACB8330DB /* libSDWebImage.a */; - productType = "com.apple.product-type.library.static"; - }; 017AB91E1D5AB2B6096ADC666B072208 /* React-RCTImage */ = { isa = PBXNativeTarget; buildConfigurationList = B69D01216C59AC8C26B14F282E543D83 /* Build configuration list for PBXNativeTarget "React-RCTImage" */; @@ -13486,7 +13559,7 @@ ); name = "React-RCTImage"; productName = "React-RCTImage"; - productReference = DACEA80519903C23ED463542B32F17C4 /* libReact-RCTImage.a */; + productReference = B62C361531A11D304C4E01B938A90C95 /* libReact-RCTImage.a */; productType = "com.apple.product-type.library.static"; }; 01B53B6A43CBD6D4022A361BBFCCE665 /* FirebaseCore */ = { @@ -13506,7 +13579,7 @@ ); name = FirebaseCore; productName = FirebaseCore; - productReference = A610DFF0E0BE7C475685FA8DE3DBCF0C /* libFirebaseCore.a */; + productReference = 774D3BC7734E6A2EAAA21E4B11D5A811 /* libFirebaseCore.a */; productType = "com.apple.product-type.library.static"; }; 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */ = { @@ -13523,44 +13596,130 @@ ); name = UMCore; productName = UMCore; - productReference = 08F2757358C92ECAD0E9B56A8B4C8F59 /* libUMCore.a */; + productReference = 1EFD8B407C4DD0EA6C5DFE03070884FC /* libUMCore.a */; productType = "com.apple.product-type.library.static"; }; - 0968391E5351AFD65E48369B3645BEDC /* RNLocalize */ = { + 0691980A71BF989AD54CA1DF59260517 /* Pods-RocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = 713C77F121C34A9B662DB58F2B028160 /* Build configuration list for PBXNativeTarget "RNLocalize" */; + buildConfigurationList = 04D9A8674A2836D6159E788F0F9B9393 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; buildPhases = ( - CFD59CB8B3CBA3115FD5D353935FE34F /* Headers */, - C232004C656D2D13EA87578DA792D011 /* Sources */, - 5DCB809879272A2C5D2BB3B29BDEA9BC /* Frameworks */, + E60D195EBF1A145FEEE897BB09E5CE4C /* Headers */, + 2BA888FA8D2A4073658CA24161017CF3 /* Sources */, + 515890708E8C606320041B3932BDBC22 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 36F9E10A800D42028FB71458247F6111 /* PBXTargetDependency */, + 64F751939C1B99AEEFC1A3849713B74D /* PBXTargetDependency */, + 48430FFFB78D99D0C10C045BA7D5BF0C /* PBXTargetDependency */, + 9489CC4A6C7D2CBED638BAC2EF28EC21 /* PBXTargetDependency */, + F3164D538FB411FD22D75AA94254F62C /* PBXTargetDependency */, + 1CE5E2023BB20CFD6A8B96FBED919E74 /* PBXTargetDependency */, + 98D6AF297B7B5465476C15B5AC998F33 /* PBXTargetDependency */, + 913783E5B1368CACD35C3776DB111303 /* PBXTargetDependency */, + 2FA030DAB9E2FD19E37ED9682EA2B7D4 /* PBXTargetDependency */, + 1789700C2F8475D8FEFFBAF20ACD22CA /* PBXTargetDependency */, + 447770A4A08BA39550D63891EF4AEB03 /* PBXTargetDependency */, + 1A5DE2D6E1853D735B138F0098BAC1C9 /* PBXTargetDependency */, + 5DDCA6502BF23ABB8077C929263A7CA4 /* PBXTargetDependency */, + 4A48523D31A5E253449704761E36492C /* PBXTargetDependency */, + 56A42D0221767E4F54DB5A6962E9B965 /* PBXTargetDependency */, + B95F8CA85E968FCB2516CD9749251B9C /* PBXTargetDependency */, + 68CA1162B2E6EED6FC65B94CDA7A5169 /* PBXTargetDependency */, + AB5817D865AD52E662A1CCFE17F81CD7 /* PBXTargetDependency */, + 296FAE4DF60DF3B828FB0C97E8ED6D69 /* PBXTargetDependency */, + 6CC0CD0F9870D6040DB8A8633D484AA4 /* PBXTargetDependency */, + 8D4228BFE6CABD074FA5BEF0801FD772 /* PBXTargetDependency */, + 32EC00C34094AB9352355539583923CF /* PBXTargetDependency */, + F1854AB4A1E85A23F84E29F7F51638B0 /* PBXTargetDependency */, + 36FC75732E89F80439866E6D2D81BF78 /* PBXTargetDependency */, + A84FAA0FDE7A2FF2690DE22BD47DD1BE /* PBXTargetDependency */, + 546FF04FB0C4357562F0E89AA6A950CB /* PBXTargetDependency */, + C2C826C4236BC14F94A06E63F78C6D0A /* PBXTargetDependency */, + 858F61F9B9400394EC2AA222E396203C /* PBXTargetDependency */, + E50344DAFB21A1F8D31B6575405A74E4 /* PBXTargetDependency */, + 136A74796F84FA32E716528355309654 /* PBXTargetDependency */, + 084F03DBACD7C134D64D6F870AF43412 /* PBXTargetDependency */, + 2C33F542615324CD040681FED15376BD /* PBXTargetDependency */, + 9F4AE7B16041229AABF383D5C6C4A053 /* PBXTargetDependency */, + 6104E7437EE53244974FBE494797ADE9 /* PBXTargetDependency */, + EAA568E97F72DF492816E6BC07EF44E1 /* PBXTargetDependency */, + 6E2A8AE29547D49DECA2F5AD7DC79E58 /* PBXTargetDependency */, + C9DAB46026726FA82FDA3B818AE39F83 /* PBXTargetDependency */, + 29E668650289BF9A07DECE2B1477E9C8 /* PBXTargetDependency */, + AB156D5A44F302B2FAC7E3A5C62E3D94 /* PBXTargetDependency */, + 62CCC3F28A21F535594338B0A6BEF1EA /* PBXTargetDependency */, + 63B26D6DF72537F996EFB4000B231EE0 /* PBXTargetDependency */, + 8B2435A02D436224D531926F64A072BA /* PBXTargetDependency */, + 835F3B9815DD2147FD43238FB4196131 /* PBXTargetDependency */, + 38EC695E083B73E560C827C5E24BFAFC /* PBXTargetDependency */, + 738D8C22EB389F53EBA5A3720B31FE98 /* PBXTargetDependency */, + F550382FDDC90E9D32EB18BDA2233E01 /* PBXTargetDependency */, + 3744EB6E9E025B167B8EE14D1165ED3C /* PBXTargetDependency */, + AA44C61384B973BCED47825EC3CA8C3C /* PBXTargetDependency */, + F8C222481C006FDEE0B256B6ED523CEF /* PBXTargetDependency */, + F9CDF971228B72158AD0473FD7CF4EA3 /* PBXTargetDependency */, + D5257D579E5F492FE1AC585F46BE4DBA /* PBXTargetDependency */, + 7CAD30F9EE692DA68C8712F83CF42A60 /* PBXTargetDependency */, + 8CC237860C5BBE491B486A82F04A34B5 /* PBXTargetDependency */, + 00FB4D5EAEE3EDC077333AF510C4C583 /* PBXTargetDependency */, + 309E2A6D27AE37CADECFA3CFE218419D /* PBXTargetDependency */, + 18DA24CBBBE9FB5E807E478F84E05630 /* PBXTargetDependency */, + 88DBB42A783D1CE172BF6DB088DFA2CE /* PBXTargetDependency */, + 91BCC86EEAE990BEFB5871F6A9CA71EC /* PBXTargetDependency */, + C676BD5261B861EFEFF0D514A1E6C56A /* PBXTargetDependency */, + 0E13C623784860EFA0970F9BAFBD7C5C /* PBXTargetDependency */, + 0937EC2EBCEFA52508DA95ECBA72EBE3 /* PBXTargetDependency */, + E19D39EF296B5FBA7600D3C006EBE48F /* PBXTargetDependency */, + DF304B179C79BBF0AF1C75F12EBCAF95 /* PBXTargetDependency */, + 70CC3D4072D42C0075A167F2A9B0EBA1 /* PBXTargetDependency */, + 5C91CC91719B7CB0F34D8FCBD82CBF36 /* PBXTargetDependency */, + 0B74965BC395E1C7E7868249EFF99773 /* PBXTargetDependency */, + C08E1D13B42EAB1727537026C8778F42 /* PBXTargetDependency */, + 58D1AA254A6C044A9E6A055F00B315F9 /* PBXTargetDependency */, + 27C684B627C400194FCFB865AE3C8597 /* PBXTargetDependency */, + 35F589501D320AA40AFC21BC8F2C31C9 /* PBXTargetDependency */, + 53CC0032C6CEB52359DA47A0D319CAEE /* PBXTargetDependency */, + F8A03446FF543FA20866C9B2C3498911 /* PBXTargetDependency */, + 972D5DB3645CC4DDD9B0956991F554BF /* PBXTargetDependency */, + 6E8456CAAA17DDE73427803BA581691E /* PBXTargetDependency */, + 2FD1445B1BDFE24A611DDDDB3D7B3E06 /* PBXTargetDependency */, + 9FC890B1082B12EBD3DDDFE5309C61CE /* PBXTargetDependency */, + A81AEB722BB7833B7DB764026BDE34BE /* PBXTargetDependency */, + DD82FAB789A5F50BEC0BC33133306F95 /* PBXTargetDependency */, + 09A565C8779B4AC2B990FBC272D7A04A /* PBXTargetDependency */, + 178D6E56B7417603184321C3B39D61F1 /* PBXTargetDependency */, + 96FCBDD2E56B791BA13579A8FA2A2BBD /* PBXTargetDependency */, + A3080F714ECFEF3F81AED2A6CC1D1EF8 /* PBXTargetDependency */, + 6406DA65E375C5C4FFDCDD5411ADE142 /* PBXTargetDependency */, + 366574E97BB62844C69C09E980C7D0B7 /* PBXTargetDependency */, + B6179968FBEA0FF654EE45ABBF2647C8 /* PBXTargetDependency */, + E01B2942CF6989FFCE2D8815C1A5894A /* PBXTargetDependency */, + 3F3E28BCB9E997F92672F7F0EFEB306F /* PBXTargetDependency */, + 5B5F622772AF810B3E120DF4FE9E930B /* PBXTargetDependency */, + 7A4E5E25A3F0BA667A9B193D8D984F9C /* PBXTargetDependency */, ); - name = RNLocalize; - productName = RNLocalize; - productReference = F834CCAD795E977DBB19041BCF8F27BD /* libRNLocalize.a */; + name = "Pods-RocketChatRN"; + productName = "Pods-RocketChatRN"; + productReference = 0D7E44E269126782618E5EA42143C5EC /* libPods-RocketChatRN.a */; productType = "com.apple.product-type.library.static"; }; - 0CBA5F53133416AD6AD2C463B3E7A934 /* react-native-jitsi-meet */ = { + 09642168638DE42DDA2921CBADC48193 /* QBImagePickerController-QBImagePicker */ = { isa = PBXNativeTarget; - buildConfigurationList = 4FA4E8C701BBE7A87EBB8F0CEA5B22C1 /* Build configuration list for PBXNativeTarget "react-native-jitsi-meet" */; + buildConfigurationList = 05427BAB24065503B193E63989621773 /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */; buildPhases = ( - 2D50B2120DE6804454378A0C89DEC06B /* Headers */, - 7067A47B1E5E6C45935D40F14A16D08E /* Sources */, - 74D95D8DADB455E8AB893D85C2536523 /* Frameworks */, + 136BE67674447A614BA4277CE6C5C9D7 /* Sources */, + 76F81BFD72949F7C3796FFFA56B2A4BE /* Frameworks */, + C76461641AE5FBF2646A7225DB8A2EBE /* Resources */, ); buildRules = ( ); dependencies = ( - 29E543895BE330C4BDEA2990E77B91FD /* PBXTargetDependency */, ); - name = "react-native-jitsi-meet"; - productName = "react-native-jitsi-meet"; - productReference = FBBF17E1989733CF8EEB82221A9A299A /* libreact-native-jitsi-meet.a */; - productType = "com.apple.product-type.library.static"; + name = "QBImagePickerController-QBImagePicker"; + productName = "QBImagePickerController-QBImagePicker"; + productReference = 7767AAE46DE9FC6C676FFAEF7734AF52 /* QBImagePicker.bundle */; + productType = "com.apple.product-type.bundle"; }; 115FC7605B6A0F6044A879F6EEB7DD99 /* React-jsinspector */ = { isa = PBXNativeTarget; @@ -13576,7 +13735,7 @@ ); name = "React-jsinspector"; productName = "React-jsinspector"; - productReference = DA5783422343FC461A172E9D4CB314D9 /* libReact-jsinspector.a */; + productReference = 8B58B0BFBCFAC01FB1151D82A93B1338 /* libReact-jsinspector.a */; productType = "com.apple.product-type.library.static"; }; 123D4D7AC3D41ABC0675B1DB3613066E /* RCTTypeSafety */ = { @@ -13597,64 +13756,61 @@ ); name = RCTTypeSafety; productName = RCTTypeSafety; - productReference = 29D68C01B7BB771D070839C48F2C7780 /* libRCTTypeSafety.a */; + productReference = 09D8A137651A52A46AF870A7D9436A23 /* libRCTTypeSafety.a */; productType = "com.apple.product-type.library.static"; }; - 126A5E61D5CF9BAC6B2357D8EDFE30B5 /* react-native-keyboard-input */ = { + 16B709A47FCE8BA466D5FC8BE1527E32 /* rn-extensions-share */ = { isa = PBXNativeTarget; - buildConfigurationList = 98AD9DE027D1D39650A0E33B4C764CA5 /* Build configuration list for PBXNativeTarget "react-native-keyboard-input" */; + buildConfigurationList = 5AE2586ACBA05A512CFAEF8C1A94E56B /* Build configuration list for PBXNativeTarget "rn-extensions-share" */; buildPhases = ( - 96A01F4091D96E68B6A461443C7BD3FA /* Headers */, - 95C0B87B2A8A63B9D297C1AAE3B31E39 /* Sources */, - 51E8A7F01B39A615DDB07BA39B2A590F /* Frameworks */, + 1E903EC5F633922FE494151E7191743C /* Headers */, + 7A5BC83C95BCB2A8B4EBA5BC74F4AECB /* Sources */, + FC038771179B79127BE206CCF999F2E0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 33F16F2F3F82BAFE728506CEE0E7586A /* PBXTargetDependency */, + 0CBE99199AA827073A09E1812BFC5B1E /* PBXTargetDependency */, ); - name = "react-native-keyboard-input"; - productName = "react-native-keyboard-input"; - productReference = 8E721A81A43A372A9667A58B44C84384 /* libreact-native-keyboard-input.a */; + name = "rn-extensions-share"; + productName = "rn-extensions-share"; + productReference = E97360910423F8A02F061200764D98F4 /* librn-extensions-share.a */; productType = "com.apple.product-type.library.static"; }; - 15B823CB06FA3E3E70EEFA5195733192 /* RNFirebase */ = { + 17378B5ED23F0B7A52011DAE2B803A05 /* react-native-document-picker */ = { isa = PBXNativeTarget; - buildConfigurationList = CC3F6E53EEB3F49345BA69A3C349D387 /* Build configuration list for PBXNativeTarget "RNFirebase" */; + buildConfigurationList = 9D1B43109D3EF875424E7EEBBD96525F /* Build configuration list for PBXNativeTarget "react-native-document-picker" */; buildPhases = ( - 626FD4773C8E7BD9554E097726E7A4CD /* Headers */, - 015F4BD86B2A420EF51A8D108DC44B64 /* Sources */, - 90FABD5ADF2B7EA2421A58DAA47EDA57 /* Frameworks */, + D3AAE407022AC4E9BC1E869ACA4B57FB /* Headers */, + B483382C931FB384BDAE7BDAF9CD0334 /* Sources */, + 4F7AF0A882D2B9E3AA41FE4B1D6B7B7B /* Frameworks */, ); buildRules = ( ); dependencies = ( - D6C42A0E5E7CE1076A06018E0708E5FF /* PBXTargetDependency */, - 02D0B07AB2458D55012DA46855B665E4 /* PBXTargetDependency */, - F8C566B7869CD6056BC7114AA51FEC84 /* PBXTargetDependency */, - 2AA00BDE3663E99B95E83C3245BE4E1F /* PBXTargetDependency */, + 7E76900A295070508821CD9B09DE9DF9 /* PBXTargetDependency */, ); - name = RNFirebase; - productName = RNFirebase; - productReference = 86006669CAEC9F6B941A80CC032DC0CF /* libRNFirebase.a */; + name = "react-native-document-picker"; + productName = "react-native-document-picker"; + productReference = 25FD868EF5C2D69F6FF1B430E63FC231 /* libreact-native-document-picker.a */; productType = "com.apple.product-type.library.static"; }; - 1E7F02AFF67B5BD0ACE8CCA04DF1356E /* react-native-orientation-locker */ = { + 1837EDA22C2525E2325468D2A3635FE8 /* react-native-notifications */ = { isa = PBXNativeTarget; - buildConfigurationList = 1A848E27847514ED48AB834165992613 /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */; + buildConfigurationList = 65C214A0F1FBAFFAD4F6D530DB8BDD35 /* Build configuration list for PBXNativeTarget "react-native-notifications" */; buildPhases = ( - 70BABF4E1097665A69E9E518BA2A9AF7 /* Headers */, - 33B30112B403F5FC31F7CAB93055E13A /* Sources */, - 95498560B9ED72BB3EC67B551CD766C1 /* Frameworks */, + 81CC2E015022D934B2CAED21C324F947 /* Headers */, + A2629FAE63E512107FC948FD7E20C7BF /* Sources */, + A6E0029DAA1D745298A4C7ACA901404F /* Frameworks */, ); buildRules = ( ); dependencies = ( - 2D4E6545AB15978F6E1139A1AF22212E /* PBXTargetDependency */, + 8A2051AB643E3137AB8E1E9BD6EE1E0B /* PBXTargetDependency */, ); - name = "react-native-orientation-locker"; - productName = "react-native-orientation-locker"; - productReference = 97C923AA0AA7EF31C4233AF4848FD432 /* libreact-native-orientation-locker.a */; + name = "react-native-notifications"; + productName = "react-native-notifications"; + productReference = 235836769D9E02E0AA10037437BF043B /* libreact-native-notifications.a */; productType = "com.apple.product-type.library.static"; }; 1F22396CB543506E7EA28A47A30E9727 /* GoogleDataTransport */ = { @@ -13671,7 +13827,7 @@ ); name = GoogleDataTransport; productName = GoogleDataTransport; - productReference = A404097E148F1819281A337650A82A85 /* libGoogleDataTransport.a */; + productReference = 8522D1311D8A8EEB05EB5FF97D616AD3 /* libGoogleDataTransport.a */; productType = "com.apple.product-type.library.static"; }; 2A99896D65A33A482D2D82FC436F823D /* FBReactNativeSpec */ = { @@ -13694,25 +13850,7 @@ ); name = FBReactNativeSpec; productName = FBReactNativeSpec; - productReference = 3C7C5D42DD5948AB3DD0AEEBFA0DBCF9 /* libFBReactNativeSpec.a */; - productType = "com.apple.product-type.library.static"; - }; - 2E17311CD8EACC16113C89390B6656C5 /* RNGestureHandler */ = { - isa = PBXNativeTarget; - buildConfigurationList = BC08A741016FE3AB7D8A4D6F286B8C56 /* Build configuration list for PBXNativeTarget "RNGestureHandler" */; - buildPhases = ( - 4425AB480EB3FBF52ED38FCEA53C6781 /* Headers */, - 016B227621A8F6345C85D06B653C8C00 /* Sources */, - A5C68D94AE82E39D9409FEF0F00F3F73 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 03AE5A3FD852EDEFEC5B33FC37E88CCB /* PBXTargetDependency */, - ); - name = RNGestureHandler; - productName = RNGestureHandler; - productReference = 03793EA509CD256464C56FDB7BB6DBC4 /* libRNGestureHandler.a */; + productReference = F60224A2FA0ECB20CB39284C596433FC /* libFBReactNativeSpec.a */; productType = "com.apple.product-type.library.static"; }; 2E2ABA11C27993D4CDD5DA270C4B75F1 /* React-RCTBlob */ = { @@ -13732,7 +13870,43 @@ ); name = "React-RCTBlob"; productName = "React-RCTBlob"; - productReference = FE497DC1D03BBC1524B08585DFBC018E /* libReact-RCTBlob.a */; + productReference = DFDC71CC528CD516EBE0949D4046A3A7 /* libReact-RCTBlob.a */; + productType = "com.apple.product-type.library.static"; + }; + 32B97B2079526CE843CA6A5613012594 /* react-native-background-timer */ = { + isa = PBXNativeTarget; + buildConfigurationList = D8C9D32808D08102C2FE0BBFC28F7DA6 /* Build configuration list for PBXNativeTarget "react-native-background-timer" */; + buildPhases = ( + 9661D222AFBE4F668C66C2E821AFF40E /* Headers */, + 5BFD334766F162C2A9E830B56C9C42A2 /* Sources */, + 15E1CAB85C0D62A3ECEBF703AB610D71 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + EB4D25CADBE5B5EA88025EBEC7848847 /* PBXTargetDependency */, + ); + name = "react-native-background-timer"; + productName = "react-native-background-timer"; + productReference = 06620BAA9B290FC2C0A843500D0A7E9F /* libreact-native-background-timer.a */; + productType = "com.apple.product-type.library.static"; + }; + 3665DFF5E63879E71E17B6E7B32A2899 /* react-native-video */ = { + isa = PBXNativeTarget; + buildConfigurationList = 4E510D6CD72170EF18955772C29FDC57 /* Build configuration list for PBXNativeTarget "react-native-video" */; + buildPhases = ( + F4F194FBADDB23513E273576C91F734A /* Headers */, + 34D6FB09B9A153DFB142520249252DDF /* Sources */, + A54095C98EDA3F730CA9256833BEB273 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + BD07FA2806D4599BDC397EF27FD8F457 /* PBXTargetDependency */, + ); + name = "react-native-video"; + productName = "react-native-video"; + productReference = 2C977B894F8AB4087D3133C1CDA6073B /* libreact-native-video.a */; productType = "com.apple.product-type.library.static"; }; 3C6A9BF574C3488966C92C6A9B93CA8C /* FirebaseInstanceID */ = { @@ -13751,7 +13925,7 @@ ); name = FirebaseInstanceID; productName = FirebaseInstanceID; - productReference = 7109CEA655580ED91B75F927D0F3982E /* libFirebaseInstanceID.a */; + productReference = BA0501686230C169300BEAC0CFDF99EF /* libFirebaseInstanceID.a */; productType = "com.apple.product-type.library.static"; }; 426398FA61DF648ECF7C6897DFAC6E8E /* FirebaseCoreDiagnostics */ = { @@ -13771,7 +13945,7 @@ ); name = FirebaseCoreDiagnostics; productName = FirebaseCoreDiagnostics; - productReference = 820EEE156D19F1273871393F2850D75B /* libFirebaseCoreDiagnostics.a */; + productReference = 3D3E1A3EDFA4B5FA204815C239797E8B /* libFirebaseCoreDiagnostics.a */; productType = "com.apple.product-type.library.static"; }; 427A5566E42596B2649019D00AA80F10 /* libwebp */ = { @@ -13788,206 +13962,25 @@ ); name = libwebp; productName = libwebp; - productReference = 808E8AF2269D05C21D3D9C6352A7F413 /* liblibwebp.a */; + productReference = 65D6BAECB13B97CC1CF3A596399BA248 /* liblibwebp.a */; productType = "com.apple.product-type.library.static"; }; - 43CA9BA5B764ACB732696877E3FC307A /* react-native-document-picker */ = { + 4C2F2E6EC9A37A9237D2149D178CCCD4 /* react-native-splash-screen */ = { isa = PBXNativeTarget; - buildConfigurationList = 08634E58889F83D97B018D89E89888CF /* Build configuration list for PBXNativeTarget "react-native-document-picker" */; + buildConfigurationList = 339330ABB9C360060E8D29D15DECD2BC /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */; buildPhases = ( - 72287A49A3F0C2B137897946812F7480 /* Headers */, - 6B0C1BE6B0F6DE29D2B5482893FB9A65 /* Sources */, - B8D6F2DC1AB4C89E6AAD8FA768204F1B /* Frameworks */, + 1DBE5F90EA7F72813344155B4813A474 /* Headers */, + 27D1EB30FD2D84FE272AEF6EA82E082B /* Sources */, + A8B20B2A38E96276E6E0DE77F55B8D86 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 56014C1E03B54F4BE8FF33387152B017 /* PBXTargetDependency */, + F75C4CC154BF19419FDC11BB4B05925E /* PBXTargetDependency */, ); - name = "react-native-document-picker"; - productName = "react-native-document-picker"; - productReference = 3D187B29FF40E909C7B00649D02DD8D7 /* libreact-native-document-picker.a */; - productType = "com.apple.product-type.library.static"; - }; - 489CCEBDC649D379F1AB6CAE0B453E80 /* React-CoreModules */ = { - isa = PBXNativeTarget; - buildConfigurationList = 0E0DFD962DAEF974B4D3DE144413E47D /* Build configuration list for PBXNativeTarget "React-CoreModules" */; - buildPhases = ( - B791AB2F0E864397282E450D1C4FED46 /* Headers */, - 3C3884AFC7E0217A298F0CD4FC3C065D /* Sources */, - 4AB05FBF42FCF8F95362ED4E2C3A843A /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 2E42D884665285D4892510B085254D9B /* PBXTargetDependency */, - BB5DB4B85434DB83608287AE88125524 /* PBXTargetDependency */, - 16EF358D757E9E1E5FC4FA4EC8324B85 /* PBXTargetDependency */, - EA0CAECE73F81E80BD1B0F0B24AE8B29 /* PBXTargetDependency */, - 766C6661C75BC91BA9B26B11B72B894F /* PBXTargetDependency */, - EBB44F6A67EE26F6A9B6221B525D84B5 /* PBXTargetDependency */, - ); - name = "React-CoreModules"; - productName = "React-CoreModules"; - productReference = 918FAA25B981FC2328B54C5EC159E438 /* libReact-CoreModules.a */; - productType = "com.apple.product-type.library.static"; - }; - 48F9CAC66FE3C08FEE3ACAA5C6FEF569 /* RSKImageCropper */ = { - isa = PBXNativeTarget; - buildConfigurationList = A5CB5A9AB734F2F971CC7CB2A9CADDBE /* Build configuration list for PBXNativeTarget "RSKImageCropper" */; - buildPhases = ( - 0EF4B1C7828F43CC78646F8E461266DC /* Headers */, - 266D68D6C1A651B5DDF053EF9A30504A /* Sources */, - 3C2910C2C9DA80AE8700B16FC658E156 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = RSKImageCropper; - productName = RSKImageCropper; - productReference = 02BB86289FF53E3C45D13C3A1B115EFA /* libRSKImageCropper.a */; - productType = "com.apple.product-type.library.static"; - }; - 4B46CDE4D80107772B319E892C6315CB /* rn-fetch-blob */ = { - isa = PBXNativeTarget; - buildConfigurationList = 6EE6ED49D565AFE95A44EEEE6813E34A /* Build configuration list for PBXNativeTarget "rn-fetch-blob" */; - buildPhases = ( - 4AFCFA23C698796F2FD20BDB42B9E43D /* Headers */, - 86C54D3FAD2582EFE13714DDD03F409B /* Sources */, - B9FC925E2963D6B1517391DDC431D411 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - BFD0F5BA4CE815EE689D1C07F287B4C6 /* PBXTargetDependency */, - ); - name = "rn-fetch-blob"; - productName = "rn-fetch-blob"; - productReference = 84227D0A32CFFFEE02E7558663BF3682 /* librn-fetch-blob.a */; - productType = "com.apple.product-type.library.static"; - }; - 4C0C7B693B06D0DBEA04F9ABE003D758 /* QBImagePickerController */ = { - isa = PBXNativeTarget; - buildConfigurationList = DD93C247CBB615F90A327B44A64D6F06 /* Build configuration list for PBXNativeTarget "QBImagePickerController" */; - buildPhases = ( - 02E8F3CE24D2439EF926E4FB7BC12608 /* Headers */, - 20C02D9359C10EE7EA20D5BE26A60363 /* Sources */, - 4F3F1E3B25671C6494C824E37226ADBA /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - A3BA93A4AD4F45E97EAAC3C28BA11406 /* PBXTargetDependency */, - ); - name = QBImagePickerController; - productName = QBImagePickerController; - productReference = 5767849105DF5DF08A153E973779C2F7 /* libQBImagePickerController.a */; - productType = "com.apple.product-type.library.static"; - }; - 4C64158251B8E41D79AE900D7E5A10B1 /* UMReactNativeAdapter */ = { - isa = PBXNativeTarget; - buildConfigurationList = C0C6FF49E08AF6B8BA9A2A0748EEB988 /* Build configuration list for PBXNativeTarget "UMReactNativeAdapter" */; - buildPhases = ( - 65FE1BDD7EA84F6FA47A86F5EF0F927E /* Headers */, - CA34C0DB168C744689A345899FB0B961 /* Sources */, - C41C524B155A3CB4AA5ACD8DEC52FAEE /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 692BD69BC68487B7306F64561A5DC8F6 /* PBXTargetDependency */, - 3A2C770A8A1DF5445C58C73E49E19B99 /* PBXTargetDependency */, - 8AFE362C728011EC42586AB9CB448CFB /* PBXTargetDependency */, - ); - name = UMReactNativeAdapter; - productName = UMReactNativeAdapter; - productReference = 450F873C9449D773F8A6A196FF5DACFE /* libUMReactNativeAdapter.a */; - productType = "com.apple.product-type.library.static"; - }; - 4DF45B768BF983CC74C0FF77750538CA /* Pods-ShareRocketChatRN */ = { - isa = PBXNativeTarget; - buildConfigurationList = 6E500C97D9E9F100C19CDCCDA21C946F /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; - buildPhases = ( - B0CFC69215F25B55F686A65986694323 /* Headers */, - 0A28AC90843804B638B2D61FF9016198 /* Sources */, - 1011AFFFA33482AC336CBEDBA119E23F /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 56DED8618E90ED56A0E83C04CD8EA82E /* PBXTargetDependency */, - 4CE8BD3E9BA582BAB7F3E52C29595F88 /* PBXTargetDependency */, - 3FF7214DEDF0E424081F80EBEED91DEE /* PBXTargetDependency */, - B716CC82DDF14C749E867493649C07F0 /* PBXTargetDependency */, - DB141FDAF8FFA4FEB66B31DA26F32BB3 /* PBXTargetDependency */, - 5C2EA4AFF1DBB20B577D1E099EB9EE05 /* PBXTargetDependency */, - 3A8D95FF774F09D2C730A8CA709CBB33 /* PBXTargetDependency */, - 6DF28262142821BE03DC27E6D09F3A79 /* PBXTargetDependency */, - 4B19DEE41785E180C9DA10BEC87E0833 /* PBXTargetDependency */, - 2E5B2351FA7301B9344DE62071DBCABB /* PBXTargetDependency */, - F7184EA10DD0FD5F52A432A89EF9C02E /* PBXTargetDependency */, - 8EC05A104EF542491A08337711DBD234 /* PBXTargetDependency */, - A02ABB13DAFDF7241317F43FAA23CB32 /* PBXTargetDependency */, - 2B59F999A6B386F86F22AECFFC49EF99 /* PBXTargetDependency */, - D0B5F9267C666CAAA4B528ADFEEA585B /* PBXTargetDependency */, - F4A3A4FAAB9A60B302EC1C86A49619A7 /* PBXTargetDependency */, - A2A70BBCB2D28A68BB8A0439F01E1EA3 /* PBXTargetDependency */, - 7CFC24BFC79A05688D2DF26D079BE960 /* PBXTargetDependency */, - BC0FB8059149D2D9DFA41E4FC078CDA8 /* PBXTargetDependency */, - 58B0BDCC505A14070779E929D73C29E3 /* PBXTargetDependency */, - 086E121C41AE3468D2B1E101ACD4E1B2 /* PBXTargetDependency */, - E887F570EC3B29B5EC1F4FA37BC97185 /* PBXTargetDependency */, - 9F535315FF95E093C96BC031DC773B18 /* PBXTargetDependency */, - BCBDC1EFF86D95752E1ADAD22136AC26 /* PBXTargetDependency */, - 449F2EF5F8CA3BC8E710415DC584595E /* PBXTargetDependency */, - 8383BDAFAC5688F5245FCC427B413219 /* PBXTargetDependency */, - 16E3312A571FC82CDBB7EB1680F949E8 /* PBXTargetDependency */, - 3CBAE06EDAD2765387AF237A37CDE4AB /* PBXTargetDependency */, - 315816FB0338C39E8E6C30D99BA1CAFD /* PBXTargetDependency */, - E9ACE3D9A3C029A21CA67AAF5BFABB4C /* PBXTargetDependency */, - 419848B0B7E1CA912121CA8E765B1309 /* PBXTargetDependency */, - 072771ED0F0BF7B9EF0D848CD905CB82 /* PBXTargetDependency */, - 8982C371DEC0C6FEC2B24FD85F139134 /* PBXTargetDependency */, - 963600A2F78B64AD3BB09E4AEE9C1523 /* PBXTargetDependency */, - B6C64782BF572920684B04875399E525 /* PBXTargetDependency */, - 080A35A159C3B508A84CC7E292E3D4D3 /* PBXTargetDependency */, - 7ACCF34FBBFA0615EF1874A1B908CB67 /* PBXTargetDependency */, - D88265C0430DAE1377D5310BE378723E /* PBXTargetDependency */, - 431D05C2F5F4AF6BBAC6333C1D61AF3A /* PBXTargetDependency */, - A197F4A25694A2421E249A19F43496EB /* PBXTargetDependency */, - 5F0DD268B629262E2BC2DC2DD8892092 /* PBXTargetDependency */, - EBD3ACE2029CEFE11715C86A83EA9063 /* PBXTargetDependency */, - 862FABD7714712D7B6B76CBB1CBDDF5B /* PBXTargetDependency */, - AEB5F19FA07D8298095985BEFF5528D2 /* PBXTargetDependency */, - 7046CE8D4F9F0209BA84F2A55A7FD7CE /* PBXTargetDependency */, - 81FA86CC8C08AE76A69F79D0D8CCA825 /* PBXTargetDependency */, - 297425A213AA831F014A393F180A5F02 /* PBXTargetDependency */, - 0C6C5DDAEE80DCC385083529759ED207 /* PBXTargetDependency */, - 027B3C74FB2BF6DC42C9D045A83CC868 /* PBXTargetDependency */, - 53229BF12DCE81FEEE15D65B6655A5AC /* PBXTargetDependency */, - B63BD77B045CD57B4386D1CEA29A28B1 /* PBXTargetDependency */, - D1D3B526D141C0AB8E24C85846DB7919 /* PBXTargetDependency */, - 1EF97CA6D359F301FD7328D7463AE4D5 /* PBXTargetDependency */, - 8549CB2E640A0F3F3CA7D4A20576ED77 /* PBXTargetDependency */, - 9DAE764CF8B02857A876EA7839572881 /* PBXTargetDependency */, - 80A677962F24C80D8F638CE908E714CF /* PBXTargetDependency */, - AD57F9E5616C4F12F604F7E731A99E6C /* PBXTargetDependency */, - AB41EC354A260F9CC69B4A3FB4F0D9B5 /* PBXTargetDependency */, - 68E9D663C14A80FAEAC76C201F322DAF /* PBXTargetDependency */, - 2D60B9A667BBE9A09D7E8BE47DB0FE8C /* PBXTargetDependency */, - 46CDDD7346514CE18DB8E12E17F299A1 /* PBXTargetDependency */, - 76111862F2FEA969BD565A8DB8351F73 /* PBXTargetDependency */, - ED57364F1D0585C446251A283DFFC24B /* PBXTargetDependency */, - A062F8EBC08EE93A10BD86CB3BB8E2AF /* PBXTargetDependency */, - D830E9744B49A68767644313A08F4951 /* PBXTargetDependency */, - E903161040AAD5641C582E0EF37EBB9D /* PBXTargetDependency */, - 0520D07FEEE16A8C306D27FCB0D7EC0D /* PBXTargetDependency */, - 3F1FDAFC16A74FEDB9D09DC427E98E18 /* PBXTargetDependency */, - ); - name = "Pods-ShareRocketChatRN"; - productName = "Pods-ShareRocketChatRN"; - productReference = C6BC80FBF3C55A6B59C978DF008D2DE3 /* libPods-ShareRocketChatRN.a */; + name = "react-native-splash-screen"; + productName = "react-native-splash-screen"; + productReference = 36F5679F1EB6B81D48E293BC8C0DC39A /* libreact-native-splash-screen.a */; productType = "com.apple.product-type.library.static"; }; 4ECE1108F140208A729A83BC94FAA150 /* EXAppLoaderProvider */ = { @@ -14004,25 +13997,25 @@ ); name = EXAppLoaderProvider; productName = EXAppLoaderProvider; - productReference = 460991AC1BE5B75FEBBA47638A4138A1 /* libEXAppLoaderProvider.a */; + productReference = F55CDF019ACA2217732F35553D42466C /* libEXAppLoaderProvider.a */; productType = "com.apple.product-type.library.static"; }; - 580D789B2C917AAD8F584EF17E390A5F /* RNVectorIcons */ = { + 5684E1AFCF5F41172AF803F46DEC414D /* RNUserDefaults */ = { isa = PBXNativeTarget; - buildConfigurationList = 1FE929C7D86DBCA93E7ED1D8D7370073 /* Build configuration list for PBXNativeTarget "RNVectorIcons" */; + buildConfigurationList = 3BA70B292F0C9522D3D846F45166F284 /* Build configuration list for PBXNativeTarget "RNUserDefaults" */; buildPhases = ( - A48D4750D4ED7F20002C3236CB801AAD /* Headers */, - 3CF3534567345F7C9471DF096A5E6888 /* Sources */, - 00B6C69806E897EF0FD72A5F0DD10575 /* Frameworks */, + 60D82814057AB2E29CF6FE5D1FEC1E92 /* Headers */, + 73DEF262D1315CC20633DAA45D39D008 /* Sources */, + 2AB46A3B2B5E404F7E093942FEFFEE44 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 8F8F5A4F31EF2702215D0E9ECBF9E9CD /* PBXTargetDependency */, + 1FD1C325B458E129BDF08C5C5C3AB689 /* PBXTargetDependency */, ); - name = RNVectorIcons; - productName = RNVectorIcons; - productReference = C20A11A46DA88C93478EB17745182247 /* libRNVectorIcons.a */; + name = RNUserDefaults; + productName = RNUserDefaults; + productReference = 240CCE1E86C9C2BB3EBA19810C8DA0A2 /* libRNUserDefaults.a */; productType = "com.apple.product-type.library.static"; }; 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */ = { @@ -14039,7 +14032,7 @@ ); name = nanopb; productName = nanopb; - productReference = AA5207268C70A330051FE675E3CC119C /* libnanopb.a */; + productReference = 6C8671A0DC50529C47D3FFB143FF3AFE /* libnanopb.a */; productType = "com.apple.product-type.library.static"; }; 5B1BA8B3E53682DD179F7BFF8F2C8B75 /* EXHaptics */ = { @@ -14057,7 +14050,7 @@ ); name = EXHaptics; productName = EXHaptics; - productReference = D0E211E286336B914A2B19295E3B9225 /* libEXHaptics.a */; + productReference = 9A03947CE2339B9152C4A4C8F7F2FE73 /* libEXHaptics.a */; productType = "com.apple.product-type.library.static"; }; 60F43D68BD7290E1B24C3BE7B3382AD3 /* React-RCTNetwork */ = { @@ -14075,26 +14068,7 @@ ); name = "React-RCTNetwork"; productName = "React-RCTNetwork"; - productReference = D4D6A0329CD649D0C075E993F930BFBA /* libReact-RCTNetwork.a */; - productType = "com.apple.product-type.library.static"; - }; - 62D54DBCE8E0274997CAF37B51B9F306 /* SDWebImageWebPCoder */ = { - isa = PBXNativeTarget; - buildConfigurationList = 6B96C5AFD0407E8A2F8CE3F223CD7EB3 /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder" */; - buildPhases = ( - 21F1C8C5813ED3BD13A5866B4E15BD67 /* Headers */, - FD1D6B562AFA874AC99EE0D94944D6AE /* Sources */, - 5D10AF29E811DE041EF86F692E58D72F /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - F89BAAB7D9471198506E13093279A76B /* PBXTargetDependency */, - 6EE70A46090B1A076B6F9939E2BAFA9C /* PBXTargetDependency */, - ); - name = SDWebImageWebPCoder; - productName = SDWebImageWebPCoder; - productReference = ECE10FC2BF38F1BB875A7D45C9856E5C /* libSDWebImageWebPCoder.a */; + productReference = CB9535677DE7DF46883CE340FD0A5CFD /* libReact-RCTNetwork.a */; productType = "com.apple.product-type.library.static"; }; 63CF4D4E74D1771681263724253E1E79 /* GoogleDataTransportCCTSupport */ = { @@ -14113,7 +14087,7 @@ ); name = GoogleDataTransportCCTSupport; productName = GoogleDataTransportCCTSupport; - productReference = 00538E6400D6DE497F2355C3CDA9468C /* libGoogleDataTransportCCTSupport.a */; + productReference = CBF682EEE52E0BFF5D740021D12EB670 /* libGoogleDataTransportCCTSupport.a */; productType = "com.apple.product-type.library.static"; }; 64E78828D8355514B3B6BE78FAE7806E /* React-RCTSettings */ = { @@ -14131,43 +14105,7 @@ ); name = "React-RCTSettings"; productName = "React-RCTSettings"; - productReference = 021223F4CB3D713C8F939055BC00D673 /* libReact-RCTSettings.a */; - productType = "com.apple.product-type.library.static"; - }; - 68FD26CCB7EFC21DBD9D571910B36E1B /* RNAudio */ = { - isa = PBXNativeTarget; - buildConfigurationList = 6A6A092F9B43D1D64B7460C459A610FD /* Build configuration list for PBXNativeTarget "RNAudio" */; - buildPhases = ( - 6642F3BE1DE8E2F5D16C5E2C233F71C7 /* Headers */, - F2801742BB0E3B4692E87239025FB360 /* Sources */, - 4A0C17C5B270ED6C7AE0CF39D200174D /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - FC57C022F82B507ED6242062B0EEF89E /* PBXTargetDependency */, - ); - name = RNAudio; - productName = RNAudio; - productReference = 62ACAC5E7A06BE7F1B445F549B65DF73 /* libRNAudio.a */; - productType = "com.apple.product-type.library.static"; - }; - 6D6AEAB3F5088F4B4EF5EEA6B011226E /* rn-extensions-share */ = { - isa = PBXNativeTarget; - buildConfigurationList = 2D0BDFA708DEA7F3FB47E95D66F8BBDF /* Build configuration list for PBXNativeTarget "rn-extensions-share" */; - buildPhases = ( - A209ACBD2B1F0822DEED3A753074775B /* Headers */, - 99123AED188E61A5FE120ACF52AAC663 /* Sources */, - D1A9AB654F6F963CF4ABE338730432F5 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 2504C96A429D05FCCB9FD8DCC3925D15 /* PBXTargetDependency */, - ); - name = "rn-extensions-share"; - productName = "rn-extensions-share"; - productReference = 3BCF90E27230C0A61CC068752BDE4D38 /* librn-extensions-share.a */; + productReference = 1CE007DD64EEDCD841D50DB3C8FDCC67 /* libReact-RCTSettings.a */; productType = "com.apple.product-type.library.static"; }; 6DE003F64B133830B9AB9321298DAAC2 /* ReactCommon */ = { @@ -14190,7 +14128,7 @@ ); name = ReactCommon; productName = ReactCommon; - productReference = EC977BDF60F0D8FD5CA3971CDBEF3EA0 /* libReactCommon.a */; + productReference = 024A7DA4C02ECDB852F8CBEB55DD8579 /* libReactCommon.a */; productType = "com.apple.product-type.library.static"; }; 7135140B597489F3FE9D0A6D1FADD9C7 /* React-RCTActionSheet */ = { @@ -14208,7 +14146,7 @@ ); name = "React-RCTActionSheet"; productName = "React-RCTActionSheet"; - productReference = C96A5AC4864557B5EC8617A856C2886E /* libReact-RCTActionSheet.a */; + productReference = EFF331495097C1F9A56015604BE276B5 /* libReact-RCTActionSheet.a */; productType = "com.apple.product-type.library.static"; }; 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */ = { @@ -14232,25 +14170,29 @@ ); name = "React-Core"; productName = "React-Core"; - productReference = 709BFF4EAF2CDF772CFC20DDC685AB63 /* libReact-Core.a */; + productReference = 3E9F48B26088013B625FBD61C19A0A37 /* libReact-Core.a */; productType = "com.apple.product-type.library.static"; }; - 7817B05E6E79731DF1D171B7D405F411 /* QBImagePickerController-QBImagePicker */ = { + 76045FDE22A7E6A917DFC0E5B11A9D64 /* RNImageCropPicker */ = { isa = PBXNativeTarget; - buildConfigurationList = 78057BC1706224C32803BFEE71B2906F /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */; + buildConfigurationList = 5EBEA9125BC3C0D19B8A7C03E7305CB6 /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */; buildPhases = ( - 2B8336ACBCE8D121CB8C9AF4DC648C63 /* Sources */, - 294780031C2A11090D38581098D846E1 /* Frameworks */, - 1280C4B9663AE76CB643ECF01816C7B8 /* Resources */, + 77BDE236A2157C848C7965C97AFD9EA2 /* Headers */, + 746BE0834E504A0CA7A90475C59E2F90 /* Sources */, + 427BD3001F0D70A2E683FBF3EC2F8355 /* Frameworks */, ); buildRules = ( ); dependencies = ( + 9353DA323887939D4F0C17FC8165CF47 /* PBXTargetDependency */, + 0750AC27FD0B0B17F7A2BE051D9276B3 /* PBXTargetDependency */, + 4D9D1FAE44E636FCBC590F795BE12B6F /* PBXTargetDependency */, + 8F832C5C217304EF366F6E3866C3F198 /* PBXTargetDependency */, ); - name = "QBImagePickerController-QBImagePicker"; - productName = "QBImagePickerController-QBImagePicker"; - productReference = 7C292364A20E94A203C3C11FD7B564F2 /* QBImagePicker.bundle */; - productType = "com.apple.product-type.bundle"; + name = RNImageCropPicker; + productName = RNImageCropPicker; + productReference = 9684911C233FAF0E0748FA1664366AE1 /* libRNImageCropPicker.a */; + productType = "com.apple.product-type.library.static"; }; 78321EAB31E9FCC75DFA950389835085 /* Folly */ = { isa = PBXNativeTarget; @@ -14269,7 +14211,7 @@ ); name = Folly; productName = Folly; - productReference = 2A7F743FD292127E00F2E9D5E75F7BB1 /* libFolly.a */; + productReference = CED89ECA78AFB932B7320D7D5667B82B /* libFolly.a */; productType = "com.apple.product-type.library.static"; }; 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */ = { @@ -14286,25 +14228,7 @@ ); name = glog; productName = glog; - productReference = AE42EF954CD85BF69907E5C1DC217CCC /* libglog.a */; - productType = "com.apple.product-type.library.static"; - }; - 7DC30CA7B73824BDE446B33B5F944E35 /* RNDeviceInfo */ = { - isa = PBXNativeTarget; - buildConfigurationList = 436F937EF9DD87653DABCE9EF786F9BC /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */; - buildPhases = ( - 04774DBAF32626FDC56C5728017373AC /* Headers */, - 1A76BB2E4D1188AB1FF4271421465F37 /* Sources */, - 3B9666E071B1955148CE767EF8A1172E /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 214E340E8E861F4896B6586D20584A37 /* PBXTargetDependency */, - ); - name = RNDeviceInfo; - productName = RNDeviceInfo; - productReference = B2C3C50842C99465084B59724BB1F888 /* libRNDeviceInfo.a */; + productReference = 417D87CE168CA4EC2CF9A1914C4B2170 /* libglog.a */; productType = "com.apple.product-type.library.static"; }; 7F28D4475D7DAD9903F7E6044DD921C1 /* React-RCTAnimation */ = { @@ -14322,129 +14246,84 @@ ); name = "React-RCTAnimation"; productName = "React-RCTAnimation"; - productReference = D2623C93B9C015E9A8F1571FD31B16E6 /* libReact-RCTAnimation.a */; + productReference = 20C67792A66D004A09D448B9D690472C /* libReact-RCTAnimation.a */; productType = "com.apple.product-type.library.static"; }; - 84BB82258E4223BA2C02A6731A1BCEB5 /* RNReanimated */ = { + 86E0FD6F1E6CD55F28FDDB1D399CA7F7 /* React-CoreModules */ = { isa = PBXNativeTarget; - buildConfigurationList = 85247D815771FCA2C7B6E3998EB436ED /* Build configuration list for PBXNativeTarget "RNReanimated" */; + buildConfigurationList = B230C0EDFBB84CC52121402AD12B55B0 /* Build configuration list for PBXNativeTarget "React-CoreModules" */; buildPhases = ( - EF878718B7FC6BE08E9DB43780519638 /* Headers */, - 5067E76A80F438E8847193348D6B4BD5 /* Sources */, - DD2D5D1C7D9F8458829C6189FB7D32ED /* Frameworks */, + 1E48DF4C248D33C93936551937C037F2 /* Headers */, + 2BA52E9136E82B25DB88854F2F00691F /* Sources */, + A13C91615632E7D00E6C62C153F04E2B /* Frameworks */, ); buildRules = ( ); dependencies = ( - E15FBF2D50DB35082FA5C15760F9E170 /* PBXTargetDependency */, + 5151FA428A76D2E95BE212F50F108518 /* PBXTargetDependency */, + 1BCCC07D0B46F66F61C9FBCB7D205E99 /* PBXTargetDependency */, + A64183EFC8B47F49D3F3251E539138ED /* PBXTargetDependency */, + CA90190BC6104F2C8CA3BEF52F674788 /* PBXTargetDependency */, + 762AFFB6A0ECA1368BFBDBE404BF6296 /* PBXTargetDependency */, + 35F1E8122412002C45A16C3AED1062CB /* PBXTargetDependency */, + ); + name = "React-CoreModules"; + productName = "React-CoreModules"; + productReference = AE5D5924E9524D24B4C78999594601F8 /* libReact-CoreModules.a */; + productType = "com.apple.product-type.library.static"; + }; + 8E9F01B150517E3739C7748CF6D42337 /* RNReanimated */ = { + isa = PBXNativeTarget; + buildConfigurationList = 36DDF053D7A3C0BEF68FBB85AB1C1F4D /* Build configuration list for PBXNativeTarget "RNReanimated" */; + buildPhases = ( + 1C84AF7FF5C1F7A65908BF32B134807C /* Headers */, + 8FBD56A992D9256D5599180DBBB5D115 /* Sources */, + 5BD066938E5F7655BB3E2C8E803DE109 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 15F8D2124B7D6AB17B370E68DBEA96F6 /* PBXTargetDependency */, ); name = RNReanimated; productName = RNReanimated; - productReference = 122AAEB338DC8B736B63DB63AD613A00 /* libRNReanimated.a */; + productReference = 6B72BBBD460676E45ED8FD674F815B8F /* libRNReanimated.a */; productType = "com.apple.product-type.library.static"; }; - 877631EEE83C7F1A8383EA4837F640C7 /* Pods-RocketChatRN */ = { + 9A6B273422BDAA14C2ED873EEAE80F65 /* react-native-keyboard-input */ = { isa = PBXNativeTarget; - buildConfigurationList = 0C98EDE7AC25C78B6E4D3FAEC590E18A /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; + buildConfigurationList = 893E95A6466DDF75BF146B7B9B4E3AD8 /* Build configuration list for PBXNativeTarget "react-native-keyboard-input" */; buildPhases = ( - 9671C4AD201B87A636641F5918857909 /* Headers */, - 37783B3DCCC9B9BDF967BC8DED0C644C /* Sources */, - FF89F95E29E4505BBEAE3EC420781F07 /* Frameworks */, + 08CD3DF9245FB07622E32DA1E568E046 /* Headers */, + 76C92CB72896C5F3FFA8182B3BB82C5B /* Sources */, + 3C0CAA05A1BE2B37DE5F687E90CE1085 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 6C126B850D5A0AA93A08B66059834603 /* PBXTargetDependency */, - 2126BF44330D357BB54CC1D1CC0CA528 /* PBXTargetDependency */, - 4EB5F322D72A048B53EE33EEA8BB3EB5 /* PBXTargetDependency */, - 53F39B0AA7F6F939EDB22C8A31035E7A /* PBXTargetDependency */, - 07EFB07AC81B19E2305B61526E01BA6D /* PBXTargetDependency */, - B9EE5F827F0B6A52F76608E3F01995A3 /* PBXTargetDependency */, - ED71E39465F24AEA35980E406B9EA437 /* PBXTargetDependency */, - 9BE4D8C247B277F084C8F7AECCE28B76 /* PBXTargetDependency */, - 09BC1DE6A8CA479A2A66D9A7EADDCA25 /* PBXTargetDependency */, - B1BA103374ADAD31C31439572175EB83 /* PBXTargetDependency */, - 6DC433D9621BBB181B93431526A4EF36 /* PBXTargetDependency */, - 751901136ECEE8DEEE6800F54419223D /* PBXTargetDependency */, - 3D0627717E59E9583AF6C4B17A2D98D4 /* PBXTargetDependency */, - DF70724E774AFE3C151FA2420F660F59 /* PBXTargetDependency */, - 9A7990CF460B691F65A8FA36412DFFED /* PBXTargetDependency */, - 136EEF6604F43C8124D5F42BBEB1F3CD /* PBXTargetDependency */, - E8A21CC175CE8C25C0175068BB89BD27 /* PBXTargetDependency */, - E498E84245C6E5439756BB30B91FC723 /* PBXTargetDependency */, - 6AB1AEFAE485D48D7D5CC9BF89D5E8DB /* PBXTargetDependency */, - 9D499ADBBB6B7E9FAF2E1DBF58855B23 /* PBXTargetDependency */, - 26539BEA71CDF34F76460BBAA03AC3AB /* PBXTargetDependency */, - F9210FB4BD614696E136BD21C82E3C36 /* PBXTargetDependency */, - 7E656EBEF5797256725AD6C5250731FC /* PBXTargetDependency */, - B91B35B25105EE3C7A5942FA60C1CDC8 /* PBXTargetDependency */, - DDBD6F10DF82B1F91A318AC0FBE5B48F /* PBXTargetDependency */, - 96DF01A77A7F79D17D59744A9B7D9D43 /* PBXTargetDependency */, - 682ADD021FBCB655D66E254D6FC0289E /* PBXTargetDependency */, - D65FD5981663B81ABAF51F16ECC829B4 /* PBXTargetDependency */, - A440AC2274D038325FAC1C0C42748118 /* PBXTargetDependency */, - CBA2760A17FAFBEF8DD73E7BDD285273 /* PBXTargetDependency */, - 84875184260B14895A56B2AAF4D8BF75 /* PBXTargetDependency */, - 057FFAB5B219D48F1810F4B950818FBA /* PBXTargetDependency */, - FE1947E4B09ECE076DFA8782C0DCA354 /* PBXTargetDependency */, - C6B55C7CD22C56AFF5A6D0A285BF1960 /* PBXTargetDependency */, - 8601E81BA9B5C1B5684E284CF6853EEA /* PBXTargetDependency */, - E648236495A38D197166CC7637AB8A92 /* PBXTargetDependency */, - 624CE7A3F0147B8BDED601338A2241F0 /* PBXTargetDependency */, - D6A95030FBB81059BC761121537DC59E /* PBXTargetDependency */, - F66BCE7DE44185ADBA6F93FAFAD27C3C /* PBXTargetDependency */, - B3E868CEDBEEEF93EA9AEBC9DF06E245 /* PBXTargetDependency */, - CEB5633051B7A95847D91C6329D29752 /* PBXTargetDependency */, - FF947BF84ED8EEA0C0CA463226E2525E /* PBXTargetDependency */, - F292793502627C99AF8C3C4D3876BC30 /* PBXTargetDependency */, - 43A6866B0E8C616F577C5CD21F694922 /* PBXTargetDependency */, - F438CC4B5092996DF4648C76CB5683C1 /* PBXTargetDependency */, - 2C01B0D82D8AA650B272B6CA9D40D02A /* PBXTargetDependency */, - 6C2AE19242DAF8403D48BE1F306F1754 /* PBXTargetDependency */, - 3529984F66D1A2A62F27BA5C9C02A9F6 /* PBXTargetDependency */, - 620B568275B0B2550A9AE69D860D5E46 /* PBXTargetDependency */, - 173A68761CA3DFC811B106DF733ED566 /* PBXTargetDependency */, - D1EC2C465ABCB54566725F74AD23A2BC /* PBXTargetDependency */, - AAE088C5732B3B7129D35B9BCBEBF263 /* PBXTargetDependency */, - 8C7CD0DEA5F45DCD11051710EC4E5A2D /* PBXTargetDependency */, - 876AE36EC4B4DD4669B015F1DC15D753 /* PBXTargetDependency */, - D8AC07560A48C6CB279059C33E684B22 /* PBXTargetDependency */, - 7C1A3B82893A4885FEAC777F455EEDB7 /* PBXTargetDependency */, - C0F355F5F810F8DE1EFBFEE0A6E4A477 /* PBXTargetDependency */, - 5C6CD8D7BD1CCC71599C7C47304BEC34 /* PBXTargetDependency */, - 8593AB4E06C8D9C4575DF0CD176110F1 /* PBXTargetDependency */, - 5FF6BE16DC1D362C03013AB01572D442 /* PBXTargetDependency */, - A785C69B9405236FB3809B7F9F8D2477 /* PBXTargetDependency */, - 7A64AF8F0D119CA6F2D86708B24EF3A5 /* PBXTargetDependency */, - D0414EEC0E0E082423EB616509B8535A /* PBXTargetDependency */, - 6E912A577B1B7789D92546D486E5A2DC /* PBXTargetDependency */, - DF00B042C845B07D21D7B9E0FE4315F3 /* PBXTargetDependency */, - B628847A973F430015B09AFB3F5BB912 /* PBXTargetDependency */, - 8FAFD031D0B4793EBBD638927B00CBA2 /* PBXTargetDependency */, - D0A20DBA0A66EAE9B6703A1BFC76EB97 /* PBXTargetDependency */, - 84328B124D45193DF135E66A4299799A /* PBXTargetDependency */, - 6E2717694A4B4170104E0E4E1C2BBB29 /* PBXTargetDependency */, - F3CCB1930C67F25EF46B77BEB8EAD25E /* PBXTargetDependency */, - 24E184A9A824320614706EB8D6E69AB2 /* PBXTargetDependency */, - F7D6E6A2707184E6ECF36852567A8EBB /* PBXTargetDependency */, - 54F1C4C7D9F1BF9854673D3EE3808970 /* PBXTargetDependency */, - 79680DEABF475C03C069F8ADA1E88C82 /* PBXTargetDependency */, - FF72888579BFD04A2128F2A5222549E6 /* PBXTargetDependency */, - E7BB98E77CAF1CF858FB091817940E45 /* PBXTargetDependency */, - 4406A001A553DF91C0D9D5BFB9D7C093 /* PBXTargetDependency */, - 79BF7757DECA4EC451187959C6200D0C /* PBXTargetDependency */, - C134F6970F03B9396B8C9A72A3B03BD2 /* PBXTargetDependency */, - 92DA73EABEC6013FAB27DF808770BD31 /* PBXTargetDependency */, - A1B12C8B91A4D5A233990510DE35841D /* PBXTargetDependency */, - B0FC01609163E412D539FA7AF1097DFE /* PBXTargetDependency */, - 8D0D12391C2E0B58E338DC9BA81AA6CD /* PBXTargetDependency */, - AA7E2B5932EB88A612CA82E5A7963C17 /* PBXTargetDependency */, - E50E8A29F8E861E64630437AFE01A5F0 /* PBXTargetDependency */, - E4C8745E51D6B1818C734571AF53C081 /* PBXTargetDependency */, + 25AFA25E400E7592F216196C78EC3521 /* PBXTargetDependency */, ); - name = "Pods-RocketChatRN"; - productName = "Pods-RocketChatRN"; - productReference = EEF40665F46FB3797440A917AF5C07C5 /* libPods-RocketChatRN.a */; + name = "react-native-keyboard-input"; + productName = "react-native-keyboard-input"; + productReference = 8FCAA2817AE3F8AC3B8230897287EBF7 /* libreact-native-keyboard-input.a */; + productType = "com.apple.product-type.library.static"; + }; + 9B1043B9A63EAA4E2CF205B8FA3565CE /* RNLocalize */ = { + isa = PBXNativeTarget; + buildConfigurationList = 4A034812941D4806899E67F79F74D16A /* Build configuration list for PBXNativeTarget "RNLocalize" */; + buildPhases = ( + 8CC49F194DF754D1965747B456CD1CD7 /* Headers */, + 1A7D7432402E62FFBC01D391F6E2766B /* Sources */, + E2A63F81974C92F7623CC0B2A56E7934 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + B37CEEF6837A58215756C44A4B5D3F67 /* PBXTargetDependency */, + ); + name = RNLocalize; + productName = RNLocalize; + productReference = 00D13666115C44ED93A89482C8D18ACB /* libRNLocalize.a */; productType = "com.apple.product-type.library.static"; }; 9F219ED43F3AEA000562B9BCFD624DDD /* React-cxxreact */ = { @@ -14466,7 +14345,7 @@ ); name = "React-cxxreact"; productName = "React-cxxreact"; - productReference = 409FF0807B37ED4A9D2CCEF42F1D0F74 /* libReact-cxxreact.a */; + productReference = 30550BF834830A430953570C26BA34BB /* libReact-cxxreact.a */; productType = "com.apple.product-type.library.static"; }; A486E5AB43C3327005F1C0B986A448C0 /* EXConstants */ = { @@ -14485,7 +14364,25 @@ ); name = EXConstants; productName = EXConstants; - productReference = 356FE3E71CD3DEFCAC4909FF82DACCE4 /* libEXConstants.a */; + productReference = 9104D6E90869CF4DD9F81824D2415D5F /* libEXConstants.a */; + productType = "com.apple.product-type.library.static"; + }; + A83DA188DB8A2E365EC3B1FD19C9A3F5 /* RNScreens */ = { + isa = PBXNativeTarget; + buildConfigurationList = 646401DEB29D70F66AB7D54515B1CBB5 /* Build configuration list for PBXNativeTarget "RNScreens" */; + buildPhases = ( + 199AC1CA8C5076361C04F6E9FFA9BA47 /* Headers */, + F87C4008AD330350154ADB53EC2F760E /* Sources */, + 29FD296AD69B59874FDEDD2855A991AE /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 8E717B3E06DAA2200B488F6B43397D1B /* PBXTargetDependency */, + ); + name = RNScreens; + productName = RNScreens; + productReference = 069E9AAC32DF981B33640FE83825701D /* libRNScreens.a */; productType = "com.apple.product-type.library.static"; }; A954214FEA55463925B6F6E3A27B6016 /* EXAV */ = { @@ -14504,7 +14401,7 @@ ); name = EXAV; productName = EXAV; - productReference = 196B0A88499EC4B56090AF686E8DD239 /* libEXAV.a */; + productReference = 6DEA9914C54EB495C743EE6B7123C5FC /* libEXAV.a */; productType = "com.apple.product-type.library.static"; }; B11E238094137347E8790BFEB1BEF01F /* EXWebBrowser */ = { @@ -14522,25 +14419,25 @@ ); name = EXWebBrowser; productName = EXWebBrowser; - productReference = CDCE878B34213960A39C86D72769BD67 /* libEXWebBrowser.a */; + productReference = 3520A6863EFA9777DEAE6B7D7B21E5BE /* libEXWebBrowser.a */; productType = "com.apple.product-type.library.static"; }; - B6C55354377C9FC118FFF334B68A47E4 /* react-native-video */ = { + B2D1A9BE57D1CD04D04DA1329599E7A6 /* QBImagePickerController */ = { isa = PBXNativeTarget; - buildConfigurationList = 92F0E7344F8DDF92AC6E162076CF4C57 /* Build configuration list for PBXNativeTarget "react-native-video" */; + buildConfigurationList = 104C848F4F6A5919334402CC4BC40688 /* Build configuration list for PBXNativeTarget "QBImagePickerController" */; buildPhases = ( - B09C8481A97081E68594502D7AE86B21 /* Headers */, - F3C5C16356EDDD86673C484434314E6A /* Sources */, - 368833713F59A2DE6A817160922A5781 /* Frameworks */, + D309314835403952ED853CED45598B93 /* Headers */, + 617D81BDF383885A47359D09DDEC4992 /* Sources */, + 934AC35CCBF99A4BF021B9ADDA678043 /* Frameworks */, ); buildRules = ( ); dependencies = ( - B2F604A2E0FAFE2943463863A0C805DA /* PBXTargetDependency */, + B4B2CAB7C548D893CC69214EB2AAD17A /* PBXTargetDependency */, ); - name = "react-native-video"; - productName = "react-native-video"; - productReference = 3EC540D240E3AB36FE683E1FBCD785BF /* libreact-native-video.a */; + name = QBImagePickerController; + productName = QBImagePickerController; + productReference = CAE0ACF9C9C3F738A9F297AE3BDACC72 /* libQBImagePickerController.a */; productType = "com.apple.product-type.library.static"; }; B81CA3A3A63C0085E4085060FE4DD9FF /* React-jsiexecutor */ = { @@ -14562,7 +14459,25 @@ ); name = "React-jsiexecutor"; productName = "React-jsiexecutor"; - productReference = 8D3111EE7181EC6A88D9C468462900B4 /* libReact-jsiexecutor.a */; + productReference = 0D982FF377AD4A1F8AD82E06DC8C7CAE /* libReact-jsiexecutor.a */; + productType = "com.apple.product-type.library.static"; + }; + B8773D156F603535D7813D4981DD0B68 /* RNGestureHandler */ = { + isa = PBXNativeTarget; + buildConfigurationList = 8752333C10C923DF96D1FC9794B27D34 /* Build configuration list for PBXNativeTarget "RNGestureHandler" */; + buildPhases = ( + E11C8D2F10B384A5CE9120CB149165F1 /* Headers */, + 59CDA7CFEF96EF5567A31B172F866005 /* Sources */, + EDB454D89CC90C6140135B2FC49BC232 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 2660BD5F88BAA3BD34E69AFEA6463EAD /* PBXTargetDependency */, + ); + name = RNGestureHandler; + productName = RNGestureHandler; + productReference = 6FEB1C239B3B874EAB1FDFAF2AA954C6 /* libRNGestureHandler.a */; productType = "com.apple.product-type.library.static"; }; BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */ = { @@ -14579,7 +14494,25 @@ ); name = GoogleUtilities; productName = GoogleUtilities; - productReference = AFB872DDD998C244AC1FF5DEF2A6CF00 /* libGoogleUtilities.a */; + productReference = B4BBD3F4DCBF4684D97C369EE4AE97AC /* libGoogleUtilities.a */; + productType = "com.apple.product-type.library.static"; + }; + BB5B4FB9526DC1FEC5AEBB3C4E4239E6 /* react-native-safe-area-context */ = { + isa = PBXNativeTarget; + buildConfigurationList = 66C0BD577796B496842FD5EED312B9CE /* Build configuration list for PBXNativeTarget "react-native-safe-area-context" */; + buildPhases = ( + 660BD652788845440F89DE30330A0CB5 /* Headers */, + 956B37546144660506A164BBA8B18EF5 /* Sources */, + 95B3AC68FEFC794CAB2C0D35F578C5F0 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + F10D0063DB440D69A65D36AC6FF4CFC3 /* PBXTargetDependency */, + ); + name = "react-native-safe-area-context"; + productName = "react-native-safe-area-context"; + productReference = 0D06F4B4361CF3BC16E2F9F0631362E1 /* libreact-native-safe-area-context.a */; productType = "com.apple.product-type.library.static"; }; BD7B2D8FF0ABCB89D01F6E21D5364678 /* React-RCTVibration */ = { @@ -14597,25 +14530,43 @@ ); name = "React-RCTVibration"; productName = "React-RCTVibration"; - productReference = 7007E5BD63700535A791FC56F083BFA9 /* libReact-RCTVibration.a */; + productReference = 7A69CAD3BDA83AE301555B162C333302 /* libReact-RCTVibration.a */; productType = "com.apple.product-type.library.static"; }; - C2ECC9F00932B89184DFC0F90BB87BB9 /* RNScreens */ = { + BDD36BE8D4A81A3232F5093FE20B819A /* RNDeviceInfo */ = { isa = PBXNativeTarget; - buildConfigurationList = 6A174A109BBB9465150C8818941029ED /* Build configuration list for PBXNativeTarget "RNScreens" */; + buildConfigurationList = 817C8D59296540781CADE17DF8925B9C /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */; buildPhases = ( - 8D057DBAC5B6CE733DC07A3400C009C2 /* Headers */, - 3103481382F04D167586362F4991B69F /* Sources */, - 069490BCA356CF0DCB84EE143410E64E /* Frameworks */, + 3D17B76DA25681152D814D20EA6FC1BE /* Headers */, + 865089E4F9B37969274CE2EB41814694 /* Sources */, + 14B3F94FFA85E40AA6C709D916AD8F87 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 5D9EB95E2B8EB066889378E1F13EEC62 /* PBXTargetDependency */, + 292D50F8F63714E101A43288417EAFF9 /* PBXTargetDependency */, ); - name = RNScreens; - productName = RNScreens; - productReference = 77D98E1479E96A1B403182C9C22AD207 /* libRNScreens.a */; + name = RNDeviceInfo; + productName = RNDeviceInfo; + productReference = FDA7A6F69EB7C8A8B899369C8124C509 /* libRNDeviceInfo.a */; + productType = "com.apple.product-type.library.static"; + }; + C2722F653457CE3393EBD7647723DCB9 /* react-native-orientation-locker */ = { + isa = PBXNativeTarget; + buildConfigurationList = 9C93B4C52B41A79FF2E99C4FCA512E6F /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */; + buildPhases = ( + BF43FD13A12572ABFDAC25E7A009B393 /* Headers */, + 50F3AA5326AE3E3ED9B736F0A1FF5E63 /* Sources */, + 15E73B833698411582D237A0470D6809 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + A8967FD95D63B2D181893924419BAFA7 /* PBXTargetDependency */, + ); + name = "react-native-orientation-locker"; + productName = "react-native-orientation-locker"; + productReference = 934FAD7BD442FCC32A88864EC43DB732 /* libreact-native-orientation-locker.a */; productType = "com.apple.product-type.library.static"; }; C2F81329D3C42F2D872A4B80180545BC /* React-RCTLinking */ = { @@ -14633,7 +14584,95 @@ ); name = "React-RCTLinking"; productName = "React-RCTLinking"; - productReference = DB550C0B57182EB7ECF71B581CB8332D /* libReact-RCTLinking.a */; + productReference = 09FF962CAF88BBC18D852C27F967045D /* libReact-RCTLinking.a */; + productType = "com.apple.product-type.library.static"; + }; + C78807E7E9A8C08F9906CF47DE441E57 /* RNAudio */ = { + isa = PBXNativeTarget; + buildConfigurationList = 8244F879B6047FF0A3E1CA493402BC80 /* Build configuration list for PBXNativeTarget "RNAudio" */; + buildPhases = ( + AC62C6279F72FBAAD0CE8CCE177EA741 /* Headers */, + 9B440D5927DE2B7C2BE9CA826C078C90 /* Sources */, + A047FE1E4728946D4E383E84D49294F5 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 37BD5DD6C9C4501DF9616CABC4CFC979 /* PBXTargetDependency */, + ); + name = RNAudio; + productName = RNAudio; + productReference = 8436F77BAD643A5138290011692C0F83 /* libRNAudio.a */; + productType = "com.apple.product-type.library.static"; + }; + CC0A7968B1F2981D99C33E73EDF48649 /* RSKImageCropper */ = { + isa = PBXNativeTarget; + buildConfigurationList = F721B0436DD63165B0FD7FE38B72919D /* Build configuration list for PBXNativeTarget "RSKImageCropper" */; + buildPhases = ( + 11D44297CDEA9088EBB130ADC6ADF1CC /* Headers */, + 95E017DB1A4DFB3F18588FD85B282DB8 /* Sources */, + CEF6727F912B0164E581923B6E6026C7 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = RSKImageCropper; + productName = RSKImageCropper; + productReference = A672EAB82A86B0F23AF82F0F78F972C0 /* libRSKImageCropper.a */; + productType = "com.apple.product-type.library.static"; + }; + CC1AB14B9BDA80213A889CE582D91D46 /* RNVectorIcons */ = { + isa = PBXNativeTarget; + buildConfigurationList = 1FE6EFB1557D013E5FC58C94E79225FB /* Build configuration list for PBXNativeTarget "RNVectorIcons" */; + buildPhases = ( + A1EF8BC2BD4B2BAE96E050FE2EBA4582 /* Headers */, + DC289AD4FA7F10C083E8800860AADD90 /* Sources */, + 056885FA71170AD251CCB51DBF15BA96 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + A65BC843E68F7C05C609AA0F1FC15072 /* PBXTargetDependency */, + ); + name = RNVectorIcons; + productName = RNVectorIcons; + productReference = F584F64EB858EF704C5DA703F0F9C141 /* libRNVectorIcons.a */; + productType = "com.apple.product-type.library.static"; + }; + D72528D679933334AAD7996CD73D84CD /* SDWebImage */ = { + isa = PBXNativeTarget; + buildConfigurationList = C2F667F539C175DE1926CB4286C4A485 /* Build configuration list for PBXNativeTarget "SDWebImage" */; + buildPhases = ( + 393D92ABA2C972ECBB0F4D8ABB10230E /* Headers */, + C8E970643E90FAE9ECAD1D61E324A7C0 /* Sources */, + 5FDDF99DE9290708CB31709BB57F1F1D /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SDWebImage; + productName = SDWebImage; + productReference = 6E05E07DB306A19A19C8EC64818DC828 /* libSDWebImage.a */; + productType = "com.apple.product-type.library.static"; + }; + DE5A74080B919B383A77CD73B094CBBC /* react-native-keyboard-tracking-view */ = { + isa = PBXNativeTarget; + buildConfigurationList = 53D7BD79B5AC7824A784738467F7706F /* Build configuration list for PBXNativeTarget "react-native-keyboard-tracking-view" */; + buildPhases = ( + B31D21F8FDC32122A3820A27F6D97F03 /* Headers */, + 892544E71B7C08D82EB0267A88962549 /* Sources */, + 98E45DEC24AF9D186ED1F8FAC1869774 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + EA895648D37BA0792BBEC189CE0CBF59 /* PBXTargetDependency */, + ); + name = "react-native-keyboard-tracking-view"; + productName = "react-native-keyboard-tracking-view"; + productReference = 04B71057546640A46BBB688900760369 /* libreact-native-keyboard-tracking-view.a */; productType = "com.apple.product-type.library.static"; }; E07EA1A35FBB3A986F484EB01CDD5527 /* EXPermissions */ = { @@ -14652,7 +14691,7 @@ ); name = EXPermissions; productName = EXPermissions; - productReference = D0280C22D66CA99355BCC526A3BA164F /* libEXPermissions.a */; + productReference = 77D3515313915883A91B4D382D37D81D /* libEXPermissions.a */; productType = "com.apple.product-type.library.static"; }; E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */ = { @@ -14669,48 +14708,7 @@ ); name = DoubleConversion; productName = DoubleConversion; - productReference = 0C1845B037EBFB2AF0EBE8D51A83F789 /* libDoubleConversion.a */; - productType = "com.apple.product-type.library.static"; - }; - E20E81644F6DFF8A9937721B0487DBEC /* RNImageCropPicker */ = { - isa = PBXNativeTarget; - buildConfigurationList = 436156A98FC71D2CDB6BA69A0390266C /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */; - buildPhases = ( - 4890E732B999CC2457EDA689DC4DA805 /* Headers */, - 49E1E43B4D587105CBC3D93875048028 /* Sources */, - 50A8437D9B22A14611D8054CFD6DAD9C /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 4F1AED2974842499EAE89D933856C621 /* PBXTargetDependency */, - B9EDC2CA6CF6593BD7C9606474A1D51B /* PBXTargetDependency */, - 9C4E97CB44CC99B9F903176BEC21D6C5 /* PBXTargetDependency */, - 9ED5D3033934BF9EF5EFCEEFFC7F6633 /* PBXTargetDependency */, - ); - name = RNImageCropPicker; - productName = RNImageCropPicker; - productReference = 08EA89A726A317A7E4C39434BC66C2E1 /* libRNImageCropPicker.a */; - productType = "com.apple.product-type.library.static"; - }; - E2B978578963427FF7EAE56EE62BD4A2 /* RNFastImage */ = { - isa = PBXNativeTarget; - buildConfigurationList = 37168574AD40F5FD96CFABA5B20482EB /* Build configuration list for PBXNativeTarget "RNFastImage" */; - buildPhases = ( - 5F52B45A972C896AEAB080BCACD12E14 /* Headers */, - 7D2AA306A4DA1C77B19E690681991F03 /* Sources */, - DB0ADDEAEE9409168BE88FD1FF7EB13F /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 2F197E8D4A0D75D033AF3FAA5BF6A4F2 /* PBXTargetDependency */, - 63118994867FEFB6B29370620046F1CC /* PBXTargetDependency */, - A326254BC2CA3E03D3FC6BE950561380 /* PBXTargetDependency */, - ); - name = RNFastImage; - productName = RNFastImage; - productReference = 1432AC107EEC71614DBC990356D446B8 /* libRNFastImage.a */; + productReference = 659A269762C07BCCCD06B381625F24C2 /* libDoubleConversion.a */; productType = "com.apple.product-type.library.static"; }; E452F4CD4F8AB641BD2444C7AC91FA2B /* BugsnagReactNative */ = { @@ -14728,7 +14726,7 @@ ); name = BugsnagReactNative; productName = BugsnagReactNative; - productReference = E2306D5FB2F49E75665AE8E3911A4754 /* libBugsnagReactNative.a */; + productReference = 578BA57E573FD4A55295FA5E25CC58DD /* libBugsnagReactNative.a */; productType = "com.apple.product-type.library.static"; }; E49E330A27425F89DE89516B2F50AAE9 /* React-RCTText */ = { @@ -14746,97 +14744,207 @@ ); name = "React-RCTText"; productName = "React-RCTText"; - productReference = CE32FD9AAE872F96034704AEF28E8F62 /* libReact-RCTText.a */; + productReference = 508C8E5B4FBC388D865BC713B4CDB0E7 /* libReact-RCTText.a */; productType = "com.apple.product-type.library.static"; }; - E4D9E3C5E2CE0F3B8F6462A54DAA07EB /* react-native-keyboard-tracking-view */ = { + E5BFB4B0AFB8B1338DA5ABC32124BED6 /* RNFirebase */ = { isa = PBXNativeTarget; - buildConfigurationList = CAFA6AE8E204A2C1528069461A7A1670 /* Build configuration list for PBXNativeTarget "react-native-keyboard-tracking-view" */; + buildConfigurationList = 274FBBCEBC6FE5222C2829CCF5B53763 /* Build configuration list for PBXNativeTarget "RNFirebase" */; buildPhases = ( - 3E7862A16680487F39BAEB512FBCB45D /* Headers */, - 14665FEDADDEA706B0D27EF73BD6727B /* Sources */, - 8E807BC1615F0EE43EFE300EF47CDEB5 /* Frameworks */, + 47BC5A83D79274E4841CD0BE60C4E3CF /* Headers */, + 88C410A96C212A7011CDC22EFF6B6E55 /* Sources */, + A5B938FE135F533AAB11BE691023B2A7 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 519D1164885103A9559F48D17C8C21CA /* PBXTargetDependency */, + C51C4CA1845B74FF7CCE072EB8C7FD0F /* PBXTargetDependency */, + C5EC3656E605C6EE9E7D082D10E846FF /* PBXTargetDependency */, + 9B0852DB722319CA3DD91CA3B01918A7 /* PBXTargetDependency */, + 04BCC6284447C14B179B401D20A1D271 /* PBXTargetDependency */, ); - name = "react-native-keyboard-tracking-view"; - productName = "react-native-keyboard-tracking-view"; - productReference = C1F5C672F45E668D82E457808A2990C3 /* libreact-native-keyboard-tracking-view.a */; + name = RNFirebase; + productName = RNFirebase; + productReference = F07935B83A1279A78510B6FF8E94E4EF /* libRNFirebase.a */; productType = "com.apple.product-type.library.static"; }; - F1EE4DA45FFDFD18B54B38BE623F2FA2 /* react-native-splash-screen */ = { + E815F092E40E6946F21899111DA998C4 /* react-native-jitsi-meet */ = { isa = PBXNativeTarget; - buildConfigurationList = F55A82D4C1E5B12F71BD9D4828510494 /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */; + buildConfigurationList = 7BFF816788809B84B9A629A55813CC3C /* Build configuration list for PBXNativeTarget "react-native-jitsi-meet" */; buildPhases = ( - 92849CE2C612F3F99EAB9CD434A14FEC /* Headers */, - BA4A5AEDCE42C428D9DE0DC0E6223E77 /* Sources */, - B729D617CEC388CBF2D3849BBE21CFC8 /* Frameworks */, + 45C56EEAA800AD77F903BF323A6CBEA2 /* Headers */, + 88EC7AA8482C93302CE7C8BB242D9F20 /* Sources */, + 2030BDD982DCD10368BD7E3788090C90 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 27567C38BC4484BFB9062A8331E3D538 /* PBXTargetDependency */, + B4612418E9B092441D4053FB9CAEA7A6 /* PBXTargetDependency */, ); - name = "react-native-splash-screen"; - productName = "react-native-splash-screen"; - productReference = 8E180F9558C8D0F98BBFA9A8F4F5DC55 /* libreact-native-splash-screen.a */; + name = "react-native-jitsi-meet"; + productName = "react-native-jitsi-meet"; + productReference = FE2852FAE58D7B22076BE01E6A658084 /* libreact-native-jitsi-meet.a */; productType = "com.apple.product-type.library.static"; }; - F2C15AB5776BB3F7736E68FEDC1A4A36 /* react-native-webview */ = { + EAD1D5C792F02B5C1FAB8EB22DA804AC /* Pods-ShareRocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = 7C23A8C09CAEC7E2195A97A96648E375 /* Build configuration list for PBXNativeTarget "react-native-webview" */; + buildConfigurationList = 28F259EFAB03F26024337F16F6DF0651 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; buildPhases = ( - FC0D6A590BA140E133033C0A80CD47CC /* Headers */, - FD9DD3C49783DB167B2F721FAB45EFED /* Sources */, - 2F98BE8B97AE99A4608316CE57B41FBA /* Frameworks */, + 4D57A90878068803FCC99450F39F088D /* Headers */, + B70A05E9A60FC2F7137C16C2D1FA2EBB /* Sources */, + 7DF4CB58B5A5F171ED7CBB341AF4E2E7 /* Frameworks */, ); buildRules = ( ); dependencies = ( - D327B3E1B3E63F4A1783312ACC137C61 /* PBXTargetDependency */, + F17435A6C6DF3F55D107799BB9CFF535 /* PBXTargetDependency */, + ACF33DE4C318DE79A0EC037ABDDEE8A0 /* PBXTargetDependency */, + 767C9782DCD450083B5834D0A0427A2E /* PBXTargetDependency */, + 27D8C5B277A23D554493962AB06B15C3 /* PBXTargetDependency */, + D01886FD0ACAAD13A760B997C4259887 /* PBXTargetDependency */, + 7182E5BF576D0928A852355DFF53321F /* PBXTargetDependency */, + BB33DF1ECB164043C8A7C26EA3B1F16A /* PBXTargetDependency */, + 1CF97C3B805FFA1E9A49877E5FE67CE3 /* PBXTargetDependency */, + A07B064594B2B86C1C47BBEF0F1ED296 /* PBXTargetDependency */, + 2E60AAA631EB167AB2C78BBB1366764C /* PBXTargetDependency */, + 4837F72BFF564F6748580864BAEBEFA1 /* PBXTargetDependency */, + 6BDACB1010ABF3CD00249F3151D5D847 /* PBXTargetDependency */, + 6228433EE073EDC94841FF656371225C /* PBXTargetDependency */, + 204103775A913D1A92C3A9EDA84000BD /* PBXTargetDependency */, + A8FBB699E90D04C307C07C5C2F00D9DB /* PBXTargetDependency */, + 59B08425B79FF25F33DB862884338ADC /* PBXTargetDependency */, + 6E13A49FF682853FCED94A420C50D542 /* PBXTargetDependency */, + C53A6EC9E9FC25774308311027A9BDF6 /* PBXTargetDependency */, + CFEE3CE0B93507F37A6009E03B7C62FA /* PBXTargetDependency */, + 66135B463EC64038A17C3A0B90B3F960 /* PBXTargetDependency */, + 263C4D71EBA011A8FC61AEB5EDBFC58D /* PBXTargetDependency */, + E884C4C922AF7C07172A1C6E880CC9F1 /* PBXTargetDependency */, + 08D7C48F7D43CFCBDBDDD7DAE2B73E9D /* PBXTargetDependency */, + D0EE2FDA3F7CB319242B445B24BE8284 /* PBXTargetDependency */, + F9C71C31133C7DC4CDC627916310AA13 /* PBXTargetDependency */, + D3345671D9A8283E2337BD1EAE022E4B /* PBXTargetDependency */, + BF557DDF60F9945FD278CDBBFD57C833 /* PBXTargetDependency */, + C2D7FB034D942687A9108E661A528F6C /* PBXTargetDependency */, + 0CBE32ECB8EA7B9C5D6B22A6CB353348 /* PBXTargetDependency */, + F16C11880C1A84EF70CC6B7FDCC1D8AE /* PBXTargetDependency */, + F0EA1A45338CDCFD16B812AB02C2CA7E /* PBXTargetDependency */, + 44C24CB75B66E8F3CEE4E17F97CAE9C1 /* PBXTargetDependency */, + DDC6ECE36AD987A05F7F595754EC4963 /* PBXTargetDependency */, + 757234086D3E8725FB35268A0E95B294 /* PBXTargetDependency */, + E3CA334E1407E86648AFD5A7FEF1499E /* PBXTargetDependency */, + 7797077B5E7ABCFE5BCBE813069A1E55 /* PBXTargetDependency */, + 7D88970B5ACD6F7B8A832D4CCDCC32E1 /* PBXTargetDependency */, + 15042954E55A84B4CA698F854811C80A /* PBXTargetDependency */, + 2374FB5968F83C8469D17C4DD847C20C /* PBXTargetDependency */, + 7A75D084EC52AFAA39544685FC0EE452 /* PBXTargetDependency */, + E1E48C765086CAA33E9D7CE5DE4E9A6D /* PBXTargetDependency */, + 74E9038517B34D7138E7BBD366C865D7 /* PBXTargetDependency */, + 091023B980D5B54A6F2757A73196D511 /* PBXTargetDependency */, + BFA749ADBB7634F019351C589E9712AA /* PBXTargetDependency */, + 8FDF17CD462C2659221B751A261F7CC6 /* PBXTargetDependency */, + 3D50814BDA6615EE4B7CC8199C0973F6 /* PBXTargetDependency */, + F54D24152213F0F1FC78C536807999CD /* PBXTargetDependency */, + 38157FB1138740B2E582A9ACAD7AADFF /* PBXTargetDependency */, + FFDB002F0AFFFEAD26EC4BA5C29800B7 /* PBXTargetDependency */, + 139032292B23ABED624D6738266CC068 /* PBXTargetDependency */, + 979F1C3D0BEEA368094EE07CDAFB2309 /* PBXTargetDependency */, + 3F54725B417B166522938A094E3584FD /* PBXTargetDependency */, + 8168CC1290E6BA69D719476E277FF55D /* PBXTargetDependency */, + 001DB2F53886BE5985EC757E9AA72D3C /* PBXTargetDependency */, + D09AD20161029C176ACEB7DCBCE4FFF1 /* PBXTargetDependency */, + 61731B9E1C0A502E5FA86FDB3F4E5AB3 /* PBXTargetDependency */, + 97374B4728D67E0A24CC73AC318F8A74 /* PBXTargetDependency */, + 76933CE8445A34EE1EB99CDBF892008F /* PBXTargetDependency */, + C39B9258AAD6FC2BC8F5E22DEF8B3CA5 /* PBXTargetDependency */, + 5E4AC549896D10E85070E54A04519DDB /* PBXTargetDependency */, + 6B7700F356A1EC5AD543615A70048D33 /* PBXTargetDependency */, + 07B8FFF440623ED894A18A825E7D03D2 /* PBXTargetDependency */, + 17FEACAA6C82E4792AC71F8C405A5CF4 /* PBXTargetDependency */, + A054314FDF125B8088566AD0CD2A16E0 /* PBXTargetDependency */, + F1F26691D17EEAD9D2D2FEDCCA703901 /* PBXTargetDependency */, + 6C8C27CB07C3488C044366102D311F90 /* PBXTargetDependency */, + 85C4CB3BF9E589472CBB4B0C11F068A9 /* PBXTargetDependency */, + 103F68A478191DB7EB38A6154A084D1A /* PBXTargetDependency */, + D4B9684C3B3A5B9B5D763360BEC8FB8D /* PBXTargetDependency */, + ); + name = "Pods-ShareRocketChatRN"; + productName = "Pods-ShareRocketChatRN"; + productReference = BA76D51CB685A8D3D845F08992BF57C8 /* libPods-ShareRocketChatRN.a */; + productType = "com.apple.product-type.library.static"; + }; + EC11D276EDE75D423B7339DD9767E779 /* SDWebImageWebPCoder */ = { + isa = PBXNativeTarget; + buildConfigurationList = 5BFC35E63D845A144BED9A09417C8CCE /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder" */; + buildPhases = ( + 1F06C2CCE8E9D3657FE1AD6D9205E2DE /* Headers */, + DAF691605EBF4194F660E72273567E6F /* Sources */, + 44993FD4A7136E2B008832C1B119584A /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + A1F71AD3F2A7DC2B2A5A38BCCCBC7FEF /* PBXTargetDependency */, + 70E10ED4574B085BAE817D7D0C962E9A /* PBXTargetDependency */, + ); + name = SDWebImageWebPCoder; + productName = SDWebImageWebPCoder; + productReference = 5AE46C4D8BE44CFD170DB603316B972B /* libSDWebImageWebPCoder.a */; + productType = "com.apple.product-type.library.static"; + }; + ECC038491C39C430320C6C22527849A3 /* RNFastImage */ = { + isa = PBXNativeTarget; + buildConfigurationList = E3C26DC4C47814C911DA8C0C11B9E98B /* Build configuration list for PBXNativeTarget "RNFastImage" */; + buildPhases = ( + F9C01C72339DDDC0C8B12FF21F048366 /* Headers */, + 8921F9C3FA66E0A3D160C0C428806FE9 /* Sources */, + 172D2BD21D82B0B1873557C9A22AC867 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 5DBEE8C50D621BAF4F67518FD3A67C43 /* PBXTargetDependency */, + C946FF795E9424870F73694867FEA2BE /* PBXTargetDependency */, + B5134C1C99D55B72C18538A80B546B14 /* PBXTargetDependency */, + ); + name = RNFastImage; + productName = RNFastImage; + productReference = 5F86DAA21566953F371995177BF826DC /* libRNFastImage.a */; + productType = "com.apple.product-type.library.static"; + }; + F0C4ADFA389E9332F694ED1737F25C47 /* react-native-webview */ = { + isa = PBXNativeTarget; + buildConfigurationList = 5E43DB68F0D7E271553D460792FDDB99 /* Build configuration list for PBXNativeTarget "react-native-webview" */; + buildPhases = ( + 14F6779511C2F11B215391F498588CFB /* Headers */, + 0586AD81E3665479E5B18545D953F73A /* Sources */, + 06C5D5C2DA0004655F2173A6B535FEC9 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 019C85FA2AF130027EBC24EE8672BCE6 /* PBXTargetDependency */, ); name = "react-native-webview"; productName = "react-native-webview"; - productReference = FCC22059E462192D9B273B945DC2A9B9 /* libreact-native-webview.a */; + productReference = BC71266EE396E0AF9465AA30A2656959 /* libreact-native-webview.a */; productType = "com.apple.product-type.library.static"; }; - F2C53FD5931EC65A936C5F2AD66F1EEB /* react-native-notifications */ = { + F20B81FC3B7B8A0BDCAF087081B0C22E /* rn-fetch-blob */ = { isa = PBXNativeTarget; - buildConfigurationList = 52DCE85AE178E7BD98BD85AEF42CDE07 /* Build configuration list for PBXNativeTarget "react-native-notifications" */; + buildConfigurationList = AF57635DBA67A9C73839B1C8F6595737 /* Build configuration list for PBXNativeTarget "rn-fetch-blob" */; buildPhases = ( - B314EA20F09F9ABFFD554CB3E2EDDA9E /* Headers */, - 9F6510A33F2CAC1EA515205E4DAFCEF3 /* Sources */, - C23A37F159664204B5B59588D91E7426 /* Frameworks */, + 65B1EF98BC9F36D6EF4E0BDF0E2E85BA /* Headers */, + 7FC20997A0A8E974D9BDEBCCF6106873 /* Sources */, + AEFBC25997277DC5525AD9A344225A78 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 7E0DC46AD21E81388E2C5BF638330666 /* PBXTargetDependency */, + 4AF8C3BD73660B297F54ACA3DAE86F1C /* PBXTargetDependency */, ); - name = "react-native-notifications"; - productName = "react-native-notifications"; - productReference = 41A5423EBB1880BAF6F9267E5B15F7D6 /* libreact-native-notifications.a */; - productType = "com.apple.product-type.library.static"; - }; - F45971A372B34A0A3B690DD27B08E555 /* react-native-background-timer */ = { - isa = PBXNativeTarget; - buildConfigurationList = 6B53DA5955ABE5E0056830B389561CE8 /* Build configuration list for PBXNativeTarget "react-native-background-timer" */; - buildPhases = ( - F00EC2DB53835202F7A6D396C76CC283 /* Headers */, - 3701D7C50FE560265037A7B263911589 /* Sources */, - 3EDDF7A116C334A5CB318EC15AB3029B /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - C81DBA2C8BD105164979A0F8C455F529 /* PBXTargetDependency */, - ); - name = "react-native-background-timer"; - productName = "react-native-background-timer"; - productReference = E3E9D8FA14DFD596D27F9BB39C8D6DF6 /* libreact-native-background-timer.a */; + name = "rn-fetch-blob"; + productName = "rn-fetch-blob"; + productReference = 5257976D35ED1ED6929F44302C576FD0 /* librn-fetch-blob.a */; productType = "com.apple.product-type.library.static"; }; F7236D5BFD42DBEDF2652D4E47992BD2 /* React-jsi */ = { @@ -14857,7 +14965,7 @@ ); name = "React-jsi"; productName = "React-jsi"; - productReference = 91EA25725FFF249D140E775D023F0228 /* libReact-jsi.a */; + productReference = 32484BFF36488CC96783EF792DF22A50 /* libReact-jsi.a */; productType = "com.apple.product-type.library.static"; }; FD0F4E74C14C4B5B552686BD9576466F /* EXFileSystem */ = { @@ -14876,25 +14984,27 @@ ); name = EXFileSystem; productName = EXFileSystem; - productReference = C1C9D0C8BFC7D88D5A31B398B7A85378 /* libEXFileSystem.a */; + productReference = CB82849F1F6FC462F3A50E932BC8C0EC /* libEXFileSystem.a */; productType = "com.apple.product-type.library.static"; }; - FE8C90DDDB9FCFB2290889A1F43FC34F /* RNUserDefaults */ = { + FDBC5D62523F0773421241E3AC0A02D6 /* UMReactNativeAdapter */ = { isa = PBXNativeTarget; - buildConfigurationList = FCCF5DA0DFD17CED3B0000F5FA46348B /* Build configuration list for PBXNativeTarget "RNUserDefaults" */; + buildConfigurationList = 1F37A32DB8B0381CCFDA7B68F27F8374 /* Build configuration list for PBXNativeTarget "UMReactNativeAdapter" */; buildPhases = ( - 5D8D21845561112CDB85A68686EA9215 /* Headers */, - 9F8282FEBDAA576BADC410B0D6034E60 /* Sources */, - 1D75C798358143A4E8EB9737295ABCEE /* Frameworks */, + E58C3DE31B16BDBD8D64D83CC3E7E2C4 /* Headers */, + 0E372D3372959F15FA6FBFE2FA695380 /* Sources */, + 81808C85F0BF7F3C62C09B02CA90BAB6 /* Frameworks */, ); buildRules = ( ); dependencies = ( - B24944A4C19A13004E54571B54A944BE /* PBXTargetDependency */, + 0CE98E4ABB9A04265B1EBE139102189E /* PBXTargetDependency */, + 171CE48E25E9ECE3B5C776099B3AC1C6 /* PBXTargetDependency */, + D531AF0D2925832E5D0594B3CB3DA51F /* PBXTargetDependency */, ); - name = RNUserDefaults; - productName = RNUserDefaults; - productReference = 884DDCF8ABAE6E290FFBEE88290F6038 /* libRNUserDefaults.a */; + name = UMReactNativeAdapter; + productName = UMReactNativeAdapter; + productReference = 2072E5E02215B6D6FDC9547BA30AB058 /* libUMReactNativeAdapter.a */; productType = "com.apple.product-type.library.static"; }; FEC7CEE99C30C1292EC32D7E006E4E85 /* Yoga */ = { @@ -14911,7 +15021,7 @@ ); name = Yoga; productName = Yoga; - productReference = 51AC96BADB4666318F48A67EE9D1E934 /* libYoga.a */; + productReference = D6938FD59A2A273E2C6B63F1BC024D35 /* libYoga.a */; productType = "com.apple.product-type.library.static"; }; /* End PBXNativeTarget section */ @@ -14931,7 +15041,7 @@ en, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = 475A3A43E890DBD5493F0236FA4CE5BA /* Products */; + productRefGroup = 983471F60B05255D89C4BF1672A379C5 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -14963,29 +15073,30 @@ BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */, 427A5566E42596B2649019D00AA80F10 /* libwebp */, 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */, - 877631EEE83C7F1A8383EA4837F640C7 /* Pods-RocketChatRN */, - 4DF45B768BF983CC74C0FF77750538CA /* Pods-ShareRocketChatRN */, - 4C0C7B693B06D0DBEA04F9ABE003D758 /* QBImagePickerController */, - 7817B05E6E79731DF1D171B7D405F411 /* QBImagePickerController-QBImagePicker */, + 0691980A71BF989AD54CA1DF59260517 /* Pods-RocketChatRN */, + EAD1D5C792F02B5C1FAB8EB22DA804AC /* Pods-ShareRocketChatRN */, + B2D1A9BE57D1CD04D04DA1329599E7A6 /* QBImagePickerController */, + 09642168638DE42DDA2921CBADC48193 /* QBImagePickerController-QBImagePicker */, 9D255DD73ADD1E4565B5CCB665433053 /* RCTRequired */, 123D4D7AC3D41ABC0675B1DB3613066E /* RCTTypeSafety */, 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */, 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */, - 489CCEBDC649D379F1AB6CAE0B453E80 /* React-CoreModules */, + 86E0FD6F1E6CD55F28FDDB1D399CA7F7 /* React-CoreModules */, 9F219ED43F3AEA000562B9BCFD624DDD /* React-cxxreact */, F7236D5BFD42DBEDF2652D4E47992BD2 /* React-jsi */, B81CA3A3A63C0085E4085060FE4DD9FF /* React-jsiexecutor */, 115FC7605B6A0F6044A879F6EEB7DD99 /* React-jsinspector */, - F45971A372B34A0A3B690DD27B08E555 /* react-native-background-timer */, - 43CA9BA5B764ACB732696877E3FC307A /* react-native-document-picker */, - 0CBA5F53133416AD6AD2C463B3E7A934 /* react-native-jitsi-meet */, - 126A5E61D5CF9BAC6B2357D8EDFE30B5 /* react-native-keyboard-input */, - E4D9E3C5E2CE0F3B8F6462A54DAA07EB /* react-native-keyboard-tracking-view */, - F2C53FD5931EC65A936C5F2AD66F1EEB /* react-native-notifications */, - 1E7F02AFF67B5BD0ACE8CCA04DF1356E /* react-native-orientation-locker */, - F1EE4DA45FFDFD18B54B38BE623F2FA2 /* react-native-splash-screen */, - B6C55354377C9FC118FFF334B68A47E4 /* react-native-video */, - F2C15AB5776BB3F7736E68FEDC1A4A36 /* react-native-webview */, + 32B97B2079526CE843CA6A5613012594 /* react-native-background-timer */, + 17378B5ED23F0B7A52011DAE2B803A05 /* react-native-document-picker */, + E815F092E40E6946F21899111DA998C4 /* react-native-jitsi-meet */, + 9A6B273422BDAA14C2ED873EEAE80F65 /* react-native-keyboard-input */, + DE5A74080B919B383A77CD73B094CBBC /* react-native-keyboard-tracking-view */, + 1837EDA22C2525E2325468D2A3635FE8 /* react-native-notifications */, + C2722F653457CE3393EBD7647723DCB9 /* react-native-orientation-locker */, + BB5B4FB9526DC1FEC5AEBB3C4E4239E6 /* react-native-safe-area-context */, + 4C2F2E6EC9A37A9237D2149D178CCCD4 /* react-native-splash-screen */, + 3665DFF5E63879E71E17B6E7B32A2899 /* react-native-video */, + F0C4ADFA389E9332F694ED1737F25C47 /* react-native-webview */, 7135140B597489F3FE9D0A6D1FADD9C7 /* React-RCTActionSheet */, 7F28D4475D7DAD9903F7E6044DD921C1 /* React-RCTAnimation */, 2E2ABA11C27993D4CDD5DA270C4B75F1 /* React-RCTBlob */, @@ -14996,118 +15107,82 @@ E49E330A27425F89DE89516B2F50AAE9 /* React-RCTText */, BD7B2D8FF0ABCB89D01F6E21D5364678 /* React-RCTVibration */, 6DE003F64B133830B9AB9321298DAAC2 /* ReactCommon */, - 6D6AEAB3F5088F4B4EF5EEA6B011226E /* rn-extensions-share */, - 4B46CDE4D80107772B319E892C6315CB /* rn-fetch-blob */, - 68FD26CCB7EFC21DBD9D571910B36E1B /* RNAudio */, - 7DC30CA7B73824BDE446B33B5F944E35 /* RNDeviceInfo */, - E2B978578963427FF7EAE56EE62BD4A2 /* RNFastImage */, - 15B823CB06FA3E3E70EEFA5195733192 /* RNFirebase */, - 2E17311CD8EACC16113C89390B6656C5 /* RNGestureHandler */, - E20E81644F6DFF8A9937721B0487DBEC /* RNImageCropPicker */, - 0968391E5351AFD65E48369B3645BEDC /* RNLocalize */, - 84BB82258E4223BA2C02A6731A1BCEB5 /* RNReanimated */, - C2ECC9F00932B89184DFC0F90BB87BB9 /* RNScreens */, - FE8C90DDDB9FCFB2290889A1F43FC34F /* RNUserDefaults */, - 580D789B2C917AAD8F584EF17E390A5F /* RNVectorIcons */, - 48F9CAC66FE3C08FEE3ACAA5C6FEF569 /* RSKImageCropper */, - 012AE749BB302180A2F0730AF8E0490E /* SDWebImage */, - 62D54DBCE8E0274997CAF37B51B9F306 /* SDWebImageWebPCoder */, - 5108B653873149EC4BF8AD36798AD6BD /* UMBarCodeScannerInterface */, - 97BD405FD9F848B761D280E25331AD81 /* UMCameraInterface */, + 16B709A47FCE8BA466D5FC8BE1527E32 /* rn-extensions-share */, + F20B81FC3B7B8A0BDCAF087081B0C22E /* rn-fetch-blob */, + C78807E7E9A8C08F9906CF47DE441E57 /* RNAudio */, + BDD36BE8D4A81A3232F5093FE20B819A /* RNDeviceInfo */, + ECC038491C39C430320C6C22527849A3 /* RNFastImage */, + E5BFB4B0AFB8B1338DA5ABC32124BED6 /* RNFirebase */, + B8773D156F603535D7813D4981DD0B68 /* RNGestureHandler */, + 76045FDE22A7E6A917DFC0E5B11A9D64 /* RNImageCropPicker */, + 9B1043B9A63EAA4E2CF205B8FA3565CE /* RNLocalize */, + 8E9F01B150517E3739C7748CF6D42337 /* RNReanimated */, + A83DA188DB8A2E365EC3B1FD19C9A3F5 /* RNScreens */, + 5684E1AFCF5F41172AF803F46DEC414D /* RNUserDefaults */, + CC1AB14B9BDA80213A889CE582D91D46 /* RNVectorIcons */, + CC0A7968B1F2981D99C33E73EDF48649 /* RSKImageCropper */, + D72528D679933334AAD7996CD73D84CD /* SDWebImage */, + EC11D276EDE75D423B7339DD9767E779 /* SDWebImageWebPCoder */, + 64B317954BAE80E3324A956FD9035716 /* UMBarCodeScannerInterface */, + C0257B2F2F50DB2D70283F07722FFD1F /* UMCameraInterface */, 458293E00EF1C1F42778F9425AD34AA4 /* UMConstantsInterface */, 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */, - 89354908C626AE1F1E4D5E9F42F4E248 /* UMFaceDetectorInterface */, + 84362B470EA387E55ADAD84F88B19444 /* UMFaceDetectorInterface */, 7825F222F53EF434DE74A6C6FAF290E9 /* UMFileSystemInterface */, - 2B96BEB2DA52F32912B485D29E28C7BD /* UMFontInterface */, - BA602E0E6B0AAFD40F5578A3B7231AC3 /* UMImageLoaderInterface */, + 2911DE646E6DFD9455119DA0F7248020 /* UMFontInterface */, + AC715495C5294BEB747E601DBB313B5A /* UMImageLoaderInterface */, 5C53A3A5621162049D9B4399173FAD68 /* UMPermissionsInterface */, - 4C64158251B8E41D79AE900D7E5A10B1 /* UMReactNativeAdapter */, - 96205370750E7374B14ACD374E630261 /* UMSensorsInterface */, - 32D122CEBC2F799F23ED032EEB11B198 /* UMTaskManagerInterface */, + FDBC5D62523F0773421241E3AC0A02D6 /* UMReactNativeAdapter */, + 900359F19CD27ABA6E4A4F2E481D422A /* UMSensorsInterface */, + 15F9F7952A132E879D1B32065C22F870 /* UMTaskManagerInterface */, FEC7CEE99C30C1292EC32D7E006E4E85 /* Yoga */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 1280C4B9663AE76CB643ECF01816C7B8 /* Resources */ = { + C76461641AE5FBF2646A7225DB8A2EBE /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 1190BC3312B7D6629E55BE46CCA3FD16 /* de.lproj in Resources */, - D2844271E16D76E18BFB104A0E3B888F /* en.lproj in Resources */, - 29484F3F6E4F96B336DE4D51FC0233D3 /* es.lproj in Resources */, - 123246707A2C3FE6C894FC9C4F12DECB /* ja.lproj in Resources */, - 6E7E99C1CDF7906A6C971DEB2783C0D0 /* QBImagePicker.storyboard in Resources */, - 6CACC4EE9569138D757E6FD0DA148935 /* zh-Hans.lproj in Resources */, + E5BFA496D24713D1A9590068C297AED2 /* de.lproj in Resources */, + E421798B86666ED58EA554A0C67DC83A /* en.lproj in Resources */, + 5A3539D300545CED419697DD8DC68C21 /* es.lproj in Resources */, + 51FE13501C3E340EF9110B47BD86C8A8 /* ja.lproj in Resources */, + 3447D3DD4987D84E005FF3012A4EE817 /* QBImagePicker.storyboard in Resources */, + 4B8B230724F01F993C87453930EF00EF /* zh-Hans.lproj in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 015F4BD86B2A420EF51A8D108DC44B64 /* Sources */ = { + 0586AD81E3665479E5B18545D953F73A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - C1245AD94BACE0CF7931D4958079246E /* BannerComponent.m in Sources */, - 812E270BB7C579EE965F341B7933F3DC /* NativeExpressComponent.m in Sources */, - F6BAEACB20928362A0081984F7EF5BF5 /* RCTConvert+UIBackgroundFetchResult.m in Sources */, - D9EA88D0007FACE31E3B32EFA264D8A5 /* RNFirebase-dummy.m in Sources */, - EF846229527DBF54A41091E2AB4BFF89 /* RNFirebase.m in Sources */, - 228612C4C1079DB14B789A3062865A59 /* RNFirebaseAdMob.m in Sources */, - A79A602F78211A8FD8EDF912C0B757F1 /* RNFirebaseAdMobBannerManager.m in Sources */, - 9520C4E8B3CAFB9B75AF6B13BE6EB60E /* RNFirebaseAdMobInterstitial.m in Sources */, - BBC7090E65E274BB9D606AA26026F15F /* RNFirebaseAdMobNativeExpressManager.m in Sources */, - 260B6AABAE2D9FD32BB8C80D619F9A0A /* RNFirebaseAdMobRewardedVideo.m in Sources */, - 07964E72BE6C10A4074E6F034F17699A /* RNFirebaseAnalytics.m in Sources */, - A8EB563D1363461F3B11A4BAE2BD6E18 /* RNFirebaseAuth.m in Sources */, - B8489BFBF9A4734A20EF91A499532492 /* RNFirebaseCrashlytics.m in Sources */, - 02F962CE41BE7DE5D2A8D40252DBCA40 /* RNFirebaseDatabase.m in Sources */, - 7C8004F81A305CA2342DAC5139DD5E62 /* RNFirebaseDatabaseReference.m in Sources */, - 6D9BD88614888FED5C988CB1420F9CDB /* RNFirebaseFirestore.m in Sources */, - A39DAAE063775ADCAAF949DD9BF31976 /* RNFirebaseFirestoreCollectionReference.m in Sources */, - 827146C90C978E49EEFB92000D067B59 /* RNFirebaseFirestoreDocumentReference.m in Sources */, - 379506DA7639CCE2B25F6BF6155FF629 /* RNFirebaseFunctions.m in Sources */, - 31A6D18B44F359D3DDD8802E7EC51505 /* RNFirebaseInstanceId.m in Sources */, - EAD4BF96DB3424425B1AB18A97D1B500 /* RNFirebaseLinks.m in Sources */, - 784D5F9ACBF50B1E59454468C7289AC5 /* RNFirebaseMessaging.m in Sources */, - 81E847066AEEEFD5A93ABBB698F89CA4 /* RNFirebaseNotifications.m in Sources */, - 7126887785F0E65DE73E10CCF22814E4 /* RNFirebasePerformance.m in Sources */, - F6AC24ED7E5E3EE97DE624DF0AE536A8 /* RNFirebaseRemoteConfig.m in Sources */, - 4F0F8D241F72523DFFD977E17FF04BAB /* RNFirebaseStorage.m in Sources */, - 571B71940F10C80D6A066F017D804757 /* RNFirebaseUtil.m in Sources */, + F9B834F495DCCFD5ECF098EDE90F0782 /* react-native-webview-dummy.m in Sources */, + DE29F6FB307E3711AFBDC95AB34A66F6 /* RNCUIWebView.m in Sources */, + AFB4E2289D5010B46576457A5B163493 /* RNCUIWebViewManager.m in Sources */, + 5E59D127631ECB6023AB712A76BBE9A6 /* RNCWKProcessPoolManager.m in Sources */, + 94FD8C55242CFC903DC3EB4EBDCADC13 /* RNCWKWebView.m in Sources */, + 21DE2A10681CE86207C60042CF81CC48 /* RNCWKWebViewManager.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 016B227621A8F6345C85D06B653C8C00 /* Sources */ = { + 0E372D3372959F15FA6FBFE2FA695380 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 07D1C624AD60E3A30503D3804A68F18D /* RNFlingHandler.m in Sources */, - AFCA74623EDEC42F96AD4C422BB9F6C3 /* RNForceTouchHandler.m in Sources */, - 97996DA30052F6483AEED2C310993D27 /* RNGestureHandler-dummy.m in Sources */, - 093F11756CE3486B4FAB30D519C0E812 /* RNGestureHandler.m in Sources */, - D4AB924196AC6EADEE97022E181A83E8 /* RNGestureHandlerButton.m in Sources */, - 35935917688EAC1AB5FD623ECFC56D21 /* RNGestureHandlerEvents.m in Sources */, - 00F493D71685085B041A1AB56EE18171 /* RNGestureHandlerManager.m in Sources */, - 5284EE58DD0B9CD2CA51121994932B7A /* RNGestureHandlerModule.m in Sources */, - EB6E270E2571410D4E82FB2D2F677B92 /* RNGestureHandlerRegistry.m in Sources */, - 8DB7844E4B975A1F958E512923CBA4F5 /* RNLongPressHandler.m in Sources */, - 63DA317D7714D3BB46317E9137DB3D1F /* RNNativeViewHandler.m in Sources */, - 43152D4278E7B17678346F3FE6BA495B /* RNPanHandler.m in Sources */, - 31D08D5F417ED5B397B23EFCC6938BFE /* RNPinchHandler.m in Sources */, - CBCBCA8E4FD4106C4E92298C22C5D3F4 /* RNRootViewGestureRecognizer.m in Sources */, - A5A3BC69FC6183EBF49E6401387896C8 /* RNRotationHandler.m in Sources */, - CEE69566E821BD56E1A6E07B12F5A66D /* RNTapHandler.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0A28AC90843804B638B2D61FF9016198 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 37AB3363897A7188C30D4012E1D6F9B1 /* Pods-ShareRocketChatRN-dummy.m in Sources */, + 94102D4D4A27646284EB103746E379BA /* UMModuleRegistryAdapter.m in Sources */, + C0E7EA2D82836EAAD33A9C1BC6F9685B /* UMNativeModulesProxy.m in Sources */, + E54B963B7A9B72AC7A62ADC7EFE64AE6 /* UMReactFontManager.m in Sources */, + 9F0C4812425C43FA26A9C48A388B88F5 /* UMReactLogHandler.m in Sources */, + 6E96BE18C55878DCE42B68118CCD01A2 /* UMReactNativeAdapter-dummy.m in Sources */, + F8B88A3078AD21EEE0E608979D35E585 /* UMReactNativeAdapter.m in Sources */, + AC8869F1082D903914BE957FF5EEF118 /* UMReactNativeEventEmitter.m in Sources */, + 99249B6F723586DB53A231CFD292CC86 /* UMViewManagerAdapter.m in Sources */, + 00F05116C38005DD187F6E230370B363 /* UMViewManagerAdapterClassesRegistry.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -15146,24 +15221,19 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 14665FEDADDEA706B0D27EF73BD6727B /* Sources */ = { + 136BE67674447A614BA4277CE6C5C9D7 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - B67A4BD98A9F686541789C0D0889AFE4 /* KeyboardTrackingViewManager.m in Sources */, - B2295148125F526C413FF432782EAA32 /* ObservingInputAccessoryView.m in Sources */, - CF211E8ADF4C562FBD594AAACE6CF640 /* react-native-keyboard-tracking-view-dummy.m in Sources */, - 78D7B53A0B50B238FB009333E470E5B3 /* UIResponder+FirstResponder.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1A76BB2E4D1188AB1FF4271421465F37 /* Sources */ = { + 1A7D7432402E62FFBC01D391F6E2766B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - C589D858B03222C265B329D16C32A728 /* DeviceUID.m in Sources */, - D103EE6DBD1F76AC996913AD4E420086 /* RNDeviceInfo-dummy.m in Sources */, - 38B526163FD52FCD4BBD7F5AA45C5098 /* RNDeviceInfo.m in Sources */, + DFAAE4E0CA13D4C76FA8B10CAA5DBD06 /* RNLocalize-dummy.m in Sources */, + 9FA9B09A0F43FCE11A2099C32933A9F7 /* RNLocalize.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -15177,23 +15247,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 20C02D9359C10EE7EA20D5BE26A60363 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 1AC951E28336052BBB2B8F7FEEF15987 /* QBAlbumCell.m in Sources */, - DC98A913DE0A25181C2256F66B397D92 /* QBAlbumsViewController.m in Sources */, - BEC35B978A5BB5B366E2D5DC53DDC6FD /* QBAssetCell.m in Sources */, - 7C27D668D6EE76087CFD755C4C65F1B7 /* QBAssetsViewController.m in Sources */, - F17430ADEAB0EA2A870632A8898A89FD /* QBCheckmarkView.m in Sources */, - 9D4DA5CCD9789CDC216D8BB48695CA4F /* QBImagePickerController-dummy.m in Sources */, - 511F83AB82C0930FB677018EE18A7271 /* QBImagePickerController.m in Sources */, - 8A7E5F8D87A28E42B2C57B5A506240F1 /* QBSlomoIconView.m in Sources */, - 64FF982159B26E10B7931FC0B117B197 /* QBVideoIconView.m in Sources */, - 4CF5D994F690814D85E88ABEF8EAEE6B /* QBVideoIndicatorView.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 24919D53ACED931C0F704F7D8A23BCB9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -15213,18 +15266,12 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 266D68D6C1A651B5DDF053EF9A30504A /* Sources */ = { + 27D1EB30FD2D84FE272AEF6EA82E082B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A96B0662413D76900616898DE7022E72 /* CGGeometry+RSKImageCropper.m in Sources */, - C7553539EEFCDB6FD3727C244A243A3B /* RSKImageCropper-dummy.m in Sources */, - DAC87E56109E6DA387A5502463E43E89 /* RSKImageCropViewController.m in Sources */, - 4160085BE68E12518B6CD775878297A7 /* RSKImageScrollView.m in Sources */, - C3BAE7755EBB363DA6B947E5DA88D2D6 /* RSKInternalUtility.m in Sources */, - ED09C43A4C4A0BB522052C61B545AA26 /* RSKTouchView.m in Sources */, - 0D8A8D114935E93B26588831B7EC44EB /* UIApplication+RSKImageCropper.m in Sources */, - 880B4DBE9A17E1C2EE6AE7EE57F17B86 /* UIImage+RSKImageCropper.m in Sources */, + 1C37202DC1AF036537E97B30E494E384 /* react-native-splash-screen-dummy.m in Sources */, + D2D90244ADD0315731955F8A4424B26D /* RNSplashScreen.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -15261,10 +15308,25 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 2B8336ACBCE8D121CB8C9AF4DC648C63 /* Sources */ = { + 2BA52E9136E82B25DB88854F2F00691F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 995E0DDA6DA5016C85B3F67F2086A532 /* CoreModulesPlugins.mm in Sources */, + E1410997FF6BB3938F64295AAD8FFFB9 /* RCTExceptionsManager.mm in Sources */, + 1075BCE9C709148CEB1F44FA18AA58F7 /* RCTImageEditingManager.m in Sources */, + 727E906A58726A46D1633DB73CD9044F /* RCTImageLoader.mm in Sources */, + 72C0977F19EC7A8272376183490A9D50 /* RCTImageStoreManager.m in Sources */, + B1D00F5799C6F33A7F6B639FAACEE060 /* RCTPlatform.mm in Sources */, + AB9CB790EC7FD4F78C3CAF4553ECAB0B /* React-CoreModules-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 2BA888FA8D2A4073658CA24161017CF3 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 6B75ECCFA3B577DB9E1F6D338589E037 /* Pods-RocketChatRN-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -15277,18 +15339,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3103481382F04D167586362F4991B69F /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - BC77CFAEF4561885C14A76F36FF939C5 /* RNScreens-dummy.m in Sources */, - 718ADFEB4FEE84763396F2E3E6A02AFD /* RNSScreen.m in Sources */, - E75C94604E94640E41CA347FFAB5C2F4 /* RNSScreenContainer.m in Sources */, - C433D9BFB557D2CB94C9E5C56C02B9EA /* RNSScreenStack.m in Sources */, - 4BC5E7CBA958E6040BC3F690E01EB1A6 /* RNSScreenStackHeaderConfig.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 31BEF1753048A4A40945BE9582F700C9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -15317,12 +15367,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 33B30112B403F5FC31F7CAB93055E13A /* Sources */ = { + 34D6FB09B9A153DFB142520249252DDF /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 060B79A9DAA85BF0C19DEF7BDA812149 /* Orientation.m in Sources */, - 89716308A515DC8796C6BEE0B1B84F9F /* react-native-orientation-locker-dummy.m in Sources */, + 370602F9F9A66D35B13D9C4A36207F34 /* RCTVideo.m in Sources */, + 307C191B1E19D8726AA196CBA0D7F975 /* RCTVideoManager.m in Sources */, + 7B6D7E96FAE6733EB092F5A509AA7559 /* RCTVideoPlayerViewController.m in Sources */, + B173F07AB3C49CC5EDAEF3E1627EBBE2 /* react-native-video-dummy.m in Sources */, + 710D1AA1E1D6DE3590DCA2B1965678EA /* UIView+FindUIViewController.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -15335,23 +15388,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3701D7C50FE560265037A7B263911589 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 6809B781E3E6D706BE28D2E09354D0AE /* react-native-background-timer-dummy.m in Sources */, - 236E399D293966ABFDE07A97CD317408 /* RNBackgroundTimer.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 37783B3DCCC9B9BDF967BC8DED0C644C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4F282ECE770EF002727058F2252B8E13 /* Pods-RocketChatRN-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 39CBF7EC1CEAC343F17B5AE1E5BA0F6C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -15363,29 +15399,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3C3884AFC7E0217A298F0CD4FC3C065D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 27216859EDD22BD1689E1C2DEFF48D60 /* CoreModulesPlugins.mm in Sources */, - F50ADE542A4B8995FA9B0C98A4A0E26D /* RCTExceptionsManager.mm in Sources */, - 20B9C4936CD8E22A195DF799E0B85E74 /* RCTImageEditingManager.m in Sources */, - 5581C8DF493672C06E5DBF40C2680682 /* RCTImageLoader.mm in Sources */, - 866C0CCA1929E5DB05B40CE5564DDB3E /* RCTImageStoreManager.m in Sources */, - A08E5815667FFF84C4B9314B47BCA3BA /* RCTPlatform.mm in Sources */, - 5095F38E86E3067869CC90DEC11245CF /* React-CoreModules-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3CF3534567345F7C9471DF096A5E6888 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 211DDE9DD56CC6733F0430A7223DC11C /* RNVectorIcons-dummy.m in Sources */, - 30FE11C29AE90CE864F21AD66E7CFCB1 /* RNVectorIconsManager.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 49A4AE781E724873DC0A94081E03AAB4 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -15397,17 +15410,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 49E1E43B4D587105CBC3D93875048028 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - A7982DB633C44B2D35E1D3F0B09526CA /* Compression.m in Sources */, - 527705F88D117C65FFB37AB75410B537 /* ImageCropPicker.m in Sources */, - DBE32DD037F6EECADA5D0049AEE5C324 /* RNImageCropPicker-dummy.m in Sources */, - FDC8397D99A70AEC579195A65733AA72 /* UIImage+Resize.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 4C48EFEED225B64B71DE6B6308566C6B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -15445,35 +15447,12 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5067E76A80F438E8847193348D6B4BD5 /* Sources */ = { + 50F3AA5326AE3E3ED9B736F0A1FF5E63 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 1ED696DD2AD45B06038BAB216CCF6317 /* RCTConvert+REATransition.m in Sources */, - 29B83C0236039A7D69AB5AAAB1F786DB /* REAAllTransitions.m in Sources */, - 092419AE210B14305B10A96E94C0CB62 /* REAAlwaysNode.m in Sources */, - 2E3DF252F2F3F954DA657CD84427E2A0 /* REABezierNode.m in Sources */, - FC86C666D8953DFBB2A796F7A014CC0D /* REABlockNode.m in Sources */, - 619316441ECB638999898C69DF3DC97C /* REAClockNodes.m in Sources */, - 86895B29F6437357E34F336C11FE57EA /* REAConcatNode.m in Sources */, - CF776A5D0310FE6150530DB1F5AB089C /* REACondNode.m in Sources */, - 052C7E655EC4C8B8B4FBDCEC8428EE67 /* READebugNode.m in Sources */, - 353B64763D9B3735FE494477258E3606 /* REAEventNode.m in Sources */, - DE65FE3DA96EAE602A2F126B2F14BA77 /* REAJSCallNode.m in Sources */, - 0E4D64FE8295828E255202DFD6E0A945 /* REAModule.m in Sources */, - B3C9CABE9208309E247C6061E782E960 /* REANode.m in Sources */, - FEC667E36C201D66E7B3E44BA18F54EE /* REANodesManager.m in Sources */, - 48D877C4030394DDCFA78E867E8644B0 /* REAOperatorNode.m in Sources */, - F281992CFE9D066B195FADB83DF58D72 /* REAPropsNode.m in Sources */, - E78696D4D8178B630166499016C8D08F /* REASetNode.m in Sources */, - F82C9031DA63FF66F34349E52EFBF2E1 /* REAStyleNode.m in Sources */, - 41845E0555B416B57A575BA1BE9E1A16 /* REATransformNode.m in Sources */, - E09821266E1A0D192A7E389A521B1649 /* REATransition.m in Sources */, - E8B2AA0916CBE14F3011D54182D2B3D6 /* REATransitionAnimation.m in Sources */, - D8A369D660B6AE483398E45FEF78C417 /* REATransitionManager.m in Sources */, - 59E39E0543B144729F52E70981B82844 /* REATransitionValues.m in Sources */, - 4E73DD23B58D90E711DFDD53868A988E /* REAValueNode.m in Sources */, - EFE2B5EE9C59B314F2A24A7D475D9FDF /* RNReanimated-dummy.m in Sources */, + 89471DD9DFAFBF2E8502A47E8AFA7F2D /* Orientation.m in Sources */, + B735D33E82232BAADEA15DD0F051EE3A /* react-native-orientation-locker-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -15508,6 +15487,29 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 59CDA7CFEF96EF5567A31B172F866005 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 25F0EC1D0FACC00B8FF8B3587474A44A /* RNFlingHandler.m in Sources */, + 1EA9DAE1E5419117A8E0B03BEDD6725B /* RNForceTouchHandler.m in Sources */, + DA1B7D5781D93F355BACA6005BBE07F5 /* RNGestureHandler-dummy.m in Sources */, + FC953880736897111DBAE679D4EE12F7 /* RNGestureHandler.m in Sources */, + EDAD29849EC4BA25968338EEA0434F9F /* RNGestureHandlerButton.m in Sources */, + 6B0FB5C5FBD73568528A79DA5D6CC0DC /* RNGestureHandlerEvents.m in Sources */, + B25AE14A7ECFC93FA1DC0A45FCE6C031 /* RNGestureHandlerManager.m in Sources */, + C94F7C271BCB9B327F0FB99A429A4E89 /* RNGestureHandlerModule.m in Sources */, + 3C4730509A5CC5E58F08CB2DE9BCD1F9 /* RNGestureHandlerRegistry.m in Sources */, + 916D73A52FA1B267D625DD6FE9738F59 /* RNLongPressHandler.m in Sources */, + F57110F4F92432F954465B13E7DD5C12 /* RNNativeViewHandler.m in Sources */, + 27BD52C61D7E2DA7685DD3B2D88F848D /* RNPanHandler.m in Sources */, + F5F03C95EFB95430D346E71A8DFB4CD4 /* RNPinchHandler.m in Sources */, + A32BBFF4DB4116EBD11D77147C802EFF /* RNRootViewGestureRecognizer.m in Sources */, + BDFA16C06AB2DD941EFB13062F61CBF1 /* RNRotationHandler.m in Sources */, + 1481494EDD4052E8FF5B15A233E6D399 /* RNTapHandler.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 59F97D89BBC2B90F1CBE80A4C710B6F0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -15630,6 +15632,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 5BFD334766F162C2A9E830B56C9C42A2 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 3836F061152140901DFD6A6DA5655FB0 /* react-native-background-timer-dummy.m in Sources */, + 464EC1A02E9BD7071207DE77510DC676 /* RNBackgroundTimer.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 5C64A6B2A994E17969AD615953A94573 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -15794,12 +15805,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6B0C1BE6B0F6DE29D2B5482893FB9A65 /* Sources */ = { + 617D81BDF383885A47359D09DDEC4992 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FA7165EDC42C7CD4ABA0BB46E325587D /* react-native-document-picker-dummy.m in Sources */, - EA6DD93E8511B69033958A82AD1B3B3B /* RNDocumentPicker.m in Sources */, + D44FB64DE7B5EF050E7271802BD20AA7 /* QBAlbumCell.m in Sources */, + 6E840F4C79CEEE460DDC5109D3B3AF45 /* QBAlbumsViewController.m in Sources */, + EC543EC5B21A52160BA6449A6B6CA5C6 /* QBAssetCell.m in Sources */, + 6B3F86C7245E0113D127702359D44153 /* QBAssetsViewController.m in Sources */, + 59BC2BB8CF6D8153AD31FDA427AADF47 /* QBCheckmarkView.m in Sources */, + 861AD5FADB4318A970D0B355F05F1504 /* QBImagePickerController-dummy.m in Sources */, + 0F2F5C8B8BB50B13227932918434629A /* QBImagePickerController.m in Sources */, + 979A16BE12A028FC693C00F92F1CAA4A /* QBSlomoIconView.m in Sources */, + 6EFF33DF0738A75F1F72C5D212E3DC5A /* QBVideoIconView.m in Sources */, + F2BE76D646E0AC0D7724EF16F4A973D0 /* QBVideoIndicatorView.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -15826,13 +15845,36 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 7067A47B1E5E6C45935D40F14A16D08E /* Sources */ = { + 73DEF262D1315CC20633DAA45D39D008 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 64F13D1B302632D222822F3C514FDC11 /* react-native-jitsi-meet-dummy.m in Sources */, - F7CE30B9E0B7EAD7FE176126E579DFA3 /* RNJitsiMeetView.m in Sources */, - 400ED15DD9A0F8BDC94B1E5F8D6D226E /* RNJitsiMeetViewManager.m in Sources */, + 4FADCD0F19292856D2A3B1CCB165E3E8 /* RNUserDefaults-dummy.m in Sources */, + CAD2DA1F3EBD1737A6677D85D057C5AC /* RNUserDefaults.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 746BE0834E504A0CA7A90475C59E2F90 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 1E5C9F90319FF30D80CC01B98A0F6BF4 /* Compression.m in Sources */, + 6B4DE1332C6E3415912E2723AD0C8428 /* ImageCropPicker.m in Sources */, + CB1127A963A8B8B8A7006A4BEDA0CB96 /* RNImageCropPicker-dummy.m in Sources */, + 750445F46773F685888B491894342E73 /* UIImage+Resize.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 76C92CB72896C5F3FFA8182B3BB82C5B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + A2731A2BDC9E3CAFFCDFFF458C9E217F /* Color+Interpolation.m in Sources */, + 52D19B84EAB5676DE560415C5940D079 /* LNAnimator.m in Sources */, + 79D6BCACE308123623DCEDDC3C0657A7 /* LNInterpolable.m in Sources */, + 53C7E1D208026402F3066EC9DF53854E /* RCTCustomInputController.m in Sources */, + 8C4F376F739E89A46CCE0F967F7186BC /* RCTCustomKeyboardViewController.m in Sources */, + FB91E8EA3C00D225E847880EE7B938D6 /* react-native-keyboard-input-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -15845,6 +15887,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 7A5BC83C95BCB2A8B4EBA5BC74F4AECB /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E225D220CEF7A3F1FDA6CAC3F48D1E10 /* ReactNativeShareExtension.m in Sources */, + 824551D5BAD59295029E27B9A70093C1 /* rn-extensions-share-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 7CC4175AA9306CD767060CC0691A4CD7 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -15860,15 +15911,18 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 7D2AA306A4DA1C77B19E690681991F03 /* Sources */ = { + 7FC20997A0A8E974D9BDEBCCF6106873 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 89A5DDD772F5F5BC15BCC1F33D69CB2A /* FFFastImageSource.m in Sources */, - FB814C556811B81A0CAAAF9564C02944 /* FFFastImageView.m in Sources */, - 6E4F89D9463F896F4F5787ABCD6863EF /* FFFastImageViewManager.m in Sources */, - 42F41D4C9215AB90B9B4616C992F8912 /* RCTConvert+FFFastImage.m in Sources */, - F5C02B679C0AD29B90D01D9FF039242A /* RNFastImage-dummy.m in Sources */, + A96FA15E11B98C646107DC5609E0F4A3 /* rn-fetch-blob-dummy.m in Sources */, + B0F8F4E86DC43568E124BF8E900D2F0F /* RNFetchBlob.m in Sources */, + A372C765DE4CBFD1344C138500A06EB4 /* RNFetchBlobConst.m in Sources */, + 59FD6B6A1791BB16C48F39899F222942 /* RNFetchBlobFS.m in Sources */, + 345FB327D7687EBB3599426A999F58AD /* RNFetchBlobNetwork.m in Sources */, + 694CDBD8C5C7739593F5A7D97CEDE52A /* RNFetchBlobProgress.m in Sources */, + F8428662653BA46C4A68322073B318B4 /* RNFetchBlobReqBuilder.m in Sources */, + 6C59392078048DE794D920563A59AB98 /* RNFetchBlobRequest.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -15886,18 +15940,122 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 86C54D3FAD2582EFE13714DDD03F409B /* Sources */ = { + 865089E4F9B37969274CE2EB41814694 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - D5572CC55E6427EC870C39658169805C /* rn-fetch-blob-dummy.m in Sources */, - 5B656C335214338E0EA8A136B0259BE9 /* RNFetchBlob.m in Sources */, - 31A5B7E4D5990727852E4C87C3E24560 /* RNFetchBlobConst.m in Sources */, - B0A3F483128FAD74460167950CF0D0EA /* RNFetchBlobFS.m in Sources */, - DE2F243B432151D971BF545FB301F01D /* RNFetchBlobNetwork.m in Sources */, - 2F979FECCC508F429C6897CC838658D7 /* RNFetchBlobProgress.m in Sources */, - E0AB925B6B7761B751256321B9AC8B75 /* RNFetchBlobReqBuilder.m in Sources */, - D8A9913834475B0486BAAE2F82D0ACE1 /* RNFetchBlobRequest.m in Sources */, + 55E56EC45C50AA844A3069C8DDC9F97D /* DeviceUID.m in Sources */, + CF209A2048CD520F7E9220E28AFFDD37 /* RNDeviceInfo-dummy.m in Sources */, + B452FCB6AFFA2A25D237085FB920EBAF /* RNDeviceInfo.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 88C410A96C212A7011CDC22EFF6B6E55 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 897F9F02A17FA8FB1DC221C47990E6AF /* BannerComponent.m in Sources */, + 7F53B050911BF480CCE8838E0529058B /* NativeExpressComponent.m in Sources */, + 0628597CCE24D4CEDD48A6906DE6AC3C /* RCTConvert+UIBackgroundFetchResult.m in Sources */, + 6241B607E1842345778FCF0C8340A143 /* RNFirebase-dummy.m in Sources */, + 81280D0F07540993A5D89B8C4B1A4559 /* RNFirebase.m in Sources */, + 573E6E4335B9806D0D6866710250F1AB /* RNFirebaseAdMob.m in Sources */, + 8CAC181D3BCD54B1015A2AFB60308F4D /* RNFirebaseAdMobBannerManager.m in Sources */, + 65AA8934E1D3A4B1D720679F82851C20 /* RNFirebaseAdMobInterstitial.m in Sources */, + 9C13E06E4E2F628D53B3AE58B44DA9F2 /* RNFirebaseAdMobNativeExpressManager.m in Sources */, + D43D0DDA67795E56C54E69AEDA13DEF4 /* RNFirebaseAdMobRewardedVideo.m in Sources */, + 54FF451DA6ED5B34915AF1B79614F61D /* RNFirebaseAnalytics.m in Sources */, + A9979A458B6570F794BBBF11D3C7203C /* RNFirebaseAuth.m in Sources */, + A0233EA52300499F172D67F50DC41886 /* RNFirebaseCrashlytics.m in Sources */, + 08AD55CA29C4544D0A40BEE7A79A1A29 /* RNFirebaseDatabase.m in Sources */, + 5513B1EA3D98AFBCE340771D6D252C5E /* RNFirebaseDatabaseReference.m in Sources */, + 562BDDD05D4E62786A3828EF0DEA5F30 /* RNFirebaseFirestore.m in Sources */, + E495E66150F419A7860B54449A8F5828 /* RNFirebaseFirestoreCollectionReference.m in Sources */, + F8FBF4392914A778E4F08331750E474B /* RNFirebaseFirestoreDocumentReference.m in Sources */, + 0E744D13D1ADFC888662BFF0E97F4099 /* RNFirebaseFunctions.m in Sources */, + 93B16D78FDE6086CEB3336069148AF5D /* RNFirebaseInstanceId.m in Sources */, + 3B28F7A9086B9800E70AE4C993021AB5 /* RNFirebaseLinks.m in Sources */, + B5A3D1D62502E51CEB944C5C4F406C2C /* RNFirebaseMessaging.m in Sources */, + E8BAE480F71EDE374904B064547CF331 /* RNFirebaseNotifications.m in Sources */, + 6A876F2501554B8E7FE40CB55A1D2E88 /* RNFirebasePerformance.m in Sources */, + E34FF7243433E4AA97AA9DDDA2C9E262 /* RNFirebaseRemoteConfig.m in Sources */, + EE3ECBDDA8E3D8E136B172138E7F53EA /* RNFirebaseStorage.m in Sources */, + 650CE7F03474C6BC07EB552CC807C8C3 /* RNFirebaseUtil.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 88EC7AA8482C93302CE7C8BB242D9F20 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 10FE04115C606E91D47A2B6D03C209CD /* react-native-jitsi-meet-dummy.m in Sources */, + AEC5875F3240B7BFC3CFD21423E02AF7 /* RNJitsiMeetView.m in Sources */, + 1FAFA4A242C86C00139F2873C8A6F0E0 /* RNJitsiMeetViewManager.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 8921F9C3FA66E0A3D160C0C428806FE9 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 2E8DC07931E77D5FEE7E8C0E393E4A42 /* FFFastImageSource.m in Sources */, + 67DB419E1DF0139827A26AB4E6E0CCEA /* FFFastImageView.m in Sources */, + 035BAB003C41D6486BAD0B624B59B947 /* FFFastImageViewManager.m in Sources */, + 31B1132C57ABDAE141CE53C84AE787AE /* RCTConvert+FFFastImage.m in Sources */, + A1D65100F35FAA829CF2FA5D09859649 /* RNFastImage-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 892544E71B7C08D82EB0267A88962549 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 702FADAC9C38649FC1946E4A265CED4E /* KeyboardTrackingViewManager.m in Sources */, + B65816D07C5EADBF96ED3BB03DD3CE4F /* ObservingInputAccessoryView.m in Sources */, + ADCF3637970773F99D4D3AF15CCB8D60 /* react-native-keyboard-tracking-view-dummy.m in Sources */, + 3B16A1E046147D3CF69CED6A4DE41137 /* UIResponder+FirstResponder.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 8FBD56A992D9256D5599180DBBB5D115 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + F76F6EF04BAABDAE549F0C2FBB07EEB4 /* RCTConvert+REATransition.m in Sources */, + 57E6B13C2FB9BD0AA09F30F3AB789AB9 /* REAAllTransitions.m in Sources */, + 1ED73C11ED950ECD0A52C5CFBB8EF29F /* REAAlwaysNode.m in Sources */, + AE6CE0B10CBBF6DC3BB9C6994E3F4B6D /* REABezierNode.m in Sources */, + 742AC97756135940B461FAC35465A702 /* REABlockNode.m in Sources */, + C0B87D1CD0BB2ADF279A46728DCD28F3 /* REAClockNodes.m in Sources */, + 79737FB10F0AE7E3362406822FB93125 /* REAConcatNode.m in Sources */, + FC5846016CBA1D120D26D1511411E46D /* REACondNode.m in Sources */, + 7CF092863CB7B6F7BA75E8B05587746A /* READebugNode.m in Sources */, + 788CE2762909EB513B02A469D8AB58FC /* REAEventNode.m in Sources */, + 150DD41CC78D385EDDDD371214E6ABA1 /* REAJSCallNode.m in Sources */, + 88FD78AE2126F86D1D08A12C917A2EA2 /* REAModule.m in Sources */, + D487A224E92EEC34B054B73878BA05AA /* REANode.m in Sources */, + C611C2A06B89F5C33BB025FB685A293D /* REANodesManager.m in Sources */, + 4D663608DBF9A095CEECCFDAF9496F03 /* REAOperatorNode.m in Sources */, + 17F6A2C83EDB32F5E52D6873682BB408 /* REAPropsNode.m in Sources */, + E9C82F606B251E9AFD6FA23CC30C8AF3 /* REASetNode.m in Sources */, + 76A27195FF3550B798942D53EA975E3F /* REAStyleNode.m in Sources */, + B8790CB076B823D920934CAF2D3D7CBF /* REATransformNode.m in Sources */, + 1F9D18C12556EF7C4A3DEEAF8AA30A59 /* REATransition.m in Sources */, + 3D18E52799609F4D00B71C0CA41C68B6 /* REATransitionAnimation.m in Sources */, + 496D5A3AB9136A6E999EC4DCCA8CAC6D /* REATransitionManager.m in Sources */, + 79CF67734B6FC4A68E93D15EAA40220E /* REATransitionValues.m in Sources */, + C8D960D2C67BB7AFA6C091882443C3DA /* REAValueNode.m in Sources */, + 61CFB11BBCB63EC460F1717EA592862C /* RNReanimated-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 956B37546144660506A164BBA8B18EF5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DB3EF78E8A1C5FA481BC90B12540EE6A /* react-native-safe-area-context-dummy.m in Sources */, + 0A75E23BCE06ED1549440110ACACA771 /* RNCSafeAreaView.m in Sources */, + 7879D11A9D370629FCD0CC08EDE65BC6 /* RNCSafeAreaViewManager.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -15910,16 +16068,18 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 95C0B87B2A8A63B9D297C1AAE3B31E39 /* Sources */ = { + 95E017DB1A4DFB3F18588FD85B282DB8 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 049914E65E95C9AD5F4DBA1BDF5954A6 /* Color+Interpolation.m in Sources */, - 120B444553614F5C8BDCD83D8B5D53B5 /* LNAnimator.m in Sources */, - 6CF7CF2BB5125BB7D5A6F17E35F7DB4D /* LNInterpolable.m in Sources */, - 96FCB6620F11BF5DCCC383E13F70DD53 /* RCTCustomInputController.m in Sources */, - 2D148CBAA6A993D9F7BAD0FB0117C825 /* RCTCustomKeyboardViewController.m in Sources */, - 27FA5651A76E722AF28A42B374C31FA9 /* react-native-keyboard-input-dummy.m in Sources */, + F7F2EB9C8FCE88EEC914C520A3B059F0 /* CGGeometry+RSKImageCropper.m in Sources */, + FFD180C76C61F0D0080F0C85A50FC644 /* RSKImageCropper-dummy.m in Sources */, + 5436A663AB816B809393EC6BDC059D8E /* RSKImageCropViewController.m in Sources */, + C2192739C101151181B60E4F7AB59930 /* RSKImageScrollView.m in Sources */, + 3B1278C079FD1A3DDA55F93154AF9CE8 /* RSKInternalUtility.m in Sources */, + B90C5C0F65B7E3A8A3496E443FB57223 /* RSKTouchView.m in Sources */, + 94A1F2AAC597C0B0F4D10AB57823C7A8 /* UIApplication+RSKImageCropper.m in Sources */, + 33FE7CF4869D3175998CCA4AA3AEE9F0 /* UIImage+RSKImageCropper.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -15943,43 +16103,12 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 99123AED188E61A5FE120ACF52AAC663 /* Sources */ = { + 9B440D5927DE2B7C2BE9CA826C078C90 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 45A60C2FC8583388B242FA0E80BFBB86 /* ReactNativeShareExtension.m in Sources */, - 3FD0C85322B29C7182BF529764E0F138 /* rn-extensions-share-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 9F6510A33F2CAC1EA515205E4DAFCEF3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - CA29FAFEE2943B85A420B91A6EF02240 /* RCTConvert+RNNotifications.m in Sources */, - 5AF16C42FE4B884F2852F851C5C8766A /* react-native-notifications-dummy.m in Sources */, - AA5B9D0DD16940B77F4721085C9ACB50 /* RNBridgeModule.m in Sources */, - 543C74A84012EFB1CA0B167C67490B92 /* RNCommandsHandler.m in Sources */, - 3287CFD243A6308384817B1B6CDAD373 /* RNEventEmitter.m in Sources */, - FCAAECF593AA7845E10855B364B8464A /* RNNotificationCenter.m in Sources */, - 0CD8F6C4A1BDD7BB190E2C33A9B3C8F2 /* RNNotificationCenterListener.m in Sources */, - B5BA092A1B9CE09C508B93055433AABC /* RNNotificationEventHandler.m in Sources */, - C5F7B297E0ECFAB048351A24CD44CA32 /* RNNotificationParser.m in Sources */, - 6E090D5A706D57BC43253E8393E17FA3 /* RNNotifications.m in Sources */, - 777E12965D6624DCF1FDFB8F5C558CFE /* RNNotificationsStore.m in Sources */, - AC00F1CF3C1199A7E7E7D95E1453B4B5 /* RNNotificationUtils.m in Sources */, - 0CDC3942B6E11E3375B3263165EE5448 /* RNPushKit.m in Sources */, - 1193F5ED3459E5A83ED7C838B447857C /* RNPushKitEventHandler.m in Sources */, - 8300E2892C39F51ADA2B78FBF554160C /* RNPushKitEventListener.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 9F8282FEBDAA576BADC410B0D6034E60 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - D5B631AEACDEF391D28BCE06F05CABFB /* RNUserDefaults-dummy.m in Sources */, - 8A854E07076B55A5DF71A9116BCB4B46 /* RNUserDefaults.m in Sources */, + C391FF014019CFA849DE6636F1E38016 /* AudioRecorderManager.m in Sources */, + 5665B624C89B3EEB758C0AEE3327A977 /* RNAudio-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -15992,6 +16121,28 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + A2629FAE63E512107FC948FD7E20C7BF /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 499C7A83E0AB26975C0CFA1AA13DD8B4 /* RCTConvert+RNNotifications.m in Sources */, + 7A9957A725425AA5E6530263A7653A4B /* react-native-notifications-dummy.m in Sources */, + E01EC29BA1FCDD8A43360748A02DA42E /* RNBridgeModule.m in Sources */, + 036E3D195E196FD8B7C55D020FFBF451 /* RNCommandsHandler.m in Sources */, + F5C3ACBFBFE117FA0E1C4930A3C5452D /* RNEventEmitter.m in Sources */, + F6F6FA01EF33D0CFB2D5180D96D2C26B /* RNNotificationCenter.m in Sources */, + 2A67C8FF4132A00DAAA99DBBCE50D413 /* RNNotificationCenterListener.m in Sources */, + 500E7C4AC6AA0AD47FBFEA9D84B73368 /* RNNotificationEventHandler.m in Sources */, + F577DC8822344F6D392B9F105C39CC24 /* RNNotificationParser.m in Sources */, + 4D19E59DB8097E74592AB77423038F1E /* RNNotifications.m in Sources */, + D0686181820E61D68086E78EFC94D050 /* RNNotificationsStore.m in Sources */, + A834C5CEFF575724D50EA68CAFF91810 /* RNNotificationUtils.m in Sources */, + C9D5D405DB6E32722E9B718D5ED7F70F /* RNPushKit.m in Sources */, + 97AAE6EBDAAF74140D47F217CFA9D47C /* RNPushKitEventHandler.m in Sources */, + 9324B5F7D5C79C133159F2D0BFE86D94 /* RNPushKitEventListener.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; AC62277605943194DBA7373B1710D840 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -16022,6 +16173,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + B483382C931FB384BDAE7BDAF9CD0334 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 80B866A62687B098C6110AC7674044D3 /* react-native-document-picker-dummy.m in Sources */, + 9E3BC2323DE9A5726E003C9B8E37F38D /* RNDocumentPicker.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; B53F6EED305935D2B2365FE6336F4F34 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -16035,12 +16195,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - BA4A5AEDCE42C428D9DE0DC0E6223E77 /* Sources */ = { + B70A05E9A60FC2F7137C16C2D1FA2EBB /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 5423945AB807C0CB95A554FC48CEE232 /* react-native-splash-screen-dummy.m in Sources */, - 6B6093789F5E10E5E7C41FBF18780593 /* RNSplashScreen.m in Sources */, + 1AD2F9639AEF37208F85614A530979D9 /* Pods-ShareRocketChatRN-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -16053,15 +16212,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C232004C656D2D13EA87578DA792D011 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 6474EF705A6CC0C0ED44174986C841B7 /* RNLocalize-dummy.m in Sources */, - C78286EAD4DFFDDB0C95BE21B68E8CF8 /* RNLocalize.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; C620F43B78B9818A930376DB41E03A86 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -16078,6 +16228,70 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + C8E970643E90FAE9ECAD1D61E324A7C0 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 49FC9295E8DA1628C49414E014036AF5 /* NSBezierPath+RoundedCorners.m in Sources */, + 0767883E926999A38DD09F1B31601ED0 /* NSButton+WebCache.m in Sources */, + 5A2EAF6E84881A8CD6CC43399AC33EE7 /* NSData+ImageContentType.m in Sources */, + 5B401215D957C168380D28B66C0BED02 /* NSImage+Compatibility.m in Sources */, + 27BC747948E221653E00E2AA30E29F5C /* SDAnimatedImage.m in Sources */, + 21C9F890E3465126B7CB5ACF71473C4B /* SDAnimatedImageRep.m in Sources */, + 5DF08FC5235A3324DB8150217C87F893 /* SDAnimatedImageView+WebCache.m in Sources */, + E37786E2AA9464D3252BBE823A7E8EEF /* SDAnimatedImageView.m in Sources */, + 79AFA010B81BF7B09AD16C1FA5FF89D0 /* SDAsyncBlockOperation.m in Sources */, + 3CA52FB02D17B796734ABDFACB3833D8 /* SDDiskCache.m in Sources */, + E35D4E6EF08A824676DB7E92D68C1E82 /* SDImageAPNGCoder.m in Sources */, + A01EE4DF6EDCCA9BCF3E5FB9DE797139 /* SDImageAssetManager.m in Sources */, + DEC9F2380E88CC59E55679D24798D639 /* SDImageCache.m in Sources */, + 49909BFA0C0B26F9A23A48A6B9EAC240 /* SDImageCacheConfig.m in Sources */, + CB948F430FFA0D05096F036A65DDF47D /* SDImageCacheDefine.m in Sources */, + 030E485758D5700A45E96553565C05AF /* SDImageCachesManager.m in Sources */, + 9DA57D3AFF7F4F1D1950531959A36DF7 /* SDImageCachesManagerOperation.m in Sources */, + 745908BE4109479FBBF9516820E116C5 /* SDImageCoder.m in Sources */, + 35583B951B32929BA271FA0BDCFFB906 /* SDImageCoderHelper.m in Sources */, + 2CC6D6AD2671C563A0E0574A57B12896 /* SDImageCodersManager.m in Sources */, + BC8F5C98F8601EFE16EA2CF4B8D92476 /* SDImageFrame.m in Sources */, + 6F7C5EE26D693255BC5B592724D6FF4F /* SDImageGIFCoder.m in Sources */, + 4C4680691281C380B7173DDCD227406E /* SDImageGraphics.m in Sources */, + 01EF6EF51A89D2749AED0E9049BAAE8E /* SDImageIOCoder.m in Sources */, + BA0336AC9891C2DB111855C7BA5F3C0D /* SDImageLoader.m in Sources */, + 96C66E18E4BE885E8B442EF149A77E6A /* SDImageLoadersManager.m in Sources */, + 34DE9849D2ED1E85F38BE19FEA1F93F7 /* SDImageTransformer.m in Sources */, + 93942B64443805E66FC19E382EBE6BEC /* SDInternalMacros.m in Sources */, + B254218CA562A970C477A3A91D343A27 /* SDMemoryCache.m in Sources */, + 4F274DE8F89AF1DC42659D47567B866A /* SDWeakProxy.m in Sources */, + 499A7E13ED38C975FFE972CEF404B7FB /* SDWebImage-dummy.m in Sources */, + 5FB0447FFFE66F36BD117697D1B3CC4F /* SDWebImageCacheKeyFilter.m in Sources */, + 4541E33CA9F9963FA1518089A1C4A3AD /* SDWebImageCacheSerializer.m in Sources */, + 085A2788F026DC4B6A30EE969E2705F5 /* SDWebImageCompat.m in Sources */, + EBCC5E2232DF3060B99F3681CD15067F /* SDWebImageDefine.m in Sources */, + 904EF2792735DA3A0377963CF5344EE1 /* SDWebImageDownloader.m in Sources */, + AD037BA860C2D671FE120400CB68A798 /* SDWebImageDownloaderConfig.m in Sources */, + 966D57E6283EDA3DB6887FC4C61F115F /* SDWebImageDownloaderOperation.m in Sources */, + D234F53EB537C06EC1ED1BE979829EAD /* SDWebImageDownloaderRequestModifier.m in Sources */, + 6A3EAAE3311752E4519DD5147EF2F4A1 /* SDWebImageError.m in Sources */, + D0E49496CC8E3693A8C4B9444EA8868F /* SDWebImageIndicator.m in Sources */, + 4FB44D1A3BE2F3340B4DB9EDE069A24D /* SDWebImageManager.m in Sources */, + 70760885BA69747C330E07E0BC80A28A /* SDWebImageOptionsProcessor.m in Sources */, + 162EDCFB85CDF68BEBB035E989351A11 /* SDWebImagePrefetcher.m in Sources */, + 6DDABA35028827F57A2C3549E2EF7699 /* SDWebImageTransition.m in Sources */, + 3035670AFA8429D8517933D10EB86318 /* UIButton+WebCache.m in Sources */, + 1D41251262AD285734A876F515BE6267 /* UIColor+HexString.m in Sources */, + 7006385B1E3B6389DD585D0B8AE7704F /* UIImage+ForceDecode.m in Sources */, + 2C6FA3B1D3D6FF2F6248928CAE7CF19F /* UIImage+GIF.m in Sources */, + 3B8A4388A01416C167B460688A670EB5 /* UIImage+MemoryCacheCost.m in Sources */, + 44E0AA7DC5388A98B22692C0F928BD5C /* UIImage+Metadata.m in Sources */, + 39ABF66F1A41BA69E07D72F892F4AAA0 /* UIImage+MultiFormat.m in Sources */, + CE8571E993F17DBA1BCCD82FC78157EB /* UIImage+Transform.m in Sources */, + 2083DEE86E2846EB49E10483A1D84205 /* UIImageView+HighlightedWebCache.m in Sources */, + 70BF09779782416B25D6D16203E6E1BA /* UIImageView+WebCache.m in Sources */, + 7D4CE95391C5664E3400049575CC10C8 /* UIView+WebCache.m in Sources */, + D66D9B7560F0FACDF1D4DC4E2950C328 /* UIView+WebCacheOperation.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; CA0FB66C62877F04817FE44FC751D4EF /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -16091,22 +16305,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - CA34C0DB168C744689A345899FB0B961 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - D841384CFF24EF48600419EDD4028A83 /* UMModuleRegistryAdapter.m in Sources */, - 1798CD9BDD33B44A297906040F08A8BF /* UMNativeModulesProxy.m in Sources */, - 7BB478A4CD99ADD3311CC7FE9BA90C2F /* UMReactFontManager.m in Sources */, - 84567489B64D38C3949918A3BC2C7EFB /* UMReactLogHandler.m in Sources */, - 8D9F73FCA17EBC74DD034C437BF3EEA1 /* UMReactNativeAdapter-dummy.m in Sources */, - 3282F4AA90089D1811FC0E58A6E6025A /* UMReactNativeAdapter.m in Sources */, - A0AC33EB183729791B9DCF48840B9E33 /* UMReactNativeEventEmitter.m in Sources */, - 8F8DF2AB391450AF3D2D985FE58263B4 /* UMViewManagerAdapter.m in Sources */, - 53A1C273FD8F443A816A12A4FC9907DC /* UMViewManagerAdapterClassesRegistry.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; D70D5356BA8A50A87DC4FCAF84E1EEF7 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -16127,70 +16325,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D7D4821F09082041E3B517AFD46F6E2A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 8290D0899E3D72166D1EB1C0DAAEA583 /* NSBezierPath+RoundedCorners.m in Sources */, - 8F598BDDC89938BD5CD65EBBF63288DE /* NSButton+WebCache.m in Sources */, - 3F9B89A4B59E207FC75B694B830FB31D /* NSData+ImageContentType.m in Sources */, - 5F42669A236645CA46122E4D0E5FF81F /* NSImage+Compatibility.m in Sources */, - 7F1C43BC8C681386B14A43D86DD2987B /* SDAnimatedImage.m in Sources */, - A53EC7CE8F548F3555CCAD984187D8FD /* SDAnimatedImageRep.m in Sources */, - A4D727E9415CB195975F272C0AD68D31 /* SDAnimatedImageView+WebCache.m in Sources */, - 14C9D8617BDB9C98C8B0B704309BE4E8 /* SDAnimatedImageView.m in Sources */, - 87009DD74CA4C1C0163A8EE3A26726FE /* SDAsyncBlockOperation.m in Sources */, - 3D0706A33F57E9BFB1A5C0F4C30C38C7 /* SDDiskCache.m in Sources */, - B58883761A246C8A2FD6BFEF4BD7CF06 /* SDImageAPNGCoder.m in Sources */, - F15C55D6FD680D88385C1C14E0E7B284 /* SDImageAssetManager.m in Sources */, - CF7D242A429C059ED8D340F6AEF5E1DD /* SDImageCache.m in Sources */, - 25DB5025EB1F4A185F3A4F285CA12767 /* SDImageCacheConfig.m in Sources */, - EC2B4E66863D0927738CE1D87AAC6525 /* SDImageCacheDefine.m in Sources */, - 6E3CC197DADDC170EBA29033A6EA3A27 /* SDImageCachesManager.m in Sources */, - 8015AD1F6017BBBD6D2B2F7AF5A56630 /* SDImageCachesManagerOperation.m in Sources */, - 79DE97738CF079179CC4FD917A6BF032 /* SDImageCoder.m in Sources */, - 44CA156A6C2E08A5E36A685C9B9A3A9F /* SDImageCoderHelper.m in Sources */, - A2E4E101249D54A5B681F2626A7F22EC /* SDImageCodersManager.m in Sources */, - E1752ECB36769F130B07EADF9973A2D2 /* SDImageFrame.m in Sources */, - DAB7B07E0B0FA6BB24C8EDE7F51EC1A9 /* SDImageGIFCoder.m in Sources */, - A4F00AD2992CB6CA59FCB589608C5E7E /* SDImageGraphics.m in Sources */, - 95F7FB66C4F21BB1779B050264EC5EB7 /* SDImageIOCoder.m in Sources */, - E09775A8B9FB0822D18D214BB5A04E93 /* SDImageLoader.m in Sources */, - F80867468952FACA6053FA8CED3D5A93 /* SDImageLoadersManager.m in Sources */, - 70AA17B10005054196FC7B841940EE9F /* SDImageTransformer.m in Sources */, - 7C356A6E1AD91EFA427CE11B30E8DE32 /* SDInternalMacros.m in Sources */, - 9345158D3817D800586341BC8FF90A52 /* SDMemoryCache.m in Sources */, - 8BAC915198C76060764432EC7D5D76A6 /* SDWeakProxy.m in Sources */, - BA6817D3B3F46CF3BF20A6BF5EF13860 /* SDWebImage-dummy.m in Sources */, - 954FAA11447755175B6B51D498CBF756 /* SDWebImageCacheKeyFilter.m in Sources */, - 482866F6BCCF09D242CA0A640C7ECE87 /* SDWebImageCacheSerializer.m in Sources */, - 1AA269A724F244D0618E3E8C50A1BEE6 /* SDWebImageCompat.m in Sources */, - D40336CAFE29EA9315EFC086C56C1ADB /* SDWebImageDefine.m in Sources */, - 056C0B9E5782A696F850E898A456DA96 /* SDWebImageDownloader.m in Sources */, - 6001D840D142F5DA98F3414A16AE55DB /* SDWebImageDownloaderConfig.m in Sources */, - 8380136AB55273398BA56CF399200291 /* SDWebImageDownloaderOperation.m in Sources */, - B96CA01A8E9D8453E2762316D66666E2 /* SDWebImageDownloaderRequestModifier.m in Sources */, - AC1FF736492260BBE0C5ACAD12BB2B5A /* SDWebImageError.m in Sources */, - FE873C965CFDB043904242376CDB4CE5 /* SDWebImageIndicator.m in Sources */, - 82B8D5F4A41602BBF90946E07B9F09A5 /* SDWebImageManager.m in Sources */, - C6BC3D436B27827AEAC0F7CFF90E8DF6 /* SDWebImageOptionsProcessor.m in Sources */, - DB06DDE39D440B19AAE6D720E8DCE215 /* SDWebImagePrefetcher.m in Sources */, - 05E3F1ED84051287AD1392065AC8D651 /* SDWebImageTransition.m in Sources */, - C36018DA6269EC71A36BDFF60765A3DF /* UIButton+WebCache.m in Sources */, - 43BFF7ACEE9D24F8D19609FDC1D3D2C7 /* UIColor+HexString.m in Sources */, - 60DA3DB696ABFDD01DEA38421A5BB3EC /* UIImage+ForceDecode.m in Sources */, - 0C93C55D6CE7AAA3812AB7FDD9C62D01 /* UIImage+GIF.m in Sources */, - 40CC21DAC1C1A534B291BAD77B13F403 /* UIImage+MemoryCacheCost.m in Sources */, - 2E52FF8FA66C58800C090D00337256E1 /* UIImage+Metadata.m in Sources */, - 9F6B46D47365580C8234D385118DB36F /* UIImage+MultiFormat.m in Sources */, - B784E1D1A5FE71DA118DCDCFAA47CA79 /* UIImage+Transform.m in Sources */, - A38AFB22CD5BB6723888E83712F97FBB /* UIImageView+HighlightedWebCache.m in Sources */, - F7239E0D63BB3F9D25253682BD674C2F /* UIImageView+WebCache.m in Sources */, - AC0B847E306B3BE7451CA34B80D57CD8 /* UIView+WebCache.m in Sources */, - F80D46665A750A51B0AAEE334DE788D4 /* UIView+WebCacheOperation.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; D89D7FE949ACB9856F33FBF82572B196 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -16216,6 +16350,25 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + DAF691605EBF4194F660E72273567E6F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 79FD2FCCEDDFE4D9D2A72C10CFFADBAC /* SDImageWebPCoder.m in Sources */, + FEAA132819DF88D0A05E67C065CECB2F /* SDWebImageWebPCoder-dummy.m in Sources */, + B7DB24D19932A889B74EF2FD1E1B0FE0 /* UIImage+WebP.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DC289AD4FA7F10C083E8800860AADD90 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B3CBBB770AB8BC92706790ACC6EF47BF /* RNVectorIcons-dummy.m in Sources */, + 140A6D88AD6F0C1DE3624A27BBF645F0 /* RNVectorIconsManager.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; E1DAA63CEC744B52ADD03E4D1B54981C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -16266,34 +16419,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F2801742BB0E3B4692E87239025FB360 /* Sources */ = { + F87C4008AD330350154ADB53EC2F760E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 2300DFBBEF16E2B09F2895DFDB925499 /* AudioRecorderManager.m in Sources */, - DF96C240FFB413BE3E3B0239B3AC1F91 /* RNAudio-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F3C5C16356EDDD86673C484434314E6A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 006030D03FD6CB5319A4550CBC368952 /* RCTVideo.m in Sources */, - 482879F2E897D6FC1F54D355D5759B58 /* RCTVideoManager.m in Sources */, - 29A5AE580C156F6FEDF0324BE27BBFDD /* RCTVideoPlayerViewController.m in Sources */, - E76FA799F90B1A9A107ED7DA42B69A59 /* react-native-video-dummy.m in Sources */, - D708A1E0590780EA89DED3FDD3C846A7 /* UIView+FindUIViewController.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - FD1D6B562AFA874AC99EE0D94944D6AE /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 7D194CF9568027FE9D8F64D92AC103C7 /* SDImageWebPCoder.m in Sources */, - EE8FC85778CA05C47444AC6B3FD2FF5B /* SDWebImageWebPCoder-dummy.m in Sources */, - 1A82C0D385B136B42F1151FAE70FDDC1 /* UIImage+WebP.m in Sources */, + 493F64F759D81AE9A475116A3A3F16B2 /* RNScreens-dummy.m in Sources */, + F999765612DB3891497F72A5AA83D9C9 /* RNSScreen.m in Sources */, + DFEDEAA531D040DF4ECDF860E01F909C /* RNSScreenContainer.m in Sources */, + 1394CAEFC6FED1CE6DADD27C7C2AEF96 /* RNSScreenStack.m in Sources */, + BD77D5AFD6CAAE0E4E9C3A6A2765F5B2 /* RNSScreenStackHeaderConfig.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -16361,19 +16495,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - FD9DD3C49783DB167B2F721FAB45EFED /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - AFBFD987525C17211186858162272071 /* react-native-webview-dummy.m in Sources */, - D4383BF3CA8D6EFA7B78FF902C4BAD7C /* RNCUIWebView.m in Sources */, - 9E6FAD142C6D05FE4CB70FD6B912C89E /* RNCUIWebViewManager.m in Sources */, - 9D7C8CAF0D2C4EE85FA801C666012CD7 /* RNCWKProcessPoolManager.m in Sources */, - E32CCC6CF90B1E28725BFB3EDE639C0B /* RNCWKWebView.m in Sources */, - 57BD26B8C4923141D4FB30D63DF34AFD /* RNCWKWebViewManager.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; FF89B28FF130D0B171E4A42D7303ACAE /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -16386,23 +16507,23 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 027B3C74FB2BF6DC42C9D045A83CC868 /* PBXTargetDependency */ = { + 001DB2F53886BE5985EC757E9AA72D3C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = 6DE003F64B133830B9AB9321298DAAC2 /* ReactCommon */; - targetProxy = 7B6B0D4D79C9E7B8D7A917D0E5C1A3D6 /* PBXContainerItemProxy */; + name = glog; + target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; + targetProxy = AC48FEBB52D12A4DB7022128ADBDCBEE /* PBXContainerItemProxy */; }; - 02D0B07AB2458D55012DA46855B665E4 /* PBXTargetDependency */ = { + 00FB4D5EAEE3EDC077333AF510C4C583 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Fabric; - target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; - targetProxy = 8131C1D4014C37C36210B0380550F043 /* PBXContainerItemProxy */; + name = "React-jsi"; + target = F7236D5BFD42DBEDF2652D4E47992BD2 /* React-jsi */; + targetProxy = 84BFFE86878148C363BA4ECAD3AE8E52 /* PBXContainerItemProxy */; }; - 03AE5A3FD852EDEFEC5B33FC37E88CCB /* PBXTargetDependency */ = { + 019C85FA2AF130027EBC24EE8672BCE6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 0D6E1FC5E9598A9C9EB5129FFD173A09 /* PBXContainerItemProxy */; + targetProxy = EB5A16B67059CE7155424CA5C3E7CD5A /* PBXContainerItemProxy */; }; 03C5D1361123B1B19A913F4F89661FDB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16410,11 +16531,11 @@ target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; targetProxy = 46123FA0B5C451A00D38BB12B40AD23A /* PBXContainerItemProxy */; }; - 0520D07FEEE16A8C306D27FCB0D7EC0D /* PBXTargetDependency */ = { + 04BCC6284447C14B179B401D20A1D271 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = 6D6AEAB3F5088F4B4EF5EEA6B011226E /* rn-extensions-share */; - targetProxy = 5C481DC35C5104BFF1B24C7BCB5A67B1 /* PBXContainerItemProxy */; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = B9FF4B3E76D6B77A39522A9F93F177E8 /* PBXContainerItemProxy */; }; 0555D1C625BBB49874C5D51A85239D93 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16422,41 +16543,47 @@ target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; targetProxy = 5D5E2D283A970E01BA8A2BC60FE99815 /* PBXContainerItemProxy */; }; - 057FFAB5B219D48F1810F4B950818FBA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNGestureHandler; - target = 2E17311CD8EACC16113C89390B6656C5 /* RNGestureHandler */; - targetProxy = 3C45494E6398ABDA3071AC476922C47B /* PBXContainerItemProxy */; - }; - 072771ED0F0BF7B9EF0D848CD905CB82 /* PBXTargetDependency */ = { + 0750AC27FD0B0B17F7A2BE051D9276B3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RSKImageCropper; - target = 48F9CAC66FE3C08FEE3ACAA5C6FEF569 /* RSKImageCropper */; - targetProxy = 4B9E64BF18FCEE3DDDB41F7359A090E5 /* PBXContainerItemProxy */; + target = CC0A7968B1F2981D99C33E73EDF48649 /* RSKImageCropper */; + targetProxy = 4D31CCF88BA59773ACEED418E398A10E /* PBXContainerItemProxy */; }; - 07EFB07AC81B19E2305B61526E01BA6D /* PBXTargetDependency */ = { + 07B8FFF440623ED894A18A825E7D03D2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAppLoaderProvider; - target = 4ECE1108F140208A729A83BC94FAA150 /* EXAppLoaderProvider */; - targetProxy = FC06AB32AE1F3A3316A4E05E560C5124 /* PBXContainerItemProxy */; + name = "react-native-notifications"; + target = 1837EDA22C2525E2325468D2A3635FE8 /* react-native-notifications */; + targetProxy = 41C0F89D5E19D40E3CA3B5E254C2D48B /* PBXContainerItemProxy */; }; - 080A35A159C3B508A84CC7E292E3D4D3 /* PBXTargetDependency */ = { + 084F03DBACD7C134D64D6F870AF43412 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 7135140B597489F3FE9D0A6D1FADD9C7 /* React-RCTActionSheet */; - targetProxy = A985AACDA6EF2441AC06D3C49AB117F4 /* PBXContainerItemProxy */; + name = RNFastImage; + target = ECC038491C39C430320C6C22527849A3 /* RNFastImage */; + targetProxy = AEB0662824D2EA16D2FB2BE5F593B99D /* PBXContainerItemProxy */; }; - 086E121C41AE3468D2B1E101ACD4E1B2 /* PBXTargetDependency */ = { + 08D7C48F7D43CFCBDBDDD7DAE2B73E9D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNAudio; - target = 68FD26CCB7EFC21DBD9D571910B36E1B /* RNAudio */; - targetProxy = 7FE66880FBFFA0BAE017E106EE878D7A /* PBXContainerItemProxy */; + name = RNFastImage; + target = ECC038491C39C430320C6C22527849A3 /* RNFastImage */; + targetProxy = D64D370CE939A63546C340056E26B943 /* PBXContainerItemProxy */; }; - 09BC1DE6A8CA479A2A66D9A7EADDCA25 /* PBXTargetDependency */ = { + 091023B980D5B54A6F2757A73196D511 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXPermissions; - target = E07EA1A35FBB3A986F484EB01CDD5527 /* EXPermissions */; - targetProxy = 2F72549D16F36B4D965166AA46FCBBEC /* PBXContainerItemProxy */; + name = "React-RCTText"; + target = E49E330A27425F89DE89516B2F50AAE9 /* React-RCTText */; + targetProxy = 98A5FAEA3A7F568CD1DEB51883EC00F7 /* PBXContainerItemProxy */; + }; + 0937EC2EBCEFA52508DA95ECBA72EBE3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCameraInterface; + target = C0257B2F2F50DB2D70283F07722FFD1F /* UMCameraInterface */; + targetProxy = 5593B70C401926F9E725DA0467F1DE70 /* PBXContainerItemProxy */; + }; + 09A565C8779B4AC2B990FBC272D7A04A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-jitsi-meet"; + target = E815F092E40E6946F21899111DA998C4 /* react-native-jitsi-meet */; + targetProxy = 1EFB07469F0AEE7595483DF16BDF16EB /* PBXContainerItemProxy */; }; 0A2175ED116FAC289DECBFEFE60364C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16464,11 +16591,29 @@ target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; targetProxy = 7886C00AD2D894DE9202D2ADC41E8DF5 /* PBXContainerItemProxy */; }; - 0C6C5DDAEE80DCC385083529759ED207 /* PBXTargetDependency */ = { + 0B74965BC395E1C7E7868249EFF99773 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsinspector"; - target = 115FC7605B6A0F6044A879F6EEB7DD99 /* React-jsinspector */; - targetProxy = BFAD2675D13C286993D52CD81BA6C41F /* PBXContainerItemProxy */; + name = UMFontInterface; + target = 2911DE646E6DFD9455119DA0F7248020 /* UMFontInterface */; + targetProxy = ABD4968BC6194A368022804A0B802B7B /* PBXContainerItemProxy */; + }; + 0CBE32ECB8EA7B9C5D6B22A6CB353348 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNScreens; + target = A83DA188DB8A2E365EC3B1FD19C9A3F5 /* RNScreens */; + targetProxy = 707BA1525056EDA8718BB22CFD1C1671 /* PBXContainerItemProxy */; + }; + 0CBE99199AA827073A09E1812BFC5B1E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 451A0CD65D681A20E22609DAAACD60F4 /* PBXContainerItemProxy */; + }; + 0CE98E4ABB9A04265B1EBE139102189E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 56875376478BEE542725C6B1269B0CB8 /* PBXContainerItemProxy */; }; 0D751055C363323C78854582E5CE9EEB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16476,6 +16621,18 @@ target = 1CCF1D06CCFE0D0AB787DF0923C94D79 /* FBLazyVector */; targetProxy = EE98A4C80DE900CD0C9ED8195B4EF52D /* PBXContainerItemProxy */; }; + 0E13C623784860EFA0970F9BAFBD7C5C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMBarCodeScannerInterface; + target = 64B317954BAE80E3324A956FD9035716 /* UMBarCodeScannerInterface */; + targetProxy = 8D51580EB5351D058DDBF6D3B910E222 /* PBXContainerItemProxy */; + }; + 103F68A478191DB7EB38A6154A084D1A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "rn-extensions-share"; + target = 16B709A47FCE8BA466D5FC8BE1527E32 /* rn-extensions-share */; + targetProxy = 5787708134E63E08539E1DB9D7B5A50C /* PBXContainerItemProxy */; + }; 106AD2347DA0EA0CA6F582B3412E3739 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; @@ -16494,11 +16651,29 @@ target = BD7B2D8FF0ABCB89D01F6E21D5364678 /* React-RCTVibration */; targetProxy = 41C76CAFA02708C48FAD7EEDAF99436C /* PBXContainerItemProxy */; }; - 136EEF6604F43C8124D5F42BBEB1F3CD /* PBXTargetDependency */ = { + 136A74796F84FA32E716528355309654 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 01B53B6A43CBD6D4022A361BBFCCE665 /* FirebaseCore */; - targetProxy = 4502793DA821910DEEC8607AB6AB42BE /* PBXContainerItemProxy */; + name = RNDeviceInfo; + target = BDD36BE8D4A81A3232F5093FE20B819A /* RNDeviceInfo */; + targetProxy = 2B4D5281C730F30911BAB4A45AC37833 /* PBXContainerItemProxy */; + }; + 139032292B23ABED624D6738266CC068 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImage; + target = D72528D679933334AAD7996CD73D84CD /* SDWebImage */; + targetProxy = 12902B23A54F15A4E83CBCA2DA009F50 /* PBXContainerItemProxy */; + }; + 15042954E55A84B4CA698F854811C80A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTBlob"; + target = 2E2ABA11C27993D4CDD5DA270C4B75F1 /* React-RCTBlob */; + targetProxy = D63F4A36FE48FD9534DAB72877506793 /* PBXContainerItemProxy */; + }; + 15F8D2124B7D6AB17B370E68DBEA96F6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = D780AE095FF5378EE40CDC0CDEDE614A /* PBXContainerItemProxy */; }; 16C7CAD40E83F256EB3B44CE2AF0428E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16506,23 +16681,23 @@ target = 017AB91E1D5AB2B6096ADC666B072208 /* React-RCTImage */; targetProxy = 163CBAEB4B1179F7E94CBFA9D9821391 /* PBXContainerItemProxy */; }; - 16E3312A571FC82CDBB7EB1680F949E8 /* PBXTargetDependency */ = { + 171CE48E25E9ECE3B5C776099B3AC1C6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNLocalize; - target = 0968391E5351AFD65E48369B3645BEDC /* RNLocalize */; - targetProxy = BBC7F9D170028DC234FE7E00982A5013 /* PBXContainerItemProxy */; + name = UMCore; + target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; + targetProxy = D812816E2BE2AA6EA773C410A1ED4A70 /* PBXContainerItemProxy */; }; - 16EF358D757E9E1E5FC4FA4EC8324B85 /* PBXTargetDependency */ = { + 1789700C2F8475D8FEFFBAF20ACD22CA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTTypeSafety; - target = 123D4D7AC3D41ABC0675B1DB3613066E /* RCTTypeSafety */; - targetProxy = FF79A3191C1A638EA61533E20EE3A66E /* PBXContainerItemProxy */; + name = EXPermissions; + target = E07EA1A35FBB3A986F484EB01CDD5527 /* EXPermissions */; + targetProxy = 028C7FFC27D76F854B42BD906F47A233 /* PBXContainerItemProxy */; }; - 173A68761CA3DFC811B106DF733ED566 /* PBXTargetDependency */ = { + 178D6E56B7417603184321C3B39D61F1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTText"; - target = E49E330A27425F89DE89516B2F50AAE9 /* React-RCTText */; - targetProxy = EB8AD7812D37D0B17C0C76FF538EDB8F /* PBXContainerItemProxy */; + name = "react-native-keyboard-input"; + target = 9A6B273422BDAA14C2ED873EEAE80F65 /* react-native-keyboard-input */; + targetProxy = EDF55882ADC86B7690C7DC8AE14EF22C /* PBXContainerItemProxy */; }; 17B0305E08C7EF9ED292AA9014450AF0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16530,11 +16705,47 @@ target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; targetProxy = 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */; }; - 1EF97CA6D359F301FD7328D7463AE4D5 /* PBXTargetDependency */ = { + 17FEACAA6C82E4792AC71F8C405A5CF4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; - targetProxy = 8A272AE740139BF08CE3DB3D59BF0633 /* PBXContainerItemProxy */; + name = "react-native-orientation-locker"; + target = C2722F653457CE3393EBD7647723DCB9 /* react-native-orientation-locker */; + targetProxy = AEDF76510055D732C4CDD530F758C500 /* PBXContainerItemProxy */; + }; + 18DA24CBBBE9FB5E807E478F84E05630 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsinspector"; + target = 115FC7605B6A0F6044A879F6EEB7DD99 /* React-jsinspector */; + targetProxy = 3995D22167811FF2CD4FFA3525688891 /* PBXContainerItemProxy */; + }; + 1A5DE2D6E1853D735B138F0098BAC1C9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBLazyVector; + target = 1CCF1D06CCFE0D0AB787DF0923C94D79 /* FBLazyVector */; + targetProxy = 1BCCF166B8195A161ABD029204F1692F /* PBXContainerItemProxy */; + }; + 1BCCC07D0B46F66F61C9FBCB7D205E99 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Folly; + target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; + targetProxy = 97E626376E4B155521AD09DA5CD68B10 /* PBXContainerItemProxy */; + }; + 1CE5E2023BB20CFD6A8B96FBED919E74 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXAppLoaderProvider; + target = 4ECE1108F140208A729A83BC94FAA150 /* EXAppLoaderProvider */; + targetProxy = DB4E475FEB560D9E1E97468EDFA81A6B /* PBXContainerItemProxy */; + }; + 1CF97C3B805FFA1E9A49877E5FE67CE3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = 232D00D8ED7797390FB38004DE01723B /* FirebaseAnalytics */; + targetProxy = 269FC9F640030ACD2A70CC8D28A7ABA1 /* PBXContainerItemProxy */; + }; + 1FD1C325B458E129BDF08C5C5C3AB689 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 6E6A17D81823F6E3DD4F5008098C53AC /* PBXContainerItemProxy */; }; 1FF02E6358F1AC0AEF79C28A92C40889 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16542,23 +16753,23 @@ target = FEC7CEE99C30C1292EC32D7E006E4E85 /* Yoga */; targetProxy = EE4BC9CF9B64348CF6C23E39FF20BB64 /* PBXContainerItemProxy */; }; + 204103775A913D1A92C3A9EDA84000BD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = 57B9E0A892EAB5C13D4AE7D4B1DE0C16 /* GoogleAppMeasurement */; + targetProxy = 29B684991F188D61A61E7F4A427CC37C /* PBXContainerItemProxy */; + }; 20C7FA8369BB9346866B48D4E4383A7C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = F7236D5BFD42DBEDF2652D4E47992BD2 /* React-jsi */; targetProxy = 3E9AE265557A98CB42FFD3D38570ED51 /* PBXContainerItemProxy */; }; - 2126BF44330D357BB54CC1D1CC0CA528 /* PBXTargetDependency */ = { + 2374FB5968F83C8469D17C4DD847C20C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Crashlytics; - target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; - targetProxy = 3B643647627492DB61A8C0F17AD3C90A /* PBXContainerItemProxy */; - }; - 214E340E8E861F4896B6586D20584A37 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = C9B2E36B4ACCB09AF2219C9F5E20A938 /* PBXContainerItemProxy */; + name = "React-RCTImage"; + target = 017AB91E1D5AB2B6096ADC666B072208 /* React-RCTImage */; + targetProxy = 5DE8C86606FB3BCE858145E1C582F75E /* PBXContainerItemProxy */; }; 238D807E41814E2E52A54CE96C5D65FB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16572,35 +16783,35 @@ target = 426398FA61DF648ECF7C6897DFAC6E8E /* FirebaseCoreDiagnostics */; targetProxy = 040622B4EF3FFAC25FCB8BED372F45F5 /* PBXContainerItemProxy */; }; - 24E184A9A824320614706EB8D6E69AB2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; - targetProxy = 157C9EBAE8C0B5DC0EFB7B9AC178FA3D /* PBXContainerItemProxy */; - }; - 2504C96A429D05FCCB9FD8DCC3925D15 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = C59223B631784357D6F64338F00FB19B /* PBXContainerItemProxy */; - }; 2559A81BC7753CC57D5A6C1E7CF8D5D9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = F7236D5BFD42DBEDF2652D4E47992BD2 /* React-jsi */; targetProxy = E3DCB3D8F0A533B7BB46EB61E99CA3EE /* PBXContainerItemProxy */; }; + 25AFA25E400E7592F216196C78EC3521 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 4BE19C582197EA238970BFC00A4345F9 /* PBXContainerItemProxy */; + }; 25FF94CB1F0E40824E1E6AF9F1F0421A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; targetProxy = 113CDDB809E5888DDC4ACE47ACB7FEB3 /* PBXContainerItemProxy */; }; - 26539BEA71CDF34F76460BBAA03AC3AB /* PBXTargetDependency */ = { + 263C4D71EBA011A8FC61AEB5EDBFC58D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = 57B9E0A892EAB5C13D4AE7D4B1DE0C16 /* GoogleAppMeasurement */; - targetProxy = BB016C676988600D9CADC179387421D8 /* PBXContainerItemProxy */; + name = RNAudio; + target = C78807E7E9A8C08F9906CF47DE441E57 /* RNAudio */; + targetProxy = E68D4095D5D59814C09EEC247A783AE8 /* PBXContainerItemProxy */; + }; + 2660BD5F88BAA3BD34E69AFEA6463EAD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 099A3ACE58C86380FA814C415A235A5B /* PBXContainerItemProxy */; }; 273CB5CBEB79AE7F05D13DF11D988EB6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16608,11 +16819,11 @@ target = 60F43D68BD7290E1B24C3BE7B3382AD3 /* React-RCTNetwork */; targetProxy = BA460C34E38D173750A1C69BCE0F2866 /* PBXContainerItemProxy */; }; - 27567C38BC4484BFB9062A8331E3D538 /* PBXTargetDependency */ = { + 27C684B627C400194FCFB865AE3C8597 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 9D9EEFAAB1BAA809AC134D293B01DAA2 /* PBXContainerItemProxy */; + name = UMReactNativeAdapter; + target = FDBC5D62523F0773421241E3AC0A02D6 /* UMReactNativeAdapter */; + targetProxy = 5159221D9EDD4DF07C12C346A403B94A /* PBXContainerItemProxy */; }; 27C702A0CD5B9CAB6ADF12761D4592D2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16620,17 +16831,29 @@ target = 5C53A3A5621162049D9B4399173FAD68 /* UMPermissionsInterface */; targetProxy = F84AAAA2C19F25EDD3EC2AACB0E9E389 /* PBXContainerItemProxy */; }; - 297425A213AA831F014A393F180A5F02 /* PBXTargetDependency */ = { + 27D8C5B277A23D554493962AB06B15C3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = B81CA3A3A63C0085E4085060FE4DD9FF /* React-jsiexecutor */; - targetProxy = 1E994C2A8CDEE992CB937AC152D9CB17 /* PBXContainerItemProxy */; + name = FBLazyVector; + target = 1CCF1D06CCFE0D0AB787DF0923C94D79 /* FBLazyVector */; + targetProxy = 124D4D1BC04FCA8D6C15E2252B91FEEA /* PBXContainerItemProxy */; }; - 29E543895BE330C4BDEA2990E77B91FD /* PBXTargetDependency */ = { + 292D50F8F63714E101A43288417EAFF9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = D2DBF3D0CEBF3CB3DC49AA4E8320F2E4 /* PBXContainerItemProxy */; + targetProxy = 9F750C6A88068FDE132B88B54233ECB9 /* PBXContainerItemProxy */; + }; + 296FAE4DF60DF3B828FB0C97E8ED6D69 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnosticsInterop; + target = A1DA7160DD40C2F4C7332F30DE279FC2 /* FirebaseCoreDiagnosticsInterop */; + targetProxy = 280AB6D83DC98C586BB44FF3F48C00FB /* PBXContainerItemProxy */; + }; + 29E668650289BF9A07DECE2B1477E9C8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNUserDefaults; + target = 5684E1AFCF5F41172AF803F46DEC414D /* RNUserDefaults */; + targetProxy = BE0FEB8E385B172DC934AB8CFF09D4C5 /* PBXContainerItemProxy */; }; 2A1CB69B24FBA907CE8C8D3B923AABF7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16638,71 +16861,47 @@ target = 9F219ED43F3AEA000562B9BCFD624DDD /* React-cxxreact */; targetProxy = 8085485CA711F116C10EA63C64D45226 /* PBXContainerItemProxy */; }; - 2AA00BDE3663E99B95E83C3245BE4E1F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 09611C945FBBB6581718EEF7B65D49B8 /* PBXContainerItemProxy */; - }; 2AA010E3221FCB666E0D6123C66594C6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; targetProxy = 7C53CB5C717DF2F107152E0C7B720455 /* PBXContainerItemProxy */; }; - 2B59F999A6B386F86F22AECFFC49EF99 /* PBXTargetDependency */ = { + 2C33F542615324CD040681FED15376BD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = 57B9E0A892EAB5C13D4AE7D4B1DE0C16 /* GoogleAppMeasurement */; - targetProxy = AEEF5E9184D2D6FFE6F010CFDAAF5AAD /* PBXContainerItemProxy */; + name = RNFirebase; + target = E5BFB4B0AFB8B1338DA5ABC32124BED6 /* RNFirebase */; + targetProxy = 698C8D0AC281E9CAFB10BC44CFFCFA35 /* PBXContainerItemProxy */; }; - 2C01B0D82D8AA650B272B6CA9D40D02A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 017AB91E1D5AB2B6096ADC666B072208 /* React-RCTImage */; - targetProxy = 9E14764C7DCCF14DE3F1D8893623A356 /* PBXContainerItemProxy */; - }; - 2D4E6545AB15978F6E1139A1AF22212E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 950CA5F16390BEEAB60306F52FBAB913 /* PBXContainerItemProxy */; - }; - 2D60B9A667BBE9A09D7E8BE47DB0FE8C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-keyboard-input"; - target = 126A5E61D5CF9BAC6B2357D8EDFE30B5 /* react-native-keyboard-input */; - targetProxy = F207EF2844317FF67AAA3CC9694DC3AD /* PBXContainerItemProxy */; - }; - 2E42D884665285D4892510B085254D9B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = 2A99896D65A33A482D2D82FC436F823D /* FBReactNativeSpec */; - targetProxy = D7FBEF6238865E2D6EE6F63B65A5E034 /* PBXContainerItemProxy */; - }; - 2E5B2351FA7301B9344DE62071DBCABB /* PBXTargetDependency */ = { + 2E60AAA631EB167AB2C78BBB1366764C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCoreDiagnostics; target = 426398FA61DF648ECF7C6897DFAC6E8E /* FirebaseCoreDiagnostics */; - targetProxy = C0455ED00134110C877487334D44A8FC /* PBXContainerItemProxy */; + targetProxy = 769FA7B15800D3D0097784D2F59EEB1E /* PBXContainerItemProxy */; }; - 2F197E8D4A0D75D033AF3FAA5BF6A4F2 /* PBXTargetDependency */ = { + 2FA030DAB9E2FD19E37ED9682EA2B7D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 8DC85EF6FC33495D16C7B4A96CC85FC4 /* PBXContainerItemProxy */; + name = EXHaptics; + target = 5B1BA8B3E53682DD179F7BFF8F2C8B75 /* EXHaptics */; + targetProxy = 4DFD741FD5DF23A6BC087B03BF09A5B2 /* PBXContainerItemProxy */; }; - 315816FB0338C39E8E6C30D99BA1CAFD /* PBXTargetDependency */ = { + 2FD1445B1BDFE24A611DDDDB3D7B3E06 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNScreens; - target = C2ECC9F00932B89184DFC0F90BB87BB9 /* RNScreens */; - targetProxy = 719C26DB419FA186776F5F212364097C /* PBXContainerItemProxy */; + name = libwebp; + target = 427A5566E42596B2649019D00AA80F10 /* libwebp */; + targetProxy = EA1D7392D928AC3579301F5641D5C4C1 /* PBXContainerItemProxy */; }; - 33F16F2F3F82BAFE728506CEE0E7586A /* PBXTargetDependency */ = { + 309E2A6D27AE37CADECFA3CFE218419D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 15B5A9546A73584CDFEBCDE0A6E325D6 /* PBXContainerItemProxy */; + name = "React-jsiexecutor"; + target = B81CA3A3A63C0085E4085060FE4DD9FF /* React-jsiexecutor */; + targetProxy = 62246D9025FFE179CF78E82F89830BF1 /* PBXContainerItemProxy */; + }; + 32EC00C34094AB9352355539583923CF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = 57B9E0A892EAB5C13D4AE7D4B1DE0C16 /* GoogleAppMeasurement */; + targetProxy = 4BB158B4DFAE1EA943735E597172DA75 /* PBXContainerItemProxy */; }; 3492F04AC6C9C2C1529D076E7BE5C6C2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16710,17 +16909,41 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = D9B0BDCA002FEBFE383DFE024728D2F6 /* PBXContainerItemProxy */; }; - 3529984F66D1A2A62F27BA5C9C02A9F6 /* PBXTargetDependency */ = { + 35F1E8122412002C45A16C3AED1062CB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 60F43D68BD7290E1B24C3BE7B3382AD3 /* React-RCTNetwork */; - targetProxy = 23B78270533221617DE8B01C9A05E13A /* PBXContainerItemProxy */; + name = ReactCommon; + target = 6DE003F64B133830B9AB9321298DAAC2 /* ReactCommon */; + targetProxy = 0B56E37D0026F42531279EEFF8E03147 /* PBXContainerItemProxy */; }; - 36F9E10A800D42028FB71458247F6111 /* PBXTargetDependency */ = { + 35F589501D320AA40AFC21BC8F2C31C9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMSensorsInterface; + target = 900359F19CD27ABA6E4A4F2E481D422A /* UMSensorsInterface */; + targetProxy = 5C1211203154A5A2A4884465157F8B52 /* PBXContainerItemProxy */; + }; + 366574E97BB62844C69C09E980C7D0B7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-safe-area-context"; + target = BB5B4FB9526DC1FEC5AEBB3C4E4239E6 /* react-native-safe-area-context */; + targetProxy = 11EB4C3786DBF2C4DD1FF571F07DBF50 /* PBXContainerItemProxy */; + }; + 36FC75732E89F80439866E6D2D81BF78 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransportCCTSupport; + target = 63CF4D4E74D1771681263724253E1E79 /* GoogleDataTransportCCTSupport */; + targetProxy = E0B8467508AB688996367245A79AEE85 /* PBXContainerItemProxy */; + }; + 3744EB6E9E025B167B8EE14D1165ED3C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTImage"; + target = 017AB91E1D5AB2B6096ADC666B072208 /* React-RCTImage */; + targetProxy = 8D8E71619F284999A3C3ABE2F776FF32 /* PBXContainerItemProxy */; + }; + 37BD5DD6C9C4501DF9616CABC4CFC979 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 0E1963F9C6CD489F79F16A3FC6DCFF10 /* PBXContainerItemProxy */; + targetProxy = 9A0DE623EEE672DB85764C591826E1E3 /* PBXContainerItemProxy */; }; 37D3EE15933CB03C5534DBBE0486F674 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16728,17 +16951,17 @@ target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; targetProxy = 16E39C41A1CBE1E8002EF54F741C1EB3 /* PBXContainerItemProxy */; }; - 3A2C770A8A1DF5445C58C73E49E19B99 /* PBXTargetDependency */ = { + 38157FB1138740B2E582A9ACAD7AADFF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; - targetProxy = 1B3411570955A56DB03749100E0DEE92 /* PBXContainerItemProxy */; + name = "React-jsinspector"; + target = 115FC7605B6A0F6044A879F6EEB7DD99 /* React-jsinspector */; + targetProxy = 0F327638A8DC6ED0ACBB83613620B4BD /* PBXContainerItemProxy */; }; - 3A8D95FF774F09D2C730A8CA709CBB33 /* PBXTargetDependency */ = { + 38EC695E083B73E560C827C5E24BFAFC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 799B29F9D6DCE28B98CC259440382F20 /* Firebase */; - targetProxy = 5C1B1E9F0560F486D14699434E0C2176 /* PBXContainerItemProxy */; + name = "React-RCTActionSheet"; + target = 7135140B597489F3FE9D0A6D1FADD9C7 /* React-RCTActionSheet */; + targetProxy = 3FC522F3FAA3D60C5F395B4753541CCC /* PBXContainerItemProxy */; }; 3BDD26DF1C76A2717767412BFEFD633E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16746,65 +16969,35 @@ target = 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */; targetProxy = C6318E60C9E68C5F678F7ADDF357AED8 /* PBXContainerItemProxy */; }; - 3CBAE06EDAD2765387AF237A37CDE4AB /* PBXTargetDependency */ = { + 3D50814BDA6615EE4B7CC8199C0973F6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNReanimated; - target = 84BB82258E4223BA2C02A6731A1BCEB5 /* RNReanimated */; - targetProxy = 9E8409ADD50C0FFC64323A2C4D073860 /* PBXContainerItemProxy */; + name = "React-jsi"; + target = F7236D5BFD42DBEDF2652D4E47992BD2 /* React-jsi */; + targetProxy = A12793C2F9F0732C798DDAD9FB7387AB /* PBXContainerItemProxy */; }; - 3D0627717E59E9583AF6C4B17A2D98D4 /* PBXTargetDependency */ = { + 3F3E28BCB9E997F92672F7F0EFEB306F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Fabric; - target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; - targetProxy = AD322330F76E953329AB044837991C78 /* PBXContainerItemProxy */; + name = "react-native-webview"; + target = F0C4ADFA389E9332F694ED1737F25C47 /* react-native-webview */; + targetProxy = 00A35F20241F7D1DD93FB727EEFE599F /* PBXContainerItemProxy */; }; - 3F1FDAFC16A74FEDB9D09DC427E98E18 /* PBXTargetDependency */ = { + 3F54725B417B166522938A094E3584FD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 4B46CDE4D80107772B319E892C6315CB /* rn-fetch-blob */; - targetProxy = A620EE07C60AD71685779DD28F093EAE /* PBXContainerItemProxy */; + name = Yoga; + target = FEC7CEE99C30C1292EC32D7E006E4E85 /* Yoga */; + targetProxy = 858478F252313D1B32C44402B134B8A6 /* PBXContainerItemProxy */; }; - 3FF7214DEDF0E424081F80EBEED91DEE /* PBXTargetDependency */ = { + 447770A4A08BA39550D63891EF4AEB03 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DoubleConversion; - target = E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */; - targetProxy = F1BB02C0CD65FEC232E45D5991BBADFF /* PBXContainerItemProxy */; + name = EXWebBrowser; + target = B11E238094137347E8790BFEB1BEF01F /* EXWebBrowser */; + targetProxy = E10318B49E7E20BAB62DD9EF22C52C0A /* PBXContainerItemProxy */; }; - 419848B0B7E1CA912121CA8E765B1309 /* PBXTargetDependency */ = { + 44C24CB75B66E8F3CEE4E17F97CAE9C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNVectorIcons; - target = 580D789B2C917AAD8F584EF17E390A5F /* RNVectorIcons */; - targetProxy = 41229ED4B0B0EA79D59C84C9D141DDBC /* PBXContainerItemProxy */; - }; - 431D05C2F5F4AF6BBAC6333C1D61AF3A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 017AB91E1D5AB2B6096ADC666B072208 /* React-RCTImage */; - targetProxy = F74801F4B9ED9D55E47A6F3348CFCEB1 /* PBXContainerItemProxy */; - }; - 43A6866B0E8C616F577C5CD21F694922 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 7F28D4475D7DAD9903F7E6044DD921C1 /* React-RCTAnimation */; - targetProxy = DBDB2668554E77787C0C9BE5A30BC860 /* PBXContainerItemProxy */; - }; - 4406A001A553DF91C0D9D5BFB9D7C093 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = 0CBA5F53133416AD6AD2C463B3E7A934 /* react-native-jitsi-meet */; - targetProxy = 8EF259F2D6F3174916AD88D962103FC3 /* PBXContainerItemProxy */; - }; - 449F2EF5F8CA3BC8E710415DC584595E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNGestureHandler; - target = 2E17311CD8EACC16113C89390B6656C5 /* RNGestureHandler */; - targetProxy = 7579BA47EA9E0E3EF57BB89315642D02 /* PBXContainerItemProxy */; - }; - 46CDDD7346514CE18DB8E12E17F299A1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-keyboard-tracking-view"; - target = E4D9E3C5E2CE0F3B8F6462A54DAA07EB /* react-native-keyboard-tracking-view */; - targetProxy = FA57A9ADA8859A588587AECDFD47E490 /* PBXContainerItemProxy */; + name = RSKImageCropper; + target = CC0A7968B1F2981D99C33E73EDF48649 /* RSKImageCropper */; + targetProxy = 453A01330D00EE405AA94B488EC69F58 /* PBXContainerItemProxy */; }; 48076A1E02117E39C56513D1F085E022 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16812,6 +17005,18 @@ target = A1DA7160DD40C2F4C7332F30DE279FC2 /* FirebaseCoreDiagnosticsInterop */; targetProxy = BFD1349A73D002FF8BADA635DB23EA34 /* PBXContainerItemProxy */; }; + 4837F72BFF564F6748580864BAEBEFA1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnosticsInterop; + target = A1DA7160DD40C2F4C7332F30DE279FC2 /* FirebaseCoreDiagnosticsInterop */; + targetProxy = D9C723D1075D00952C597952131B32EF /* PBXContainerItemProxy */; + }; + 48430FFFB78D99D0C10C045BA7D5BF0C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Crashlytics; + target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; + targetProxy = A43FBEC98DDCCC6FCE01AB8AB3DCB480 /* PBXContainerItemProxy */; + }; 49CF22411A18A28762E2D16FB32A5A96 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; @@ -16824,11 +17029,17 @@ target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; targetProxy = BB43E3440C83F8BC24E141BE6C01D507 /* PBXContainerItemProxy */; }; - 4B19DEE41785E180C9DA10BEC87E0833 /* PBXTargetDependency */ = { + 4A48523D31A5E253449704761E36492C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 01B53B6A43CBD6D4022A361BBFCCE665 /* FirebaseCore */; - targetProxy = 5B2382FC9D1D00F3013511037B5804C8 /* PBXContainerItemProxy */; + name = Fabric; + target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; + targetProxy = 1EA6AA40DA26B296704AFDC7174DC66C /* PBXContainerItemProxy */; + }; + 4AF8C3BD73660B297F54ACA3DAE86F1C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; + targetProxy = CA91D91D7C062B3D261FCB9A70F9B73C /* PBXContainerItemProxy */; }; 4B2682D0BCDE87CB86FAB90384B8AAE1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16842,23 +17053,11 @@ target = F7236D5BFD42DBEDF2652D4E47992BD2 /* React-jsi */; targetProxy = D59A73644A58ECC04E1987DB3C8A1BC6 /* PBXContainerItemProxy */; }; - 4CE8BD3E9BA582BAB7F3E52C29595F88 /* PBXTargetDependency */ = { + 4D9D1FAE44E636FCBC590F795BE12B6F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Crashlytics; - target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; - targetProxy = E1FCE70D4CC784C0929BD9999B7E674B /* PBXContainerItemProxy */; - }; - 4EB5F322D72A048B53EE33EEA8BB3EB5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */; - targetProxy = D70A467AEA73A72DD32C06B260635279 /* PBXContainerItemProxy */; - }; - 4F1AED2974842499EAE89D933856C621 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = QBImagePickerController; - target = 4C0C7B693B06D0DBEA04F9ABE003D758 /* QBImagePickerController */; - targetProxy = 8DC186295FDFF267D84397758AF3B393 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; + targetProxy = 5A84C7DE05C6CEED512B83C69E07B5A2 /* PBXContainerItemProxy */; }; 4F7FBAA168FB752BC980C4CB37D4732D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16866,17 +17065,11 @@ target = 7825F222F53EF434DE74A6C6FAF290E9 /* UMFileSystemInterface */; targetProxy = 013C8C712E31279FB89EBADB1C1A4BC4 /* PBXContainerItemProxy */; }; - 519D1164885103A9559F48D17C8C21CA /* PBXTargetDependency */ = { + 5151FA428A76D2E95BE212F50F108518 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 92720BB3E163302CB7EA503774E85CAB /* PBXContainerItemProxy */; - }; - 53229BF12DCE81FEEE15D65B6655A5AC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = 012AE749BB302180A2F0730AF8E0490E /* SDWebImage */; - targetProxy = ABA3B980C7DF0FE92C05E0DB2C782522 /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = 2A99896D65A33A482D2D82FC436F823D /* FBReactNativeSpec */; + targetProxy = C78EF0DF486F5704D253D2B6C8CDEEF9 /* PBXContainerItemProxy */; }; 53B411A732F99F8D51E15B2CE451B1C2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16884,35 +17077,29 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = 8F8D97FDA93DF806279F1C90D2E34F62 /* PBXContainerItemProxy */; }; - 53F39B0AA7F6F939EDB22C8A31035E7A /* PBXTargetDependency */ = { + 53CC0032C6CEB52359DA47A0D319CAEE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAV; - target = A954214FEA55463925B6F6E3A27B6016 /* EXAV */; - targetProxy = F77ECF803367DCE71D670E0822989D50 /* PBXContainerItemProxy */; + name = UMTaskManagerInterface; + target = 15F9F7952A132E879D1B32065C22F870 /* UMTaskManagerInterface */; + targetProxy = 6F1A59C01711361E22111B574AF12506 /* PBXContainerItemProxy */; }; - 54F1C4C7D9F1BF9854673D3EE3808970 /* PBXTargetDependency */ = { + 546FF04FB0C4357562F0E89AA6A950CB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libwebp; - target = 427A5566E42596B2649019D00AA80F10 /* libwebp */; - targetProxy = 7FF7E96C387D0FB07EACE64EAC5D8F74 /* PBXContainerItemProxy */; + name = QBImagePickerController; + target = B2D1A9BE57D1CD04D04DA1329599E7A6 /* QBImagePickerController */; + targetProxy = 10AD64E8AA8C3A76D6806636B2A9C42D /* PBXContainerItemProxy */; }; - 56014C1E03B54F4BE8FF33387152B017 /* PBXTargetDependency */ = { + 56A42D0221767E4F54DB5A6962E9B965 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 5CA5277C274F04423FDFBFA36958F3A0 /* PBXContainerItemProxy */; + name = Firebase; + target = 799B29F9D6DCE28B98CC259440382F20 /* Firebase */; + targetProxy = 0C83FC589C9047A40E1AA95715613AF5 /* PBXContainerItemProxy */; }; - 56DED8618E90ED56A0E83C04CD8EA82E /* PBXTargetDependency */ = { + 58D1AA254A6C044A9E6A055F00B315F9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = BugsnagReactNative; - target = E452F4CD4F8AB641BD2444C7AC91FA2B /* BugsnagReactNative */; - targetProxy = B075E9A4B4B54C0E337F0E9F5856E968 /* PBXContainerItemProxy */; - }; - 58B0BDCC505A14070779E929D73C29E3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = 123D4D7AC3D41ABC0675B1DB3613066E /* RCTTypeSafety */; - targetProxy = 9BAC420B3640217ED150187B9CDE1852 /* PBXContainerItemProxy */; + name = UMPermissionsInterface; + target = 5C53A3A5621162049D9B4399173FAD68 /* UMPermissionsInterface */; + targetProxy = 30FCE69212D7EF33D987A6529CE3D1CC /* PBXContainerItemProxy */; }; 59AEDBDE41E6364F4378C6746F929E61 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16920,29 +17107,41 @@ target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; targetProxy = B4BACC19FD91FE9C750E2B7E26434F49 /* PBXContainerItemProxy */; }; - 5C2EA4AFF1DBB20B577D1E099EB9EE05 /* PBXTargetDependency */ = { + 59B08425B79FF25F33DB862884338ADC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Fabric; - target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; - targetProxy = 9BC85EB06C4ABEF516D1C592A8362C5C /* PBXContainerItemProxy */; + name = GoogleDataTransportCCTSupport; + target = 63CF4D4E74D1771681263724253E1E79 /* GoogleDataTransportCCTSupport */; + targetProxy = 05CE66487B2929BEE5BCFE449E6C1645 /* PBXContainerItemProxy */; }; - 5C6CD8D7BD1CCC71599C7C47304BEC34 /* PBXTargetDependency */ = { + 5B5F622772AF810B3E120DF4FE9E930B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 62D54DBCE8E0274997CAF37B51B9F306 /* SDWebImageWebPCoder */; - targetProxy = C5922A264B9F7F5026B35091DFC976BB /* PBXContainerItemProxy */; + name = "rn-extensions-share"; + target = 16B709A47FCE8BA466D5FC8BE1527E32 /* rn-extensions-share */; + targetProxy = F1C52874E13898F587F6C7E077858EA8 /* PBXContainerItemProxy */; }; - 5D9EB95E2B8EB066889378E1F13EEC62 /* PBXTargetDependency */ = { + 5C91CC91719B7CB0F34D8FCBD82CBF36 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFileSystemInterface; + target = 7825F222F53EF434DE74A6C6FAF290E9 /* UMFileSystemInterface */; + targetProxy = BA84031A64476ECDDEE70D25C70A7BBA /* PBXContainerItemProxy */; + }; + 5DBEE8C50D621BAF4F67518FD3A67C43 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 8F0678DFD755F1A46F2D8770D7B03CAB /* PBXContainerItemProxy */; + targetProxy = C4B79DC3551888EB6EF9456179B7F47C /* PBXContainerItemProxy */; }; - 5F0DD268B629262E2BC2DC2DD8892092 /* PBXTargetDependency */ = { + 5DDCA6502BF23ABB8077C929263A7CA4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 60F43D68BD7290E1B24C3BE7B3382AD3 /* React-RCTNetwork */; - targetProxy = 2712961DD86ACC2AE7CDB3D83C754539 /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = 2A99896D65A33A482D2D82FC436F823D /* FBReactNativeSpec */; + targetProxy = 47917058C953A18B74A0F97C568209F5 /* PBXContainerItemProxy */; + }; + 5E4AC549896D10E85070E54A04519DDB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-keyboard-input"; + target = 9A6B273422BDAA14C2ED873EEAE80F65 /* react-native-keyboard-input */; + targetProxy = A856A7E76E3D849CB6AF13C486B0CD7B /* PBXContainerItemProxy */; }; 5FB63311A8172BDE287C5B0BC5C11578 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16950,29 +17149,53 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = D8A489DA96811A733E40A4B4C97CDC9D /* PBXContainerItemProxy */; }; - 5FF6BE16DC1D362C03013AB01572D442 /* PBXTargetDependency */ = { + 6104E7437EE53244974FBE494797ADE9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCameraInterface; - target = 97BD405FD9F848B761D280E25331AD81 /* UMCameraInterface */; - targetProxy = 7CA489955DC921604B0580EABCC1CDB9 /* PBXContainerItemProxy */; + name = RNImageCropPicker; + target = 76045FDE22A7E6A917DFC0E5B11A9D64 /* RNImageCropPicker */; + targetProxy = 17DD24A0E1EC720E72F067748318EC15 /* PBXContainerItemProxy */; }; - 620B568275B0B2550A9AE69D860D5E46 /* PBXTargetDependency */ = { + 61731B9E1C0A502E5FA86FDB3F4E5AB3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 64E78828D8355514B3B6BE78FAE7806E /* React-RCTSettings */; - targetProxy = 4DC6E3D6834C8665BB2A1AFBF24D8E62 /* PBXContainerItemProxy */; + name = nanopb; + target = 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */; + targetProxy = 3D434A4468B28C501284DB505B453531 /* PBXContainerItemProxy */; }; - 624CE7A3F0147B8BDED601338A2241F0 /* PBXTargetDependency */ = { + 6228433EE073EDC94841FF656371225C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNUserDefaults; - target = FE8C90DDDB9FCFB2290889A1F43FC34F /* RNUserDefaults */; - targetProxy = FB82D434B60455BE7864C208EA61C4F4 /* PBXContainerItemProxy */; + name = Folly; + target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; + targetProxy = D0E8211D26BAA66C928CD08C1F6C8B43 /* PBXContainerItemProxy */; }; - 63118994867FEFB6B29370620046F1CC /* PBXTargetDependency */ = { + 62CCC3F28A21F535594338B0A6BEF1EA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImage; - target = 012AE749BB302180A2F0730AF8E0490E /* SDWebImage */; - targetProxy = 9E2132DB2888CD2DDDF8C5AC71FC7814 /* PBXContainerItemProxy */; + name = RSKImageCropper; + target = CC0A7968B1F2981D99C33E73EDF48649 /* RSKImageCropper */; + targetProxy = EE3BD696B6AA908B9F531EBED4A9D038 /* PBXContainerItemProxy */; + }; + 63B26D6DF72537F996EFB4000B231EE0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = D68CC91537B2FA5DA192AC3F18831134 /* PBXContainerItemProxy */; + }; + 6406DA65E375C5C4FFDCDD5411ADE142 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-orientation-locker"; + target = C2722F653457CE3393EBD7647723DCB9 /* react-native-orientation-locker */; + targetProxy = BBDFEC65026DF3F98EE0F2BD41AABB15 /* PBXContainerItemProxy */; + }; + 64F751939C1B99AEEFC1A3849713B74D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BugsnagReactNative; + target = E452F4CD4F8AB641BD2444C7AC91FA2B /* BugsnagReactNative */; + targetProxy = 3CD6483E9B5EFA34635583BDB56FBCC4 /* PBXContainerItemProxy */; + }; + 66135B463EC64038A17C3A0B90B3F960 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTTypeSafety; + target = 123D4D7AC3D41ABC0675B1DB3613066E /* RCTTypeSafety */; + targetProxy = 85EB19C15DF73C13CA065A8AA1B3E962 /* PBXContainerItemProxy */; }; 6621509AE5A3372F9B292A0AAEBB44EB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16986,23 +17209,11 @@ target = E49E330A27425F89DE89516B2F50AAE9 /* React-RCTText */; targetProxy = 3AFCC674053FAF5DC8E87833CC15D1F1 /* PBXContainerItemProxy */; }; - 682ADD021FBCB655D66E254D6FC0289E /* PBXTargetDependency */ = { + 68CA1162B2E6EED6FC65B94CDA7A5169 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTTypeSafety; - target = 123D4D7AC3D41ABC0675B1DB3613066E /* RCTTypeSafety */; - targetProxy = 15ED86AF6929893564521D7E86C43FC8 /* PBXContainerItemProxy */; - }; - 68E9D663C14A80FAEAC76C201F322DAF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = 0CBA5F53133416AD6AD2C463B3E7A934 /* react-native-jitsi-meet */; - targetProxy = 1532234E0D65C24E6DF298E082F9009C /* PBXContainerItemProxy */; - }; - 692BD69BC68487B7306F64561A5DC8F6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 25A242E9EF1E413D09C56C0E300CA179 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 01B53B6A43CBD6D4022A361BBFCCE665 /* FirebaseCore */; + targetProxy = AB7D5BA255296762CDE29443208454D8 /* PBXContainerItemProxy */; }; 69F4F6FE10701C0907566E910C5BB6B8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17010,23 +17221,17 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = A3F86DBAC5E1C8F0724C396F51BBECE7 /* PBXContainerItemProxy */; }; - 6AB1AEFAE485D48D7D5CC9BF89D5E8DB /* PBXTargetDependency */ = { + 6B7700F356A1EC5AD543615A70048D33 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-keyboard-tracking-view"; + target = DE5A74080B919B383A77CD73B094CBBC /* react-native-keyboard-tracking-view */; + targetProxy = 96CFB08CF83548249188B41F1A0103B8 /* PBXContainerItemProxy */; + }; + 6BDACB1010ABF3CD00249F3151D5D847 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseInstanceID; target = 3C6A9BF574C3488966C92C6A9B93CA8C /* FirebaseInstanceID */; - targetProxy = 20F31B426DB6D4FF308DB447FB7C0FCF /* PBXContainerItemProxy */; - }; - 6C126B850D5A0AA93A08B66059834603 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = BugsnagReactNative; - target = E452F4CD4F8AB641BD2444C7AC91FA2B /* BugsnagReactNative */; - targetProxy = FBCFC8E8CE95DF1CE2B8ECE7A1D92002 /* PBXContainerItemProxy */; - }; - 6C2AE19242DAF8403D48BE1F306F1754 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = C2F81329D3C42F2D872A4B80180545BC /* React-RCTLinking */; - targetProxy = EBFFACA81DF585155103824E5D8A5A71 /* PBXContainerItemProxy */; + targetProxy = D1FF353879A7F03EAF34786650249634 /* PBXContainerItemProxy */; }; 6C40FED36ADD7D57BED761F594CD832C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17034,41 +17239,59 @@ target = 64E78828D8355514B3B6BE78FAE7806E /* React-RCTSettings */; targetProxy = B89102853C0AA8B4E4660B0A341C408A /* PBXContainerItemProxy */; }; - 6DC433D9621BBB181B93431526A4EF36 /* PBXTargetDependency */ = { + 6C8C27CB07C3488C044366102D311F90 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBLazyVector; - target = 1CCF1D06CCFE0D0AB787DF0923C94D79 /* FBLazyVector */; - targetProxy = 718FEAAB24AA45A211D2F2DF4B2EF76C /* PBXContainerItemProxy */; + name = "react-native-video"; + target = 3665DFF5E63879E71E17B6E7B32A2899 /* react-native-video */; + targetProxy = 9920192D86C38E0D17571CC3DC4F8940 /* PBXContainerItemProxy */; }; - 6DF28262142821BE03DC27E6D09F3A79 /* PBXTargetDependency */ = { + 6CC0CD0F9870D6040DB8A8633D484AA4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = 232D00D8ED7797390FB38004DE01723B /* FirebaseAnalytics */; - targetProxy = D68FB73CD84B5F23B136BE679B288751 /* PBXContainerItemProxy */; + name = FirebaseInstanceID; + target = 3C6A9BF574C3488966C92C6A9B93CA8C /* FirebaseInstanceID */; + targetProxy = 7FA3E9509022198773CB0B6340DD3BEA /* PBXContainerItemProxy */; }; - 6E2717694A4B4170104E0E4E1C2BBB29 /* PBXTargetDependency */ = { + 6E13A49FF682853FCED94A420C50D542 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 32D122CEBC2F799F23ED032EEB11B198 /* UMTaskManagerInterface */; - targetProxy = 4279DEA2ECE1767E7DE2F8C3D6B6781D /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; + targetProxy = 413ACBCEC687A1FFB6D5B6E3CBC85B78 /* PBXContainerItemProxy */; }; - 6E912A577B1B7789D92546D486E5A2DC /* PBXTargetDependency */ = { + 6E2A8AE29547D49DECA2F5AD7DC79E58 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 7825F222F53EF434DE74A6C6FAF290E9 /* UMFileSystemInterface */; - targetProxy = F20CF04522EAA1A2DDEFFAA3825A1DA2 /* PBXContainerItemProxy */; + name = RNReanimated; + target = 8E9F01B150517E3739C7748CF6D42337 /* RNReanimated */; + targetProxy = 5BCF5F98210AC4A919BB88E1B3A61931 /* PBXContainerItemProxy */; }; - 6EE70A46090B1A076B6F9939E2BAFA9C /* PBXTargetDependency */ = { + 6E8456CAAA17DDE73427803BA581691E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = glog; + target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; + targetProxy = 58937B526852F527445915789FEBAC73 /* PBXContainerItemProxy */; + }; + 70CC3D4072D42C0075A167F2A9B0EBA1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFaceDetectorInterface; + target = 84362B470EA387E55ADAD84F88B19444 /* UMFaceDetectorInterface */; + targetProxy = 9A948A9F5B2D16483BCD7B0DAA0009B6 /* PBXContainerItemProxy */; + }; + 70E10ED4574B085BAE817D7D0C962E9A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = libwebp; target = 427A5566E42596B2649019D00AA80F10 /* libwebp */; - targetProxy = 25D763F0D8A8590A5F7F38F627268828 /* PBXContainerItemProxy */; + targetProxy = 4F91ABBA7CF84EA11E6057EAA60FD393 /* PBXContainerItemProxy */; }; - 7046CE8D4F9F0209BA84F2A55A7FD7CE /* PBXTargetDependency */ = { + 7182E5BF576D0928A852355DFF53321F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 9F219ED43F3AEA000562B9BCFD624DDD /* React-cxxreact */; - targetProxy = 677767528061D47489468FE9A17457AE /* PBXContainerItemProxy */; + name = Fabric; + target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; + targetProxy = 6979E0A1787B9CF5EEE5321065440D2D /* PBXContainerItemProxy */; + }; + 738D8C22EB389F53EBA5A3720B31FE98 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTAnimation"; + target = 7F28D4475D7DAD9903F7E6044DD921C1 /* React-RCTAnimation */; + targetProxy = 429CACCE967A440B48F9390A1D534DB2 /* PBXContainerItemProxy */; }; 7461A63F993AB39EB67CB5B64395C17B /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17076,23 +17299,35 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = FC21EA40C24BBDB20C2BE4568BC0017C /* PBXContainerItemProxy */; }; - 751901136ECEE8DEEE6800F54419223D /* PBXTargetDependency */ = { + 74E9038517B34D7138E7BBD366C865D7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = 2A99896D65A33A482D2D82FC436F823D /* FBReactNativeSpec */; - targetProxy = 633F0C411FAC0724CC86339DB1A8F35B /* PBXContainerItemProxy */; + name = "React-RCTSettings"; + target = 64E78828D8355514B3B6BE78FAE7806E /* React-RCTSettings */; + targetProxy = 9AD4BBA58D8AEE5DE3E71DF735F655A2 /* PBXContainerItemProxy */; }; - 76111862F2FEA969BD565A8DB8351F73 /* PBXTargetDependency */ = { + 757234086D3E8725FB35268A0E95B294 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-notifications"; - target = F2C53FD5931EC65A936C5F2AD66F1EEB /* react-native-notifications */; - targetProxy = 5CF35D15D0050D57170CF32E70A85E5B /* PBXContainerItemProxy */; + name = "React-Core"; + target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; + targetProxy = C99D0E0D9CACF4B944D25094813BCFFE /* PBXContainerItemProxy */; }; - 766C6661C75BC91BA9B26B11B72B894F /* PBXTargetDependency */ = { + 762AFFB6A0ECA1368BFBDBE404BF6296 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTImage"; target = 017AB91E1D5AB2B6096ADC666B072208 /* React-RCTImage */; - targetProxy = 35CCA876D3A7A5319A90F2C9FFA16445 /* PBXContainerItemProxy */; + targetProxy = 194261362BC80BB8370E3714FDD9EC49 /* PBXContainerItemProxy */; + }; + 767C9782DCD450083B5834D0A0427A2E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DoubleConversion; + target = E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */; + targetProxy = 47FB835CAAE0A4C15B762BAAEC9B4C9B /* PBXContainerItemProxy */; + }; + 76933CE8445A34EE1EB99CDBF892008F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-document-picker"; + target = 17378B5ED23F0B7A52011DAE2B803A05 /* react-native-document-picker */; + targetProxy = 918963CE4DD36C9E17EDA9B334654255 /* PBXContainerItemProxy */; }; 76CA3BA17589A85E650786940D8E1853 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17100,35 +17335,29 @@ target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; targetProxy = AAC869672B6119FA01B23690C77B30FC /* PBXContainerItemProxy */; }; + 7797077B5E7ABCFE5BCBE813069A1E55 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTActionSheet"; + target = 7135140B597489F3FE9D0A6D1FADD9C7 /* React-RCTActionSheet */; + targetProxy = 9E911CC11C299753B843EA7B9FA4E393 /* PBXContainerItemProxy */; + }; 781E92AB9AD5C64251E7E935A7F59919 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTTypeSafety; target = 123D4D7AC3D41ABC0675B1DB3613066E /* RCTTypeSafety */; targetProxy = 386C0EB352726BA92F7F015C2FB264EF /* PBXContainerItemProxy */; }; - 79680DEABF475C03C069F8ADA1E88C82 /* PBXTargetDependency */ = { + 7A4E5E25A3F0BA667A9B193D8D984F9C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */; - targetProxy = F10366900D433766004A0F1F358DCB74 /* PBXContainerItemProxy */; + name = "rn-fetch-blob"; + target = F20B81FC3B7B8A0BDCAF087081B0C22E /* rn-fetch-blob */; + targetProxy = A78C3D1A49FC2714F667B426CFC64AC7 /* PBXContainerItemProxy */; }; - 79BF7757DECA4EC451187959C6200D0C /* PBXTargetDependency */ = { + 7A75D084EC52AFAA39544685FC0EE452 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-keyboard-input"; - target = 126A5E61D5CF9BAC6B2357D8EDFE30B5 /* react-native-keyboard-input */; - targetProxy = 7FFBA607D07DE68CD0DF59DD2E49F19B /* PBXContainerItemProxy */; - }; - 7A64AF8F0D119CA6F2D86708B24EF3A5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; - targetProxy = 7E0404FBA208A54D200D14E6D68D956D /* PBXContainerItemProxy */; - }; - 7ACCF34FBBFA0615EF1874A1B908CB67 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 7F28D4475D7DAD9903F7E6044DD921C1 /* React-RCTAnimation */; - targetProxy = 9990ABED12ABA3C0714D04014CD92464 /* PBXContainerItemProxy */; + name = "React-RCTLinking"; + target = C2F81329D3C42F2D872A4B80180545BC /* React-RCTLinking */; + targetProxy = B97DEE6A513F100B6EBF0F37C8E74B64 /* PBXContainerItemProxy */; }; 7AEC0D15EF11C1415A94D769184AD812 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17142,29 +17371,23 @@ target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; targetProxy = 53E2A1BD19729C2293AB46582C686251 /* PBXContainerItemProxy */; }; - 7C1A3B82893A4885FEAC777F455EEDB7 /* PBXTargetDependency */ = { + 7CAD30F9EE692DA68C8712F83CF42A60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = 6DE003F64B133830B9AB9321298DAAC2 /* ReactCommon */; - targetProxy = EBCAA46B332AEDAC4D92747928F7EABA /* PBXContainerItemProxy */; + name = "React-RCTVibration"; + target = BD7B2D8FF0ABCB89D01F6E21D5364678 /* React-RCTVibration */; + targetProxy = 9C24735A9692E02C5BE7BD8D82C3E296 /* PBXContainerItemProxy */; }; - 7CFC24BFC79A05688D2DF26D079BE960 /* PBXTargetDependency */ = { + 7D88970B5ACD6F7B8A832D4CCDCC32E1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = QBImagePickerController; - target = 4C0C7B693B06D0DBEA04F9ABE003D758 /* QBImagePickerController */; - targetProxy = ED261E13D129DE893F07E6CF33F4D2A0 /* PBXContainerItemProxy */; + name = "React-RCTAnimation"; + target = 7F28D4475D7DAD9903F7E6044DD921C1 /* React-RCTAnimation */; + targetProxy = C38FB4A24E1149CD1829CB9764523072 /* PBXContainerItemProxy */; }; - 7E0DC46AD21E81388E2C5BF638330666 /* PBXTargetDependency */ = { + 7E76900A295070508821CD9B09DE9DF9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 14A59580A8ED5932F976DBBF4B5D09C9 /* PBXContainerItemProxy */; - }; - 7E656EBEF5797256725AD6C5250731FC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = 63CF4D4E74D1771681263724253E1E79 /* GoogleDataTransportCCTSupport */; - targetProxy = 4489539052F395F90A07887AF82A5A16 /* PBXContainerItemProxy */; + targetProxy = 5D9288E8EB8B6E605EA0E60DEDA54DC2 /* PBXContainerItemProxy */; }; 7F18628588E8CCA477702C17B6396824 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17172,17 +17395,11 @@ target = E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */; targetProxy = 07B672E660093ADC2F1D1FA9D1271CF4 /* PBXContainerItemProxy */; }; - 80A677962F24C80D8F638CE908E714CF /* PBXTargetDependency */ = { + 8168CC1290E6BA69D719476E277FF55D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */; - targetProxy = 0CF48D58EE875B1D9C261E36545796AB /* PBXContainerItemProxy */; - }; - 81FA86CC8C08AE76A69F79D0D8CCA825 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = F7236D5BFD42DBEDF2652D4E47992BD2 /* React-jsi */; - targetProxy = 3F62CAE70D7BF57C26609FDBA95AD4FB /* PBXContainerItemProxy */; + name = "boost-for-react-native"; + target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; + targetProxy = 94ED85E8FFDAD7F38C20FAB01B44EFA3 /* PBXContainerItemProxy */; }; 82DE4A10C611155EAA73BA712DF1D258 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17190,77 +17407,53 @@ target = A1DA7160DD40C2F4C7332F30DE279FC2 /* FirebaseCoreDiagnosticsInterop */; targetProxy = 729C920815C311E1D586861019E10612 /* PBXContainerItemProxy */; }; - 8383BDAFAC5688F5245FCC427B413219 /* PBXTargetDependency */ = { + 835F3B9815DD2147FD43238FB4196131 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNImageCropPicker; - target = E20E81644F6DFF8A9937721B0487DBEC /* RNImageCropPicker */; - targetProxy = D6193B6084DDDB835D74A4EF97439FEB /* PBXContainerItemProxy */; + name = "React-CoreModules"; + target = 86E0FD6F1E6CD55F28FDDB1D399CA7F7 /* React-CoreModules */; + targetProxy = D6B9C904F0BBFDF39518C509E3B32034 /* PBXContainerItemProxy */; }; - 84328B124D45193DF135E66A4299799A /* PBXTargetDependency */ = { + 858F61F9B9400394EC2AA222E396203C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 96205370750E7374B14ACD374E630261 /* UMSensorsInterface */; - targetProxy = 49CEDAFF9A173F0FF7C6E5779EA3A3EE /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = 123D4D7AC3D41ABC0675B1DB3613066E /* RCTTypeSafety */; + targetProxy = 5FCC3619281D788E2222817FAF6976A8 /* PBXContainerItemProxy */; }; - 84875184260B14895A56B2AAF4D8BF75 /* PBXTargetDependency */ = { + 85C4CB3BF9E589472CBB4B0C11F068A9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFirebase; - target = 15B823CB06FA3E3E70EEFA5195733192 /* RNFirebase */; - targetProxy = F71AFD0A40D579A8CEBF74FDEC85D0F4 /* PBXContainerItemProxy */; + name = "react-native-webview"; + target = F0C4ADFA389E9332F694ED1737F25C47 /* react-native-webview */; + targetProxy = 4CF1F27C521662154CBE5AE3435635C1 /* PBXContainerItemProxy */; }; - 8549CB2E640A0F3F3CA7D4A20576ED77 /* PBXTargetDependency */ = { + 88DBB42A783D1CE172BF6DB088DFA2CE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; - targetProxy = 166F6C4D429C8BC37306497EAA575B67 /* PBXContainerItemProxy */; + name = ReactCommon; + target = 6DE003F64B133830B9AB9321298DAAC2 /* ReactCommon */; + targetProxy = F5693039AEF90A2E66294DA7A2255397 /* PBXContainerItemProxy */; }; - 8593AB4E06C8D9C4575DF0CD176110F1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 5108B653873149EC4BF8AD36798AD6BD /* UMBarCodeScannerInterface */; - targetProxy = A6EF565450EC714FAF068F7A4708E9B9 /* PBXContainerItemProxy */; - }; - 8601E81BA9B5C1B5684E284CF6853EEA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNReanimated; - target = 84BB82258E4223BA2C02A6731A1BCEB5 /* RNReanimated */; - targetProxy = 73A27B88B9807A575D780D725E4545B7 /* PBXContainerItemProxy */; - }; - 862FABD7714712D7B6B76CBB1CBDDF5B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTText"; - target = E49E330A27425F89DE89516B2F50AAE9 /* React-RCTText */; - targetProxy = 40CC0E869D6DD2D46E35A14A4CD18258 /* PBXContainerItemProxy */; - }; - 876AE36EC4B4DD4669B015F1DC15D753 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = B81CA3A3A63C0085E4085060FE4DD9FF /* React-jsiexecutor */; - targetProxy = 9B86F2139E314ECD2D6734EC15E93FD0 /* PBXContainerItemProxy */; - }; - 8982C371DEC0C6FEC2B24FD85F139134 /* PBXTargetDependency */ = { + 8A2051AB643E3137AB8E1E9BD6EE1E0B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 56AE46EFB30F2EAA77FDA2BA67BDDB6A /* PBXContainerItemProxy */; + targetProxy = 9564DD4C527D87C5B4270F56E122628C /* PBXContainerItemProxy */; }; - 8AFE362C728011EC42586AB9CB448CFB /* PBXTargetDependency */ = { + 8B2435A02D436224D531926F64A072BA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFontInterface; - target = 2B96BEB2DA52F32912B485D29E28C7BD /* UMFontInterface */; - targetProxy = B23C5EB2FA5DADA9D5CB24DD22B5B291 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; + targetProxy = 94E1AB33E4528F153E94DA45EF39E16A /* PBXContainerItemProxy */; }; - 8C7CD0DEA5F45DCD11051710EC4E5A2D /* PBXTargetDependency */ = { + 8CC237860C5BBE491B486A82F04A34B5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = F7236D5BFD42DBEDF2652D4E47992BD2 /* React-jsi */; - targetProxy = E552F39725FEECA166639FC7E3315E19 /* PBXContainerItemProxy */; + name = "React-cxxreact"; + target = 9F219ED43F3AEA000562B9BCFD624DDD /* React-cxxreact */; + targetProxy = DD293FD57F5E75F7ADE4D2DBA6FD637A /* PBXContainerItemProxy */; }; - 8D0D12391C2E0B58E338DC9BA81AA6CD /* PBXTargetDependency */ = { + 8D4228BFE6CABD074FA5BEF0801FD772 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-video"; - target = B6C55354377C9FC118FFF334B68A47E4 /* react-native-video */; - targetProxy = E36627C2123E8C028DA8E89C3F30B773 /* PBXContainerItemProxy */; + name = Folly; + target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; + targetProxy = E87814FA3E39E39137413E39FE7A2969 /* PBXContainerItemProxy */; }; 8D5A8BF15CD510250550ACB106EF0C7D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17268,23 +17461,23 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = 0736F43E628DF211771775F69A163785 /* PBXContainerItemProxy */; }; - 8EC05A104EF542491A08337711DBD234 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstanceID; - target = 3C6A9BF574C3488966C92C6A9B93CA8C /* FirebaseInstanceID */; - targetProxy = 7931BCACCDE14C178E81BA7AB4983947 /* PBXContainerItemProxy */; - }; - 8F8F5A4F31EF2702215D0E9ECBF9E9CD /* PBXTargetDependency */ = { + 8E717B3E06DAA2200B488F6B43397D1B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = F951A3DCB912B3CE5E63BCB65BB941AC /* PBXContainerItemProxy */; + targetProxy = 2B77918D08CFE4D0313A39F706EF7B72 /* PBXContainerItemProxy */; }; - 8FAFD031D0B4793EBBD638927B00CBA2 /* PBXTargetDependency */ = { + 8F832C5C217304EF366F6E3866C3F198 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = 5C53A3A5621162049D9B4399173FAD68 /* UMPermissionsInterface */; - targetProxy = D91719ED9D40D92E0EB63F090E90B8C2 /* PBXContainerItemProxy */; + name = "React-RCTImage"; + target = 017AB91E1D5AB2B6096ADC666B072208 /* React-RCTImage */; + targetProxy = 9D73278BAA7FC659D4B7D445CAE1EF37 /* PBXContainerItemProxy */; + }; + 8FDF17CD462C2659221B751A261F7CC6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-cxxreact"; + target = 9F219ED43F3AEA000562B9BCFD624DDD /* React-cxxreact */; + targetProxy = 99B06EE2FDE95DA1ACB5F59968FB5A93 /* PBXContainerItemProxy */; }; 8FDF5740DAB8FA07737CF3A3409154DD /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17298,17 +17491,29 @@ target = 9F219ED43F3AEA000562B9BCFD624DDD /* React-cxxreact */; targetProxy = 1BA9FE8D4FA41AD95626F63DB8C9FBEA /* PBXContainerItemProxy */; }; - 92DA73EABEC6013FAB27DF808770BD31 /* PBXTargetDependency */ = { + 913783E5B1368CACD35C3776DB111303 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-notifications"; - target = F2C53FD5931EC65A936C5F2AD66F1EEB /* react-native-notifications */; - targetProxy = DA0DCAAECCE8A025A30462DB2E8F17DE /* PBXContainerItemProxy */; + name = EXFileSystem; + target = FD0F4E74C14C4B5B552686BD9576466F /* EXFileSystem */; + targetProxy = E857B40D98EF5FD27B99D5BA3006F2E3 /* PBXContainerItemProxy */; }; - 963600A2F78B64AD3BB09E4AEE9C1523 /* PBXTargetDependency */ = { + 91BCC86EEAE990BEFB5871F6A9CA71EC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; - targetProxy = 581AE6C786C1407B2F6B2483FB6D897C /* PBXContainerItemProxy */; + name = SDWebImage; + target = D72528D679933334AAD7996CD73D84CD /* SDWebImage */; + targetProxy = 8F98160B21E2490C73468C6C92281D44 /* PBXContainerItemProxy */; + }; + 9353DA323887939D4F0C17FC8165CF47 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = QBImagePickerController; + target = B2D1A9BE57D1CD04D04DA1329599E7A6 /* QBImagePickerController */; + targetProxy = 36EF2BC556935BA44DA0FFADB1EA0DE7 /* PBXContainerItemProxy */; + }; + 9489CC4A6C7D2CBED638BAC2EF28EC21 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DoubleConversion; + target = E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */; + targetProxy = 55E037F4674D2D5BDE2992FB49E7ACE9 /* PBXContainerItemProxy */; }; 96DA387B98978C2974700F14ACFDEBCE /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17316,11 +17521,29 @@ target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; targetProxy = 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */; }; - 96DF01A77A7F79D17D59744A9B7D9D43 /* PBXTargetDependency */ = { + 96FCBDD2E56B791BA13579A8FA2A2BBD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTRequired; - target = 9D255DD73ADD1E4565B5CCB665433053 /* RCTRequired */; - targetProxy = 8459BF118ED26E4EA2D59D49C35910D8 /* PBXContainerItemProxy */; + name = "react-native-keyboard-tracking-view"; + target = DE5A74080B919B383A77CD73B094CBBC /* react-native-keyboard-tracking-view */; + targetProxy = FCD54E5226C5BC90816ADA500A9F8B92 /* PBXContainerItemProxy */; + }; + 972D5DB3645CC4DDD9B0956991F554BF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "boost-for-react-native"; + target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; + targetProxy = 9959A4212DE91A8EB21A8A58064A7EE2 /* PBXContainerItemProxy */; + }; + 97374B4728D67E0A24CC73AC318F8A74 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-background-timer"; + target = 32B97B2079526CE843CA6A5613012594 /* react-native-background-timer */; + targetProxy = 9F7582582D0D23770420131211231716 /* PBXContainerItemProxy */; + }; + 979F1C3D0BEEA368094EE07CDAFB2309 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImageWebPCoder; + target = EC11D276EDE75D423B7339DD9767E779 /* SDWebImageWebPCoder */; + targetProxy = B8E18FCD36162E4B256515F9AB83275F /* PBXContainerItemProxy */; }; 97C83F1945FAF0077CFCAC91369259D7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17328,23 +17551,23 @@ target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; targetProxy = 6BD0984377EB6F1CDAF209D0EEAE7356 /* PBXContainerItemProxy */; }; + 98D6AF297B7B5465476C15B5AC998F33 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXConstants; + target = A486E5AB43C3327005F1C0B986A448C0 /* EXConstants */; + targetProxy = 5AEC0D6CC7269A725BEDFF7EA1022AF9 /* PBXContainerItemProxy */; + }; 9A6093C2C517B5FC29ACD2E96435EE49 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = 09C15A614E3100AD5CAA64B248FEA2B2 /* PBXContainerItemProxy */; }; - 9A7990CF460B691F65A8FA36412DFFED /* PBXTargetDependency */ = { + 9B0852DB722319CA3DD91CA3B01918A7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = 232D00D8ED7797390FB38004DE01723B /* FirebaseAnalytics */; - targetProxy = 0BE02342FE3A816D60ED8C26C8BBC0CF /* PBXContainerItemProxy */; - }; - 9BE4D8C247B277F084C8F7AECCE28B76 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXHaptics; - target = 5B1BA8B3E53682DD179F7BFF8F2C8B75 /* EXHaptics */; - targetProxy = 8F6B3E765842174FCDBD87265F9BF40B /* PBXContainerItemProxy */; + name = Firebase; + target = 799B29F9D6DCE28B98CC259440382F20 /* Firebase */; + targetProxy = AEC1C0A326FD163D636195C9E7DC5E03 /* PBXContainerItemProxy */; }; 9C390500C3C568F59A8589C455BFF4D5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17352,35 +17575,17 @@ target = 3C6A9BF574C3488966C92C6A9B93CA8C /* FirebaseInstanceID */; targetProxy = C6C35C61164D4136265E61ECEB28D38A /* PBXContainerItemProxy */; }; - 9C4E97CB44CC99B9F903176BEC21D6C5 /* PBXTargetDependency */ = { + 9F4AE7B16041229AABF383D5C6C4A053 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; - targetProxy = 163F9C34B80634101E3925E9BE16FC8C /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = B8773D156F603535D7813D4981DD0B68 /* RNGestureHandler */; + targetProxy = C65B922C310FCE366BFB2880B6C75E39 /* PBXContainerItemProxy */; }; - 9D499ADBBB6B7E9FAF2E1DBF58855B23 /* PBXTargetDependency */ = { + 9FC890B1082B12EBD3DDDFE5309C61CE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Folly; - target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; - targetProxy = B7CFC4F3F41E4E327D8EC6E4096212D0 /* PBXContainerItemProxy */; - }; - 9DAE764CF8B02857A876EA7839572881 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libwebp; - target = 427A5566E42596B2649019D00AA80F10 /* libwebp */; - targetProxy = D32E4F2EE33D2813F2F6FEE1650947C3 /* PBXContainerItemProxy */; - }; - 9ED5D3033934BF9EF5EFCEEFFC7F6633 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 017AB91E1D5AB2B6096ADC666B072208 /* React-RCTImage */; - targetProxy = 91ABE8061C1BC4D8A2756BA52CCFEF13 /* PBXContainerItemProxy */; - }; - 9F535315FF95E093C96BC031DC773B18 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFastImage; - target = E2B978578963427FF7EAE56EE62BD4A2 /* RNFastImage */; - targetProxy = 7511346EDEC8066D98A8FDACE40F7F9C /* PBXContainerItemProxy */; + name = nanopb; + target = 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */; + targetProxy = 9FCF38C7CE06312000B6F94725B23CDD /* PBXContainerItemProxy */; }; 9FF2EAC462E085F8426E42810CD320B0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17394,53 +17599,29 @@ target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; targetProxy = 10B32C2C31A516CD0A0578144E20FD18 /* PBXContainerItemProxy */; }; - A02ABB13DAFDF7241317F43FAA23CB32 /* PBXTargetDependency */ = { + A054314FDF125B8088566AD0CD2A16E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Folly; - target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; - targetProxy = 63A03E31B52F3ADD6D577FBBA0D6403C /* PBXContainerItemProxy */; + name = "react-native-safe-area-context"; + target = BB5B4FB9526DC1FEC5AEBB3C4E4239E6 /* react-native-safe-area-context */; + targetProxy = 93C3E19F01B286CA9095B507A60B0949 /* PBXContainerItemProxy */; }; - A062F8EBC08EE93A10BD86CB3BB8E2AF /* PBXTargetDependency */ = { + A07B064594B2B86C1C47BBEF0F1ED296 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-splash-screen"; - target = F1EE4DA45FFDFD18B54B38BE623F2FA2 /* react-native-splash-screen */; - targetProxy = 8C91A57819D1EA86F9C8D306D9CBEDE7 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 01B53B6A43CBD6D4022A361BBFCCE665 /* FirebaseCore */; + targetProxy = DA88C4C9C878A87E9B1CD0FCBCE8D2F2 /* PBXContainerItemProxy */; }; - A197F4A25694A2421E249A19F43496EB /* PBXTargetDependency */ = { + A1F71AD3F2A7DC2B2A5A38BCCCBC7FEF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = C2F81329D3C42F2D872A4B80180545BC /* React-RCTLinking */; - targetProxy = 8B09C9BCD5EAA06DC1658D972B45AD7C /* PBXContainerItemProxy */; + name = SDWebImage; + target = D72528D679933334AAD7996CD73D84CD /* SDWebImage */; + targetProxy = 3BDB0C9B7B7ACA524E13D4F6D7BAE206 /* PBXContainerItemProxy */; }; - A1B12C8B91A4D5A233990510DE35841D /* PBXTargetDependency */ = { + A3080F714ECFEF3F81AED2A6CC1D1EF8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1E7F02AFF67B5BD0ACE8CCA04DF1356E /* react-native-orientation-locker */; - targetProxy = 9ED699F6A1C2E9D1142AC5207E8784F2 /* PBXContainerItemProxy */; - }; - A2A70BBCB2D28A68BB8A0439F01E1EA3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; - targetProxy = EA69ADE62468EE03853B57EDB898ADCC /* PBXContainerItemProxy */; - }; - A326254BC2CA3E03D3FC6BE950561380 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 62D54DBCE8E0274997CAF37B51B9F306 /* SDWebImageWebPCoder */; - targetProxy = 50AEFDA7159EAFA1CFF8D96A67A339CB /* PBXContainerItemProxy */; - }; - A3BA93A4AD4F45E97EAAC3C28BA11406 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "QBImagePickerController-QBImagePicker"; - target = 7817B05E6E79731DF1D171B7D405F411 /* QBImagePickerController-QBImagePicker */; - targetProxy = 850ACB6EDF78D50D77DF83591C7958AE /* PBXContainerItemProxy */; - }; - A440AC2274D038325FAC1C0C42748118 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 7DC30CA7B73824BDE446B33B5F944E35 /* RNDeviceInfo */; - targetProxy = 11EF78A96FA8C994BECBD284F817F22D /* PBXContainerItemProxy */; + name = "react-native-notifications"; + target = 1837EDA22C2525E2325468D2A3635FE8 /* react-native-notifications */; + targetProxy = 96860288AE4670A28516DDFB794E38F1 /* PBXContainerItemProxy */; }; A5351590EF2D946171B0ECC1142DED94 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17460,17 +17641,47 @@ target = 60F43D68BD7290E1B24C3BE7B3382AD3 /* React-RCTNetwork */; targetProxy = 3C63709D9A9E8BFEDDDB0EC6915A77BE /* PBXContainerItemProxy */; }; - A785C69B9405236FB3809B7F9F8D2477 /* PBXTargetDependency */ = { + A64183EFC8B47F49D3F3251E539138ED /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 458293E00EF1C1F42778F9425AD34AA4 /* UMConstantsInterface */; - targetProxy = 6AD518E5DA7F2E65365B5F533BE5CB48 /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = 123D4D7AC3D41ABC0675B1DB3613066E /* RCTTypeSafety */; + targetProxy = 8E864937DBE9A3340C93A9DEDF95C6F5 /* PBXContainerItemProxy */; }; - AA7E2B5932EB88A612CA82E5A7963C17 /* PBXTargetDependency */ = { + A65BC843E68F7C05C609AA0F1FC15072 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-webview"; - target = F2C15AB5776BB3F7736E68FEDC1A4A36 /* react-native-webview */; - targetProxy = 65B183FB26A69CDB54B67CC35D542ED3 /* PBXContainerItemProxy */; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 6179760B745D9E2A61651CA58BA66FB0 /* PBXContainerItemProxy */; + }; + A81AEB722BB7833B7DB764026BDE34BE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-background-timer"; + target = 32B97B2079526CE843CA6A5613012594 /* react-native-background-timer */; + targetProxy = 813DE34375123FF68955C7FBFB202613 /* PBXContainerItemProxy */; + }; + A84FAA0FDE7A2FF2690DE22BD47DD1BE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; + targetProxy = 62901CAAB361EACAD840426C35553A22 /* PBXContainerItemProxy */; + }; + A8967FD95D63B2D181893924419BAFA7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = F290F3B95B911B8416A6FE1B40B0C4C4 /* PBXContainerItemProxy */; + }; + A8FBB699E90D04C307C07C5C2F00D9DB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransport; + target = 1F22396CB543506E7EA28A47A30E9727 /* GoogleDataTransport */; + targetProxy = 1F8B5A5B2B2CC65F780A09DF4E295FD2 /* PBXContainerItemProxy */; + }; + AA44C61384B973BCED47825EC3CA8C3C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTLinking"; + target = C2F81329D3C42F2D872A4B80180545BC /* React-RCTLinking */; + targetProxy = A977DCA651DFC463134AE2DA3E08CE38 /* PBXContainerItemProxy */; }; AA9052A974DA4ECF27CC38A7633849E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17478,23 +17689,23 @@ target = 57B9E0A892EAB5C13D4AE7D4B1DE0C16 /* GoogleAppMeasurement */; targetProxy = BBDC7C661CA5567D3925BC0747CAAEC5 /* PBXContainerItemProxy */; }; - AAE088C5732B3B7129D35B9BCBEBF263 /* PBXTargetDependency */ = { + AB156D5A44F302B2FAC7E3A5C62E3D94 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 9F219ED43F3AEA000562B9BCFD624DDD /* React-cxxreact */; - targetProxy = C1C93625DD24831FAD44640C4335A253 /* PBXContainerItemProxy */; + name = RNVectorIcons; + target = CC1AB14B9BDA80213A889CE582D91D46 /* RNVectorIcons */; + targetProxy = 15D726A16CEFAC1A665B96BE4AF69646 /* PBXContainerItemProxy */; }; - AB41EC354A260F9CC69B4A3FB4F0D9B5 /* PBXTargetDependency */ = { + AB5817D865AD52E662A1CCFE17F81CD7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = 43CA9BA5B764ACB732696877E3FC307A /* react-native-document-picker */; - targetProxy = 388FD9763DBAD4AB08500D98D93260D0 /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnostics; + target = 426398FA61DF648ECF7C6897DFAC6E8E /* FirebaseCoreDiagnostics */; + targetProxy = B2708954D95D8346F76732122E9298DB /* PBXContainerItemProxy */; }; - AD57F9E5616C4F12F604F7E731A99E6C /* PBXTargetDependency */ = { + ACF33DE4C318DE79A0EC037ABDDEE8A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = F45971A372B34A0A3B690DD27B08E555 /* react-native-background-timer */; - targetProxy = D461194CE5058B93DA1A2233639E8993 /* PBXContainerItemProxy */; + name = Crashlytics; + target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; + targetProxy = 7029CE8522105B8AC908BF23542874AD /* PBXContainerItemProxy */; }; AD8CC2C3AD641422282F5A8CD85BA0A7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17508,71 +17719,41 @@ target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; targetProxy = 5BE488B88EB1D7B8BFE4A63D278D4B18 /* PBXContainerItemProxy */; }; - AEB5F19FA07D8298095985BEFF5528D2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = BD7B2D8FF0ABCB89D01F6E21D5364678 /* React-RCTVibration */; - targetProxy = 3E1E8AE445AEE04435C413BAC84440C1 /* PBXContainerItemProxy */; - }; - B0FC01609163E412D539FA7AF1097DFE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-splash-screen"; - target = F1EE4DA45FFDFD18B54B38BE623F2FA2 /* react-native-splash-screen */; - targetProxy = 22493A24F1C0A015455E530644C31594 /* PBXContainerItemProxy */; - }; B12997E3D5BE4F39EC03469A5CD99829 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMPermissionsInterface; target = 5C53A3A5621162049D9B4399173FAD68 /* UMPermissionsInterface */; targetProxy = 17299B3B10FACA862736181ECC44D9A8 /* PBXContainerItemProxy */; }; - B1BA103374ADAD31C31439572175EB83 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXWebBrowser; - target = B11E238094137347E8790BFEB1BEF01F /* EXWebBrowser */; - targetProxy = D47995974172598A484CFED9347C01E0 /* PBXContainerItemProxy */; - }; - B24944A4C19A13004E54571B54A944BE /* PBXTargetDependency */ = { + B37CEEF6837A58215756C44A4B5D3F67 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 66BFF9FAF41945BEAD54F14CC4A47410 /* PBXContainerItemProxy */; + targetProxy = 77B870869E718428E67995FEBDAB29B3 /* PBXContainerItemProxy */; }; - B2F604A2E0FAFE2943463863A0C805DA /* PBXTargetDependency */ = { + B4612418E9B092441D4053FB9CAEA7A6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 188FD3D9F8B10F882F9D17C690CB0C21 /* PBXContainerItemProxy */; + targetProxy = 0D54F75D13A12C77C0EE20D6A5816A82 /* PBXContainerItemProxy */; }; - B3E868CEDBEEEF93EA9AEBC9DF06E245 /* PBXTargetDependency */ = { + B4B2CAB7C548D893CC69214EB2AAD17A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = C96F7CC4B7AFBEEDE979DA2196094142 /* PBXContainerItemProxy */; + name = "QBImagePickerController-QBImagePicker"; + target = 09642168638DE42DDA2921CBADC48193 /* QBImagePickerController-QBImagePicker */; + targetProxy = 0C871C5D38CD455E13E838CAA6D6E3CD /* PBXContainerItemProxy */; }; - B628847A973F430015B09AFB3F5BB912 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = BA602E0E6B0AAFD40F5578A3B7231AC3 /* UMImageLoaderInterface */; - targetProxy = 5F5DB5D8B3F415BD0E8377199640C2FE /* PBXContainerItemProxy */; - }; - B63BD77B045CD57B4386D1CEA29A28B1 /* PBXTargetDependency */ = { + B5134C1C99D55B72C18538A80B546B14 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SDWebImageWebPCoder; - target = 62D54DBCE8E0274997CAF37B51B9F306 /* SDWebImageWebPCoder */; - targetProxy = F8C4B2C230DCB95D74B2E08FB0FB3EDA /* PBXContainerItemProxy */; + target = EC11D276EDE75D423B7339DD9767E779 /* SDWebImageWebPCoder */; + targetProxy = 5AEBCAF81BB16CFAA5A4D4DA416663FA /* PBXContainerItemProxy */; }; - B6C64782BF572920684B04875399E525 /* PBXTargetDependency */ = { + B6179968FBEA0FF654EE45ABBF2647C8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-CoreModules"; - target = 489CCEBDC649D379F1AB6CAE0B453E80 /* React-CoreModules */; - targetProxy = C885267ADC502508EE2136C2367DC76A /* PBXContainerItemProxy */; - }; - B716CC82DDF14C749E867493649C07F0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBLazyVector; - target = 1CCF1D06CCFE0D0AB787DF0923C94D79 /* FBLazyVector */; - targetProxy = AE4B49A29DC1CD8B39D1A9BC293C86FA /* PBXContainerItemProxy */; + name = "react-native-splash-screen"; + target = 4C2F2E6EC9A37A9237D2149D178CCCD4 /* react-native-splash-screen */; + targetProxy = 37F0A62EDD5EC95315A8894B96F3D36B /* PBXContainerItemProxy */; }; B89D2CB67178C93A2DFF80F628C7A710 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17580,23 +17761,11 @@ target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; targetProxy = 54A7BA384E80D5DB0269C827877FE175 /* PBXContainerItemProxy */; }; - B91B35B25105EE3C7A5942FA60C1CDC8 /* PBXTargetDependency */ = { + B95F8CA85E968FCB2516CD9749251B9C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; - targetProxy = 29B92255F2E601064B66B5605B166443 /* PBXContainerItemProxy */; - }; - B9EDC2CA6CF6593BD7C9606474A1D51B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RSKImageCropper; - target = 48F9CAC66FE3C08FEE3ACAA5C6FEF569 /* RSKImageCropper */; - targetProxy = 4A0622B1B770B00743A122DDCD5C2AE0 /* PBXContainerItemProxy */; - }; - B9EE5F827F0B6A52F76608E3F01995A3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXConstants; - target = A486E5AB43C3327005F1C0B986A448C0 /* EXConstants */; - targetProxy = BDEC566654050832F6A1B562C45CEDC1 /* PBXContainerItemProxy */; + name = FirebaseAnalytics; + target = 232D00D8ED7797390FB38004DE01723B /* FirebaseAnalytics */; + targetProxy = D1213CE89A7EC8A3F23BD2FAC3C1BB43 /* PBXContainerItemProxy */; }; BB0C888F9800A9CBBD7F9AB387D65080 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17604,23 +17773,17 @@ target = E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */; targetProxy = 95BD7607104E910918F88DD81F19B1C1 /* PBXContainerItemProxy */; }; - BB5DB4B85434DB83608287AE88125524 /* PBXTargetDependency */ = { + BB33DF1ECB164043C8A7C26EA3B1F16A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Folly; - target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; - targetProxy = C5F41AAA4C64E96573E828555F2E86A0 /* PBXContainerItemProxy */; + name = Firebase; + target = 799B29F9D6DCE28B98CC259440382F20 /* Firebase */; + targetProxy = B4A4363AA554BE782BA871DEB9F69E15 /* PBXContainerItemProxy */; }; - BC0FB8059149D2D9DFA41E4FC078CDA8 /* PBXTargetDependency */ = { + BD07FA2806D4599BDC397EF27FD8F457 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTRequired; - target = 9D255DD73ADD1E4565B5CCB665433053 /* RCTRequired */; - targetProxy = C3AAB99FAA4DC758FB1CCFACAC5D0AB8 /* PBXContainerItemProxy */; - }; - BCBDC1EFF86D95752E1ADAD22136AC26 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFirebase; - target = 15B823CB06FA3E3E70EEFA5195733192 /* RNFirebase */; - targetProxy = D345317F20569BCEA8E204CC830D708B /* PBXContainerItemProxy */; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 68B968331DEBE4486DD756DDF18B0524 /* PBXContainerItemProxy */; }; BD9A27944522233DC0927B646379AEDA /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17640,29 +17803,29 @@ target = 458293E00EF1C1F42778F9425AD34AA4 /* UMConstantsInterface */; targetProxy = 3CE12525FC73E81B8DC468274B077D13 /* PBXContainerItemProxy */; }; + BF557DDF60F9945FD278CDBBFD57C833 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNLocalize; + target = 9B1043B9A63EAA4E2CF205B8FA3565CE /* RNLocalize */; + targetProxy = D38F7B6A79CD4C42C0C398DD1744A764 /* PBXContainerItemProxy */; + }; BF9BF0CDEA697B8AF2D71C6FF954AC77 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTRequired; target = 9D255DD73ADD1E4565B5CCB665433053 /* RCTRequired */; targetProxy = 2C95DFFCB2EC326C56D43774DED19805 /* PBXContainerItemProxy */; }; - BFD0F5BA4CE815EE689D1C07F287B4C6 /* PBXTargetDependency */ = { + BFA749ADBB7634F019351C589E9712AA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; - targetProxy = 896AD7F43F782CCA7BC3316BDFC37988 /* PBXContainerItemProxy */; + name = "React-RCTVibration"; + target = BD7B2D8FF0ABCB89D01F6E21D5364678 /* React-RCTVibration */; + targetProxy = E23814F5F360DA5380DDFE925CD400F4 /* PBXContainerItemProxy */; }; - C0F355F5F810F8DE1EFBFEE0A6E4A477 /* PBXTargetDependency */ = { + C08E1D13B42EAB1727537026C8778F42 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImage; - target = 012AE749BB302180A2F0730AF8E0490E /* SDWebImage */; - targetProxy = E9AC80D82B60CCB105922C062F1718B3 /* PBXContainerItemProxy */; - }; - C134F6970F03B9396B8C9A72A3B03BD2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-keyboard-tracking-view"; - target = E4D9E3C5E2CE0F3B8F6462A54DAA07EB /* react-native-keyboard-tracking-view */; - targetProxy = DB6919F0F80DC6D724888D3611CB1485 /* PBXContainerItemProxy */; + name = UMImageLoaderInterface; + target = AC715495C5294BEB747E601DBB313B5A /* UMImageLoaderInterface */; + targetProxy = E7DB114C4209456706BCC56ADCEE2412 /* PBXContainerItemProxy */; }; C217101135EFE0403239B5B2FC6C3632 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17670,54 +17833,96 @@ target = 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */; targetProxy = F2E57867E76DED400D1A4035EF3D8735 /* PBXContainerItemProxy */; }; + C2C826C4236BC14F94A06E63F78C6D0A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTRequired; + target = 9D255DD73ADD1E4565B5CCB665433053 /* RCTRequired */; + targetProxy = CEF7916327923915855140BFCA445E1D /* PBXContainerItemProxy */; + }; + C2D7FB034D942687A9108E661A528F6C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNReanimated; + target = 8E9F01B150517E3739C7748CF6D42337 /* RNReanimated */; + targetProxy = 3C5C9B25FDA43A5B23A06704C9CCA660 /* PBXContainerItemProxy */; + }; + C39B9258AAD6FC2BC8F5E22DEF8B3CA5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-jitsi-meet"; + target = E815F092E40E6946F21899111DA998C4 /* react-native-jitsi-meet */; + targetProxy = 787065961CEEEB33A71905A998C7C17E /* PBXContainerItemProxy */; + }; + C51C4CA1845B74FF7CCE072EB8C7FD0F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Crashlytics; + target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; + targetProxy = 67C23BA49C05DE5FDEAE47BFB6FC1E22 /* PBXContainerItemProxy */; + }; + C53A6EC9E9FC25774308311027A9BDF6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = QBImagePickerController; + target = B2D1A9BE57D1CD04D04DA1329599E7A6 /* QBImagePickerController */; + targetProxy = 277643BFD9B6D285F03A66CD3DFADF48 /* PBXContainerItemProxy */; + }; + C5EC3656E605C6EE9E7D082D10E846FF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Fabric; + target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; + targetProxy = 3AD8D4794157596B09C18CFC870E46CB /* PBXContainerItemProxy */; + }; + C676BD5261B861EFEFF0D514A1E6C56A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImageWebPCoder; + target = EC11D276EDE75D423B7339DD9767E779 /* SDWebImageWebPCoder */; + targetProxy = C3FF1490E9908B62AD5B9B2680D4DABE /* PBXContainerItemProxy */; + }; C685EEFD7FF4D4C3F16AD088F18AD053 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; targetProxy = FE8C7693079779C66A2B166BAD56A51E /* PBXContainerItemProxy */; }; - C6B55C7CD22C56AFF5A6D0A285BF1960 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNLocalize; - target = 0968391E5351AFD65E48369B3645BEDC /* RNLocalize */; - targetProxy = 56465ADC9722CC7D91B8BF74305F8B31 /* PBXContainerItemProxy */; - }; - C81DBA2C8BD105164979A0F8C455F529 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 22A84298F462C8FCFA1551088927C9C5 /* PBXContainerItemProxy */; - }; C88567C1EA97046D4200985228F41BAC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; targetProxy = 3DA6710AAE682E070695F228266936B7 /* PBXContainerItemProxy */; }; + C946FF795E9424870F73694867FEA2BE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImage; + target = D72528D679933334AAD7996CD73D84CD /* SDWebImage */; + targetProxy = EBF2A9E0396DCFB9C799C48BC73F8177 /* PBXContainerItemProxy */; + }; C9CEFEFAAAEDB8CD947737FA56C849D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Fabric; target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; targetProxy = D465047540D12FD9D95291AE82A76DB9 /* PBXContainerItemProxy */; }; + C9DAB46026726FA82FDA3B818AE39F83 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNScreens; + target = A83DA188DB8A2E365EC3B1FD19C9A3F5 /* RNScreens */; + targetProxy = 29BB30D924A6947CC1D3ECD250530A3C /* PBXContainerItemProxy */; + }; CA20CC0CC8595F02B384BCF03BBE9452 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 01B53B6A43CBD6D4022A361BBFCCE665 /* FirebaseCore */; targetProxy = 455009ED9ED8F59E3D7880EA52A66B11 /* PBXContainerItemProxy */; }; + CA90190BC6104F2C8CA3BEF52F674788 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; + targetProxy = E8BF3010BA68F5E6C314C50EABBB7648 /* PBXContainerItemProxy */; + }; CB67FB062DE8CAF07E20E144CB621739 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 01B53B6A43CBD6D4022A361BBFCCE665 /* FirebaseCore */; targetProxy = F6A14184DE3C02C257A7298719E4FD9B /* PBXContainerItemProxy */; }; - CBA2760A17FAFBEF8DD73E7BDD285273 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFastImage; - target = E2B978578963427FF7EAE56EE62BD4A2 /* RNFastImage */; - targetProxy = 260400F30E94C156B1F8C1345937F50C /* PBXContainerItemProxy */; - }; CC72211E5223B63D0561752142275FE9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsinspector"; @@ -17730,35 +17935,29 @@ target = F7236D5BFD42DBEDF2652D4E47992BD2 /* React-jsi */; targetProxy = 4BBDCF74AAA6DEC7420E0CB6C398D3AF /* PBXContainerItemProxy */; }; - CEB5633051B7A95847D91C6329D29752 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; - targetProxy = CD0B1E9D3D1B9B1FA2289973863A3C36 /* PBXContainerItemProxy */; - }; CF8BC28987E07E2E11472F3922622864 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = 5C8A3E6AB1161E9CF7D5A8AC0368B080 /* PBXContainerItemProxy */; }; - D0414EEC0E0E082423EB616509B8535A /* PBXTargetDependency */ = { + CFEE3CE0B93507F37A6009E03B7C62FA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = 89354908C626AE1F1E4D5E9F42F4E248 /* UMFaceDetectorInterface */; - targetProxy = 4E330524FD444D4326FB1911657594BE /* PBXContainerItemProxy */; + name = RCTRequired; + target = 9D255DD73ADD1E4565B5CCB665433053 /* RCTRequired */; + targetProxy = F02DF01C874388D1198F20D997AEF3AD /* PBXContainerItemProxy */; }; - D0A20DBA0A66EAE9B6703A1BFC76EB97 /* PBXTargetDependency */ = { + D01886FD0ACAAD13A760B997C4259887 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 4C64158251B8E41D79AE900D7E5A10B1 /* UMReactNativeAdapter */; - targetProxy = 8C5E161F53D3833D3CA76726E0E2BC1A /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = 2A99896D65A33A482D2D82FC436F823D /* FBReactNativeSpec */; + targetProxy = 09ECBE38DDDBE216ED633A0A3DCA4B2F /* PBXContainerItemProxy */; }; - D0B5F9267C666CAAA4B528ADFEEA585B /* PBXTargetDependency */ = { + D09AD20161029C176ACEB7DCBCE4FFF1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 1F22396CB543506E7EA28A47A30E9727 /* GoogleDataTransport */; - targetProxy = 54494BCEE2A64574C03812C30FEFEDA4 /* PBXContainerItemProxy */; + name = libwebp; + target = 427A5566E42596B2649019D00AA80F10 /* libwebp */; + targetProxy = F0F832C3A000E4F3D295A8B28194D52E /* PBXContainerItemProxy */; }; D0C999A431508F325E3286B2E73F5BA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17766,65 +17965,35 @@ target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; targetProxy = A94EF2BE3BB5C93DEBBBD89AA7A50736 /* PBXContainerItemProxy */; }; - D1D3B526D141C0AB8E24C85846DB7919 /* PBXTargetDependency */ = { + D0EE2FDA3F7CB319242B445B24BE8284 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Yoga; - target = FEC7CEE99C30C1292EC32D7E006E4E85 /* Yoga */; - targetProxy = CAA8BF55A8AAA3350A8E1CE37FDDEFE0 /* PBXContainerItemProxy */; + name = RNFirebase; + target = E5BFB4B0AFB8B1338DA5ABC32124BED6 /* RNFirebase */; + targetProxy = DC71E323F2ECDE76B898009EC38DB63C /* PBXContainerItemProxy */; }; - D1EC2C465ABCB54566725F74AD23A2BC /* PBXTargetDependency */ = { + D3345671D9A8283E2337BD1EAE022E4B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = BD7B2D8FF0ABCB89D01F6E21D5364678 /* React-RCTVibration */; - targetProxy = C506CE424D5D3020DC730062C5BEA7E8 /* PBXContainerItemProxy */; + name = RNImageCropPicker; + target = 76045FDE22A7E6A917DFC0E5B11A9D64 /* RNImageCropPicker */; + targetProxy = E4113935D2DF5C19C44392502957C5D4 /* PBXContainerItemProxy */; }; - D327B3E1B3E63F4A1783312ACC137C61 /* PBXTargetDependency */ = { + D4B9684C3B3A5B9B5D763360BEC8FB8D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = A6376483D2C979E25958F0DFAD724C95 /* PBXContainerItemProxy */; + name = "rn-fetch-blob"; + target = F20B81FC3B7B8A0BDCAF087081B0C22E /* rn-fetch-blob */; + targetProxy = 93C20AD94216EBF40FD61FA266D7BD70 /* PBXContainerItemProxy */; }; - D65FD5981663B81ABAF51F16ECC829B4 /* PBXTargetDependency */ = { + D5257D579E5F492FE1AC585F46BE4DBA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNAudio; - target = 68FD26CCB7EFC21DBD9D571910B36E1B /* RNAudio */; - targetProxy = F005E2F177C93339BEB342CB07BFDA0B /* PBXContainerItemProxy */; + name = "React-RCTText"; + target = E49E330A27425F89DE89516B2F50AAE9 /* React-RCTText */; + targetProxy = EF4FA6E6923EE9A579972ECCE8A523EC /* PBXContainerItemProxy */; }; - D6A95030FBB81059BC761121537DC59E /* PBXTargetDependency */ = { + D531AF0D2925832E5D0594B3CB3DA51F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNVectorIcons; - target = 580D789B2C917AAD8F584EF17E390A5F /* RNVectorIcons */; - targetProxy = 78069FCE0F77E8446ABF193F0B74C518 /* PBXContainerItemProxy */; - }; - D6C42A0E5E7CE1076A06018E0708E5FF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Crashlytics; - target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; - targetProxy = 2D6FAC4C0530177DF3F0567418C0A83A /* PBXContainerItemProxy */; - }; - D830E9744B49A68767644313A08F4951 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-video"; - target = B6C55354377C9FC118FFF334B68A47E4 /* react-native-video */; - targetProxy = 924CFE5D622FD530A2A06F343D80B185 /* PBXContainerItemProxy */; - }; - D88265C0430DAE1377D5310BE378723E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 2E2ABA11C27993D4CDD5DA270C4B75F1 /* React-RCTBlob */; - targetProxy = F69ABBCA9A0F159EE0553BAC781D2909 /* PBXContainerItemProxy */; - }; - D8AC07560A48C6CB279059C33E684B22 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsinspector"; - target = 115FC7605B6A0F6044A879F6EEB7DD99 /* React-jsinspector */; - targetProxy = C5D19A7F93A279CF782C9A6989B5F504 /* PBXContainerItemProxy */; - }; - DB141FDAF8FFA4FEB66B31DA26F32BB3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = 2A99896D65A33A482D2D82FC436F823D /* FBReactNativeSpec */; - targetProxy = BE43034E516FBC750C46F75E64D1E562 /* PBXContainerItemProxy */; + name = UMFontInterface; + target = 2911DE646E6DFD9455119DA0F7248020 /* UMFontInterface */; + targetProxy = 604F089D7ABEB3008D01D74CF794317B /* PBXContainerItemProxy */; }; DB80506935610BC87AFDD4834FC611D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17832,29 +18001,35 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = 248015A2F1D88F57B6E26BA56A382F2C /* PBXContainerItemProxy */; }; - DDBD6F10DF82B1F91A318AC0FBE5B48F /* PBXTargetDependency */ = { + DD82FAB789A5F50BEC0BC33133306F95 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = QBImagePickerController; - target = 4C0C7B693B06D0DBEA04F9ABE003D758 /* QBImagePickerController */; - targetProxy = CCB8E1F19EED12AEC28B043D4EAD5CE5 /* PBXContainerItemProxy */; + name = "react-native-document-picker"; + target = 17378B5ED23F0B7A52011DAE2B803A05 /* react-native-document-picker */; + targetProxy = EA59F7AA29533ECE4C28DE61F0F5BC8F /* PBXContainerItemProxy */; }; - DF00B042C845B07D21D7B9E0FE4315F3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFontInterface; - target = 2B96BEB2DA52F32912B485D29E28C7BD /* UMFontInterface */; - targetProxy = 1624E3FBE2E388D501443932D344ACB0 /* PBXContainerItemProxy */; - }; - DF70724E774AFE3C151FA2420F660F59 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Firebase; - target = 799B29F9D6DCE28B98CC259440382F20 /* Firebase */; - targetProxy = F5EB2543945C3EF18AFBEC96C56DFD76 /* PBXContainerItemProxy */; - }; - E15FBF2D50DB35082FA5C15760F9E170 /* PBXTargetDependency */ = { + DDC6ECE36AD987A05F7F595754EC4963 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 9273A7632365E18FFAC98BE651678752 /* PBXContainerItemProxy */; + targetProxy = E6FD5CB146E8E33593A2C0C15A48A8A2 /* PBXContainerItemProxy */; + }; + DF304B179C79BBF0AF1C75F12EBCAF95 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; + targetProxy = 8848DF2534520D67141808F966996484 /* PBXContainerItemProxy */; + }; + E01B2942CF6989FFCE2D8815C1A5894A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-video"; + target = 3665DFF5E63879E71E17B6E7B32A2899 /* react-native-video */; + targetProxy = 1F6945FF2619462E58188CFC94E7BB88 /* PBXContainerItemProxy */; + }; + E19D39EF296B5FBA7600D3C006EBE48F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMConstantsInterface; + target = 458293E00EF1C1F42778F9425AD34AA4 /* UMConstantsInterface */; + targetProxy = 1121E171E9D7DA8F764EC27E056910F7 /* PBXContainerItemProxy */; }; E1DA9EC93E3834DAA49C0A257DFA8741 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17862,59 +18037,35 @@ target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; targetProxy = 0AA48B35BA7148412EA836482D3727DB /* PBXContainerItemProxy */; }; + E1E48C765086CAA33E9D7CE5DE4E9A6D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTNetwork"; + target = 60F43D68BD7290E1B24C3BE7B3382AD3 /* React-RCTNetwork */; + targetProxy = 81580CC5C518DC62660D2E3F5E09FA3E /* PBXContainerItemProxy */; + }; + E3CA334E1407E86648AFD5A7FEF1499E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-CoreModules"; + target = 86E0FD6F1E6CD55F28FDDB1D399CA7F7 /* React-CoreModules */; + targetProxy = 12F31D9C87CCEFBBDB77BBD24374E50D /* PBXContainerItemProxy */; + }; E3D1654B918455824279631C48CD8D36 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; targetProxy = F142B4DF83D0AEA677D3ABE7D7E5BA0C /* PBXContainerItemProxy */; }; - E498E84245C6E5439756BB30B91FC723 /* PBXTargetDependency */ = { + E50344DAFB21A1F8D31B6575405A74E4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnosticsInterop; - target = A1DA7160DD40C2F4C7332F30DE279FC2 /* FirebaseCoreDiagnosticsInterop */; - targetProxy = EE192D238105A10D18B0E9B0AA3D65B0 /* PBXContainerItemProxy */; + name = RNAudio; + target = C78807E7E9A8C08F9906CF47DE441E57 /* RNAudio */; + targetProxy = 5A32A213DBB79D8B8B31B5685D7D2070 /* PBXContainerItemProxy */; }; - E4C8745E51D6B1818C734571AF53C081 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 4B46CDE4D80107772B319E892C6315CB /* rn-fetch-blob */; - targetProxy = 1D3AE33345BE4D68094CC31D1027378D /* PBXContainerItemProxy */; - }; - E50E8A29F8E861E64630437AFE01A5F0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = 6D6AEAB3F5088F4B4EF5EEA6B011226E /* rn-extensions-share */; - targetProxy = A6CFCE84DC430EE04846A34DA14D7E4D /* PBXContainerItemProxy */; - }; - E648236495A38D197166CC7637AB8A92 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNScreens; - target = C2ECC9F00932B89184DFC0F90BB87BB9 /* RNScreens */; - targetProxy = C293C313AF756DFFD31C6BDB21594BB3 /* PBXContainerItemProxy */; - }; - E7BB98E77CAF1CF858FB091817940E45 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = 43CA9BA5B764ACB732696877E3FC307A /* react-native-document-picker */; - targetProxy = 4CF7C35A188AC07C88CA5E9E1A311D6A /* PBXContainerItemProxy */; - }; - E887F570EC3B29B5EC1F4FA37BC97185 /* PBXTargetDependency */ = { + E884C4C922AF7C07172A1C6E880CC9F1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNDeviceInfo; - target = 7DC30CA7B73824BDE446B33B5F944E35 /* RNDeviceInfo */; - targetProxy = 4ED8C659E79C5F3B5E0CF58AFB2479D9 /* PBXContainerItemProxy */; - }; - E8A21CC175CE8C25C0175068BB89BD27 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 426398FA61DF648ECF7C6897DFAC6E8E /* FirebaseCoreDiagnostics */; - targetProxy = 67658B3701DCD86F294DB5BD56327ED0 /* PBXContainerItemProxy */; - }; - E903161040AAD5641C582E0EF37EBB9D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-webview"; - target = F2C15AB5776BB3F7736E68FEDC1A4A36 /* react-native-webview */; - targetProxy = B7610EF1E8233D7D9FE02DF432CAA90F /* PBXContainerItemProxy */; + target = BDD36BE8D4A81A3232F5093FE20B819A /* RNDeviceInfo */; + targetProxy = 131C0A69C52D095CA0459BE824DB238E /* PBXContainerItemProxy */; }; E94723BF5AD08FD427D108D517EF6A86 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17922,29 +18073,23 @@ target = E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */; targetProxy = F2FF55E89F9BA0040B50E35573928069 /* PBXContainerItemProxy */; }; - E9ACE3D9A3C029A21CA67AAF5BFABB4C /* PBXTargetDependency */ = { + EA895648D37BA0792BBEC189CE0CBF59 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNUserDefaults; - target = FE8C90DDDB9FCFB2290889A1F43FC34F /* RNUserDefaults */; - targetProxy = 0AB1F39EA1ED6EDE5EA734CE2FCA1912 /* PBXContainerItemProxy */; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 0232C3BAB7D1770DA1B2B23B7E939486 /* PBXContainerItemProxy */; }; - EA0CAECE73F81E80BD1B0F0B24AE8B29 /* PBXTargetDependency */ = { + EAA568E97F72DF492816E6BC07EF44E1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; - targetProxy = 963302CBCB73EC6C8446D8A2BDD50A3A /* PBXContainerItemProxy */; + name = RNLocalize; + target = 9B1043B9A63EAA4E2CF205B8FA3565CE /* RNLocalize */; + targetProxy = 18E3F26869DFAE8CD866DFAF0503B2D4 /* PBXContainerItemProxy */; }; - EBB44F6A67EE26F6A9B6221B525D84B5 /* PBXTargetDependency */ = { + EB4D25CADBE5B5EA88025EBEC7848847 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = 6DE003F64B133830B9AB9321298DAAC2 /* ReactCommon */; - targetProxy = 6A58D425739945D3A92A7E271BD4A331 /* PBXContainerItemProxy */; - }; - EBD3ACE2029CEFE11715C86A83EA9063 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 64E78828D8355514B3B6BE78FAE7806E /* React-RCTSettings */; - targetProxy = DF3AB41111F589D9CBD32D6AE7FB1E5A /* PBXContainerItemProxy */; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 0B500C41490070D67613947F4257B86F /* PBXContainerItemProxy */; }; EC566DF9BFE7FD959CB2819808630F73 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17958,18 +18103,6 @@ target = E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */; targetProxy = 75A8D1D5089B0ACAF241DACEA0305423 /* PBXContainerItemProxy */; }; - ED57364F1D0585C446251A283DFFC24B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1E7F02AFF67B5BD0ACE8CCA04DF1356E /* react-native-orientation-locker */; - targetProxy = 9609341E78BAD860C04EBE6F1F42B96A /* PBXContainerItemProxy */; - }; - ED71E39465F24AEA35980E406B9EA437 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXFileSystem; - target = FD0F4E74C14C4B5B552686BD9576466F /* EXFileSystem */; - targetProxy = 4039EE8499835C5D2E0E86B0453AA194 /* PBXContainerItemProxy */; - }; EE6B8197B665B038E8D397A9EA149347 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTBlob"; @@ -17988,17 +18121,53 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = 244748360793885B28A0FB80940BDD29 /* PBXContainerItemProxy */; }; + F0EA1A45338CDCFD16B812AB02C2CA7E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNVectorIcons; + target = CC1AB14B9BDA80213A889CE582D91D46 /* RNVectorIcons */; + targetProxy = 7FEFCCD352275F65792C272B8C2F8EE4 /* PBXContainerItemProxy */; + }; + F10D0063DB440D69A65D36AC6FF4CFC3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 5FDBFFB62379C071EA82A54742FE639B /* PBXContainerItemProxy */; + }; + F16C11880C1A84EF70CC6B7FDCC1D8AE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNUserDefaults; + target = 5684E1AFCF5F41172AF803F46DEC414D /* RNUserDefaults */; + targetProxy = B3FCC4AD5903E2C921D0E73A95E5652D /* PBXContainerItemProxy */; + }; + F17435A6C6DF3F55D107799BB9CFF535 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BugsnagReactNative; + target = E452F4CD4F8AB641BD2444C7AC91FA2B /* BugsnagReactNative */; + targetProxy = 6A5D8E9F4EAFC6CB60550F4C7CB5C9D1 /* PBXContainerItemProxy */; + }; + F1854AB4A1E85A23F84E29F7F51638B0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransport; + target = 1F22396CB543506E7EA28A47A30E9727 /* GoogleDataTransport */; + targetProxy = 748570239C4134B12FBB4DAAED9D38DA /* PBXContainerItemProxy */; + }; F1887910E1D2307247370E110F5C97EF /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-cxxreact"; target = 9F219ED43F3AEA000562B9BCFD624DDD /* React-cxxreact */; targetProxy = 3E2073FF56543FDA76EFCC77A1820700 /* PBXContainerItemProxy */; }; - F292793502627C99AF8C3C4D3876BC30 /* PBXTargetDependency */ = { + F1F26691D17EEAD9D2D2FEDCCA703901 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 7135140B597489F3FE9D0A6D1FADD9C7 /* React-RCTActionSheet */; - targetProxy = E35118FBEB11FB9D7CAA527467EF56E3 /* PBXContainerItemProxy */; + name = "react-native-splash-screen"; + target = 4C2F2E6EC9A37A9237D2149D178CCCD4 /* react-native-splash-screen */; + targetProxy = 576260B895A8A1EBE187EC88F8DD68A0 /* PBXContainerItemProxy */; + }; + F3164D538FB411FD22D75AA94254F62C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXAV; + target = A954214FEA55463925B6F6E3A27B6016 /* EXAV */; + targetProxy = 006ABF071BBF55C88D76D4EA167F20E6 /* PBXContainerItemProxy */; }; F399B730C7A06F5D026757B730E30FB9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18006,24 +18175,12 @@ target = 60F43D68BD7290E1B24C3BE7B3382AD3 /* React-RCTNetwork */; targetProxy = 4BFA9DDB028CA84B14CCA5C11D9F6207 /* PBXContainerItemProxy */; }; - F3CCB1930C67F25EF46B77BEB8EAD25E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Yoga; - target = FEC7CEE99C30C1292EC32D7E006E4E85 /* Yoga */; - targetProxy = EEC7404A53F8352C9E6C29AAD5B56E2E /* PBXContainerItemProxy */; - }; F40AEEAA637FAD62AA68E398038D3782 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleDataTransport; target = 1F22396CB543506E7EA28A47A30E9727 /* GoogleDataTransport */; targetProxy = 8CD598B3122E1B5D5E0411E9F8DFF385 /* PBXContainerItemProxy */; }; - F438CC4B5092996DF4648C76CB5683C1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 2E2ABA11C27993D4CDD5DA270C4B75F1 /* React-RCTBlob */; - targetProxy = 1CF2778429E54F06CDDD4A87BA948015 /* PBXContainerItemProxy */; - }; F446002E975746B985C0E80BA1648B27 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; @@ -18036,11 +18193,17 @@ target = 7F28D4475D7DAD9903F7E6044DD921C1 /* React-RCTAnimation */; targetProxy = DC1A792C62DBF10721FFE4308A29BA06 /* PBXContainerItemProxy */; }; - F4A3A4FAAB9A60B302EC1C86A49619A7 /* PBXTargetDependency */ = { + F54D24152213F0F1FC78C536807999CD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = 63CF4D4E74D1771681263724253E1E79 /* GoogleDataTransportCCTSupport */; - targetProxy = 665E782F57019B83B49F33B17EA78430 /* PBXContainerItemProxy */; + name = "React-jsiexecutor"; + target = B81CA3A3A63C0085E4085060FE4DD9FF /* React-jsiexecutor */; + targetProxy = 5BA290E8C045A569E037829477782168 /* PBXContainerItemProxy */; + }; + F550382FDDC90E9D32EB18BDA2233E01 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTBlob"; + target = 2E2ABA11C27993D4CDD5DA270C4B75F1 /* React-RCTBlob */; + targetProxy = FDF7D238C79F8F10D658E90EDC7DE332 /* PBXContainerItemProxy */; }; F60D5A7D560F55E346E626406941BAF2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18048,41 +18211,23 @@ target = 7135140B597489F3FE9D0A6D1FADD9C7 /* React-RCTActionSheet */; targetProxy = 586C9042939572C3633A6BECFDC2FFDF /* PBXContainerItemProxy */; }; - F66BCE7DE44185ADBA6F93FAFAD27C3C /* PBXTargetDependency */ = { + F75C4CC154BF19419FDC11BB4B05925E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RSKImageCropper; - target = 48F9CAC66FE3C08FEE3ACAA5C6FEF569 /* RSKImageCropper */; - targetProxy = 1A7C67F6F1B9816D8073691F280F12DC /* PBXContainerItemProxy */; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 8B36E4D7EB477E544CEC4026A5C4CD88 /* PBXContainerItemProxy */; }; - F7184EA10DD0FD5F52A432A89EF9C02E /* PBXTargetDependency */ = { + F8A03446FF543FA20866C9B2C3498911 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnosticsInterop; - target = A1DA7160DD40C2F4C7332F30DE279FC2 /* FirebaseCoreDiagnosticsInterop */; - targetProxy = A49EA97CD68B492BFCF7B5E4FF2843C0 /* PBXContainerItemProxy */; + name = Yoga; + target = FEC7CEE99C30C1292EC32D7E006E4E85 /* Yoga */; + targetProxy = 6620A71BA64CD5DB1A68F51315FB7EEA /* PBXContainerItemProxy */; }; - F7D6E6A2707184E6ECF36852567A8EBB /* PBXTargetDependency */ = { + F8C222481C006FDEE0B256B6ED523CEF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; - targetProxy = A00D86B9CD1DAF277729588DB2755531 /* PBXContainerItemProxy */; - }; - F89BAAB7D9471198506E13093279A76B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = 012AE749BB302180A2F0730AF8E0490E /* SDWebImage */; - targetProxy = 4A97B950C7C683558E5F42EDD207BB12 /* PBXContainerItemProxy */; - }; - F8C566B7869CD6056BC7114AA51FEC84 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Firebase; - target = 799B29F9D6DCE28B98CC259440382F20 /* Firebase */; - targetProxy = 2FA7ABC2BC93F144A8C0FAEE3C80DF85 /* PBXContainerItemProxy */; - }; - F9210FB4BD614696E136BD21C82E3C36 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 1F22396CB543506E7EA28A47A30E9727 /* GoogleDataTransport */; - targetProxy = DA59CE02635F22A7FE1EB8634037D000 /* PBXContainerItemProxy */; + name = "React-RCTNetwork"; + target = 60F43D68BD7290E1B24C3BE7B3382AD3 /* React-RCTNetwork */; + targetProxy = 05C1C463D3372BBB09B04967393DE8BC /* PBXContainerItemProxy */; }; F9771E99025A64436243D14F23ADC9E8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18090,6 +18235,18 @@ target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; targetProxy = F8B50BE8BD280104AEF2C287D478BB8C /* PBXContainerItemProxy */; }; + F9C71C31133C7DC4CDC627916310AA13 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNGestureHandler; + target = B8773D156F603535D7813D4981DD0B68 /* RNGestureHandler */; + targetProxy = E8574F0403B9CAF82FB629444787225D /* PBXContainerItemProxy */; + }; + F9CDF971228B72158AD0473FD7CF4EA3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTSettings"; + target = 64E78828D8355514B3B6BE78FAE7806E /* React-RCTSettings */; + targetProxy = 5C6F7E2FDA7AA3D0BCCC515221A005AE /* PBXContainerItemProxy */; + }; FA6FD64DB1000B3B35E074B28C8D2B8E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTLinking"; @@ -18108,33 +18265,90 @@ target = 115FC7605B6A0F6044A879F6EEB7DD99 /* React-jsinspector */; targetProxy = A10B927F49CDB8E49094BFD1CA897343 /* PBXContainerItemProxy */; }; - FC57C022F82B507ED6242062B0EEF89E /* PBXTargetDependency */ = { + FFDB002F0AFFFEAD26EC4BA5C29800B7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = FCBD4D4EE693B1A322F7D869545F442F /* PBXContainerItemProxy */; - }; - FE1947E4B09ECE076DFA8782C0DCA354 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNImageCropPicker; - target = E20E81644F6DFF8A9937721B0487DBEC /* RNImageCropPicker */; - targetProxy = 3B78E8F09F994AD1326DB76C0006C477 /* PBXContainerItemProxy */; - }; - FF72888579BFD04A2128F2A5222549E6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = F45971A372B34A0A3B690DD27B08E555 /* react-native-background-timer */; - targetProxy = 3469B30D3B6FCBE8AC3AC222B0470EEF /* PBXContainerItemProxy */; - }; - FF947BF84ED8EEA0C0CA463226E2525E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-CoreModules"; - target = 489CCEBDC649D379F1AB6CAE0B453E80 /* React-CoreModules */; - targetProxy = 0B51E39017115DC06CFB71C6AE529D93 /* PBXContainerItemProxy */; + name = ReactCommon; + target = 6DE003F64B133830B9AB9321298DAAC2 /* ReactCommon */; + targetProxy = 239D350160E2486D50C99B023348F5D4 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ + 01A38DB1526F39EED02E29F9533BF394 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E5196BF93A86C382EDFD56E80F8D1558 /* rn-extensions-share.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/rn-extensions-share/rn-extensions-share-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = rn_extensions_share; + PRODUCT_NAME = "rn-extensions-share"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 041D46DB0D76C3EFBAAB84249F3FEEF5 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8172C981402923AECD81EDC63F98F260 /* Pods-ShareRocketChatRN.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MACH_O_TYPE = staticlib; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 057F80B90B81B85E55A1FDFFE3E14A4B /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1CD2482528E8085932F448164C50569B /* react-native-keyboard-input.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-keyboard-input/react-native-keyboard-input-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_keyboard_input; + PRODUCT_NAME = "react-native-keyboard-input"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 0634A9D8623FC6828339974C48D89332 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 039877B222B77B21A4033F031C1D06E5 /* libwebp.xcconfig */; @@ -18163,7 +18377,7 @@ }; 06D42481946D673E459AAE2E31547D41 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E3C9A6F63DA71839ED30EF7139A58B6A /* React-jsiexecutor.xcconfig */; + baseConfigurationReference = 50050C62246B736C56C79B2D8F35C32D /* React-jsiexecutor.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18214,7 +18428,7 @@ }; 0829E2164483604F7E73031C9A40DF8C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 844BA9402CAF4673325EAEF3443DB5FB /* EXPermissions.xcconfig */; + baseConfigurationReference = 083F80EA14B598292E34F8F63F0BC8CB /* EXPermissions.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -18239,6 +18453,22 @@ }; name = Release; }; + 09243F52E2FF644FB76FF924F4E0E6DD /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 55B2E31CB23A3A9BFCA8049764933D32 /* UMCameraInterface.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 09FBD332BEF0B2EAAF3D4A32A9DC779D /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = C6C822CDF50173D41B4EB726BBF1F243 /* GoogleAppMeasurement.xcconfig */; @@ -18253,27 +18483,25 @@ }; name = Debug; }; - 0A1DA084BF564725135EA6548D7168B5 /* Release */ = { + 0A393834ED2A5012F331D7D699D336A0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 98D20B600B4CB23C0132B4592AF3D14B /* RNVectorIcons.xcconfig */; + baseConfigurationReference = 46A54367025ACCCB32096FA0B124098C /* Pods-RocketChatRN.release.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNVectorIcons/RNVectorIcons-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MACH_O_TYPE = staticlib; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNVectorIcons; - PRODUCT_NAME = RNVectorIcons; - PUBLIC_HEADERS_FOLDER_PATH = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; @@ -18281,7 +18509,7 @@ }; 0C9B2792F342A93E8C1E50A199DD60FC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6B1DCD13B19DC1F616E1F148BCA5DBB5 /* EXWebBrowser.xcconfig */; + baseConfigurationReference = 9A27433536D54C21478A075F44C6B093 /* EXWebBrowser.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -18306,75 +18534,59 @@ }; name = Release; }; - 0D0719DDEB1CD63B81B8B61B05A6B15D /* Debug */ = { + 0D4316C9A76B1A9C7849C9EF16531782 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4ADA1183F0ACCB431682507B4CC7D1DB /* react-native-video.xcconfig */; + baseConfigurationReference = CA5DD69CBB094BE309AC411E3A4A8836 /* react-native-jitsi-meet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-video/react-native-video-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_video; - PRODUCT_NAME = "react-native-video"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 0D0A6D087940A7918C51F2BE0E2AA818 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7ED0ED0C53429C59231D1524A1283A71 /* UMCameraInterface.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 0DD7EAB16420464B6DE2EC2C43654DFC /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9A95FA2DD5DA29054D320200E38D2860 /* RNGestureHandler.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNGestureHandler/RNGestureHandler-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-jitsi-meet/react-native-jitsi-meet-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNGestureHandler; - PRODUCT_NAME = RNGestureHandler; + PRODUCT_MODULE_NAME = react_native_jitsi_meet; + PRODUCT_NAME = "react-native-jitsi-meet"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; + }; + 123273C5BEE3457B9F16CBAB08A85BBB /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C3086FDE80F3C329FBDF3470894E6E73 /* RNFirebase.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNFirebase/RNFirebase-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNFirebase; + PRODUCT_NAME = RNFirebase; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; }; 143C472CDA83C19B1A3F903058F66358 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9E1F2B15CF7018FF290E064A0770F577 /* React-Core.xcconfig */; + baseConfigurationReference = B06861B6BCD98E2920DE1208E03D1B08 /* React-Core.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18398,9 +18610,34 @@ }; name = Release; }; + 14E0C1DA6C6AB0C8DDD4D454706607D5 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 220E3D4E56EFC5BBD292DF9A9D6FD8B2 /* React-CoreModules.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/React-CoreModules/React-CoreModules-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = CoreModules; + PRODUCT_NAME = "React-CoreModules"; + 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; + }; 150CFF1CA26292347418E0FED771B42E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3C2DBA525AE7F5D8C434EDDDCC04CED3 /* React-jsi.xcconfig */; + baseConfigurationReference = 914A219B23B3CFEBF97BAF31EB26B0BC /* React-jsi.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18425,7 +18662,7 @@ }; 151B0FA0B9152A5FD14F28A2EB3030FA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 48FF538A844945D4E1A5380E1C56738F /* BugsnagReactNative.xcconfig */; + baseConfigurationReference = 83D96954D7B8DED2049154ED3600AD5B /* BugsnagReactNative.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18451,7 +18688,7 @@ }; 1620F211B2965824AB47FC623071FA56 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 12FD286CCA8495FB5C0057661A13EDBB /* React-cxxreact.xcconfig */; + baseConfigurationReference = 3C6AF31BAE7BA5E1BDF8D2A0CEABBBC3 /* React-cxxreact.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18490,47 +18727,6 @@ }; name = Release; }; - 1745C47F25FE9121BE37F22E3A3D62C9 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7202AA3BD04233E4CE8B1992E972E345 /* SDWebImage.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = SDWebImage; - PRODUCT_NAME = SDWebImage; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 1765DB291B7724CF162EDA9EDD8B6B5E /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FF83D25E147C6C117FF33937820128E1 /* UMFaceDetectorInterface.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 18183CC364F13A1C4CD008D074520B91 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 0616AECA7B82787D45E9F30B06FC31A0 /* FirebaseInstanceID.xcconfig */; @@ -18558,7 +18754,7 @@ }; 185C7504A570C3B814C9B2D452F64444 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DA6B3F8075E47D4DBA47869501409698 /* EXHaptics.xcconfig */; + baseConfigurationReference = 7350275BD251B642BAB74FC441322D9B /* EXHaptics.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -18646,22 +18842,98 @@ }; name = Debug; }; - 1AAC3CB3991B015999A7B4E572B3A90F /* Release */ = { + 1A32C385FBAAF99B9914E7B39BF56EAF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D2D84CF223A77580E5ADD76F41954CB1 /* RNFirebase.xcconfig */; + baseConfigurationReference = E8D8F3713AFE4DEAC4398CE6940594C3 /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNFirebase/RNFirebase-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNImageCropPicker/RNImageCropPicker-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNImageCropPicker; + PRODUCT_NAME = RNImageCropPicker; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 1A9BAFD2928B627096535EB8890BC5CF /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4A7FCD47EEC660089D4553601E338AEB /* react-native-video.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-video/react-native-video-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_video; + PRODUCT_NAME = "react-native-video"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 1ABADC0BDCEB477B5E3AC75D936B36D3 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 41423C2312227BEFFA941916BEF3F7EF /* RNVectorIcons.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNVectorIcons/RNVectorIcons-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNFirebase; - PRODUCT_NAME = RNFirebase; + PRODUCT_MODULE_NAME = RNVectorIcons; + PRODUCT_NAME = RNVectorIcons; + 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; + }; + 1C08387FE7EB265326E3F243E647AB80 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = ADE7B5CB0FD052892FE0668BF568CB59 /* react-native-splash-screen.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-splash-screen/react-native-splash-screen-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_splash_screen; + PRODUCT_NAME = "react-native-splash-screen"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -18674,7 +18946,7 @@ }; 1D35BB5DAF133C1BBF2A834FA2D539E8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9264E499FE27E84AFC69C9EB7C663766 /* FBReactNativeSpec.xcconfig */; + baseConfigurationReference = 017DC2113A130DE5F6827A60DAEA3DB0 /* FBReactNativeSpec.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18699,7 +18971,7 @@ }; 1DDB06706922C62CB33A9EEFBAA3F497 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 12FD286CCA8495FB5C0057661A13EDBB /* React-cxxreact.xcconfig */; + baseConfigurationReference = 3C6AF31BAE7BA5E1BDF8D2A0CEABBBC3 /* React-cxxreact.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18722,64 +18994,35 @@ }; name = Debug; }; - 1FDFD4F850C7586E9E104B48A0C167A4 /* Debug */ = { + 2217C7B4C2AA78CABB0C17E5FF255F3E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B5C340D4A14F573589F590FCD59B6DAC /* rn-fetch-blob.xcconfig */; + baseConfigurationReference = 41423C2312227BEFFA941916BEF3F7EF /* RNVectorIcons.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/rn-fetch-blob/rn-fetch-blob-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + GCC_PREFIX_HEADER = "Target Support Files/RNVectorIcons/RNVectorIcons-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = rn_fetch_blob; - PRODUCT_NAME = "rn-fetch-blob"; + PRODUCT_MODULE_NAME = RNVectorIcons; + PRODUCT_NAME = RNVectorIcons; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; - }; - 20CA29590B6B36B29CC6947C3F695503 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FF83D25E147C6C117FF33937820128E1 /* UMFaceDetectorInterface.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 237FC502BE228B2F5D9E08510395504D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 828F335103F7F4C0361DB8848987D415 /* UMImageLoaderInterface.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; + name = Release; }; 23B575FB65C0A6FF6CD267D811838913 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1A07E37CB2ED272F17C8AB1181DD3388 /* React-RCTBlob.xcconfig */; + baseConfigurationReference = A8B22E6604EFF39B6D611AB13DDDBD15 /* React-RCTBlob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18803,6 +19046,21 @@ }; name = Release; }; + 267A7E750D48DB34EDF6C92DB2F21BD1 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8A655487BA8077531F8CF7865BF1D1F6 /* UMSensorsInterface.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 27B8242F13B09FC8745CBD67B1606296 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 285F1C20B291AD091D488EBD9AA3066D /* GoogleDataTransportCCTSupport.xcconfig */; @@ -18827,9 +19085,34 @@ }; name = Debug; }; + 29368DAE4831166DE7E9C06B8630134B /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 612C1AC74F2961E46BA1C1F9193F921E /* react-native-safe-area-context.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-safe-area-context/react-native-safe-area-context-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_safe_area_context; + PRODUCT_NAME = "react-native-safe-area-context"; + 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; + }; 29B1FBAC28DEA75114542E76A1C78029 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C37213CB53C46CD9F8E69CB2AE2C631C /* EXAV.xcconfig */; + baseConfigurationReference = EBFF699B27043CC8F598C7D6A6AF32E2 /* EXAV.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -18856,7 +19139,7 @@ }; 2A14E0C324FD90C19582D10421EFE639 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 32DBCA60CA5999DD0DD8CFEE12A42265 /* FBLazyVector.xcconfig */; + baseConfigurationReference = 8796D4948C0082A6756FC511A8EE65C0 /* FBLazyVector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -18869,9 +19152,34 @@ }; name = Release; }; + 2A7FFA144FCBF4785439CD2440E2E6B4 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = AA3C169E0715A7983E2D8A445482B9CD /* react-native-background-timer.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-background-timer/react-native-background-timer-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_background_timer; + PRODUCT_NAME = "react-native-background-timer"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 2CE9E7E430C799675D30376727048368 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9264E499FE27E84AFC69C9EB7C663766 /* FBReactNativeSpec.xcconfig */; + baseConfigurationReference = 017DC2113A130DE5F6827A60DAEA3DB0 /* FBReactNativeSpec.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18895,6 +19203,32 @@ }; name = Release; }; + 2D4F5C91D3A919023A4E91B70FE03609 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0732E6E2BA68E536868DCC810783A7C4 /* SDWebImageWebPCoder.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/SDWebImageWebPCoder/SDWebImageWebPCoder-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = SDWebImageWebPCoder; + PRODUCT_NAME = SDWebImageWebPCoder; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 2F3CAFBA99688A4D9FA1D968A0875EFC /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 18B4D4CD4F3228B47F6A17E1A8BC845F /* nanopb.xcconfig */; @@ -18922,9 +19256,36 @@ }; name = Release; }; + 2FCB4868BF08FBA51A6D8D0018480C7A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2ED786D2B89840F35CB731C1C6492E5D /* UMReactNativeAdapter.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/UMReactNativeAdapter/UMReactNativeAdapter-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = UMReactNativeAdapter; + PRODUCT_NAME = UMReactNativeAdapter; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 30B214E3D1723E01F2B66FE84C16E1DA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C8C73E7B045F4108D3D7B2ED855B3743 /* React-RCTNetwork.xcconfig */; + baseConfigurationReference = 6DB8239AC448346BC395F6963BBA8AB0 /* React-RCTNetwork.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18947,31 +19308,6 @@ }; name = Debug; }; - 31B156B673976EC71CB3C0AF38F84B76 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2DDD1DD47E9C22159E8E450C71DD1E4F /* RNFastImage.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNFastImage/RNFastImage-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNFastImage; - PRODUCT_NAME = RNFastImage; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 3209CE6A46A5742356044161908D6557 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = E1D7A0323DA5C7661F1AEE66960694ED /* GoogleDataTransport.xcconfig */; @@ -18996,22 +19332,73 @@ }; name = Debug; }; - 34C51112EF70824AF46EF5191F1C5B5C /* Release */ = { + 33384CA66029FB285972A2857F25F4A2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B9767166BB7EC94BB583AC6F3DEB384A /* react-native-orientation-locker.xcconfig */; + baseConfigurationReference = 024933D8DBC8B77315547CC1F1D2DD2D /* RNLocalize.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-orientation-locker/react-native-orientation-locker-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNLocalize/RNLocalize-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNLocalize; + PRODUCT_NAME = RNLocalize; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 3343208D4025B457B437CA3A060AD9FB /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E61B34AC9FC179A8342602A6DAE48AAE /* RNScreens.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNScreens/RNScreens-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNScreens; + PRODUCT_NAME = RNScreens; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 3591E5CF427086B04DA9FB6A4D0FDE8A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0FEB66ED4DB5FCA596F1CCEE9CCC44BE /* QBImagePickerController.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/QBImagePickerController/QBImagePickerController-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_orientation_locker; - PRODUCT_NAME = "react-native-orientation-locker"; + PRODUCT_MODULE_NAME = QBImagePickerController; + PRODUCT_NAME = QBImagePickerController; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -19024,7 +19411,7 @@ }; 366E5482FF2629E4D4C4D8F16CF80AAB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3738738E40C256878035DDF4259511E9 /* Yoga.xcconfig */; + baseConfigurationReference = 127E8C75221F5BB1DC8E0B817100CA49 /* Yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19050,7 +19437,7 @@ }; 379699C7EF1D5DABB0AFFABBB83D962E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5538474B2860C1237420F4669067F4A4 /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = C1CAD5976621EE402483B2B1C29A1FB3 /* UMFileSystemInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -19065,7 +19452,7 @@ }; 38FFF97387AFAC7B99E6ECBCE502E51D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C8C73E7B045F4108D3D7B2ED855B3743 /* React-RCTNetwork.xcconfig */; + baseConfigurationReference = 6DB8239AC448346BC395F6963BBA8AB0 /* React-RCTNetwork.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19091,7 +19478,7 @@ }; 396D2504CEBBC0B0B0D60AED34511EF6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 70669A610A42FE4F39BECE28CD4632B9 /* React-RCTSettings.xcconfig */; + baseConfigurationReference = F07188FD7EF6D9A8DC53986DE79B5A4C /* React-RCTSettings.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19117,7 +19504,7 @@ }; 3C318118356CE8F0059F34920171B52E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 48FF538A844945D4E1A5380E1C56738F /* BugsnagReactNative.xcconfig */; + baseConfigurationReference = 83D96954D7B8DED2049154ED3600AD5B /* BugsnagReactNative.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19140,9 +19527,67 @@ }; name = Debug; }; + 3DA2FFE41BB82CC211949D4CFF84E134 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7E37B494353BC92326215A87DDE58DC3 /* RNAudio.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNAudio/RNAudio-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNAudio; + PRODUCT_NAME = RNAudio; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 449A2479F3470A8C37D40DB01474CF7C /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 24341991C9041CDF4FDF7F98CB64C9B4 /* UMBarCodeScannerInterface.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 44DBCE2AF1FD8783E97FBB15B437CB7A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8A655487BA8077531F8CF7865BF1D1F6 /* UMSensorsInterface.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 4880E0467860486F417C117B8450837A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1A07E37CB2ED272F17C8AB1181DD3388 /* React-RCTBlob.xcconfig */; + baseConfigurationReference = A8B22E6604EFF39B6D611AB13DDDBD15 /* React-RCTBlob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19165,98 +19610,22 @@ }; name = Debug; }; - 491D4B531E933B0A9B8370472DDE9249 /* Debug */ = { + 48D485E26F3592D5DA8DE03AC73A6893 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EF185A2B5CEEDB9602A9B0A464A8C0C5 /* react-native-splash-screen.xcconfig */; + baseConfigurationReference = EFE015060906EFBDC1CAE15092322E3C /* rn-fetch-blob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-splash-screen/react-native-splash-screen-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_splash_screen; - PRODUCT_NAME = "react-native-splash-screen"; - 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; - }; - 496650D648CD98D6DDD98C96250E71F3 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C6D78F3CBC90BCC7511EF05DCECBF137 /* RNScreens.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNScreens/RNScreens-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNScreens; - PRODUCT_NAME = RNScreens; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 4978D7F7B75F525382D532174A710403 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3453E0BC01956B7CEE74F5A91A4B5DD1 /* react-native-webview.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-webview/react-native-webview-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_webview; - PRODUCT_NAME = "react-native-webview"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 49F365B6E30CB2A2BF184A246C0ABCAB /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7202AA3BD04233E4CE8B1992E972E345 /* SDWebImage.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/rn-fetch-blob/rn-fetch-blob-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = SDWebImage; - PRODUCT_NAME = SDWebImage; + PRODUCT_MODULE_NAME = rn_fetch_blob; + PRODUCT_NAME = "rn-fetch-blob"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -19267,9 +19636,34 @@ }; name = Release; }; + 4CC165F467F1E0B7B7DEAF270ABD8291 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E5196BF93A86C382EDFD56E80F8D1558 /* rn-extensions-share.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/rn-extensions-share/rn-extensions-share-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = rn_extensions_share; + PRODUCT_NAME = "rn-extensions-share"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 4CDB179E323B84AE4AA74A58C54A3DC0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 12C2151977D42B49F271F8AFEF6FBA29 /* React-RCTActionSheet.xcconfig */; + baseConfigurationReference = 7C2180C4C2DD7664E68FBCB10059207A /* React-RCTActionSheet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19295,7 +19689,7 @@ }; 4D4CC1AFD3DF3F9B10FA25C7FC821F16 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4C9EE071CDAC3B2EECD1FB30E7DB3ABB /* React-RCTVibration.xcconfig */; + baseConfigurationReference = 06450EC1161FF8F3EF268FB02764EC11 /* React-RCTVibration.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19320,7 +19714,7 @@ }; 4D94BFCF6570FE0F71D1F68AEA91B307 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E4069059ABB37C390BFC6AF38DBD8142 /* RCTRequired.xcconfig */; + baseConfigurationReference = 96C8FEC1DF44C11F0D855096EB4729D5 /* RCTRequired.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -19357,9 +19751,34 @@ }; name = Debug; }; - 54D0AAA81E7168212F497AD1E2AEF70C /* Release */ = { + 533DA57B1536D74782CF0C8CA8063C83 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 246E698546413681F941B6C956D6E955 /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = ABB239C559398D72DA4182E9A9EF9281 /* react-native-webview.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-webview/react-native-webview-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_webview; + PRODUCT_NAME = "react-native-webview"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 53EC76DF7CF6DF6C3352B7442505D919 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6201253636E913A3A0D972B978096D59 /* UMFontInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -19373,59 +19792,24 @@ }; name = Release; }; - 55367FD2B8273697339DC71BAEE15978 /* Debug */ = { + 547A3FB8EDC1AD4DF68D947F1686B30D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ABC6B3F79A08E31D5471FA0A46D7D591 /* react-native-keyboard-tracking-view.xcconfig */; + baseConfigurationReference = 3271D9F1923DCE00DA904E833AB4AD45 /* UMImageLoaderInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-keyboard-tracking-view/react-native-keyboard-tracking-view-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_keyboard_tracking_view; - PRODUCT_NAME = "react-native-keyboard-tracking-view"; - PUBLIC_HEADERS_FOLDER_PATH = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 567296C7B88C98E8926B1FE7DA7D019F /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9A95FA2DD5DA29054D320200E38D2860 /* RNGestureHandler.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNGestureHandler/RNGestureHandler-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNGestureHandler; - PRODUCT_NAME = RNGestureHandler; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; 57BF6992AF50A2B6F3D45A5239F6D462 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4639AB5798CD989E823A570067978431 /* EXFileSystem.xcconfig */; + baseConfigurationReference = B9815352B5AD138BB0B3D5D8E8ACBD78 /* EXFileSystem.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -19449,33 +19833,9 @@ }; name = Debug; }; - 58071C744E441BDA5FD951FC7A452A2E /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8172C981402923AECD81EDC63F98F260 /* Pods-ShareRocketChatRN.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MACH_O_TYPE = staticlib; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 58520B8EDF29441D5542A8FD82654496 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 844BA9402CAF4673325EAEF3443DB5FB /* EXPermissions.xcconfig */; + baseConfigurationReference = 083F80EA14B598292E34F8F63F0BC8CB /* EXPermissions.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -19499,24 +19859,9 @@ }; name = Debug; }; - 5B8002BD29A2842D0DB35EE65981263D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 442DC5479497D8DA58DAD41AFF85A450 /* UMTaskManagerInterface.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 5C23227507DC3BFD19377ABCD38711CC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4C9EE071CDAC3B2EECD1FB30E7DB3ABB /* React-RCTVibration.xcconfig */; + baseConfigurationReference = 06450EC1161FF8F3EF268FB02764EC11 /* React-RCTVibration.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19540,61 +19885,9 @@ }; name = Release; }; - 5C90DAADC065F2103EB21CB34E3BBAB1 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9116F4D919CCC884DCBFB8F2E5CFCFC5 /* react-native-document-picker.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-document-picker/react-native-document-picker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_document_picker; - PRODUCT_NAME = "react-native-document-picker"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 5D57AB11B94933388FB72F1500184C50 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3BC92D7E013934F81ADDB203AC3DCAC9 /* RNAudio.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNAudio/RNAudio-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNAudio; - PRODUCT_NAME = RNAudio; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 5D79B0E5C34FEB01909F4F77BA32F7B8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7C07529AA42AD79CD10707073C2D41BF /* React.xcconfig */; + baseConfigurationReference = D40FC7FEB9E4848D1D5AFDA19A84F901 /* React.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -19609,7 +19902,7 @@ }; 5E225B03D92E57F4A85096E0EED6648D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4639AB5798CD989E823A570067978431 /* EXFileSystem.xcconfig */; + baseConfigurationReference = B9815352B5AD138BB0B3D5D8E8ACBD78 /* EXFileSystem.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -19634,29 +19927,6 @@ }; name = Release; }; - 5E91A4157157173257C5D5945ED9D194 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D04FDD6B4AC745C08223B4D304F993AA /* Pods-ShareRocketChatRN.debug.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - 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; - }; 6111CAD9DBDC3E7E8DB032972ED7C333 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 039877B222B77B21A4033F031C1D06E5 /* libwebp.xcconfig */; @@ -19682,22 +19952,23 @@ }; name = Debug; }; - 6331185B9ED93927C84DC43062F6442B /* Debug */ = { + 61358D65F91A196AA2FEFA607B3A9B9C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3BC92D7E013934F81ADDB203AC3DCAC9 /* RNAudio.xcconfig */; + baseConfigurationReference = 2ED786D2B89840F35CB731C1C6492E5D /* UMReactNativeAdapter.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNAudio/RNAudio-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + GCC_PREFIX_HEADER = "Target Support Files/UMReactNativeAdapter/UMReactNativeAdapter-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNAudio; - PRODUCT_NAME = RNAudio; + PRODUCT_MODULE_NAME = UMReactNativeAdapter; + PRODUCT_NAME = UMReactNativeAdapter; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -19707,22 +19978,22 @@ }; name = Debug; }; - 64DBDB2A2F111BF8FBD65D86FBC8D2BC /* Release */ = { + 66AE4DF31D50CE225049FB701DB18E4B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FA61FB17BBA7E27DED4FFC12A673BC10 /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = 612C1AC74F2961E46BA1C1F9193F921E /* react-native-safe-area-context.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNDeviceInfo/RNDeviceInfo-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-safe-area-context/react-native-safe-area-context-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNDeviceInfo; - PRODUCT_NAME = RNDeviceInfo; + PRODUCT_MODULE_NAME = react_native_safe_area_context; + PRODUCT_NAME = "react-native-safe-area-context"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -19733,74 +20004,9 @@ }; name = Release; }; - 69640AF7B780EC20554CA7B6CC158118 /* Debug */ = { + 67AA4E2E8960541CED29AB338ED28D3B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BC52A2F9EC3448D5AB934A7E681763FD /* RNUserDefaults.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNUserDefaults/RNUserDefaults-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNUserDefaults; - PRODUCT_NAME = RNUserDefaults; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 69E045040550036A39C4F2BE09E2401D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 30FDB4BB9D4B18A3362C318F3875355E /* UMBarCodeScannerInterface.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 6B8266A0C65C36C86CC2B557157A6EEB /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D2D84CF223A77580E5ADD76F41954CB1 /* RNFirebase.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNFirebase/RNFirebase-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNFirebase; - PRODUCT_NAME = RNFirebase; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 6B86F8D9FB3923F8A3110EBC9859185F /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B804A5AB0F7E88A2EB7B803767045769 /* RNReanimated.xcconfig */; + baseConfigurationReference = 2C4D5A26D150618BD9D8ED373D8A0BEC /* RNReanimated.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19820,13 +20026,64 @@ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 67F5774A5B5FDAFEFBF3FBC0958E85F7 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = AA3C169E0715A7983E2D8A445482B9CD /* react-native-background-timer.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-background-timer/react-native-background-timer-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_background_timer; + PRODUCT_NAME = "react-native-background-timer"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 6C9DF3BF5806C413DB2EA9758CD96AD0 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 05FF947CF810B027D74CAA6CF3DACA74 /* react-native-notifications.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-notifications/react-native-notifications-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_notifications; + PRODUCT_NAME = "react-native-notifications"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; name = Release; }; 6D4E4D3C6176BCA5CAD6D8C2BF84852A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 884D1F437B9578B91A113DCA5BDB2901 /* React-RCTAnimation.xcconfig */; + baseConfigurationReference = F9FF16C046ACF9861B81DE3AC55F837C /* React-RCTAnimation.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19852,7 +20109,7 @@ }; 6F4CCA93CD6AE12881B68253A6743422 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 70669A610A42FE4F39BECE28CD4632B9 /* React-RCTSettings.xcconfig */; + baseConfigurationReference = F07188FD7EF6D9A8DC53986DE79B5A4C /* React-RCTSettings.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19875,41 +20132,59 @@ }; name = Debug; }; - 7103CFEA69B24364DD27E238E67A0651 /* Release */ = { + 6F8B9BEB9ECB3FB1A2D17B551AF25D27 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 617F712DE7450321E2D0378105C832BD /* UMFontInterface.xcconfig */; + baseConfigurationReference = 0F4709C78CF4014F50C704B529CAD4FF /* RNFastImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNFastImage/RNFastImage-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNFastImage; + PRODUCT_NAME = RNFastImage; + PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; - 71237BF2AA56166AF9D83AB61132B909 /* Release */ = { + 6F9E0069125AF2DF08826D9FE5736730 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7ED0ED0C53429C59231D1524A1283A71 /* UMCameraInterface.xcconfig */; + baseConfigurationReference = ADE7B5CB0FD052892FE0668BF568CB59 /* react-native-splash-screen.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-splash-screen/react-native-splash-screen-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_splash_screen; + PRODUCT_NAME = "react-native-splash-screen"; + PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; 7184A0EEC8E4ABDAABE108C2E99367B0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DA6B3F8075E47D4DBA47869501409698 /* EXHaptics.xcconfig */; + baseConfigurationReference = 7350275BD251B642BAB74FC441322D9B /* EXHaptics.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -19936,7 +20211,7 @@ }; 71A4F07B44824C6890F9602C5F22F2A9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F8412A0B0D032095263B6C94695433F9 /* EXConstants.xcconfig */; + baseConfigurationReference = FB8B0EADBA394375D3AAF56E332F27D5 /* EXConstants.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -19961,9 +20236,35 @@ }; name = Release; }; + 71F94DBB5B8206311E96F3039EF19D42 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = CA5DD69CBB094BE309AC411E3A4A8836 /* react-native-jitsi-meet.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-jitsi-meet/react-native-jitsi-meet-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_jitsi_meet; + PRODUCT_NAME = "react-native-jitsi-meet"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 724E8CE44A3CFE20B40BCAF98D185D33 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7C2411315370F0F40849929564814801 /* React-RCTLinking.xcconfig */; + baseConfigurationReference = 4AB984D733BC5993EE88552D2D202953 /* React-RCTLinking.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19986,31 +20287,6 @@ }; name = Debug; }; - 7321458A262C939D6A17CF0A12783E20 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B804A5AB0F7E88A2EB7B803767045769 /* RNReanimated.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNReanimated/RNReanimated-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNReanimated; - PRODUCT_NAME = RNReanimated; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 735EC348EBC1C67EEAB2BE8F3BC80F63 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = C5746050230C6395736E499C7FAC2CE3 /* Folly.xcconfig */; @@ -20037,22 +20313,6 @@ }; name = Release; }; - 73A82B68D7648FD29AFEBD1909E3BEFF /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 442DC5479497D8DA58DAD41AFF85A450 /* UMTaskManagerInterface.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 743E6CB11FEBC88076323FDC9583496D /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 8234A92AE9AB0AF5F299B81933E1478F /* Crashlytics.xcconfig */; @@ -20067,31 +20327,6 @@ }; name = Debug; }; - 7584EF3CF60A9AD6E869FA62F0F43444 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 31F7D6BEE41A991A07BC601BAF1BB842 /* react-native-notifications.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-notifications/react-native-notifications-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_notifications; - PRODUCT_NAME = "react-native-notifications"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 75B4996794BE863F09D2FB4C1CBB5130 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = D692DE8FDBB660E94D7E45841B4028F8 /* Firebase.xcconfig */; @@ -20107,47 +20342,22 @@ }; name = Release; }; - 764C7FBB71780119F401D2E4E9E93584 /* Debug */ = { + 76B396FD7DDDCB8B2D63EFC0E8B2D506 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 80730B8B348D13FE7DE65F28AC23D786 /* React-CoreModules.xcconfig */; + baseConfigurationReference = ABB239C559398D72DA4182E9A9EF9281 /* react-native-webview.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-CoreModules/React-CoreModules-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-webview/react-native-webview-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = CoreModules; - PRODUCT_NAME = "React-CoreModules"; - 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; - }; - 7B240433873F76949DE816B421D8EB96 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0FEB66ED4DB5FCA596F1CCEE9CCC44BE /* QBImagePickerController.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/QBImagePickerController/QBImagePickerController-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = QBImagePickerController; - PRODUCT_NAME = QBImagePickerController; + PRODUCT_MODULE_NAME = react_native_webview; + PRODUCT_NAME = "react-native-webview"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -20158,22 +20368,22 @@ }; name = Release; }; - 7C358DFDEE24FD2D1159E6CACECF0BC6 /* Release */ = { + 76EF660DB4E346E606E8D4BC25670087 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 31F7D6BEE41A991A07BC601BAF1BB842 /* react-native-notifications.xcconfig */; + baseConfigurationReference = 9BB9ADC638290658930754803EBA559D /* react-native-document-picker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-notifications/react-native-notifications-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + GCC_PREFIX_HEADER = "Target Support Files/react-native-document-picker/react-native-document-picker-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_notifications; - PRODUCT_NAME = "react-native-notifications"; + PRODUCT_MODULE_NAME = react_native_document_picker; + PRODUCT_NAME = "react-native-document-picker"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -20184,47 +20394,7 @@ }; name = Release; }; - 7C791CABF5AF11C1DD1DF0847579AF52 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 125760F603E52BC8B0C18CFD4C32A5C2 /* react-native-background-timer.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-background-timer/react-native-background-timer-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_background_timer; - PRODUCT_NAME = "react-native-background-timer"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 7E887F9376B2A9C25E4F2E2AE767E9C6 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 246E698546413681F941B6C956D6E955 /* UMSensorsInterface.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 80ABA90B0709712C7F30C6E45F2C6FB1 /* Debug */ = { + 7ACFD59DF1EB24700992FDF81D6A02CC /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = F3E5FA7017063441BC562E0F635EDCA7 /* RSKImageCropper.xcconfig */; buildSettings = { @@ -20246,12 +20416,118 @@ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 7B76B4F6217E9CBD72FF208B83001449 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E1706E8B67D7B2619A452A43075536FD /* RNUserDefaults.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNUserDefaults/RNUserDefaults-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNUserDefaults; + PRODUCT_NAME = RNUserDefaults; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; - 83B5FCE31797D903712C918E31C1949C /* Debug */ = { + 7DE2BF3C41C88D4158E109AD4551F5F1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FA61FB17BBA7E27DED4FFC12A673BC10 /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = 86B96BD448BC9C22DBC68EC6B5A79722 /* UMTaskManagerInterface.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 7EB735CFCCCD172F4D1C17501FB6DFD3 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5EE502E4120DAA7BD0F02A66BE40A332 /* UMFaceDetectorInterface.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 8035A609245FAE8352566938661EA237 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0094D08DC648CCF30D4F8C66575F20B7 /* Pods-RocketChatRN.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MACH_O_TYPE = staticlib; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 8631ABB9FE20C05B499F8CEB1E97DBDA /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E61B34AC9FC179A8342602A6DAE48AAE /* RNScreens.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNScreens/RNScreens-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNScreens; + PRODUCT_NAME = RNScreens; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 89151E1B9CA1393C3ABC3BC2DA08C1FD /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1306AE27564BBAEDB776685199620800 /* RNDeviceInfo.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20271,66 +20547,65 @@ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 891566F9593C53F4BE24134C530FF687 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6201253636E913A3A0D972B978096D59 /* UMFontInterface.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; - 8632C182926B34C7B4BBE894F60560A1 /* Release */ = { + 89F443118C4719AE7610700F9760D924 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0732E6E2BA68E536868DCC810783A7C4 /* SDWebImageWebPCoder.xcconfig */; + baseConfigurationReference = F9750DE8E5569570FBEE1FA5BDB59AE4 /* UMPermissionsInterface.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 8BCB98DD22A60927B82A4762394E46F6 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7202AA3BD04233E4CE8B1992E972E345 /* SDWebImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/SDWebImageWebPCoder/SDWebImageWebPCoder-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = SDWebImageWebPCoder; - PRODUCT_NAME = SDWebImageWebPCoder; + PRODUCT_MODULE_NAME = SDWebImage; + PRODUCT_NAME = SDWebImage; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; - }; - 89F443118C4719AE7610700F9760D924 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D9D69FDB3C6E261AEE891328E6E3B297 /* UMPermissionsInterface.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 8BB8F2C6A03282324C9E62CFCACB1B3F /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 828F335103F7F4C0361DB8848987D415 /* UMImageLoaderInterface.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; + name = Debug; }; 8CD10A96907BCBB255ABB4DF48C938B0 /* Debug */ = { isa = XCBuildConfiguration; @@ -20357,6 +20632,46 @@ }; name = Debug; }; + 8D3B611549D33324D8B7F64E617B0F08 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 24341991C9041CDF4FDF7F98CB64C9B4 /* UMBarCodeScannerInterface.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 8D5BA39B3B0BAF6646EEF19ABC47381A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 024933D8DBC8B77315547CC1F1D2DD2D /* RNLocalize.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNLocalize/RNLocalize-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNLocalize; + PRODUCT_NAME = RNLocalize; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 8D77E9F4BEDA17CDA2C9A59FFD515FDF /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 1D867735790D50598FA09B5FCF9177A4 /* DoubleConversion.xcconfig */; @@ -20382,6 +20697,32 @@ }; name = Debug; }; + 8EE19551B5276AD4820F9DBA9B7FB2AF /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A0CF3CBB7F85C217DF43B19FBAB34135 /* react-native-keyboard-tracking-view.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-keyboard-tracking-view/react-native-keyboard-tracking-view-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_keyboard_tracking_view; + PRODUCT_NAME = "react-native-keyboard-tracking-view"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 8F2E0A3EF32531907635560B9268F3D0 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 285F1C20B291AD091D488EBD9AA3066D /* GoogleDataTransportCCTSupport.xcconfig */; @@ -20407,32 +20748,6 @@ }; name = Release; }; - 91B8F938881A483D3076F2388C23684C /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 35A579D0C7A01ECD4D9FFFC9086DDDA7 /* RNLocalize.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNLocalize/RNLocalize-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNLocalize; - PRODUCT_NAME = RNLocalize; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 91FD51ACA36B0A57ABFE326B7E28FAF1 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = C5746050230C6395736E499C7FAC2CE3 /* Folly.xcconfig */; @@ -20458,6 +20773,21 @@ }; name = Debug; }; + 9412ECDC417E80D138FA691A5A92CD7D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5EE502E4120DAA7BD0F02A66BE40A332 /* UMFaceDetectorInterface.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 9613A0936E5F02E30C4F96343620B06B /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 4FA7C78F56C449B41A76D32AABA514DD /* FirebaseAnalytics.xcconfig */; @@ -20473,35 +20803,9 @@ }; name = Release; }; - 9734DB5863DD9BB1FAF41C89797C6E37 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 90990DB5B1E9FD2BEC6C581F7B47FBFC /* react-native-keyboard-input.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-keyboard-input/react-native-keyboard-input-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_keyboard_input; - PRODUCT_NAME = "react-native-keyboard-input"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 979A80A91A53C270C97ECF622F7321CA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 884D1F437B9578B91A113DCA5BDB2901 /* React-RCTAnimation.xcconfig */; + baseConfigurationReference = F9FF16C046ACF9861B81DE3AC55F837C /* React-RCTAnimation.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20524,6 +20828,79 @@ }; name = Debug; }; + 990D8CBB1D592C9BB047F38204FF78DB /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D04FDD6B4AC745C08223B4D304F993AA /* Pods-ShareRocketChatRN.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + 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; + }; + 9921E952DDD4C3BB7973101351800E1B /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1306AE27564BBAEDB776685199620800 /* RNDeviceInfo.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNDeviceInfo/RNDeviceInfo-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNDeviceInfo; + PRODUCT_NAME = RNDeviceInfo; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 9A314980D8106FC4DCF8783982EB8D14 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4A7FCD47EEC660089D4553601E338AEB /* react-native-video.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-video/react-native-video-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_video; + PRODUCT_NAME = "react-native-video"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 9B7FD3ACEAD10EF6B00C0E17837492A5 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = C6C822CDF50173D41B4EB726BBF1F243 /* GoogleAppMeasurement.xcconfig */; @@ -20539,9 +20916,34 @@ }; name = Release; }; + 9CA41B742483C78CE67B0732B35DEC34 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A70849E86F884989BEA7B48A7F7F668F /* RNGestureHandler.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNGestureHandler/RNGestureHandler-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNGestureHandler; + PRODUCT_NAME = RNGestureHandler; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 9CB909A72ECF8E9F5C4354791A034EFA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E3C9A6F63DA71839ED30EF7139A58B6A /* React-jsiexecutor.xcconfig */; + baseConfigurationReference = 50050C62246B736C56C79B2D8F35C32D /* React-jsiexecutor.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20564,31 +20966,6 @@ }; name = Debug; }; - 9E35283ABD339562732ED3CA34D1C31C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9116F4D919CCC884DCBFB8F2E5CFCFC5 /* react-native-document-picker.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-document-picker/react-native-document-picker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_document_picker; - PRODUCT_NAME = "react-native-document-picker"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 9EACF4A29D44986AF782D41BEBF433BB /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 8234A92AE9AB0AF5F299B81933E1478F /* Crashlytics.xcconfig */; @@ -20604,6 +20981,31 @@ }; name = Release; }; + 9F286FAF582A0CA9C17A8913D35BE98B /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 05FF947CF810B027D74CAA6CF3DACA74 /* react-native-notifications.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-notifications/react-native-notifications-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_notifications; + PRODUCT_NAME = "react-native-notifications"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 9F37A9BDE20D653B26F898D24CF41D28 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 0EE991E059971B89B12BEB6AA1267925 /* FirebaseCore.xcconfig */; @@ -20629,31 +21031,6 @@ }; name = Release; }; - 9F5F3D72FD1880E6CF88382837BB6A15 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3453E0BC01956B7CEE74F5A91A4B5DD1 /* react-native-webview.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-webview/react-native-webview-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_webview; - PRODUCT_NAME = "react-native-webview"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 9F9A1DF0D842D98BED690E73CEF0E01D /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 18B4D4CD4F3228B47F6A17E1A8BC845F /* nanopb.xcconfig */; @@ -20682,7 +21059,7 @@ }; 9FC521386049FBEA82F83422AF018F51 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3C2DBA525AE7F5D8C434EDDDCC04CED3 /* React-jsi.xcconfig */; + baseConfigurationReference = 914A219B23B3CFEBF97BAF31EB26B0BC /* React-jsi.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20708,7 +21085,7 @@ }; 9FE9F537B938EA1022C9783A442A20B8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7C07529AA42AD79CD10707073C2D41BF /* React.xcconfig */; + baseConfigurationReference = D40FC7FEB9E4848D1D5AFDA19A84F901 /* React.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -20722,7 +21099,7 @@ }; A05931FFE6C0277383167A6C7CB3637D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 12C2151977D42B49F271F8AFEF6FBA29 /* React-RCTActionSheet.xcconfig */; + baseConfigurationReference = 7C2180C4C2DD7664E68FBCB10059207A /* React-RCTActionSheet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20745,35 +21122,9 @@ }; name = Debug; }; - A41DF3DB36789E5E94840AFDF2738F8A /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 125760F603E52BC8B0C18CFD4C32A5C2 /* react-native-background-timer.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-background-timer/react-native-background-timer-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_background_timer; - PRODUCT_NAME = "react-native-background-timer"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; A4FE2B76D84D8BFC528F2B162A783E24 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D3B340CE324D758981C64E3D25801174 /* React-RCTText.xcconfig */; + baseConfigurationReference = AB0BA70BF6A64151B7D6C48C8EDCFF66 /* React-RCTText.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20797,6 +21148,115 @@ }; name = Release; }; + A54D8BB7402AC440011640D8A2C1544E /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0F4709C78CF4014F50C704B529CAD4FF /* RNFastImage.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNFastImage/RNFastImage-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNFastImage; + PRODUCT_NAME = RNFastImage; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + A61F1CB5D2CFCB2A93E541566D2C9066 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 3271D9F1923DCE00DA904E833AB4AD45 /* UMImageLoaderInterface.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + A62E8C9C813ADE3A4EC9B532CD10F380 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = EFE015060906EFBDC1CAE15092322E3C /* rn-fetch-blob.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/rn-fetch-blob/rn-fetch-blob-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = rn_fetch_blob; + PRODUCT_NAME = "rn-fetch-blob"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + A7974AE12B0C4D19C1DFB7A5446AAECC /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7202AA3BD04233E4CE8B1992E972E345 /* SDWebImage.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/SDWebImage/SDWebImage-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = SDWebImage; + PRODUCT_NAME = SDWebImage; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + A99754E3884309CC0B9F62EFFE982B11 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 86B96BD448BC9C22DBC68EC6B5A79722 /* UMTaskManagerInterface.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; AAB3F3D50C2C496CFAD1E28DCF1F196E /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = D692DE8FDBB660E94D7E45841B4028F8 /* Firebase.xcconfig */; @@ -20811,57 +21271,6 @@ }; name = Debug; }; - AB4BD9E2A22AE9DDB8662550EEEFF410 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5983F4816DA7116A310D03C866384722 /* react-native-jitsi-meet.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-jitsi-meet/react-native-jitsi-meet-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_jitsi_meet; - PRODUCT_NAME = "react-native-jitsi-meet"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - AB6AD91615B0722DCC22C6C5649839A0 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5A9D12858C98B132B37E19F52FEE8838 /* UMReactNativeAdapter.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/UMReactNativeAdapter/UMReactNativeAdapter-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = UMReactNativeAdapter; - PRODUCT_NAME = UMReactNativeAdapter; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; AC3354FF26E4944163F764A7A4BA0DE8 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 1D867735790D50598FA09B5FCF9177A4 /* DoubleConversion.xcconfig */; @@ -20888,21 +21297,6 @@ }; name = Release; }; - ACBB78B1D9A6E09E666C91414415060D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 617F712DE7450321E2D0378105C832BD /* UMFontInterface.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; AD067ADBB8EA28F904D58B2E210966D1 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 966A730FD988CC463C03A21DF8759D5F /* GoogleUtilities.xcconfig */; @@ -20931,7 +21325,7 @@ }; AEE8175A7CC0E02FF8F2C2DD7F89217E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5B40C52803C9F7FB3C31F0F494C2372C /* React-RCTImage.xcconfig */; + baseConfigurationReference = C70881379A1A9D1C8EBFDF89776553F0 /* React-RCTImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21040,26 +21434,59 @@ }; name = Release; }; - B0A9826E6E8D145CD14A0ED010263F4B /* Release */ = { + B1B0A45AF5F7D453D6657649401AD3CB /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0732E6E2BA68E536868DCC810783A7C4 /* SDWebImageWebPCoder.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/SDWebImageWebPCoder/SDWebImageWebPCoder-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = SDWebImageWebPCoder; + PRODUCT_NAME = SDWebImageWebPCoder; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + B3020FE27211511740B4E631D788CEEE /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 0FEB66ED4DB5FCA596F1CCEE9CCC44BE /* QBImagePickerController.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/QBImagePickerController"; - INFOPLIST_FILE = "Target Support Files/QBImagePickerController/ResourceBundle-QBImagePicker-QBImagePickerController-Info.plist"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/QBImagePickerController/QBImagePickerController-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; - PRODUCT_NAME = QBImagePicker; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = QBImagePickerController; + PRODUCT_NAME = QBImagePickerController; + PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; B352186F58CB5AA1263A74709E102311 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C50DDA1607E28D202AE726201815D27C /* React-jsinspector.xcconfig */; + baseConfigurationReference = 9FD9F29E7B29469801ECF10D55BF1FF8 /* React-jsinspector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21109,57 +21536,61 @@ }; name = Release; }; - B479271102BC45613F3ECF0179442D1D /* Debug */ = { + B43AD5DE1CA8BDD74270489C83B421B1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0FEB66ED4DB5FCA596F1CCEE9CCC44BE /* QBImagePickerController.xcconfig */; + baseConfigurationReference = 220E3D4E56EFC5BBD292DF9A9D6FD8B2 /* React-CoreModules.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/QBImagePickerController/QBImagePickerController-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + GCC_PREFIX_HEADER = "Target Support Files/React-CoreModules/React-CoreModules-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = QBImagePickerController; - PRODUCT_NAME = QBImagePickerController; + PRODUCT_MODULE_NAME = CoreModules; + PRODUCT_NAME = "React-CoreModules"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - B66AB7C623A7D0B689528F192CD94647 /* Debug */ = { + B5325A7E7891AF05B48A66924F02D426 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0094D08DC648CCF30D4F8C66575F20B7 /* Pods-RocketChatRN.debug.xcconfig */; + baseConfigurationReference = A70849E86F884989BEA7B48A7F7F668F /* RNGestureHandler.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; + GCC_PREFIX_HEADER = "Target Support Files/RNGestureHandler/RNGestureHandler-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNGestureHandler; + PRODUCT_NAME = RNGestureHandler; + PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; B774C6F49B847C5130C7F54F17F876F0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E5EC125FBD06D04A9ED25061720D8707 /* EXAppLoaderProvider.xcconfig */; + baseConfigurationReference = 619246498A0A6A66E5E04CDDDD853542 /* EXAppLoaderProvider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21186,7 +21617,7 @@ }; BB2B3178D31C773E47CE22AA4A0C96E3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6211AC7452810F7BFBA376A5CD2354C5 /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = 7E1BFA93837EAD077B5E764C1F41A4BC /* UMConstantsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21200,9 +21631,35 @@ }; name = Release; }; + BC3E5089A2AA9CAA10CFC67E30A3080E /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1CD2482528E8085932F448164C50569B /* react-native-keyboard-input.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-keyboard-input/react-native-keyboard-input-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_keyboard_input; + PRODUCT_NAME = "react-native-keyboard-input"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; BD846AF2658401B6E969F0E223F9598F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E5EC125FBD06D04A9ED25061720D8707 /* EXAppLoaderProvider.xcconfig */; + baseConfigurationReference = 619246498A0A6A66E5E04CDDDD853542 /* EXAppLoaderProvider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21226,88 +21683,9 @@ }; name = Debug; }; - BE7519F0CEFA780285CD75B92F025C96 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C6D78F3CBC90BCC7511EF05DCECBF137 /* RNScreens.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNScreens/RNScreens-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNScreens; - PRODUCT_NAME = RNScreens; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - BEDC6DA348F7695AEDCF304C2681AEE1 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5A9D12858C98B132B37E19F52FEE8838 /* UMReactNativeAdapter.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/UMReactNativeAdapter/UMReactNativeAdapter-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = UMReactNativeAdapter; - PRODUCT_NAME = UMReactNativeAdapter; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - BF0737CD560BF96CDDC7BB7B920B2E3B /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BC52A2F9EC3448D5AB934A7E681763FD /* RNUserDefaults.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNUserDefaults/RNUserDefaults-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNUserDefaults; - PRODUCT_NAME = RNUserDefaults; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; BF6A4AAA192E749AD5201D9CBEBF857A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9E1F2B15CF7018FF290E064A0770F577 /* React-Core.xcconfig */; + baseConfigurationReference = B06861B6BCD98E2920DE1208E03D1B08 /* React-Core.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21330,50 +21708,35 @@ }; name = Debug; }; - BFF410A3B26F54FB4C2805565FC96EB6 /* Release */ = { + C06AD9F0B752D13B1CF1641E0E41B157 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 30FDB4BB9D4B18A3362C318F3875355E /* UMBarCodeScannerInterface.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - C0CF51807DC3EF94566E4207343B1D47 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0732E6E2BA68E536868DCC810783A7C4 /* SDWebImageWebPCoder.xcconfig */; + baseConfigurationReference = E8D8F3713AFE4DEAC4398CE6940594C3 /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/SDWebImageWebPCoder/SDWebImageWebPCoder-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNImageCropPicker/RNImageCropPicker-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = SDWebImageWebPCoder; - PRODUCT_NAME = SDWebImageWebPCoder; + PRODUCT_MODULE_NAME = RNImageCropPicker; + PRODUCT_NAME = RNImageCropPicker; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; C1533DFEDEBF00D3A5C7E749E0CE0875 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FF0C4AED202004DCDAE3A3A98A24A59F /* UMCore.xcconfig */; + baseConfigurationReference = 72F610CA18A677F25011BCB77591D456 /* UMCore.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21397,30 +21760,6 @@ }; name = Debug; }; - C16860316EE890039A12B16E84A5EC00 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 46A54367025ACCCB32096FA0B124098C /* Pods-RocketChatRN.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - 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; - }; C16E0DDBF20B57FFA04DE5B1C4244109 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 0616AECA7B82787D45E9F30B06FC31A0 /* FirebaseInstanceID.xcconfig */; @@ -21445,9 +21784,26 @@ }; name = Debug; }; + C1889350F3CCB23906447654507C6C76 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0FEB66ED4DB5FCA596F1CCEE9CCC44BE /* QBImagePickerController.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/QBImagePickerController"; + INFOPLIST_FILE = "Target Support Files/QBImagePickerController/ResourceBundle-QBImagePicker-QBImagePickerController-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + PRODUCT_NAME = QBImagePicker; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; C247B44F553069D47318E2F569152E91 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C50DDA1607E28D202AE726201815D27C /* React-jsinspector.xcconfig */; + baseConfigurationReference = 9FD9F29E7B29469801ECF10D55BF1FF8 /* React-jsinspector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21470,35 +21826,9 @@ }; name = Debug; }; - C448A21B2F0701B43BDFD2E28C355F58 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = CAE65338D4166647374D7B7BAEB9B4F8 /* RNImageCropPicker.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNImageCropPicker/RNImageCropPicker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNImageCropPicker; - PRODUCT_NAME = RNImageCropPicker; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; C4E0AFE80FD54F1800690C4BAA41ED8A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D9D69FDB3C6E261AEE891328E6E3B297 /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = F9750DE8E5569570FBEE1FA5BDB59AE4 /* UMPermissionsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21511,34 +21841,9 @@ }; name = Debug; }; - C507A9E2F1B09E26A60261BECA4A63B7 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B9767166BB7EC94BB583AC6F3DEB384A /* react-native-orientation-locker.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-orientation-locker/react-native-orientation-locker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_orientation_locker; - PRODUCT_NAME = "react-native-orientation-locker"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; C641005C76C55F76BC43907CFB03C710 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C37213CB53C46CD9F8E69CB2AE2C631C /* EXAV.xcconfig */; + baseConfigurationReference = EBFF699B27043CC8F598C7D6A6AF32E2 /* EXAV.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21562,9 +21867,35 @@ }; name = Debug; }; + C7AD488C54F6CC2C5324AF012D413B79 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2C4D5A26D150618BD9D8ED373D8A0BEC /* RNReanimated.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNReanimated/RNReanimated-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNReanimated; + PRODUCT_NAME = RNReanimated; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; C83000CE2C12D66BE8DCDEAF0BE81B4E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6211AC7452810F7BFBA376A5CD2354C5 /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = 7E1BFA93837EAD077B5E764C1F41A4BC /* UMConstantsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21579,7 +21910,7 @@ }; C90E05A0D21847398D952F6F814FBB05 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E4069059ABB37C390BFC6AF38DBD8142 /* RCTRequired.xcconfig */; + baseConfigurationReference = 96C8FEC1DF44C11F0D855096EB4729D5 /* RCTRequired.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21592,59 +21923,9 @@ }; name = Release; }; - C91DCC0EFFEBAD3FA3A29A4A5CF68CA0 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 90990DB5B1E9FD2BEC6C581F7B47FBFC /* react-native-keyboard-input.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-keyboard-input/react-native-keyboard-input-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_keyboard_input; - PRODUCT_NAME = "react-native-keyboard-input"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - C947C39AD90B7D874DD43F2EB8538A63 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5C449790E042A3AC81AB73A2CE6B3EDD /* rn-extensions-share.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/rn-extensions-share/rn-extensions-share-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = rn_extensions_share; - PRODUCT_NAME = "rn-extensions-share"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; CAFA7F89ACEEEA90923DB4DD5F1BB93E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6B1DCD13B19DC1F616E1F148BCA5DBB5 /* EXWebBrowser.xcconfig */; + baseConfigurationReference = 9A27433536D54C21478A075F44C6B093 /* EXWebBrowser.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21670,7 +21951,7 @@ }; CB5BA02D6D47948A29FCCA50359D0293 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3738738E40C256878035DDF4259511E9 /* Yoga.xcconfig */; + baseConfigurationReference = 127E8C75221F5BB1DC8E0B817100CA49 /* Yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21693,91 +21974,22 @@ }; name = Debug; }; - CB717949E8E87D64E63514831AFB7B85 /* Release */ = { + CB9F334667404A763BB4114EB25EC123 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 80730B8B348D13FE7DE65F28AC23D786 /* React-CoreModules.xcconfig */; + baseConfigurationReference = E1706E8B67D7B2619A452A43075536FD /* RNUserDefaults.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/React-CoreModules/React-CoreModules-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = CoreModules; - PRODUCT_NAME = "React-CoreModules"; - 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; - }; - CBA88D6F186520DF97902C0883C02BF9 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5C449790E042A3AC81AB73A2CE6B3EDD /* rn-extensions-share.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/rn-extensions-share/rn-extensions-share-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = rn_extensions_share; - PRODUCT_NAME = "rn-extensions-share"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - CE296C364D1258F0FCC249B987D9BDE8 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0FEB66ED4DB5FCA596F1CCEE9CCC44BE /* QBImagePickerController.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/QBImagePickerController"; - INFOPLIST_FILE = "Target Support Files/QBImagePickerController/ResourceBundle-QBImagePicker-QBImagePickerController-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - PRODUCT_NAME = QBImagePicker; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - D11D8B8E4FB2D13E0D47EACF7907E8D6 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = EF185A2B5CEEDB9602A9B0A464A8C0C5 /* react-native-splash-screen.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-splash-screen/react-native-splash-screen-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/RNUserDefaults/RNUserDefaults-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 7.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_splash_screen; - PRODUCT_NAME = "react-native-splash-screen"; + PRODUCT_MODULE_NAME = RNUserDefaults; + PRODUCT_NAME = RNUserDefaults; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -21788,9 +22000,59 @@ }; name = Release; }; + CDE903277449689278464724635AEDA6 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9BB9ADC638290658930754803EBA559D /* react-native-document-picker.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-document-picker/react-native-document-picker-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_document_picker; + PRODUCT_NAME = "react-native-document-picker"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + D1BA35326363D7635FBB4B4FCB46EBE7 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = BB09793108C7309E166DD7F6431EA1D7 /* react-native-orientation-locker.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-orientation-locker/react-native-orientation-locker-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_orientation_locker; + PRODUCT_NAME = "react-native-orientation-locker"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; D1EF91AF8FC2ACCB53A6F6B18E9DAF1D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A85DA116B1E0A1C18A5449E8A23EE238 /* RCTTypeSafety.xcconfig */; + baseConfigurationReference = 93C0CEC88304CE8024C4BAD6F49F46DD /* RCTTypeSafety.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21815,7 +22077,7 @@ }; D38AEF063C2F20CF57B6439950D78FEF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 32DBCA60CA5999DD0DD8CFEE12A42265 /* FBLazyVector.xcconfig */; + baseConfigurationReference = 8796D4948C0082A6756FC511A8EE65C0 /* FBLazyVector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21827,34 +22089,9 @@ }; name = Debug; }; - D525E45DB4515CE0DFF319ECAF1D3619 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 98D20B600B4CB23C0132B4592AF3D14B /* RNVectorIcons.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNVectorIcons/RNVectorIcons-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNVectorIcons; - PRODUCT_NAME = RNVectorIcons; - 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; - }; D5B6D636403693383350DB6FDE64AF7F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7C2411315370F0F40849929564814801 /* React-RCTLinking.xcconfig */; + baseConfigurationReference = 4AB984D733BC5993EE88552D2D202953 /* React-RCTLinking.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21878,57 +22115,6 @@ }; name = Release; }; - D66E2B97E466D9F84A0E5D7AC6B8D8C1 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2DDD1DD47E9C22159E8E450C71DD1E4F /* RNFastImage.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNFastImage/RNFastImage-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNFastImage; - PRODUCT_NAME = RNFastImage; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - D85D4BCF0723DCBCCD578E79273CB058 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = CAE65338D4166647374D7B7BAEB9B4F8 /* RNImageCropPicker.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNImageCropPicker/RNImageCropPicker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNImageCropPicker; - PRODUCT_NAME = RNImageCropPicker; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; DA2039C3E2F2E745D7BB89E3A949C64C /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 4FA7C78F56C449B41A76D32AABA514DD /* FirebaseAnalytics.xcconfig */; @@ -21943,9 +22129,26 @@ }; name = Debug; }; + DA43C790464E6C0A4388B8B7CC06F513 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0FEB66ED4DB5FCA596F1CCEE9CCC44BE /* QBImagePickerController.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/QBImagePickerController"; + INFOPLIST_FILE = "Target Support Files/QBImagePickerController/ResourceBundle-QBImagePicker-QBImagePickerController-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + PRODUCT_NAME = QBImagePicker; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; DAA9E79193753408477948DB68A1D5A6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F8412A0B0D032095263B6C94695433F9 /* EXConstants.xcconfig */; + baseConfigurationReference = FB8B0EADBA394375D3AAF56E332F27D5 /* EXConstants.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21969,110 +22172,6 @@ }; name = Debug; }; - DAC1E591008944666783B019D9CC3B6E /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4ADA1183F0ACCB431682507B4CC7D1DB /* react-native-video.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-video/react-native-video-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_video; - PRODUCT_NAME = "react-native-video"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - DB95BC81D0E78E4814ED77DC27114E6B /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B5C340D4A14F573589F590FCD59B6DAC /* rn-fetch-blob.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/rn-fetch-blob/rn-fetch-blob-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = rn_fetch_blob; - PRODUCT_NAME = "rn-fetch-blob"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - DBDB8E18AC57B5768B0F0C961498CB8E /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = ABC6B3F79A08E31D5471FA0A46D7D591 /* react-native-keyboard-tracking-view.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-keyboard-tracking-view/react-native-keyboard-tracking-view-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_keyboard_tracking_view; - PRODUCT_NAME = "react-native-keyboard-tracking-view"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - DEBF874A571F047F10DED41D10B3CA41 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5983F4816DA7116A310D03C866384722 /* react-native-jitsi-meet.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-jitsi-meet/react-native-jitsi-meet-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_jitsi_meet; - PRODUCT_NAME = "react-native-jitsi-meet"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; DF7478822B9356E5540AE3CCA75426E1 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 0EE991E059971B89B12BEB6AA1267925 /* FirebaseCore.xcconfig */; @@ -22099,7 +22198,7 @@ }; DFD823DA1290CE40B87DC41D663E5D0D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C9E77B660C22879AD0E5B67ACE606165 /* ReactCommon.xcconfig */; + baseConfigurationReference = 9F8BCF87FBCD5F997519A8F55C3A7752 /* ReactCommon.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22162,7 +22261,7 @@ }; E5F93A9DAD7A39EB58BB080BC9D1C800 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C9E77B660C22879AD0E5B67ACE606165 /* ReactCommon.xcconfig */; + baseConfigurationReference = 9F8BCF87FBCD5F997519A8F55C3A7752 /* ReactCommon.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22186,28 +22285,44 @@ }; name = Release; }; - EA1F85C3372F003138C2CC5667F1BC18 /* Debug */ = { + E751AA3EEC99123CBAC99053973136F8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 35A579D0C7A01ECD4D9FFFC9086DDDA7 /* RNLocalize.xcconfig */; + baseConfigurationReference = BB09793108C7309E166DD7F6431EA1D7 /* react-native-orientation-locker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNLocalize/RNLocalize-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + GCC_PREFIX_HEADER = "Target Support Files/react-native-orientation-locker/react-native-orientation-locker-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNLocalize; - PRODUCT_NAME = RNLocalize; + PRODUCT_MODULE_NAME = react_native_orientation_locker; + PRODUCT_NAME = "react-native-orientation-locker"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + E891311969A1C23EA2013DCA6FA8A3A8 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 55B2E31CB23A3A9BFCA8049764933D32 /* UMCameraInterface.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; @@ -22240,6 +22355,31 @@ }; name = Release; }; + F176BF6911BA4E664620F0A723520722 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A0CF3CBB7F85C217DF43B19FBAB34135 /* react-native-keyboard-tracking-view.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-keyboard-tracking-view/react-native-keyboard-tracking-view-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_keyboard_tracking_view; + PRODUCT_NAME = "react-native-keyboard-tracking-view"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; F1D92D3D079ED8C916083D517D6DFD76 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 40DE467A1FC32C3FECA2F64129393790 /* FirebaseCoreDiagnosticsInterop.xcconfig */; @@ -22256,7 +22396,7 @@ }; F21134E5221C7858F0C07A275E43964D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5538474B2860C1237420F4669067F4A4 /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = C1CAD5976621EE402483B2B1C29A1FB3 /* UMFileSystemInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22272,7 +22412,7 @@ }; F282E9FA529070D5C088C7A0113AD236 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5B40C52803C9F7FB3C31F0F494C2372C /* React-RCTImage.xcconfig */; + baseConfigurationReference = C70881379A1A9D1C8EBFDF89776553F0 /* React-RCTImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22297,7 +22437,7 @@ }; F3933378CE1C1E9BFC3330D7E2B286A9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D3B340CE324D758981C64E3D25801174 /* React-RCTText.xcconfig */; + baseConfigurationReference = AB0BA70BF6A64151B7D6C48C8EDCFF66 /* React-RCTText.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22320,7 +22460,7 @@ }; name = Debug; }; - F3BB1DBDBC961993924E41F15BD243F6 /* Release */ = { + F566E942890C9CDFFB3D830E801FA0A7 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = F3E5FA7017063441BC562E0F635EDCA7 /* RSKImageCropper.xcconfig */; buildSettings = { @@ -22342,13 +22482,37 @@ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; + }; + F6AEB748F72D8669BD00413927654034 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7E37B494353BC92326215A87DDE58DC3 /* RNAudio.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNAudio/RNAudio-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNAudio; + PRODUCT_NAME = RNAudio; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; }; F6D9706C270B1DF00D0365B34B090AA3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FF0C4AED202004DCDAE3A3A98A24A59F /* UMCore.xcconfig */; + baseConfigurationReference = 72F610CA18A677F25011BCB77591D456 /* UMCore.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -22375,7 +22539,7 @@ }; F8E7602FFB27E13DA859F74D1AAE419C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A85DA116B1E0A1C18A5449E8A23EE238 /* RCTTypeSafety.xcconfig */; + baseConfigurationReference = 93C0CEC88304CE8024C4BAD6F49F46DD /* RCTTypeSafety.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22414,6 +22578,32 @@ }; name = Release; }; + FCDDB02A771CB65373276470EC61E88B /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C3086FDE80F3C329FBDF3470894E6E73 /* RNFirebase.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNFirebase/RNFirebase-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNFirebase; + PRODUCT_NAME = RNFirebase; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ @@ -22426,6 +22616,24 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 04D9A8674A2836D6159E788F0F9B9393 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 8035A609245FAE8352566938661EA237 /* Debug */, + 0A393834ED2A5012F331D7D699D336A0 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 05427BAB24065503B193E63989621773 /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C1889350F3CCB23906447654507C6C76 /* Debug */, + DA43C790464E6C0A4388B8B7CC06F513 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 07E03FFE7B3B819865AF65F71F693B5E /* Build configuration list for PBXNativeTarget "FirebaseCoreDiagnostics" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -22435,15 +22643,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 08634E58889F83D97B018D89E89888CF /* Build configuration list for PBXNativeTarget "react-native-document-picker" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 9E35283ABD339562732ED3CA34D1C31C /* Debug */, - 5C90DAADC065F2103EB21CB34E3BBAB1 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 08C4767D793682C307862495EDFC6F37 /* Build configuration list for PBXNativeTarget "EXWebBrowser" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -22462,11 +22661,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0C98EDE7AC25C78B6E4D3FAEC590E18A /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { + 0A789620C6F531BFF19266625E1CE6BE /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - B66AB7C623A7D0B689528F192CD94647 /* Debug */, - C16860316EE890039A12B16E84A5EC00 /* Release */, + 547A3FB8EDC1AD4DF68D947F1686B30D /* Debug */, + A61F1CB5D2CFCB2A93E541566D2C9066 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -22480,11 +22679,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0E0DFD962DAEF974B4D3DE144413E47D /* Build configuration list for PBXNativeTarget "React-CoreModules" */ = { + 104C848F4F6A5919334402CC4BC40688 /* Build configuration list for PBXNativeTarget "QBImagePickerController" */ = { isa = XCConfigurationList; buildConfigurations = ( - 764C7FBB71780119F401D2E4E9E93584 /* Debug */, - CB717949E8E87D64E63514831AFB7B85 /* Release */, + B3020FE27211511740B4E631D788CEEE /* Debug */, + 3591E5CF427086B04DA9FB6A4D0FDE8A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -22516,6 +22715,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 144E768819136BE5A5EE763C21A8B8DF /* Build configuration list for PBXAggregateTarget "UMTaskManagerInterface" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 7DE2BF3C41C88D4158E109AD4551F5F1 /* Debug */, + A99754E3884309CC0B9F62EFFE982B11 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 17528847ED7361712D5774B3F57F412E /* Build configuration list for PBXNativeTarget "FirebaseInstanceID" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -22525,15 +22733,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1A848E27847514ED48AB834165992613 /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C507A9E2F1B09E26A60261BECA4A63B7 /* Debug */, - 34C51112EF70824AF46EF5191F1C5B5C /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 1CB324CFC7C9FDAD43D409360A8F980B /* Build configuration list for PBXAggregateTarget "UMFileSystemInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -22543,11 +22742,29 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1FE929C7D86DBCA93E7ED1D8D7370073 /* Build configuration list for PBXNativeTarget "RNVectorIcons" */ = { + 1D0A0A5A28891466EEC8401B5ACB3E76 /* Build configuration list for PBXAggregateTarget "UMBarCodeScannerInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - D525E45DB4515CE0DFF319ECAF1D3619 /* Debug */, - 0A1DA084BF564725135EA6548D7168B5 /* Release */, + 8D3B611549D33324D8B7F64E617B0F08 /* Debug */, + 449A2479F3470A8C37D40DB01474CF7C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 1F37A32DB8B0381CCFDA7B68F27F8374 /* Build configuration list for PBXNativeTarget "UMReactNativeAdapter" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 61358D65F91A196AA2FEFA607B3A9B9C /* Debug */, + 2FCB4868BF08FBA51A6D8D0018480C7A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 1FE6EFB1557D013E5FC58C94E79225FB /* Build configuration list for PBXNativeTarget "RNVectorIcons" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 1ABADC0BDCEB477B5E3AC75D936B36D3 /* Debug */, + 2217C7B4C2AA78CABB0C17E5FF255F3E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -22570,11 +22787,29 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2D0BDFA708DEA7F3FB47E95D66F8BBDF /* Build configuration list for PBXNativeTarget "rn-extensions-share" */ = { + 274FBBCEBC6FE5222C2829CCF5B53763 /* Build configuration list for PBXNativeTarget "RNFirebase" */ = { isa = XCConfigurationList; buildConfigurations = ( - C947C39AD90B7D874DD43F2EB8538A63 /* Debug */, - CBA88D6F186520DF97902C0883C02BF9 /* Release */, + 123273C5BEE3457B9F16CBAB08A85BBB /* Debug */, + FCDDB02A771CB65373276470EC61E88B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 278B4666F577C894E85CA3FB64BF274B /* Build configuration list for PBXAggregateTarget "UMFontInterface" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 891566F9593C53F4BE24134C530FF687 /* Debug */, + 53EC76DF7CF6DF6C3352B7442505D919 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 28F259EFAB03F26024337F16F6DF0651 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 990D8CBB1D592C9BB047F38204FF78DB /* Debug */, + 041D46DB0D76C3EFBAAB84249F3FEEF5 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -22588,20 +22823,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 37168574AD40F5FD96CFABA5B20482EB /* Build configuration list for PBXNativeTarget "RNFastImage" */ = { + 339330ABB9C360060E8D29D15DECD2BC /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */ = { isa = XCConfigurationList; buildConfigurations = ( - 31B156B673976EC71CB3C0AF38F84B76 /* Debug */, - D66E2B97E466D9F84A0E5D7AC6B8D8C1 /* Release */, + 6F9E0069125AF2DF08826D9FE5736730 /* Debug */, + 1C08387FE7EB265326E3F243E647AB80 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 375E4679147B1B2AFD408A869FF6BACA /* Build configuration list for PBXAggregateTarget "UMSensorsInterface" */ = { + 36DDF053D7A3C0BEF68FBB85AB1C1F4D /* Build configuration list for PBXNativeTarget "RNReanimated" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7E887F9376B2A9C25E4F2E2AE767E9C6 /* Debug */, - 54D0AAA81E7168212F497AD1E2AEF70C /* Release */, + 67AA4E2E8960541CED29AB338ED28D3B /* Debug */, + C7AD488C54F6CC2C5324AF012D413B79 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -22615,29 +22850,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 42E3A89E49A74CB579939F0D27EAFE6E /* Build configuration list for PBXAggregateTarget "UMTaskManagerInterface" */ = { + 3820EDEA7C84F3A668D4F1B2F8F5A27F /* Build configuration list for PBXAggregateTarget "UMSensorsInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5B8002BD29A2842D0DB35EE65981263D /* Debug */, - 73A82B68D7648FD29AFEBD1909E3BEFF /* Release */, + 267A7E750D48DB34EDF6C92DB2F21BD1 /* Debug */, + 44DBCE2AF1FD8783E97FBB15B437CB7A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 436156A98FC71D2CDB6BA69A0390266C /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */ = { + 3BA70B292F0C9522D3D846F45166F284 /* Build configuration list for PBXNativeTarget "RNUserDefaults" */ = { isa = XCConfigurationList; buildConfigurations = ( - D85D4BCF0723DCBCCD578E79273CB058 /* Debug */, - C448A21B2F0701B43BDFD2E28C355F58 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 436F937EF9DD87653DABCE9EF786F9BC /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 83B5FCE31797D903712C918E31C1949C /* Debug */, - 64DBDB2A2F111BF8FBD65D86FBC8D2BC /* Release */, + 7B76B4F6217E9CBD72FF208B83001449 /* Debug */, + CB9F334667404A763BB4114EB25EC123 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -22651,6 +22877,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 4A034812941D4806899E67F79F74D16A /* Build configuration list for PBXNativeTarget "RNLocalize" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 8D5BA39B3B0BAF6646EEF19ABC47381A /* Debug */, + 33384CA66029FB285972A2857F25F4A2 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 4B5CF2CFEBD0A2F5EB3A88ADC5140FA7 /* Build configuration list for PBXNativeTarget "BugsnagReactNative" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -22660,29 +22895,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4FA4E8C701BBE7A87EBB8F0CEA5B22C1 /* Build configuration list for PBXNativeTarget "react-native-jitsi-meet" */ = { + 4E510D6CD72170EF18955772C29FDC57 /* Build configuration list for PBXNativeTarget "react-native-video" */ = { isa = XCConfigurationList; buildConfigurations = ( - AB4BD9E2A22AE9DDB8662550EEEFF410 /* Debug */, - DEBF874A571F047F10DED41D10B3CA41 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 51434F98596B4B48220CAC8B56DA23A6 /* Build configuration list for PBXAggregateTarget "UMFaceDetectorInterface" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 20CA29590B6B36B29CC6947C3F695503 /* Debug */, - 1765DB291B7724CF162EDA9EDD8B6B5E /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 52DCE85AE178E7BD98BD85AEF42CDE07 /* Build configuration list for PBXNativeTarget "react-native-notifications" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 7584EF3CF60A9AD6E869FA62F0F43444 /* Debug */, - 7C358DFDEE24FD2D1159E6CACECF0BC6 /* Release */, + 9A314980D8106FC4DCF8783982EB8D14 /* Debug */, + 1A9BAFD2928B627096535EB8890BC5CF /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -22696,6 +22913,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 53D7BD79B5AC7824A784738467F7706F /* Build configuration list for PBXNativeTarget "react-native-keyboard-tracking-view" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F176BF6911BA4E664620F0A723520722 /* Debug */, + 8EE19551B5276AD4820F9DBA9B7FB2AF /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 54F3B87B3B269E9BBE45F037B2F7358B /* Build configuration list for PBXNativeTarget "React-RCTNetwork" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -22714,6 +22940,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 5AE2586ACBA05A512CFAEF8C1A94E56B /* Build configuration list for PBXNativeTarget "rn-extensions-share" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4CC165F467F1E0B7B7DEAF270ABD8291 /* Debug */, + 01A38DB1526F39EED02E29F9533BF394 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 5AE3722DD39C3B2C37D89B1AC2A0A4C0 /* Build configuration list for PBXAggregateTarget "boost-for-react-native" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -22723,6 +22958,33 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 5BFC35E63D845A144BED9A09417C8CCE /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B1B0A45AF5F7D453D6657649401AD3CB /* Debug */, + 2D4F5C91D3A919023A4E91B70FE03609 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 5E43DB68F0D7E271553D460792FDDB99 /* Build configuration list for PBXNativeTarget "react-native-webview" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 533DA57B1536D74782CF0C8CA8063C83 /* Debug */, + 76B396FD7DDDCB8B2D63EFC0E8B2D506 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 5EBEA9125BC3C0D19B8A7C03E7305CB6 /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 1A32C385FBAAF99B9914E7B39BF56EAF /* Debug */, + C06AD9F0B752D13B1CF1641E0E41B157 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 611882B4FC76DDB90E3FE11E69E82A1D /* Build configuration list for PBXAggregateTarget "FBLazyVector" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -22759,11 +23021,29 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 655041E37338F965A0D31E45BD7C48E1 /* Build configuration list for PBXAggregateTarget "UMCameraInterface" */ = { + 646401DEB29D70F66AB7D54515B1CBB5 /* Build configuration list for PBXNativeTarget "RNScreens" */ = { isa = XCConfigurationList; buildConfigurations = ( - 0D0A6D087940A7918C51F2BE0E2AA818 /* Debug */, - 71237BF2AA56166AF9D83AB61132B909 /* Release */, + 3343208D4025B457B437CA3A060AD9FB /* Debug */, + 8631ABB9FE20C05B499F8CEB1E97DBDA /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 65C214A0F1FBAFFAD4F6D530DB8BDD35 /* Build configuration list for PBXNativeTarget "react-native-notifications" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 9F286FAF582A0CA9C17A8913D35BE98B /* Debug */, + 6C9DF3BF5806C413DB2EA9758CD96AD0 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 66C0BD577796B496842FD5EED312B9CE /* Build configuration list for PBXNativeTarget "react-native-safe-area-context" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 29368DAE4831166DE7E9C06B8630134B /* Debug */, + 66AE4DF31D50CE225049FB701DB18E4B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -22777,42 +23057,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6A174A109BBB9465150C8818941029ED /* Build configuration list for PBXNativeTarget "RNScreens" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 496650D648CD98D6DDD98C96250E71F3 /* Debug */, - BE7519F0CEFA780285CD75B92F025C96 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 6A6A092F9B43D1D64B7460C459A610FD /* Build configuration list for PBXNativeTarget "RNAudio" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 6331185B9ED93927C84DC43062F6442B /* Debug */, - 5D57AB11B94933388FB72F1500184C50 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 6B53DA5955ABE5E0056830B389561CE8 /* Build configuration list for PBXNativeTarget "react-native-background-timer" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 7C791CABF5AF11C1DD1DF0847579AF52 /* Debug */, - A41DF3DB36789E5E94840AFDF2738F8A /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 6B96C5AFD0407E8A2F8CE3F223CD7EB3 /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C0CF51807DC3EF94566E4207343B1D47 /* Debug */, - 8632C182926B34C7B4BBE894F60560A1 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 6D63296C2BA88313F34CCCE8D488568A /* Build configuration list for PBXNativeTarget "React-RCTActionSheet" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -22822,42 +23066,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6E500C97D9E9F100C19CDCCDA21C946F /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 5E91A4157157173257C5D5945ED9D194 /* Debug */, - 58071C744E441BDA5FD951FC7A452A2E /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 6EE6ED49D565AFE95A44EEEE6813E34A /* Build configuration list for PBXNativeTarget "rn-fetch-blob" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1FDFD4F850C7586E9E104B48A0C167A4 /* Debug */, - DB95BC81D0E78E4814ED77DC27114E6B /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 713C77F121C34A9B662DB58F2B028160 /* Build configuration list for PBXNativeTarget "RNLocalize" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - EA1F85C3372F003138C2CC5667F1BC18 /* Debug */, - 91B8F938881A483D3076F2388C23684C /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 72D2660A69AF613A6E453BD5E25FB4AD /* Build configuration list for PBXAggregateTarget "UMFontInterface" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - ACBB78B1D9A6E09E666C91414415060D /* Debug */, - 7103CFEA69B24364DD27E238E67A0651 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 73A6CB4B327E5278A08D35B283F2B208 /* Build configuration list for PBXNativeTarget "nanopb" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -22867,29 +23075,29 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 78057BC1706224C32803BFEE71B2906F /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */ = { + 7BFF816788809B84B9A629A55813CC3C /* Build configuration list for PBXNativeTarget "react-native-jitsi-meet" */ = { isa = XCConfigurationList; buildConfigurations = ( - CE296C364D1258F0FCC249B987D9BDE8 /* Debug */, - B0A9826E6E8D145CD14A0ED010263F4B /* Release */, + 0D4316C9A76B1A9C7849C9EF16531782 /* Debug */, + 71F94DBB5B8206311E96F3039EF19D42 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7C23A8C09CAEC7E2195A97A96648E375 /* Build configuration list for PBXNativeTarget "react-native-webview" */ = { + 817C8D59296540781CADE17DF8925B9C /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */ = { isa = XCConfigurationList; buildConfigurations = ( - 9F5F3D72FD1880E6CF88382837BB6A15 /* Debug */, - 4978D7F7B75F525382D532174A710403 /* Release */, + 9921E952DDD4C3BB7973101351800E1B /* Debug */, + 89151E1B9CA1393C3ABC3BC2DA08C1FD /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 85247D815771FCA2C7B6E3998EB436ED /* Build configuration list for PBXNativeTarget "RNReanimated" */ = { + 8244F879B6047FF0A3E1CA493402BC80 /* Build configuration list for PBXNativeTarget "RNAudio" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7321458A262C939D6A17CF0A12783E20 /* Debug */, - 6B86F8D9FB3923F8A3110EBC9859185F /* Release */, + F6AEB748F72D8669BD00413927654034 /* Debug */, + 3DA2FFE41BB82CC211949D4CFF84E134 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -22903,6 +23111,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 8752333C10C923DF96D1FC9794B27D34 /* Build configuration list for PBXNativeTarget "RNGestureHandler" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 9CA41B742483C78CE67B0732B35DEC34 /* Debug */, + B5325A7E7891AF05B48A66924F02D426 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 87DF435EAEE04FBB0D329AE0D0682913 /* Build configuration list for PBXNativeTarget "Yoga" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -22912,6 +23129,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 893E95A6466DDF75BF146B7B9B4E3AD8 /* Build configuration list for PBXNativeTarget "react-native-keyboard-input" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 057F80B90B81B85E55A1FDFFE3E14A4B /* Debug */, + BC3E5089A2AA9CAA10CFC67E30A3080E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 8D2EFE0FE8311293CF2DE010A71CAA8F /* Build configuration list for PBXAggregateTarget "React" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -22921,20 +23147,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 92F0E7344F8DDF92AC6E162076CF4C57 /* Build configuration list for PBXNativeTarget "react-native-video" */ = { + 9C93B4C52B41A79FF2E99C4FCA512E6F /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */ = { isa = XCConfigurationList; buildConfigurations = ( - 0D0719DDEB1CD63B81B8B61B05A6B15D /* Debug */, - DAC1E591008944666783B019D9CC3B6E /* Release */, + D1BA35326363D7635FBB4B4FCB46EBE7 /* Debug */, + E751AA3EEC99123CBAC99053973136F8 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 98AD9DE027D1D39650A0E33B4C764CA5 /* Build configuration list for PBXNativeTarget "react-native-keyboard-input" */ = { + 9D1B43109D3EF875424E7EEBBD96525F /* Build configuration list for PBXNativeTarget "react-native-document-picker" */ = { isa = XCConfigurationList; buildConfigurations = ( - C91DCC0EFFEBAD3FA3A29A4A5CF68CA0 /* Debug */, - 9734DB5863DD9BB1FAF41C89797C6E37 /* Release */, + CDE903277449689278464724635AEDA6 /* Debug */, + 76EF660DB4E346E606E8D4BC25670087 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -22966,15 +23192,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A5CB5A9AB734F2F971CC7CB2A9CADDBE /* Build configuration list for PBXNativeTarget "RSKImageCropper" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 80ABA90B0709712C7F30C6E45F2C6FB1 /* Debug */, - F3BB1DBDBC961993924E41F15BD243F6 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; A8782857F2D49A3C08A5D9C7603FBBCD /* Build configuration list for PBXNativeTarget "GoogleDataTransportCCTSupport" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -22984,6 +23201,24 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + AF57635DBA67A9C73839B1C8F6595737 /* Build configuration list for PBXNativeTarget "rn-fetch-blob" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + A62E8C9C813ADE3A4EC9B532CD10F380 /* Debug */, + 48D485E26F3592D5DA8DE03AC73A6893 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + B230C0EDFBB84CC52121402AD12B55B0 /* Build configuration list for PBXNativeTarget "React-CoreModules" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 14E0C1DA6C6AB0C8DDD4D454706607D5 /* Debug */, + B43AD5DE1CA8BDD74270489C83B421B1 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; B381CD3971A7692A9DA4E5C5156E7297 /* Build configuration list for PBXAggregateTarget "UMPermissionsInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -22993,15 +23228,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B39EDA4EBC69DBF9519E77D865135E90 /* Build configuration list for PBXNativeTarget "SDWebImage" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1745C47F25FE9121BE37F22E3A3D62C9 /* Debug */, - 49F365B6E30CB2A2BF184A246C0ABCAB /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; B3E76B1390AF20A46D319CDCE2224F68 /* Build configuration list for PBXNativeTarget "ReactCommon" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -23020,29 +23246,29 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BBC0DC60B26594EF6338ED4EA7FA5E01 /* Build configuration list for PBXAggregateTarget "UMBarCodeScannerInterface" */ = { + BB15290964FE46A8D0B68B12149A802E /* Build configuration list for PBXAggregateTarget "UMCameraInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - 69E045040550036A39C4F2BE09E2401D /* Debug */, - BFF410A3B26F54FB4C2805565FC96EB6 /* Release */, + E891311969A1C23EA2013DCA6FA8A3A8 /* Debug */, + 09243F52E2FF644FB76FF924F4E0E6DD /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BC08A741016FE3AB7D8A4D6F286B8C56 /* Build configuration list for PBXNativeTarget "RNGestureHandler" */ = { + BF77B6124EB5A1BB9CFD9BBD0750652D /* Build configuration list for PBXAggregateTarget "UMFaceDetectorInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - 567296C7B88C98E8926B1FE7DA7D019F /* Debug */, - 0DD7EAB16420464B6DE2EC2C43654DFC /* Release */, + 9412ECDC417E80D138FA691A5A92CD7D /* Debug */, + 7EB735CFCCCD172F4D1C17501FB6DFD3 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C0C6FF49E08AF6B8BA9A2A0748EEB988 /* Build configuration list for PBXNativeTarget "UMReactNativeAdapter" */ = { + C2F667F539C175DE1926CB4286C4A485 /* Build configuration list for PBXNativeTarget "SDWebImage" */ = { isa = XCConfigurationList; buildConfigurations = ( - AB6AD91615B0722DCC22C6C5649839A0 /* Debug */, - BEDC6DA348F7695AEDCF304C2681AEE1 /* Release */, + 8BCB98DD22A60927B82A4762394E46F6 /* Debug */, + A7974AE12B0C4D19C1DFB7A5446AAECC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -23056,33 +23282,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CAFA6AE8E204A2C1528069461A7A1670 /* Build configuration list for PBXNativeTarget "react-native-keyboard-tracking-view" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 55367FD2B8273697339DC71BAEE15978 /* Debug */, - DBDB8E18AC57B5768B0F0C961498CB8E /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - CAFD465C7FC3C311CB13947F8730C501 /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 237FC502BE228B2F5D9E08510395504D /* Debug */, - 8BB8F2C6A03282324C9E62CFCACB1B3F /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - CC3F6E53EEB3F49345BA69A3C349D387 /* Build configuration list for PBXNativeTarget "RNFirebase" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 6B8266A0C65C36C86CC2B557157A6EEB /* Debug */, - 1AAC3CB3991B015999A7B4E572B3A90F /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; D5F445878D2BF274AA19BE3720E017FD /* Build configuration list for PBXAggregateTarget "Firebase" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -23101,11 +23300,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - DD93C247CBB615F90A327B44A64D6F06 /* Build configuration list for PBXNativeTarget "QBImagePickerController" */ = { + D8C9D32808D08102C2FE0BBFC28F7DA6 /* Build configuration list for PBXNativeTarget "react-native-background-timer" */ = { isa = XCConfigurationList; buildConfigurations = ( - B479271102BC45613F3ECF0179442D1D /* Debug */, - 7B240433873F76949DE816B421D8EB96 /* Release */, + 2A7FFA144FCBF4785439CD2440E2E6B4 /* Debug */, + 67F5774A5B5FDAFEFBF3FBC0958E85F7 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -23137,6 +23336,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + E3C26DC4C47814C911DA8C0C11B9E98B /* Build configuration list for PBXNativeTarget "RNFastImage" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 6F8B9BEB9ECB3FB1A2D17B551AF25D27 /* Debug */, + A54D8BB7402AC440011640D8A2C1544E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; E96ADCE88607DA7C2B5199EB67E5B9D0 /* Build configuration list for PBXNativeTarget "Folly" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -23173,11 +23381,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F55A82D4C1E5B12F71BD9D4828510494 /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */ = { + F721B0436DD63165B0FD7FE38B72919D /* Build configuration list for PBXNativeTarget "RSKImageCropper" */ = { isa = XCConfigurationList; buildConfigurations = ( - 491D4B531E933B0A9B8370472DDE9249 /* Debug */, - D11D8B8E4FB2D13E0D47EACF7907E8D6 /* Release */, + F566E942890C9CDFFB3D830E801FA0A7 /* Debug */, + 7ACFD59DF1EB24700992FDF81D6A02CC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -23227,15 +23435,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - FCCF5DA0DFD17CED3B0000F5FA46348B /* Build configuration list for PBXNativeTarget "RNUserDefaults" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 69640AF7B780EC20554CA7B6CC158118 /* Debug */, - BF0737CD560BF96CDDC7BB7B920B2E3B /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; /* End XCConfigurationList section */ }; rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown index 7541147ea..80b09cea0 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 @@ -2563,6 +2563,31 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## react-native-safe-area-context + +MIT License + +Copyright (c) 2019 Th3rd Wave + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + ## react-native-splash-screen 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 3cdc95d27..0ebd4acdc 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 @@ -2824,6 +2824,37 @@ SOFTWARE. FooterText MIT License +Copyright (c) 2019 Th3rd Wave + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + License + MIT + Title + react-native-safe-area-context + Type + PSGroupSpecifier + + + FooterText + MIT License + Copyright (c) 2016 Jia PengHui 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 5bc842e25..4f9bed7ce 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}/../../node_modules/react-native-jitsi-meet/ios" "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-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/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-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/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppLoaderProvider" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-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}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-splash-screen" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"QBImagePickerController" -l"RCTTypeSafety" -l"RNAudio" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-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"SDWebImage" -l"SDWebImageWebPCoder" -l"UMCore" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-background-timer" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-splash-screen" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppLoaderProvider" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-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}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-splash-screen" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"QBImagePickerController" -l"RCTTypeSafety" -l"RNAudio" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-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"SDWebImage" -l"SDWebImageWebPCoder" -l"UMCore" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-background-timer" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-splash-screen" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"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 5bc842e25..4f9bed7ce 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}/../../node_modules/react-native-jitsi-meet/ios" "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-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/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-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/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppLoaderProvider" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-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}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-splash-screen" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"QBImagePickerController" -l"RCTTypeSafety" -l"RNAudio" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-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"SDWebImage" -l"SDWebImageWebPCoder" -l"UMCore" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-background-timer" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-splash-screen" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppLoaderProvider" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-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}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-splash-screen" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"QBImagePickerController" -l"RCTTypeSafety" -l"RNAudio" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-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"SDWebImage" -l"SDWebImageWebPCoder" -l"UMCore" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-background-timer" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-splash-screen" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"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 7541147ea..80b09cea0 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 @@ -2563,6 +2563,31 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## react-native-safe-area-context + +MIT License + +Copyright (c) 2019 Th3rd Wave + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + ## react-native-splash-screen 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 3cdc95d27..0ebd4acdc 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 @@ -2824,6 +2824,37 @@ SOFTWARE. FooterText MIT License +Copyright (c) 2019 Th3rd Wave + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + License + MIT + Title + react-native-safe-area-context + Type + PSGroupSpecifier + + + FooterText + MIT License + Copyright (c) 2016 Jia PengHui 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 e8b528133..5c83733b8 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}/../../node_modules/react-native-jitsi-meet/ios" "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-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/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-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/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-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}/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-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-splash-screen" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"QBImagePickerController" -l"RCTTypeSafety" -l"RNAudio" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-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"SDWebImage" -l"SDWebImageWebPCoder" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-background-timer" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-splash-screen" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-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}/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-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-splash-screen" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"QBImagePickerController" -l"RCTTypeSafety" -l"RNAudio" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-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"SDWebImage" -l"SDWebImageWebPCoder" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-background-timer" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-splash-screen" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"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 e8b528133..5c83733b8 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}/../../node_modules/react-native-jitsi-meet/ios" "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-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/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-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/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-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}/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-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-splash-screen" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"QBImagePickerController" -l"RCTTypeSafety" -l"RNAudio" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-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"SDWebImage" -l"SDWebImageWebPCoder" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-background-timer" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-splash-screen" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-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}/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-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-splash-screen" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"QBImagePickerController" -l"RCTTypeSafety" -l"RNAudio" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-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"SDWebImage" -l"SDWebImageWebPCoder" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-background-timer" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-splash-screen" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context-dummy.m b/ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context-dummy.m new file mode 100644 index 000000000..53fd2c867 --- /dev/null +++ b/ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_react_native_safe_area_context : NSObject +@end +@implementation PodsDummy_react_native_safe_area_context +@end diff --git a/ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context-prefix.pch b/ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context-prefix.pch new file mode 100644 index 000000000..beb2a2441 --- /dev/null +++ b/ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context.xcconfig b/ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context.xcconfig new file mode 100644 index 000000000..505fd7d6a --- /dev/null +++ b/ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" +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-safe-area-context +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/package.json b/package.json index 10bf721d4..2bb20abb5 100644 --- a/package.json +++ b/package.json @@ -71,6 +71,8 @@ "react-native-platform-touchable": "^1.1.1", "react-native-reanimated": "^1.2.0", "react-native-responsive-ui": "^1.1.1", + "react-native-safe-area-context": "^0.3.6", + "react-native-safe-area-view": "1.0.0-alpha.2", "react-native-screens": "^2.0.0-alpha.3", "react-native-scrollable-tab-view": "diegolmello/react-native-scrollable-tab-view", "react-native-slider": "^0.11.0", diff --git a/patches/react-native+0.60.4.patch_ b/patches/react-native+0.60.4.patch_ deleted file mode 100644 index 16af07e43..000000000 --- a/patches/react-native+0.60.4.patch_ +++ /dev/null @@ -1,170 +0,0 @@ -diff --git a/node_modules/react-native/Libraries/Network/RCTHTTPRequestHandler.mm b/node_modules/react-native/Libraries/Network/RCTHTTPRequestHandler.mm -index 76131fa..59804aa 100644 ---- a/node_modules/react-native/Libraries/Network/RCTHTTPRequestHandler.mm -+++ b/node_modules/react-native/Libraries/Network/RCTHTTPRequestHandler.mm -@@ -55,6 +55,59 @@ - (BOOL)canHandleRequest:(NSURLRequest *)request - return [schemes containsObject:request.URL.scheme.lowercaseString]; - } - -+-(NSURLCredential *)getUrlCredential:(NSURLAuthenticationChallenge *)challenge path:(NSString *)path password:(NSString *)password -+{ -+ NSString *authMethod = [[challenge protectionSpace] authenticationMethod]; -+ SecTrustRef serverTrust = challenge.protectionSpace.serverTrust; -+ -+ if ([authMethod isEqualToString:NSURLAuthenticationMethodServerTrust] || path == nil || password == nil) { -+ return [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust]; -+ } else if (path && password) { -+ NSMutableArray *policies = [NSMutableArray array]; -+ [policies addObject:(__bridge_transfer id)SecPolicyCreateSSL(true, (__bridge CFStringRef)challenge.protectionSpace.host)]; -+ SecTrustSetPolicies(serverTrust, (__bridge CFArrayRef)policies); -+ -+ SecTrustResultType result; -+ SecTrustEvaluate(serverTrust, &result); -+ -+ if (![[NSFileManager defaultManager] fileExistsAtPath:path]) -+ { -+ return [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust]; -+ } -+ -+ NSData *p12data = [NSData dataWithContentsOfFile:path]; -+ NSDictionary* options = @{ (id)kSecImportExportPassphrase:password }; -+ CFArrayRef rawItems = NULL; -+ OSStatus status = SecPKCS12Import((__bridge CFDataRef)p12data, -+ (__bridge CFDictionaryRef)options, -+ &rawItems); -+ -+ if (status != noErr) { -+ return [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust]; -+ } -+ -+ NSArray* items = (NSArray*)CFBridgingRelease(rawItems); -+ NSDictionary* firstItem = nil; -+ if ((status == errSecSuccess) && ([items count]>0)) { -+ firstItem = items[0]; -+ } -+ -+ SecIdentityRef identity = (SecIdentityRef)CFBridgingRetain(firstItem[(id)kSecImportItemIdentity]); -+ SecCertificateRef certificate = NULL; -+ if (identity) { -+ SecIdentityCopyCertificate(identity, &certificate); -+ if (certificate) { CFRelease(certificate); } -+ } -+ -+ NSMutableArray *certificates = [[NSMutableArray alloc] init]; -+ [certificates addObject:CFBridgingRelease(certificate)]; -+ -+ return [NSURLCredential credentialWithIdentity:identity certificates:certificates persistence:NSURLCredentialPersistenceNone]; -+ } -+ -+ return [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust]; -+} -+ - - (NSURLSessionDataTask *)sendRequest:(NSURLRequest *)request - withDelegate:(id)delegate - { -@@ -177,4 +230,21 @@ - (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didComp - [delegate URLRequest:task didCompleteWithError:error]; - } - -+-(void)URLSession:(NSURLSession *)session didReceiveChallenge:(NSURLAuthenticationChallenge *)challenge completionHandler:(void (^)(NSURLSessionAuthChallengeDisposition, NSURLCredential * _Nullable))completionHandler { -+ -+ NSString *host = challenge.protectionSpace.host; -+ NSDictionary *clientSSL = [[[NSUserDefaults alloc] initWithSuiteName:@"group.ios.chat.rocket"] objectForKey:host]; -+ -+ NSURLCredential *credential = [NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust]; -+ -+ if (clientSSL != (id)[NSNull null]) { -+ NSString *path = [clientSSL objectForKey:@"path"]; -+ NSString *password = [clientSSL objectForKey:@"password"]; -+ credential = [self getUrlCredential:challenge path:path password:password]; -+ } -+ -+ completionHandler(NSURLSessionAuthChallengeUseCredential, credential); -+} -+ -+ - @end -diff --git a/node_modules/react-native/Libraries/WebSocket/RCTSRWebSocket.m b/node_modules/react-native/Libraries/WebSocket/RCTSRWebSocket.m -index 6f1e5e8..f268d93 100644 ---- a/node_modules/react-native/Libraries/WebSocket/RCTSRWebSocket.m -+++ b/node_modules/react-native/Libraries/WebSocket/RCTSRWebSocket.m -@@ -479,6 +479,29 @@ - (void)didConnect - [self _readHTTPHeader]; - } - -+- (void)setClientSSL:(NSString *)path password:(NSString *)password options:(NSMutableDictionary *)options; -+{ -+ if ([[NSFileManager defaultManager] fileExistsAtPath:path]) -+ { -+ NSData *pkcs12data = [[NSData alloc] initWithContentsOfFile:path]; -+ NSDictionary* certOptions = @{ (id)kSecImportExportPassphrase:password }; -+ CFArrayRef keyref = NULL; -+ OSStatus sanityChesk = SecPKCS12Import((__bridge CFDataRef)pkcs12data, -+ (__bridge CFDictionaryRef)certOptions, -+ &keyref); -+ if (sanityChesk == noErr) { -+ CFDictionaryRef identityDict = CFArrayGetValueAtIndex(keyref, 0); -+ SecIdentityRef identityRef = (SecIdentityRef)CFDictionaryGetValue(identityDict, kSecImportItemIdentity); -+ SecCertificateRef cert = NULL; -+ OSStatus status = SecIdentityCopyCertificate(identityRef, &cert); -+ if (!status) { -+ NSArray *certificates = [[NSArray alloc] initWithObjects:(__bridge id)identityRef, (__bridge id)cert, nil]; -+ [options setObject:certificates forKey:(NSString *)kCFStreamSSLCertificates]; -+ } -+ } -+ } -+} -+ - - (void)_initializeStreams; - { - assert(_url.port.unsignedIntValue <= UINT32_MAX); -@@ -516,6 +539,15 @@ - (void)_initializeStreams; - RCTLogInfo(@"SocketRocket: In debug mode. Allowing connection to any root cert"); - #endif - -+ // SSL Pinning -+ NSDictionary *clientSSL = [[[NSUserDefaults alloc] initWithSuiteName:@"group.ios.chat.rocket"] objectForKey:host]; -+ if (clientSSL != (id)[NSNull null]) { -+ NSString *path = [clientSSL objectForKey:@"path"]; -+ NSString *password = [clientSSL objectForKey:@"password"]; -+ -+ [self setClientSSL:path password:password options:SSLOptions]; -+ } -+ - [_outputStream setProperty:SSLOptions - forKey:(__bridge id)kCFStreamPropertySSLSettings]; - } -@@ -595,6 +627,7 @@ - (void)closeWithCode:(NSInteger)code reason:(NSString *)reason; - } - } - -+ [self.delegate webSocket:self didCloseWithCode:code reason:reason wasClean:YES]; - [self _sendFrameWithOpcode:RCTSROpCodeConnectionClose data:payload]; - }); - } -diff --git a/node_modules/react-native/React/Modules/RCTRedBox.m b/node_modules/react-native/React/Modules/RCTRedBox.m -index 7ed4900..bb85402 100644 ---- a/node_modules/react-native/React/Modules/RCTRedBox.m -+++ b/node_modules/react-native/React/Modules/RCTRedBox.m -@@ -161,7 +161,7 @@ - (instancetype)initWithFrame:(CGRect)frame - - (NSInteger)bottomSafeViewHeight - { - if (@available(iOS 11.0, *)) { -- return [UIApplication sharedApplication].delegate.window.safeAreaInsets.bottom; -+ return RCTSharedApplication().delegate.window.safeAreaInsets.bottom; - } else { - return 0; - } -diff --git a/node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/AndroidInfoModule.java b/node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/AndroidInfoModule.java -index cf5ca40..262f22a 100644 ---- a/node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/AndroidInfoModule.java -+++ b/node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/AndroidInfoModule.java -@@ -91,7 +91,7 @@ public class AndroidInfoModule extends ReactContextBaseJavaModule { - - private Boolean isRunningScreenshotTest() { - try { -- Class.forName("android.support.test.rule.ActivityTestRule"); -+ Class.forName("androidx.test.rule.ActivityTestRule"); - return true; - } catch (ClassNotFoundException ignored) { - return false; diff --git a/yarn.lock b/yarn.lock index 69c408f1e..ae965520e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9228,6 +9228,18 @@ react-native-responsive-ui@^1.1.1: dependencies: lodash "^4.17.4" +react-native-safe-area-context@^0.3.6: + version "0.3.6" + resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-0.3.6.tgz#666bf581b59aa49a9685aea4e76dfd6e1c8a8a52" + integrity sha512-5wlaJplOlWxBNnjmCtY/FAlsgRDuoKzmLQzbWUw4NDuOa3H2uq1kTdqTWOw78Nzm5FRqGWe1ZSLWU9+nSaN+vA== + +react-native-safe-area-view@1.0.0-alpha.2: + version "1.0.0-alpha.2" + resolved "https://registry.yarnpkg.com/react-native-safe-area-view/-/react-native-safe-area-view-1.0.0-alpha.2.tgz#fa20befbcc10a274d234a4d89430d81d1be6b4d2" + integrity sha512-12IS+yzn4KF3/Tu2LZeph0zEWoAAwT2hYRtFlaXro+xdLUPO2npvZ8i8jw7qWPEhimS8V8Dv798BsNR6pSq9Vg== + dependencies: + hoist-non-react-statics "^2.3.1" + react-native-safe-area-view@^0.14.1: version "0.14.8" resolved "https://registry.yarnpkg.com/react-native-safe-area-view/-/react-native-safe-area-view-0.14.8.tgz#ef33c46ff8164ae77acad48c3039ec9c34873e5b"