diff --git a/app/containers/FileModal.js b/app/containers/FileModal.js index efff28af3..bf7e53ec9 100644 --- a/app/containers/FileModal.js +++ b/app/containers/FileModal.js @@ -1,12 +1,11 @@ import React, { useState } from 'react'; import { - View, Text, TouchableWithoutFeedback, ActivityIndicator, StyleSheet + View, Text, TouchableWithoutFeedback, ActivityIndicator, StyleSheet, SafeAreaView } 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 6c1a1fb47..d5fed549a 100644 --- a/app/containers/MessageBox/Recording.js +++ b/app/containers/MessageBox/Recording.js @@ -1,11 +1,10 @@ import React from 'react'; import PropTypes from 'prop-types'; import { - View, PermissionsAndroid, Text + View, SafeAreaView, 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 4da25f673..17b59f5b0 100644 --- a/app/containers/ReactionsModal.js +++ b/app/containers/ReactionsModal.js @@ -1,11 +1,10 @@ import React from 'react'; import { - View, Text, FlatList, StyleSheet + View, Text, FlatList, StyleSheet, SafeAreaView } 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 4c4ad2f57..9782714fb 100644 --- a/app/index.js +++ b/app/index.js @@ -6,7 +6,6 @@ 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'; @@ -315,14 +314,12 @@ 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 5fce5de14..73d6f06b4 100644 --- a/app/share.js +++ b/app/share.js @@ -1,13 +1,14 @@ 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 { isIOS } from './utils/deviceInfo'; +import sharedStyles from './views/Styles'; +import { isNotch, isIOS } from './utils/deviceInfo'; import { defaultHeader, onNavigationStateChange } from './utils/navigation'; import RocketChat from './lib/rocketchat'; import LayoutAnimation from './utils/layoutAnimation'; @@ -50,6 +51,9 @@ const AppContainer = createAppContainer(createSwitchNavigator({ class Root extends React.Component { constructor(props) { super(props); + this.state = { + isLandscape: false + }; this.init(); } @@ -68,9 +72,18 @@ 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 9fe591d78..c31529680 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; import { connect } from 'react-redux'; import I18n from '../../i18n'; diff --git a/app/views/AutoTranslateView/index.js b/app/views/AutoTranslateView/index.js index 653db1e3e..0bb520a6b 100644 --- a/app/views/AutoTranslateView/index.js +++ b/app/views/AutoTranslateView/index.js @@ -3,8 +3,7 @@ import PropTypes from 'prop-types'; import { FlatList, Switch, View, StyleSheet } from 'react-native'; -import { ScrollView } from 'react-navigation'; -import SafeAreaView from 'react-native-safe-area-view'; +import { SafeAreaView, ScrollView } from 'react-navigation'; import RocketChat from '../../lib/rocketchat'; import I18n from '../../i18n'; diff --git a/app/views/CreateChannelView.js b/app/views/CreateChannelView.js index 21876b32a..46b989922 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; 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 502f1748f..9f5018c86 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; import RocketChat from '../../lib/rocketchat'; import DirectoryItem from '../../presentation/DirectoryItem'; diff --git a/app/views/ForgotPasswordView.js b/app/views/ForgotPasswordView.js index 193e2dae9..b8e26c083 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; 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 f966dd687..d1dc35dbd 100644 --- a/app/views/LanguageView/index.js +++ b/app/views/LanguageView/index.js @@ -2,8 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { FlatList } from 'react-native'; import { connect } from 'react-redux'; -import { NavigationActions } from 'react-navigation'; -import SafeAreaView from 'react-native-safe-area-view'; +import { SafeAreaView, NavigationActions } from 'react-navigation'; import RocketChat from '../../lib/rocketchat'; import I18n from '../../i18n'; diff --git a/app/views/LegalView.js b/app/views/LegalView.js index 1eb4faa7d..8986db3dd 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; 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 149f80f5f..0f55361f8 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; 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 94e581435..87c9cf34f 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; 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 af7f3a3e0..bea5d01bd 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; 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 51c4542c6..9f4bb8025 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; 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 97df58e5b..92759700c 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; 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 373256189..423d2a7fb 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; 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 f5f703348..c54a6eea6 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; 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 7d0bd2b3d..aab3c76d3 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; 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 eef2797cd..7d01574dd 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; 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 a74903b9d..f1b34498f 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; 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 e56710bd9..e40ff68a4 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; 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 755fbac5e..8bb3da77b 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; 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 558853d18..e7dcd7ea0 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; 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 4e6cf1687..25476297b 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; 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 7bfe4e5c6..31e9f40ac 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; 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 2f60cbc66..f3f25a6e5 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; 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 fa96de2f7..5d7f33d0f 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; import equal from 'deep-equal'; import RCTextInput from '../../containers/TextInput'; diff --git a/app/views/SelectServerView.js b/app/views/SelectServerView.js index c8f1d1241..29d59b1b6 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; import I18n from '../i18n'; import StatusBar from '../containers/StatusBar'; diff --git a/app/views/SelectedUsersView.js b/app/views/SelectedUsersView.js index 0c7b0124a..b9209f7d7 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; 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 7d4ed1474..f7122f466 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; 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 1b95fad29..a21fb545e 100644 --- a/app/views/SettingsView/index.js +++ b/app/views/SettingsView/index.js @@ -1,10 +1,9 @@ import React from 'react'; import { - View, Linking, ScrollView, AsyncStorage, Switch, Text, Share + View, Linking, ScrollView, AsyncStorage, SafeAreaView, 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 8f63955bd..f419ffc60 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 72cbc9ec0..ee0857599 100644 --- a/app/views/ShareView/index.js +++ b/app/views/ShareView/index.js @@ -5,7 +5,6 @@ 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 @@ -226,7 +225,7 @@ class ShareView extends React.Component { } return ( - + {`${ I18n.t('To') }: `} @@ -237,7 +236,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 359255190..fa077befb 100644 --- a/app/views/SidebarView/index.js +++ b/app/views/SidebarView/index.js @@ -1,12 +1,11 @@ import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { - ScrollView, Text, View, FlatList + ScrollView, Text, View, FlatList, SafeAreaView } 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 7a1fa81b2..05e6c7821 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-native-safe-area-view'; +import { SafeAreaView } from 'react-navigation'; 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 20f977651..9eb3c4b6a 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -295,8 +295,6 @@ 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): @@ -435,7 +433,6 @@ 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`) @@ -566,8 +563,6 @@ 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: @@ -706,7 +701,6 @@ 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 deleted file mode 120000 index 7476be42b..000000000 --- a/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaView.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../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 deleted file mode 120000 index 5e022746e..000000000 --- a/ios/Pods/Headers/Private/react-native-safe-area-context/RNCSafeAreaViewManager.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../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 deleted file mode 120000 index 7476be42b..000000000 --- a/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaView.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../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 deleted file mode 120000 index 5e022746e..000000000 --- a/ios/Pods/Headers/Public/react-native-safe-area-context/RNCSafeAreaViewManager.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../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 deleted file mode 100644 index 3e8a9ff66..000000000 --- a/ios/Pods/Local Podspecs/react-native-safe-area-context.podspec.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "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 20f977651..9eb3c4b6a 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -295,8 +295,6 @@ 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): @@ -435,7 +433,6 @@ 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`) @@ -566,8 +563,6 @@ 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: @@ -706,7 +701,6 @@ 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 d4b141916..aff80bcf3 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -7,9 +7,18 @@ objects = { /* Begin PBXAggregateTarget section */ - 00A1152257C714469E09BE277AC19E70 /* UMBarCodeScannerInterface */ = { + 0F1510CA64D3BD5A32C5357D5CB788FD /* UMSensorsInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = BBBCCADC4B17240E65006D3C9F6B2365 /* Build configuration list for PBXAggregateTarget "UMBarCodeScannerInterface" */; + buildConfigurationList = 50C806961EF27281C0A30B4549EF1AB4 /* Build configuration list for PBXAggregateTarget "UMSensorsInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMSensorsInterface; + }; + 18CEE6DA46F6A35B632E30ABDA5F0368 /* UMBarCodeScannerInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 6EB6E5A39241D92C4588BA17DFE62C8B /* Build configuration list for PBXAggregateTarget "UMBarCodeScannerInterface" */; buildPhases = ( ); dependencies = ( @@ -67,15 +76,6 @@ ); name = React; }; - 392A9C558B900FB520CA2EF39651DB54 /* UMFontInterface */ = { - isa = PBXAggregateTarget; - buildConfigurationList = 2282E1306FA54EA97856E808673FDD9D /* Build configuration list for PBXAggregateTarget "UMFontInterface" */; - buildPhases = ( - ); - dependencies = ( - ); - name = UMFontInterface; - }; 458293E00EF1C1F42778F9425AD34AA4 /* UMConstantsInterface */ = { isa = PBXAggregateTarget; buildConfigurationList = 0D1C58C4F3C697682657D483AF1081D3 /* Build configuration list for PBXAggregateTarget "UMConstantsInterface" */; @@ -85,6 +85,15 @@ ); name = UMConstantsInterface; }; + 576DA68F0B73651A1A5891E1E575843A /* UMFaceDetectorInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = C089577AD0FCF110B9A2F9691F28D573 /* Build configuration list for PBXAggregateTarget "UMFaceDetectorInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMFaceDetectorInterface; + }; 57B9E0A892EAB5C13D4AE7D4B1DE0C16 /* GoogleAppMeasurement */ = { isa = PBXAggregateTarget; buildConfigurationList = D714EFAF91AF42119B673C282ADF2B13 /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */; @@ -114,6 +123,15 @@ ); name = "boost-for-react-native"; }; + 69A8731022935CD8A0051D815C1867A8 /* UMFontInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = F61D3F5521582C4B49AA10198889522A /* Build configuration list for PBXAggregateTarget "UMFontInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMFontInterface; + }; 7825F222F53EF434DE74A6C6FAF290E9 /* UMFileSystemInterface */ = { isa = PBXAggregateTarget; buildConfigurationList = 1CB324CFC7C9FDAD43D409360A8F980B /* Build configuration list for PBXAggregateTarget "UMFileSystemInterface" */; @@ -134,23 +152,14 @@ ); name = Firebase; }; - 86D7BBC6168AFCB7AE1798FE9AD97E10 /* UMSensorsInterface */ = { + 828EDF29E4284793D2B3360CBCFFD7A7 /* UMTaskManagerInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = 93900F53224C905CAAB227E09427B480 /* Build configuration list for PBXAggregateTarget "UMSensorsInterface" */; + buildConfigurationList = 0780BF645142B9C9987C66A07C0F577D /* Build configuration list for PBXAggregateTarget "UMTaskManagerInterface" */; buildPhases = ( ); dependencies = ( ); - name = UMSensorsInterface; - }; - 874E2550FB0B01C8D0337694A6A60B49 /* UMCameraInterface */ = { - isa = PBXAggregateTarget; - buildConfigurationList = 0D60BB0DB98F53204DCF269A824CC594 /* Build configuration list for PBXAggregateTarget "UMCameraInterface" */; - buildPhases = ( - ); - dependencies = ( - ); - name = UMCameraInterface; + name = UMTaskManagerInterface; }; 9D255DD73ADD1E4565B5CCB665433053 /* RCTRequired */ = { isa = PBXAggregateTarget; @@ -161,15 +170,6 @@ ); name = RCTRequired; }; - 9EEC085848ECAC465F5B376A4C29A4EC /* UMTaskManagerInterface */ = { - isa = PBXAggregateTarget; - buildConfigurationList = 9977EEB66BFAFE6804119883E93B7CE9 /* Build configuration list for PBXAggregateTarget "UMTaskManagerInterface" */; - buildPhases = ( - ); - dependencies = ( - ); - name = UMTaskManagerInterface; - }; A1DA7160DD40C2F4C7332F30DE279FC2 /* FirebaseCoreDiagnosticsInterop */ = { isa = PBXAggregateTarget; buildConfigurationList = F93AF2175AA7D4F2EE9F1E7D6AEAE1B7 /* Build configuration list for PBXAggregateTarget "FirebaseCoreDiagnosticsInterop" */; @@ -179,15 +179,6 @@ ); name = FirebaseCoreDiagnosticsInterop; }; - A9B4B98188B0E2FD6E1A5661E21B6BEC /* UMFaceDetectorInterface */ = { - isa = PBXAggregateTarget; - buildConfigurationList = ED9222C0E12FF487A50ADD8442DF306D /* Build configuration list for PBXAggregateTarget "UMFaceDetectorInterface" */; - buildPhases = ( - ); - dependencies = ( - ); - name = UMFaceDetectorInterface; - }; ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */ = { isa = PBXAggregateTarget; buildConfigurationList = A084C0089544D8EEE7DA4C6D8EEEF9ED /* Build configuration list for PBXAggregateTarget "Crashlytics" */; @@ -198,9 +189,9 @@ ); name = Crashlytics; }; - C92C2B867A1BE634174A3C47980091BC /* UMImageLoaderInterface */ = { + C539BA294CDADF056F9D91ECDAFC2FF6 /* UMImageLoaderInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = 68B6CC4C9B9D519A59DDD649607638F7 /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */; + buildConfigurationList = 96E5D55173FE4139CDC795611FCA353D /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */; buildPhases = ( ); dependencies = ( @@ -216,1736 +207,1733 @@ ); name = Fabric; }; + E9F5838E12E25D54BF4A88364E6D55AB /* UMCameraInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 26D8517FD14DC564CC0F4BCA4087F468 /* Build configuration list for PBXAggregateTarget "UMCameraInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMCameraInterface; + }; /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ 004C151DEA47D2B7274977550CB15F7B /* GDTUploadPackage.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D0D4E61E12A0F0835A7F11BBBAE4590 /* GDTUploadPackage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 004F5679B9467C475CCD10531838FAA0 /* FIRInstanceIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = DD8F6F3A202816B146D6B3887E8AEB74 /* FIRInstanceIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 006364724B6D48A40FB5234700B74378 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F7D1BC5637F5854846BA58FDB7D0369 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 006364724B6D48A40FB5234700B74378 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 89167B14F836AA4BBAEEE438D34AF41E /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0076D8A7220679D73FCAA84F43B95212 /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 2456373DBD4124FCDFBB6593C35EDE94 /* GULUserDefaults.m */; }; - 00B9ED595E0C6368BD6E897CFEBE0CB8 /* RCTDevMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EF4B27E17C63D7CBEAD59D73BC014D2 /* RCTDevMenu.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 00DD029D9FFE923EE61E3ECB558508D9 /* RNFirebaseNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 86D29600DA05F6F9D33340723303D6F5 /* RNFirebaseNotifications.m */; }; + 00B9ED595E0C6368BD6E897CFEBE0CB8 /* RCTDevMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ADD59F006F86CBA814C6ADCD4DDFBBE /* RCTDevMenu.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 00FAD6C011B67C0B8057A2D664227716 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = 37F55AD87EDF0F0EB0097DC8502C8EDB /* rescaler.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 01368A7C0F64AB46F26BE789ACF54371 /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DD37EB2D399B9468794E988FD7C0C89 /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0134B0060B3F4A5947134CBB740B9072 /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A5ABBF17FD206FBD0911CA8C83D9500F /* RNVectorIcons-dummy.m */; }; + 01368A7C0F64AB46F26BE789ACF54371 /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = A70E22ECB6B15884C8F7C9741D14A63F /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; 014A953E16242C5C2D97728BE5EB3FED /* FirebaseCoreDiagnostics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AF8A60EF2B6557E8474FC01E9AE5A5DB /* FirebaseCoreDiagnostics-dummy.m */; }; - 017009469D420574A8A0BB76B938D7DD /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C2867E7076F2AF989B9B71B50B8CCA64 /* RNVectorIconsManager.m */; }; - 01941142727853CFEF90C47D388335CE /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 93C28E4D3968AF460FD01926C80CB924 /* RCTUITextField.m */; }; - 01AE786B599FAA2C8DDDC4303D9C6EF2 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = D644D4D368E497F4AD756C4766676B55 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01D49D3F4E537E8BDF817F5F70A6D2D3 /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A5C4B567C8EA3495097F9A24613F6FF /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01941142727853CFEF90C47D388335CE /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 66C291D4A674C6356B137CA62D173818 /* RCTUITextField.m */; }; + 01AE786B599FAA2C8DDDC4303D9C6EF2 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = BA6E072D1A8B997D42A8ABA653B90133 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01E3296F23431878EE8DBA8146D4DCEB /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C247F512B6D089F48F0B57405F07C83 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01F1D84FDAD0AF47FF1C2166C9A2D3EC /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D8DB52AB8BC8D53A94F65B7B505F9B6 /* pb_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 021104542A2A5534A044E7F8EDDCC1AC /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = 589C954C35817DBE715C6D291EB31948 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 023D47F751630348D3FFD2DFE8881F73 /* RCTImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 414172DE1E7F113E65EBDE98BE04A466 /* RCTImageView.m */; }; + 021104542A2A5534A044E7F8EDDCC1AC /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BC0D218879DC2E4C7EF682C9A6CC58F /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 023D47F751630348D3FFD2DFE8881F73 /* RCTImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 261E698D5EF014930107BA2CEFCFCD49 /* RCTImageView.m */; }; 025C5E676828C11A8A6C602CEFCEF805 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 2ABF3796381DC71CDB24205E1EFBB78B /* cost_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 02CC3115AB4B885AB679CB89CAA22686 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 2961CB18FE72FDA85F971B608BA91573 /* alpha_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 02F4E7ECCD1C9380DB0A163B3045BC1D /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = D30D5B4250FE25C0D94E0FD37FCF9A12 /* SDMemoryCache.m */; }; - 030ABD4F94044E592D12A942802B36E3 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A433F730AAD8F31114DDB79F01CDBD3 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 030ABD4F94044E592D12A942802B36E3 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = C73A6840F412A81A8DB9E48578EABA3F /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0317CDBD45DD1F08482E2C1D2C55D2D5 /* upsampling_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 22ED87F5E6F1366491F9C210B223CA59 /* upsampling_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 03232E567032995A46888EE4085B1FC8 /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 84774535DD78C27289E17B098E91A3A6 /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0328758DCDEE3B4C06952E0131D2FE95 /* RNFirebaseAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B6012DB79AFA1266D36F6C2183709EF /* RNFirebaseAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03232E567032995A46888EE4085B1FC8 /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B518BC9BD482C1913CE4D88CDFD9421C /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03311832FDD91A029F016815F69BA8EF /* FIRInstanceIDCheckinPreferences+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 003C643886A23AE5A8E8224D6C4A8C0D /* FIRInstanceIDCheckinPreferences+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 033F52F3FB1A824BA8B065E3F893590B /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C34B5AA51CAC6FAA9921B2868B36E167 /* 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 = 2615554DFEFB88ABE2F6B4CA84F63873 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 03625EE23D0D87639BBC3435094567CD /* FIRInstanceIDStringEncoding.h in Headers */ = {isa = PBXBuildFile; fileRef = F0374C8E0FD7FEAB3F228A9EA9627A8D /* FIRInstanceIDStringEncoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 036AA9097E22483112514FDECFC4486C /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 57503E4B94E8B26EEFA730102E290966 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0386E1FBD971940B81D25F973803A24A /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 42C974B2040AE33AA5A4C9842333E515 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 036AA9097E22483112514FDECFC4486C /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C59BAEC2A7827C2B428990AD6BB07A31 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0386E1FBD971940B81D25F973803A24A /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = AAA8325D11CF3749C94DEAE5C5085E3A /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0387046D62434788B32E1F10C4F5AEC6 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = E33DD9742BBB769FD756DB0981348B97 /* RNPushKit.m */; }; + 038963D60B4F377F74F832BB95ECB625 /* RSKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = DE0704E4E2DE0B2DCC750EDB922186CF /* RSKInternalUtility.m */; }; + 03ADF1EDB86C89BDD7F71BAEB50D34A4 /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 56C81757F4727E41BA011562A6C6E56A /* RNDocumentPicker.m */; }; 03B1BCBB960C0747FF8037C28EF82574 /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 74D2F161988458D19412B60282B754FB /* decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03DB95ED366A219D853C432C4E5C90F8 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = B4D19DA2A1F53C7EF3F756A1A34DF4CC /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 03DB95ED366A219D853C432C4E5C90F8 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 87BAE6CE5D53DA4379063B118627926B /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 03F89720B7D55FBEC1FE95EFF50DB80E /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4495468D6608A6D5DEB3E37481C38D69 /* QBSlomoIconView.m */; }; + 0403DEC7295C6F119D4B8D851F01B7DD /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A642FBB58AA3F9D54B95906489B7B6 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0415955DF1142B1087CD77F9631924BE /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 03A9A14382611EE57D1A3688AFD9488C /* vp8_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 042B360D67BC392236DF27909620BDB1 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = D7D231B7CEF66B3DD619BE56A21D09A5 /* SDWebImageCacheSerializer.m */; }; - 0431C7B8B423E1384C34ED0F6FD72AAA /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D3E744DEFEA33B275C22260573C7E3C /* RNLocalize.m */; }; - 04329BCFD16DB8227B31295FDF6D12F7 /* RNCUIWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = CE6A5EAE2D00F96C4034EEE29B3B48A8 /* RNCUIWebView.m */; }; - 04393445980EFF1EFC5A8DA68D6A1444 /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = C24CE90AFA2D409DDCB67D3FAE01BCE0 /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 045C4CD4059A66ACD05A5FCB11A6A3E5 /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = D5B72979CC82624B5FF3546982CAB762 /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04602CEA9D16A0E074C5E71B7ABCBCA2 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = A2A7BB45B73D0CDF7F6AA6C39F0519E7 /* RNFetchBlobReqBuilder.m */; }; - 0466AF831A3D66A6F521E173A178B229 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F5C213C57D2CB3E33C59E8CCA4D7CF2 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 042E510AB7B8B3A6FCFD45D2ECD4C3E2 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 13359B7D749158627464F494D9325FD2 /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04353AF56EB6D3320214CCA496047903 /* QBImagePickerController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D8A1C7060446B1512E55156C76E6934 /* QBImagePickerController-dummy.m */; }; + 0466AF831A3D66A6F521E173A178B229 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 6156004C6392EA98C2A26FF9DA3CD6C5 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; 04751C5988818B1F50D7C3C00D67FC77 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 73080467AF2B68971A5486C79946626B /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04867FDAA390FC4BD76585B49B1C7A11 /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 57253803800CB211417297335CCD0419 /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04BFE4627266D77C3F96FB5F07D55410 /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = C60C7CD3A7A4ABE97A9B002D3D67323C /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04C49A9A2936DBEB4D5A18A7EB4D34F8 /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DDA5211D6D3A7556B833E5BE41C6FED /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04CED01005570B76BAD3EFBBB0BF88D9 /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = BDFB51ADA6468FC5D7E77E0A83765BBE /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04D42867F97350CF5A02761D6EEB308B /* RNSplashScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 37A026A43479D39DF3888848ACC42BFE /* RNSplashScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; 04F898F093B7468766941635C77DD78F /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 6109B9D8AD14CDB313D56E43185E21F9 /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05351A5B8B896B245A1726ECA65BC607 /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = F6F7137E76041A83D6CF7A92DE39494B /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0548CA0C8CFD258A56BA645041F00187 /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 81AE13227654D5A004659D815B53ED32 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0605304A641A7BF59DC42F696CFFBC7E /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D4E212EFA993BE1ABD93E72D1F998AFD /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06067BDC9DAC53D2573C17D2F20EDCA3 /* RNFirebaseLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = DDE1D68A0411438F5059BE30FB81BA16 /* RNFirebaseLinks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 060FB4C682E1BCC5C38D9C093A0D68AC /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = A6B606BFDE50C43337BC6D7B158FAD3C /* SDWebImageDownloader.m */; }; - 065DD53618F66BAC0045B00AA125E6A2 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = CAF1D5CB0ADEF95962020EC540962C5D /* SDImageCoderHelper.m */; }; + 05351A5B8B896B245A1726ECA65BC607 /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = 12EE1EAAC2DA7A25BCB317A65363FB8E /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05A6801D4A6EBA2EDA73ADA05EC9E3EA /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7475466DD3CCCE81279999095390ABFA /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05F1BCB4DE325D5DC2A39D0DD916E1EF /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = E1ED833C1DF75C4BCB52EE680234CE3C /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05F1CF758D876B4C0E3F396645C339E8 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = BC5E566CC46B70BDC9A5B9B3461FEBAE /* SDWebImagePrefetcher.m */; }; + 061FE084F4B936A4DB6858EE9EF6A7BE /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A48830713BEA1445448426EEF1F37BD /* UMReactNativeEventEmitter.m */; }; + 0672627714725F5F4B31A77D8B19E42F /* RSKImageCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F1988726E9218835ED18B388A00F09 /* RSKImageCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 067C083E55ADB7E5FC14D731BEF521E2 /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 012B8A4B73CD8B8CC9820DD9EEF631EF /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06E2E887B814FF754A7BAA70540BF60D /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 739F27F9A95BB7B105543AB18FD7C4C2 /* RNFastImage-dummy.m */; }; - 06E99FF8FFD64885E98FB7BE3E1411F0 /* RNFirebaseStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EEF4CE097F577CFB6E7CE9A4BF0881A /* RNFirebaseStorage.m */; }; - 07490746DAF480BC2B33ADA45D34B879 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 953D86414D1C162F750E54AC5F01BF20 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 079899D5F89F5E17D0C8018DA4F1D343 /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = B1D8132BC5A265598A040A7D9AA383BC /* BugsnagSessionTracker.m */; }; + 06930D83E74555DE9617A7065C1172CC /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = C6D1B50F412563947401411DF8DE4D34 /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06BA91CA53DABE644A260B9DEC83C5CB /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DCC4B92A5289D7BAE0C5E6E84654009 /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06BE59C306831426832003BCDF9B0D7E /* RSKImageScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 35B10CD2AF0B7EF54D09EEDEDD29C454 /* RSKImageScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07490746DAF480BC2B33ADA45D34B879 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = C238953E538AED81F3041EF99B90B69C /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 079899D5F89F5E17D0C8018DA4F1D343 /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 0635E482AFC3BFB5E1DAC723E4935367 /* BugsnagSessionTracker.m */; }; 079F1D9242105C9266286C47710287D2 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 462345ACB484DD62DE15B2FB497705A3 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07A4345562C627EBDA0AA5ED26FEE706 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F033B27EB27123B6CCC7A7C7DE01E96 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07A744281129ECED49B821816DE7AE85 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = E2E96059D0CCBAE7A8F2B157F3D50038 /* 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 = 075663E9AA585DCC7CDDCEE64724C79A /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07A4345562C627EBDA0AA5ED26FEE706 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 9052C091A13022FF93718EE33BD00E74 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07A744281129ECED49B821816DE7AE85 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = FC7A02454BC02E2504060136A6FCD201 /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 07DD886A3B6C302DC540E880451B8C1B /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 01DE02F9F42C143CD38F32DEDA4223B3 /* SDImageAssetManager.m */; }; + 07E8AA3B3EA109E2A621754EF147464F /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = D3C3F2AB2E31399ED485A9653BC34AF2 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07FE930F69FFC0E43C6C2DB7B3AFBC28 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8375F69358B3F33DAE5652BAB8B7FCA5 /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 08602634F40722C30A90B6F3572B639A /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 5A7DDBB14A033959C0F800DF5E0E006B /* alpha_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0863557C2EC08B1457257F987FA3E683 /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5076924655933D192AA6FCDD3500393D /* SDImageLoadersManager.m */; }; 088BF218B07C48D03EF2675C5D535264 /* FIRInstanceIDCheckinPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = F622D2DE360574F83D589D98519BBC8D /* FIRInstanceIDCheckinPreferences.m */; }; - 092352A383E89EA3E2EF07CB1C034377 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CD4E0F5A984C13FE07AE59684229B9D9 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 092EFF5054C9A6770A3C0932AD4570BA /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 67B31535CD50D93E43613FCA0AAD0E71 /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0942CE119D9407053FF9E3108ABEC59B /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 78404CE996B5D2B6621B283AFDF50EA4 /* RNUserDefaults.m */; }; - 09978C52A1330304D412B2668C1FAE83 /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 717BA94CCF48448A9C6B6C053DD5682A /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09E2BACD05B732C4F6DFAD63236E9ADA /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = E7FB5329CA2B0D95B2F1D40C347C62B9 /* ImageCropPicker.m */; }; - 0A0F91D1BA89EE30C756F0ED8208E650 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 50FC66338483B11FEBFB342EC0BE5072 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A2DFF26F8C1ED8DFEB68307E34B38F7 /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2505A603353357EC3883B83BC0707463 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A4E0B89C9B88662FE775302D33EB923 /* RNFirebase.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A930245709E661D2CDD24B81677B480 /* RNFirebase.m */; }; - 0A64B89016CF92D3CFDFEDBBC0D7E611 /* RNFirebaseFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = C252CB3D7FF8496BA69D28B1D6067380 /* RNFirebaseFunctions.m */; }; - 0A975B293D68F98F6727366A3FE6842A /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 172EE6327F218D058C5AC5E5F8076ED2 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AB875BFF152EE45B7A6B5108ECAE7DC /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E9FDC01EE742E5FCE16BC5D151DFE0EF /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0ABC577506D0088968AE59872E942F81 /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A416DA5D00BB3A84A22ACC7C7B8D0BF /* REABlockNode.m */; }; - 0AC094C2DD2C7A03524F94D9170B45E8 /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = 6169139BECDBAD5C231CA4500A251CB1 /* RNFetchBlobFS.m */; }; + 08D62F9615F13D27E69A22D105D29E0D /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FF098084549987D8E0446F16671D4E9 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0919A5995AF8D80A374A0EB1301D0777 /* UIImage+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = FD23012415E231DC86E456F1F2E83332 /* UIImage+RSKImageCropper.m */; }; + 092352A383E89EA3E2EF07CB1C034377 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 14C664965E856D444C32E6EFCBFBB314 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 092EFF5054C9A6770A3C0932AD4570BA /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = BA1A41E19C1DFD7E97E6D3A55723A0E3 /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09A3D21541EBBB35E2008C65CD61562D /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = BC6F2325D9C8B0EABE4B94C09D8CE138 /* Color+Interpolation.m */; }; + 0A0F91D1BA89EE30C756F0ED8208E650 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B1F435392ADE74924F22A15846C00814 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A2DFF26F8C1ED8DFEB68307E34B38F7 /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 433EE80BFBA84B632B975E242C138631 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A58E84A00DFBFB68C13BF63701194DD /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 18CE38BE2770B57EAA2A6566473E5D64 /* REAJSCallNode.m */; }; + 0A61A0280672629511105BDE8539B978 /* RSKTouchView.h in Headers */ = {isa = PBXBuildFile; fileRef = B2312F8F4116173F59E62F4CA2EE1800 /* RSKTouchView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A8D18089419F6AB4EE1A1D25EF185D2 /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA6A199D7F1D517194CD33AA24C0DAA /* RNCommandsHandler.m */; }; + 0A975B293D68F98F6727366A3FE6842A /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 143530949B5565B2E4DBF2F0C672E989 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AB875BFF152EE45B7A6B5108ECAE7DC /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D86609CE01BC1D95D8904835F6234A5 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0ACEE146071F2404A07F1CEA99CA5B3D /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = ADE6D0B386951C4D3956BE297073C70A /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B2D30F38EB2951F5650351BB4C018E6 /* EXRemoteNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 4896EA5817A5BEF19F56C3D7F82A206C /* EXRemoteNotificationRequester.m */; }; - 0B7D4B03B747FC7496075CF5C3F1EE7F /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 25C4E47DFE0BF89127E6F9147FFD5E51 /* DeviceUID.m */; }; - 0B8C6A8222BCBAD1BB47A2FBB5E67E23 /* RNCWKWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C01242E93742811C8DCF88449812EBA /* RNCWKWebViewManager.m */; }; - 0B9D1CE5188E7A7FB602B85B7A071C29 /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = D2753FB4B7CFA9E756A41628B99BBA9C /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BF1D3040C4AA7F6DB03D4701639F97A /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B0DF55260CB83C973816C8C7BE667241 /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 27E5B52707C0F3079D2F7E4D540F1B00 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C31663D41331AF2C33A40807C4AB3F3 /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B491B310B1291337B82E8AD3644659E5 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C631B56D84BB38DC0844EBACC4893C5 /* EXLocationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = C1556487DA90D957A1139D2EC8565676 /* EXLocationRequester.m */; }; - 0CFFC0796941C41583D75A40559E9515 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ACEC18CCEFDDABB1BEA6AE895BA54D1 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D03773A91DBE52FA4D4AB012AF0570C /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F52C73A69547A8F79B0ADD6616B8E2 /* SDImageCoder.m */; }; - 0D08AB6B2C2CE84F51F8570C652DDF4F /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B6B2C02BEC0919D088E3152A8B5A160 /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D0E08952A55ADEF9B799F0FE8168D9E /* QBImagePickerController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D8A1C7060446B1512E55156C76E6934 /* QBImagePickerController-dummy.m */; }; - 0D53CB24C7870644867FA7C97DB1D71E /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 04E93D198A1F9F729BCBECFD6D9DB95B /* RCTRawTextViewManager.m */; }; - 0D58538B8D4C6B1BA10A5BC530B8BE06 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 2402DF4004A29006C095344FDBB5F8E1 /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D6026024DBACC6D7B0908BD40F7BD7F /* RCTVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = B26E4A4A95BF24EA28B2C025232D2257 /* RCTVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B2D30F38EB2951F5650351BB4C018E6 /* EXRemoteNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = AF4EA25442F8EC569DBAE79C2136E8F7 /* EXRemoteNotificationRequester.m */; }; + 0B5D18E46AAC74FB7BE5B84EDB8B9E6B /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F55AD6390B75E42F55EECD90216C7D7A /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B9D1CE5188E7A7FB602B85B7A071C29 /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = C039A0959DCC08B8A1F8215F71F2816F /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BD1FDD30C33313EC0F871D7D42B6609 /* CGGeometry+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = DBBFC044221634764300D4A0C8191226 /* CGGeometry+RSKImageCropper.m */; }; + 0C1934AE17A9EFB6D9ED06938990C63E /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = D326E96219DBD79E0321A7440F88A33A /* UIImage+MemoryCacheCost.m */; }; + 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = E950A29E3193050AC0B092D929EC6165 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C631B56D84BB38DC0844EBACC4893C5 /* EXLocationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B67A2E90035830F4704E9B2100EFBD8 /* EXLocationRequester.m */; }; + 0C8B30504506B3EEA25F1D7199EF6C05 /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 5204A27C7572AECD142E1A0DE5595F9A /* RNRootViewGestureRecognizer.m */; }; + 0CE75A7EF7CF2D560BA3A48546BBF0C1 /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C82027183D5FAE25C74A7F14B79D1AA9 /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CFFC0796941C41583D75A40559E9515 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C2AC88F8D973034AFBF86A3FB6B7E0B0 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D08AB6B2C2CE84F51F8570C652DDF4F /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FFED4820CDB638B5ECA6DDB9D6E6944 /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D25E0439F577A20878487ED34A7674D /* react-native-splash-screen-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C2532EF3342F72E6FD0A53291AD89A /* react-native-splash-screen-dummy.m */; }; + 0D4A75038095ED5680F82D9D5E5D245E /* RNCWKWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = CA1F092C65DA8E6C48C6F21690506982 /* RNCWKWebView.m */; }; + 0D53CB24C7870644867FA7C97DB1D71E /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ADD9F6420889E1B436C90B5D1917C8BC /* RCTRawTextViewManager.m */; }; + 0D58538B8D4C6B1BA10A5BC530B8BE06 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 9874A1ACDC0B0D75CA7A7E561B7C821D /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D633EC67388BD0DD536442C515A5243 /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = A23122D4E795CA1CF0BBDC0CF4BFD67E /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D7EC153341E4C5A3E467664EABC0A3B /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = FB89622D97EB5A6A0A93097D9C11E42B /* UIView+WebCache.m */; }; - 0DB0E0A7680BB2DA80600CFE5491E13F /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = FBCEB86ACF30D93C1CD0A10909E39995 /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0DB0E0A7680BB2DA80600CFE5491E13F /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F47E31FF51A1B94473D5BF45014F06A /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0DB10DDD9AD5EB71B456E0F51F283594 /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 856FD527FC55C36E11BDE85F2818B484 /* GULSwizzler.m */; }; - 0DBC991B8C983391A0E9DA9F0BA8D581 /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = B483868AB8CA5F529A41ABE3A2712850 /* RNNotificationUtils.m */; }; 0E23972AD194731EF4E59E44A9B006F6 /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 639F86C0ED902A3A8D4354820CCE4C5F /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E2E1F7CF448428ADB75C74EE6DE19E0 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = D73173F5C68231D473A1D311BD7AD5D0 /* 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 = 38FA1894BB2223603F9F12CEBA9A0951 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E3D7A64B7B7C9A1C134B565EE87E9B3 /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = 9DD3A2FA9383510D024474E196ABD6A8 /* BSG_KSMach_Arm64.c */; }; - 0E5C63315C8DB2D26508CCB1C3189919 /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = D499B4F692DAC8B5F904AEB64CA1397F /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0ED2D0F123B56EBB0FA2E460D573B555 /* BridgeJSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 247C6485F4BCA6190AED6989285BAA10 /* BridgeJSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E2E1F7CF448428ADB75C74EE6DE19E0 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 36080B7CB2AEFCBD257B089A4550153B /* 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 = 3E0D53AE22348ACA5019E711B052F91D /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E3D7A64B7B7C9A1C134B565EE87E9B3 /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = 16F155C2E7E7876C921F3AF21AE8489E /* BSG_KSMach_Arm64.c */; }; + 0E5C63315C8DB2D26508CCB1C3189919 /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 785E5FE77EF92CC9C6E38F9463296C8F /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0ED2D0F123B56EBB0FA2E460D573B555 /* BridgeJSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = CE5496E6F7A3AE3054CCDBA23677DF90 /* BridgeJSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F199BC919DA606852559D57EF858777 /* GDTLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = 5326072DE8CDCC4347853332BC707607 /* GDTLifecycle.m */; }; - 0F256182F1DABA4DA61747C775F0480E /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = C4BD169CE289BAE4445841400DB80F38 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F3DD2654FBA801720386B73168B7970 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = BDED2E830FB9FD86EFDA019F3798D24C /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0F1D8EA70A6794A97031303082FD6D8F /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7927368F0CB7A2A76765B5111B9FD877 /* REAConcatNode.m */; }; + 0F256182F1DABA4DA61747C775F0480E /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = C006DA03186A2DFF16C749637E83030E /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F3DD2654FBA801720386B73168B7970 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E0343C36A0B74959C83D8D8EF00965B /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0F458CD48019F190BF2EE9F1B310C40D /* RNCUIWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 69EA2982D27D95080CAD783E0DC509E6 /* RNCUIWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F4853B280A08B9C36F9DF91FA6E4C94 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 891CFF73D9F0694CA8DCBB9731EB8986 /* REATransitionAnimation.m */; }; 0F7D0326C38FA3CF8745C0A798D6ACE1 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 9F4A71BC7352BE4FFA255657EF331872 /* picture_rescale_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0FAC5ABB17618768EF6975F20E4397B2 /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = 32C40A6A5D1837835D6B90DC571D15A0 /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FD2D13B3C4BE4E33F533BEC445422F9 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F5246E19B60DB8DA4D689C4C881A28E /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1013A79D857E519125B1735B10DC9294 /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = F9AF6801997FE5032856CC15AD27A79D /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FAC5ABB17618768EF6975F20E4397B2 /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = A494A9A1F1AC056C5AE2EFBD23136692 /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FD2D13B3C4BE4E33F533BEC445422F9 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 46B34CEA1C31953580CE189C9956C539 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FE4E1BB172C833072EE01A4D5021059 /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EC4205FABEABCC72C0DBFBB1CB885A9 /* FFFastImageView.m */; }; + 1013A79D857E519125B1735B10DC9294 /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BB6875849373E94B58E7EEE3A2B059C /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1022ED4E2E9E0A2B126D728901BA499E /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 352C6E90D068FB859B0ACAEC65A0F166 /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1031D7750424C86A9D1239A32DDB48DC /* GDTTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = D135D13B9F1E5B7D35C088287A29344C /* GDTTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 107BF51166C8E00581BB9828B788ADD7 /* FIRInstanceIDLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EB58AE1CC945754330A82381F521F82 /* FIRInstanceIDLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 107CD51CD5FD22E8DE8F0F74C86B5A74 /* FIRInstanceIDStringEncoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 618ADB85BC1D3C280EDFF3F4C77496B3 /* FIRInstanceIDStringEncoding.m */; }; - 10D10DCD876A29A396DB792CCBC904D4 /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = DDAFED18C9F4F5D9592FED828F7B620C /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10F8BFD41B75FDC410DC65D23B8BABC0 /* RCTSettingsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 628181E1739F0336CE736D10C1D1DE9E /* RCTSettingsManager.m */; }; - 11081EDF8D76C6E9178717FD9A1E0DA0 /* RNCSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F42C7C230CB17846A7CB1AD43CC67A2 /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1126108A0D49153194E71E545AF82C89 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 058C156343A4AC8BE485A77F1474F9B7 /* SDImageCachesManager.m */; }; - 11804481D37D71AA9A17C664BC304796 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 13FDF849FA34B754C0BA8ABB5E85F6ED /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11EC5A86AE278A96E8EF6BF5E47C58E4 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 1898123769B7B8FDC4A5CBD11FA809DE /* SDImageAPNGCoder.m */; }; - 120A490C9035C6F2689BF47F1346EAE1 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 40AEE707C2D2034774762F300868A896 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10F8BFD41B75FDC410DC65D23B8BABC0 /* RCTSettingsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BA42074E9801DCCF7FCD4BF7D2249405 /* RCTSettingsManager.m */; }; + 11BC6CDFC3A17E472F4100A18B4985FB /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = 858402B1090257CEEDC1F5183B06EC41 /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 120A490C9035C6F2689BF47F1346EAE1 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 54419E0AFE78B1C1E3F0E33F8DCCB0D4 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1222E7AB723CB2D3E5811C261AF342E4 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = CA47AC809E1A327630C1C1C635D41B55 /* alpha_processing_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 122829968A162E17A84546B6266B9352 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = E9F927EC0FE47F451DEFE65068A5127E /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1243F19C7BFBE155D98A3B40D0EA3E5E /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B3E8BD7A38381DE8BB1B47EC5CB08C8 /* RNDeviceInfo.m */; }; - 1283DAA1D9FC84DF5395D2C8E052B779 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 762D3E835B02D4B020A9DB1C12E37615 /* EXWebBrowser.m */; }; + 122829968A162E17A84546B6266B9352 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 52F5CC037E0AA5117AD5590A3986C8AE /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1283DAA1D9FC84DF5395D2C8E052B779 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 9304735A76A1F46043D22855E7BDABD8 /* EXWebBrowser.m */; }; + 129C8C3A5ADA3DF757562B919E58A0B2 /* RNCUIWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A7A515834AE7AD2E49E9BF5C650DB63 /* RNCUIWebView.m */; }; 12DBD85FDC2712722947D323D774B81C /* GDTStoredEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = EF86848722F005343E8F78FE98C72283 /* GDTStoredEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12EAAB51DD60C1566B3144F0C3682C5B /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AFEFDB824E01E0DD552C963341636A78 /* QBImagePicker.storyboard */; }; + 12F061F4A5F336BD545C9FD71095804E /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 747CAA38A4149C7741B7E1AD452C5C63 /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 12FA7519507285624A8F734D8A3939CB /* GDTDataFuture.m in Sources */ = {isa = PBXBuildFile; fileRef = 052DE99DF3C947412D54ECF4268A6F03 /* GDTDataFuture.m */; }; - 13311C6D84581E707C481BFEDD87D2D0 /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = C1DA022416709A5A4586EAF553193626 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1354DE64A7F16D09D33C3D39D9FF94C5 /* RNFirebaseDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 79AD1B7BEDC376AC0B1B91340D051D24 /* RNFirebaseDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 135FF236A1066B7E1DC63A0F8F3B3DE4 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 77FA0CB1441C59B7A21C7AD303488977 /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1368AB64D44C2C8EBFDA4319646DBC99 /* AudioRecorderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E4CC9D857FD29E6865DA453DD2DC9EE1 /* AudioRecorderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 140816781649C365507FE080CFB60C8A /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = EE87A6DD2B6DBB14E64433982A168E10 /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1301B055E3B7F73D9E2A7E3760CF8C3F /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B491B310B1291337B82E8AD3644659E5 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1302F8D1E083CDE6A66BA61D881FAF97 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = A0C318184648BBC609663DBC9B2A73DD /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13311C6D84581E707C481BFEDD87D2D0 /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 2240A04B699F4DF2CD4D46E9FE2DA557 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 135CAD5107C8A76102F86956026C226E /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 48CD830F7E24DD3BD7BF4A528CBACE50 /* Pods-RocketChatRN-dummy.m */; }; + 135FF236A1066B7E1DC63A0F8F3B3DE4 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A873229028D1DCC282AA0FA849579CA /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 13CFA178BFF69DF2177FA3A3707C48FF /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BC512E868EDC52D88DB5A2461800637 /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 140816781649C365507FE080CFB60C8A /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E0831E0CC52FF3C6413689E8FD108E7E /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 142DDBA72CDBBC8F357722E76EB54EDA /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 1DB5047C04D722877A25FBCE4FC3B746 /* yuv_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 143B5ABD40A50046D46D8C6DC8C1CEFB /* RNFirebaseAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 492BAD8924B2A031BEE748D08EF182F2 /* RNFirebaseAnalytics.m */; }; + 14458A225BB772B05F20DE15A5B1C745 /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 733430E897231501B7AC1A5824D74C21 /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14C992D410FCB6E0B19C4DFE74646164 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0430C8616696B00A7A0874374292EAD8 /* rescaler_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 14FCEE2CEB088210F983D904DF91583A /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D285D652FCDE706776F874DCED406C5A /* React-jsiexecutor-dummy.m */; }; - 1504DF0839AB4798FC18E42CC64A54BC /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F259D669A90EBD510CCAE2B7B7446935 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15064F8A70DB97B4A6C745ED69742E50 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1CC6648D3F2B43B57E14351AB326A7AB /* RCTBlobCollector.mm */; }; - 1509DF077B7CCB52B7A79491E3F69D30 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C8917E400B130A86B473571407C82E28 /* RCTMultilineTextInputViewManager.m */; }; - 15135A9A67B4019F2CC03E7D5FACA0FE /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 97E4179597FC9EFD71EAC38BB8422710 /* RCTTypeSafety-dummy.m */; }; - 1545AAE381671B55F1D0747BD5246565 /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = AA740C812735472DC038E14F6EB9D27D /* SDWebImageOptionsProcessor.m */; }; + 14FCEE2CEB088210F983D904DF91583A /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BA4D92333397EC8D722390CF6007C9D0 /* React-jsiexecutor-dummy.m */; }; + 1504DF0839AB4798FC18E42CC64A54BC /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 462314FC5F61237B1DC57433E4DCB4D3 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15064F8A70DB97B4A6C745ED69742E50 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5803F4041283462B899282457DE9535F /* RCTBlobCollector.mm */; }; + 1509DF077B7CCB52B7A79491E3F69D30 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 986B2273FF3D42F53FA6563FB449EDE2 /* RCTMultilineTextInputViewManager.m */; }; + 15135A9A67B4019F2CC03E7D5FACA0FE /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E89FA65752DFF12DB8FF3620228BE5F8 /* RCTTypeSafety-dummy.m */; }; + 15AC52CEC15E566EE5B2BC8C2AA552D0 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 897103098BBBD0BC1C556F51F19325F6 /* RNFetchBlobRequest.m */; }; 15B612FE99D579BB1FF05C272D197F33 /* FIRAppAssociationRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B738E1F77AFDA1E5F4F8A5FCBF073A8 /* FIRAppAssociationRegistration.m */; }; 1606C1BAAC2E20C7E7E6A3CCAF15711F /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 917E01F8BA3B049AA099103C8BB3A17C /* dec_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 1624131AAB4DF8C589CCE5543139FDCA /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FE77AE93F9828AAA4A0E04CC3C99B4B /* SDWebImageDefine.m */; }; - 163179658167651DB2ACDD2E785C6360 /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 39A3EFF6C0E63A4D349B6FD2C9549075 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 165127C5127DCF0D10FC07C7C04B790F /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 84E7DF79F373307C82C81D47441FFF44 /* rn-fetch-blob-dummy.m */; }; - 165AD4C66442BC6C754CD39022C3A920 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FC77F5E8B156C8D5428CE7A1CECBE5A0 /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1660F08DD13F32EC688C2DFAFF75F800 /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EF817AE61E87869DECD2007DCE20018 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F72656AB159F31BCB131BA3A378FCCB /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16F85F2C619F004816564F8066341CB9 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = CB616159D52ED6A8BE29F63774540732 /* 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 = 9C4BB7264829288DBFB4A14AD8AC1991 /* 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 = 9B4F6322F4E053E02A6998B5B12A0261 /* 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 = 5A4F408BE58736D8D222BAEC35D49649 /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17AB3A41A3DAFB6EE14EB49FC316F997 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = AE54F2C86D4013737C652A8E18F3055E /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17B03B21474472F7EB23CCA083EB6CE0 /* EXCameraRollRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F99786D6E0D484A69F4566BFCD289C2 /* EXCameraRollRequester.m */; }; - 17B40CD2612124B8893EFFFD6CA8CC1A /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 892703501C089AB73F2DAE334C2FBFB5 /* RNDeviceInfo-dummy.m */; }; + 165C347657B7E89878BEE13DFC66884B /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 717BA94CCF48448A9C6B6C053DD5682A /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1688DCE7B7E497C99B4C3D7C60BF066F /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 07577BE443FD96F28A10F0CEBA169AD3 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 06BC30FFF1D885CC49CF016CB604B726 /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16943AA8A7CFF7E7A58D9C1DFC9A71CE /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 67E1C6993CD58D6C27C7696155B6B0A2 /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16F85F2C619F004816564F8066341CB9 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E4FF71DC060298C1BE098B79EBC07E3 /* 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 = FDEE1AD8F9E20C171936D9D4FFBA1EE7 /* 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 = 58CFBB54CF6999643E129EA34CBB47AC /* 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 = 929C056E8BC298F78C48EBD94A41B0AD /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17AB3A41A3DAFB6EE14EB49FC316F997 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = DF93D4B0A603CD0CF6CB0F2F77D43126 /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17B03B21474472F7EB23CCA083EB6CE0 /* EXCameraRollRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = FBE3260F5107E97CF76634BC8605C405 /* EXCameraRollRequester.m */; }; 17C8EE850EE3AEA00E515ACE095FBC8E /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = C9CBACF7C7861F9B9DF318E9580D1FA9 /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1818CB61F7CBA5FEFA50850E8D607CD4 /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 01FF74C48E54FBDFEC0080DDD34AD0AF /* React-RCTVibration-dummy.m */; }; - 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A965D48D828ED54D8B34A82BBD763A56 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 180788C4BFF07B368B773E100D069B33 /* RNFirebaseEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 05928729358A05A5C29C585D4CFF8531 /* RNFirebaseEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1818CB61F7CBA5FEFA50850E8D607CD4 /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F0F2C3DDC28B8D78EF6FB0C17C4AC0B6 /* React-RCTVibration-dummy.m */; }; + 184F9AEBEF57B3CAA4A402A62A631ED9 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 3751ED84B089653927EE0C3BD844C300 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 955D7DFC004CCBDCA460799CA05F6C04 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1875FC9F710D7CE0D6B9C3BB919D18B1 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 229809DDA12937FFE90714686E5E6758 /* alpha_processing_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 187FF875F0C794DE627651247D173EAD /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B40D423A829C4CAE468061B860B9F55D /* REABezierNode.m */; }; 18825CEE99EC851BF8DBEBACC61D6D51 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C14EB949A4D519FD9658B9141C98A497 /* 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"; }; }; - 18AB077AC7B258FAA8E541F126DFE6C4 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = B91DAC059E0C38268C5BE5EE56C5D5F3 /* RNNotificationsStore.m */; }; - 18BB4F466636C9FB0564F18D288616C5 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = E8538B57397E0EBE516081FD6AB6BFC2 /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18D4C889B62C750CB81615AE58007053 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 63F0D11A6DCF0D1983AA0B7E1338E5C4 /* 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 = 6E2E19D13B3B7244CD0569D5CF87118F /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 189A8C608A6738A91A287587BC342EB2 /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = 13AC280CB2D4B839693796D4804F301A /* REATransitionValues.m */; }; + 18D4C889B62C750CB81615AE58007053 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A88D44D3DDCF8BB3222BF681C0B7D646 /* 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 = A43B34C48897A6C0958D0D49568F9AB2 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 190F8B4C8A04E11A00BDCA1057FB1EDB /* FIRInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = D9B9CB9BED0E87673E9A18E363E4817C /* FIRInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 195506397FAA1E491996E5C685E4D415 /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = FC68CA0C9B35A3F554A0AAB40793A23C /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 195A20D80C4EAA5A2C319382357FE065 /* RSKImageCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 294B31C1BD032FB26D3B0CA142612940 /* RSKImageCropViewController.m */; }; - 19667B2AF3BC9388AB07AD070805114E /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AA1B288D30B68B1C154F01667BDFECE /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 195506397FAA1E491996E5C685E4D415 /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = AB46787E2D8E38B23B6E70FFB59547A4 /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 198FCB093A9B9BF1DA57A126F2787358 /* FIRInstanceIDTokenOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = FAD92B2FED1728101BF962B17118D45D /* FIRInstanceIDTokenOperation.m */; }; + 19A150A023F610AD3C2ADB6237C3AB9D /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = 68791E815815FE6D2E8622B75D8197FE /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1A0104B522DEFB57D4AA61C477C69E86 /* FIRInstanceIDAuthKeyChain.m in Sources */ = {isa = PBXBuildFile; fileRef = D44B1D1C9573C46A21A7539427E60A74 /* FIRInstanceIDAuthKeyChain.m */; }; 1A56960F5181C56C80438ADE507F6B70 /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BDF8F94BE21E75B347EB965B23CB0DB /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B547D9DE1A9D2A00A1A742C0FB83C6C /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 07606EAE56E2BCC291F151955A1514E3 /* RNFetchBlobNetwork.m */; }; - 1B6D08B38202AA4E4B1CAD58E6EB3304 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EA871D60B58303220351B196981986B /* RCTBaseTextInputViewManager.m */; }; - 1B7089EE7245CE852987E7230FBDA578 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = B91331C48536659680EE5EAA9EE02C9D /* 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 = 572093FC9BC0E35B3E1CC421E7805037 /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BA6DFE784A24CCB6B70F766B6335596 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = CE53AB3C1008082211D1514B0956C381 /* 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 = 6597EF9A31A7DF713E5E5B3E73B1FF05 /* 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 = CC7DA785F2379D5642EA43D528611C39 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BEAC4D07164ED107A0CD6960D57A36F /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B608EFB5273C2182D5612A4706E53FB8 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A6C6EDB5B6D699B735CB7430E83E5A1 /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C8700E7C2E5477D0948D22AE0D0346E /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1AFF0768CC152004C63C2E99578BFD63 /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C3F1D97844E88437D05D57D6CD71824 /* REAFunctionNode.m */; }; + 1B68B0F873DB40781C12061BE667E2A1 /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 6759327F1828D6B0EB2AEB250153BEBB /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B6D08B38202AA4E4B1CAD58E6EB3304 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E9DE536273503BFD853C7F1E29AB5F9D /* RCTBaseTextInputViewManager.m */; }; + 1B7089EE7245CE852987E7230FBDA578 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 05C4A9697C1CDEC26FD3D27810AAB2E8 /* 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 = 9DF61CB46D3614F3C454032356336A37 /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BA6DFE784A24CCB6B70F766B6335596 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = FFBE77E59F03C19E6D2D4D175A6106C0 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1BA6E6A24E87466688F0B831D7EB563B /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FE77AE93F9828AAA4A0E04CC3C99B4B /* SDWebImageDefine.m */; }; + 1BC8DED8FDB672811B51D3C5994C6365 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = FBC5F328B91CDEFB67AF032281E6EB16 /* 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 = 6501672F142BDD3D0892B1547EB5A495 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BE8F2D6456C1018F95ECC3E379ABA25 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = CF4562602F7A58F59F5BCCEEBFE71FC7 /* UMReactLogHandler.m */; }; + 1BEAC4D07164ED107A0CD6960D57A36F /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AF5B943A302C58530D06308B3737FD7A /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C0EA4058456B3D3762F435C2572EB53 /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = F2C042E913EF7610168C1114340318CB /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C1554A37747D7499BD377FAA9E50D24 /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C43A1B22E483D71551C541EB00BE23B /* REATransitionManager.m */; }; - 1C1CB445FF4AB903370BFB36D5279158 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = A963A9A6EE380D60965CA3EF8EA10F39 /* BSG_KSCrashSentry_NSException.m */; }; + 1C1CB445FF4AB903370BFB36D5279158 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = C1329548FB5474AD5B664F1F97BCCC78 /* BSG_KSCrashSentry_NSException.m */; }; 1C293C81A7131E0A6DF0D48746434AB6 /* GDTEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 697914FE8988F30092D9412B40462E07 /* GDTEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C53EB9F06B5D2210A10592BEE56BC20 /* RNFirebaseAdMobInterstitial.h in Headers */ = {isa = PBXBuildFile; fileRef = 96828A154291EE6E5258DC48A5F4B966 /* RNFirebaseAdMobInterstitial.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C849B66AE31D40851966035DD96C85F /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 67D0F8DB39EE904B29BBE0B7C76166C3 /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C8AFBE6A95EC8792CDC4D84C56EEA01 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = B9D027B630B02D7D423D5976C3AA1D8E /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CA314ABFFE7C81A0E1F03B8097446CC /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 22494F499DD32CF3BF4B910D98AC1597 /* BSG_KSSystemInfo.m */; }; + 1CA314ABFFE7C81A0E1F03B8097446CC /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 34F4B73A4F25B12976065C5DC4E93505 /* BSG_KSSystemInfo.m */; }; 1CB2EC2353CF09350338D1C77F3A2703 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = A9DB44425458313D2961C90D623E2F07 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 1CBD943A26A60CC472C6AFEC0098FF91 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = A69A0648D33E93EB9C57D9A2A5473B63 /* upsampling.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 1CE706B5A58CC3335C7F03B49845902B /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E1C13D39704C9B2F50E2AE49B721C79 /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1CEC9722F8DE930445379902380BBD11 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = B2044019C1BEB77F7FACCD294C68D1F5 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 1D05C8453EB2B936720262319C77095D /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E40BD796D6425D1338F0CF354097344 /* BugsnagSessionFileStore.m */; }; + 1CF4D54E266674B85FEE51F85A316F04 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 00FC835CDE9DFEFF1104EF4F7E9A0474 /* QBCheckmarkView.m */; }; + 1D05C8453EB2B936720262319C77095D /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = B63CD15FD6ACF9EE75F164C21D5CCB46 /* BugsnagSessionFileStore.m */; }; + 1D17CD40B7E48EF10472047F0FBDD573 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C635370BF7182A2F524F98FA6D49C2EE /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1D3A9292C404B93E41EA657319C5A616 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C2FC63F50BF9DACEBFF72D70B396802 /* encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D5577E2CEA3D6D0C9FF26D1002133C3 /* SDWebImageWebPCoder-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 37E75F1AB38A5F35704552B1D2BFDB0C /* SDWebImageWebPCoder-dummy.m */; }; - 1D5C101F5B5A65F0C0C2B1FA642B767E /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = 61C26C33269AE6F46FEB6103DFBA781F /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D5C101F5B5A65F0C0C2B1FA642B767E /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = 420BAB1491BAE6EF3DAB7AD4DCAD83C2 /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1D949C6601A62EC6CAD60C9E7B50C0CC /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = 88CDCFE1C23D3551F83EDE1AB76CD3B7 /* lossless.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DA909A04665B668DFF9B85357C6B059 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D8C90D7E3B20AB3CEB25B83EFE04E86 /* UMViewManagerAdapter.m */; }; - 1DC297CF28DEBE78DCE069FF44918267 /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 0761E244B793FC335D2B8FA708497B59 /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1DD0ED35455ED0BD76AFF8FCB877673F /* FIRDiagnosticsData.m in Sources */ = {isa = PBXBuildFile; fileRef = FA8CFC3FD598893FBCD003A30F10523E /* FIRDiagnosticsData.m */; }; - 1DDA17B2C52FF23F1018C659E14984A3 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B0ED25D98142E212137CC0286881F80 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DDA17B2C52FF23F1018C659E14984A3 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = FBD195C1C123E5DA826A6272C83A7D4B /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DE82197ED50976304DE843A50E1FFA0 /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6517738E0F6018535C3900F4EB5D0228 /* react-native-notifications-dummy.m */; }; 1DF89E7727E0526C9F6958A6297BE82F /* FIRInstanceIDAuthService.h in Headers */ = {isa = PBXBuildFile; fileRef = 75CAA2DCEDC2FA87231E1A6876ADE9DE /* FIRInstanceIDAuthService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DF9FDAAB8CA9BF26D403D102C0C4920 /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F376571D3754BC58E0FD4601CE551E5 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E04020A79576837265C2E85342B6637 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DF52A7476EF833C7CB94B0B1A3AFDCFF /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E33F5DBE2A1EC00BB20D16ECF677E76 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C3168D41B9FC41720825F052172573 /* UMViewManager.m */; }; + 1E33F5DBE2A1EC00BB20D16ECF677E76 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 16730113239A4A5F7934D2D7C9DE36C3 /* UMViewManager.m */; }; 1E456BCB8628607BE1E2DCDBC170FAE4 /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = C4F53A4FC2A26375B835ECC53525A2B1 /* enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 1E508F3B7386CDE28DA2905F91165FA6 /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 70F6042289E94BD0FBC6386B894E1564 /* 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 = A875C01527B1824FF82F97580829CF92 /* 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 = 5E0391B0F3D71D64CF68DB134DBA70F7 /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1E508F3B7386CDE28DA2905F91165FA6 /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 360A590D6E87D353A4EE548C36D5B73D /* 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 = F23AD859800CCD9D7CFB2F7165D4D419 /* 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 = C579CA51C3922D215446012D3F26D0D4 /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 1EE29AF938E8A2AA9DB15EC2CF341FA8 /* FIRCoreDiagnosticsDateFileStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A2AB4ECA4F6C281EA87D59F9CF92CDD /* FIRCoreDiagnosticsDateFileStorage.m */; }; - 1F070BC5024E5B63B2FEE2832D5D4BB8 /* BannerComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 68039FD9D0B1AEB7435763A7082221C2 /* BannerComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F0874C0195461FB5FA31ACAF0CA7CE4 /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 952089D780267A2D11750B51F49F2F25 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F3122542D948540510818D10F666FEA /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A92011A0EE4C2AA939C19D776A9A3FA /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F433492BD742344BAB20B11CABADAC9 /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 82818FC3C2A6B81FAA4419BB2DEC88B3 /* React-RCTAnimation-dummy.m */; }; - 1F7D45563AC337CF84791FE70DFCCFCA /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 20DEFB753ADDCD70AB2F9C5EA153424D /* BugsnagConfiguration.m */; }; - 1F93B9D5FFF2B89EED6DC77A368547C8 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 41974D60AC17C8FF4A2F80135E90F0C7 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F0874C0195461FB5FA31ACAF0CA7CE4 /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 638CCE0BC7029CD374CA72DED5D873D9 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F213A396F09701C10F49BFA0DFABD50 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 840FA7F9C9DC617CC47EAA918C0EE0A4 /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F433492BD742344BAB20B11CABADAC9 /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5280BB5B3FE17AD8B5CF1928ACA583F6 /* React-RCTAnimation-dummy.m */; }; + 1F7D45563AC337CF84791FE70DFCCFCA /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = D6415C4D17B283E12255572B27EA49A2 /* BugsnagConfiguration.m */; }; + 1F93B9D5FFF2B89EED6DC77A368547C8 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C172FCA6DEEE2C4CA566912D635CF84 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1FDF48C866CFCF03993FFF72133A70D5 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 44B4FDCD2AF7CCC1D861268702A52DB1 /* QBAssetCell.m */; }; 1FF2C3BBF640A90238FDCE88B9F4BDA1 /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = D1B4AB45A9F69AA7CFC94AF05D8DCFF0 /* picture_tools_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 1FFE812F135FF3C50666B45174BBC0E2 /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D72A77C35315009550D2032B2AC4672 /* GDTCCTNanopbHelpers.m */; }; 200022E023C1CB715FE8A63069F76D71 /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D1F224EF68955C993387C63EDC7FF83 /* mux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20151875DA84E676FF35DCED3A7A3195 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = D723DCC6EDB2BA705256F4BEB1305ED4 /* BSG_KSLogger.m */; }; - 205430F5151F44149078DE31FA20E878 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C7CBE8CD8B2BC02B9CC12FE21915785 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 206B5516D18BBEFFBBC45813CC50E76C /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = A78772CB1D68C46340815D48D6820E90 /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 20BB52A2F1EB699503EFA842EA5089B7 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DAAB6E2406A0687205959EDE8917E3C /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20151875DA84E676FF35DCED3A7A3195 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = D4A7792216784BB7402BC5B2693927B3 /* BSG_KSLogger.m */; }; + 205430F5151F44149078DE31FA20E878 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = F76730335FA5B44EB23F25F0EA6399DC /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 206B5516D18BBEFFBBC45813CC50E76C /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AA5C9FC8CE7F44EFEAB0BD125AAE8CE /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 20BB52A2F1EB699503EFA842EA5089B7 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = F1254E34D6B5674E1F4A309A48A3BACF /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20D2D943E25749537AFD4D44A90B515F /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 0C996D0B1566BEF413BA3DA73BFD68DC /* filter_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 20D4A05296D575EBF955DCD9EFF521E2 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = A80CF8468E9049C56C9EA16A82061CC3 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20D803741AABCBEEED52F0ECA8D3AC17 /* RCTNativeAnimatedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = EE93680BB531D9FA4678C4FB50E8DA92 /* RCTNativeAnimatedModule.m */; }; - 21056E9C887858C6A22148463C3A8A83 /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DBEC11F5DB238129703CC03ABDDB43BF /* RNCSafeAreaViewManager.m */; }; - 216A82DCB6AEC6E3FB639429BB553F0D /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = F3426CD7F8F9487B138F70D9E3376947 /* 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 = 19204F31F35697F6B8D1ED03BAF14CDC /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21A7B03038615161C7777396EA546882 /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = E13B9720FE050B017C5D9FABA51E7940 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20D4A05296D575EBF955DCD9EFF521E2 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = CC5DE05F0AFDA59DEC6A3F5271D6E24B /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20D803741AABCBEEED52F0ECA8D3AC17 /* RCTNativeAnimatedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 01CA3635BAEFEBFFFA6086B82A4630AA /* RCTNativeAnimatedModule.m */; }; + 214EC2564186B97D27AEBA7850AC50FC /* RNFirebaseLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = 007D8E799734FFD16BA16CC0493D23BB /* RNFirebaseLinks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 216A82DCB6AEC6E3FB639429BB553F0D /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2493FEB4824E177D1417D8421C1A2F3E /* 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 = A0CB64F4C7708EEA1503FD11E213386E /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21A7B03038615161C7777396EA546882 /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = CEA26965AD99DE602B0FBF3060FD7E1B /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 21ABF1293012F0600F05DF3D7ABE5928 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = E739CA9FF7C24F8ED603A7F7FDFFDFE2 /* dec_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 21B1823B4F7EEFEFF94E2D5D2E4F88B1 /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 64EABEC938C8AA96DE5E65F520038E76 /* RCTMultiplicationAnimatedNode.m */; }; - 21C35B80CAEA0A76691C779BA384B7D8 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 12A3C9211FEA4385AC3F91C59C4C9C7C /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21CE9B29C4AA417A5CF00AFF6CF34151 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4C086AD28B3624797C21A2EF1D15B1AB /* 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 = 21E6922AE42449CD824A1562B55942B8 /* 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 = 173619ADB7B2575BA37B739444CAD2DD /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22159A7A5549EF28EF0E9E0538E1DD33 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 19FA048101B217FAEE16A806AF276316 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 223DA4ECF08214E912C7BDD77B4CA54F /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 83BF54DDED3A170953CABED79380A53F /* SDImageLoader.m */; }; - 224C8A685B5ACC4524109290F80C0319 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 97772715F1946476C81AF067F80DBDC5 /* RCTVirtualTextShadowView.m */; }; - 22697CD62AE749AD709D12874316FF6D /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6704E04CB726E9EB832844B5491E00FB /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21B1823B4F7EEFEFF94E2D5D2E4F88B1 /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C6587216CEB798C1574D2D1E737805CB /* RCTMultiplicationAnimatedNode.m */; }; + 21C35B80CAEA0A76691C779BA384B7D8 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E29358304887AE9D591F76515AAAE12 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21CE9B29C4AA417A5CF00AFF6CF34151 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9CEFD3DCD0332BD62EBE8135EF52B900 /* 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 = E612B4BB28A3B645D685CF9AD20AC095 /* 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 = 02FBB5E3C8DE09C5BFFA96D906912258 /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22159A7A5549EF28EF0E9E0538E1DD33 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C396D78F38FBE9F34D8848FC3FC43AE6 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 224C8A685B5ACC4524109290F80C0319 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D8E9C2ED083EC43BBDEA2F6E817A463 /* RCTVirtualTextShadowView.m */; }; + 22697CD62AE749AD709D12874316FF6D /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 97D3928D38A1480CB81397CE9AF06E29 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 227E798F6EB67F02AE3FB6227E466D98 /* FIRInstanceIDCombinedHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 66FAD49AB06A44C20B124AE7FB48ADD8 /* FIRInstanceIDCombinedHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22898BD6C6A490182C188A14C72195AA /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = 1387D56A39A6850461E4237DCADF1B3F /* BSG_KSCrashDoctor.m */; }; - 22A4682B2E1611AA80A231CA6BDB8151 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = BE61E209BFADEC5159E0E8E7E4A3FD4F /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22E0A4D28F178D6A4EF7C9166419819D /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A1CCE2109756CD298A0C4476235693A6 /* RCTCustomKeyboardViewController.m */; }; - 233EB8A86D47194C1EAD871FE6884D64 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EEC77A7FD0F5A87EE3BBE7B3CE0A543 /* 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 = 0DED51C857EF202EFAD1AD478D2DD146 /* 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 = 8DCA3A28B84869B2FA14D5E2E834B97F /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23B2A75FB27428D20EB1F244D06A47FE /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 442036AA59EF836C1752B8F1C8F08671 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22898BD6C6A490182C188A14C72195AA /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = 9128B0A6BBC4FA4FC3C0558E586FE4F5 /* BSG_KSCrashDoctor.m */; }; + 22A4682B2E1611AA80A231CA6BDB8151 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 29E131BBE173EA23E9407F05606F398E /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22C2D66683CF0C604D05BA7601355D1A /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5076924655933D192AA6FCDD3500393D /* SDImageLoadersManager.m */; }; + 22F89F1EA04063E1DD855B1A2BDE0EA6 /* UIImage+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = AD00E7094C0DE81613A44BC3728ECF29 /* UIImage+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 233EB8A86D47194C1EAD871FE6884D64 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = E8B74C2FE69C1503D7FD854A9BDFE747 /* 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 = B920945C9CA21605C5876FFBA385F645 /* 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 = 2EE1DA86EC3D99C00C25FD24C6220B89 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 23BD7EAF0F4EBEA12B17AE7D21D916DA /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 733E09C1AB500D3C978991AD3B73AD68 /* anim_decode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 23E0713F60EEADA643D63B1AFDB7A653 /* RSKTouchView.m in Sources */ = {isa = PBXBuildFile; fileRef = D242D9E89804010D15F96FEECDDC22FB /* RSKTouchView.m */; }; 23E4A832066FED70A4A478B172974B17 /* FIRDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 6810D3F090D3F566BDDB46637FC1BF36 /* FIRDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 245CF4D2EF3B0D323F8FAA39025C176F /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FCAF76084323F3656DC28B8A4A5F326 /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24725EF526B66947DFCFB06F8B0442D9 /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 71571D4590C4ED3F2C600D66264D03E4 /* EXPermissions.m */; }; - 247A9E9CF0E893DE72FAE7DFB705E4A9 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = AEFF4754C447AA9CC5EE5F70AEB7F8CB /* BSG_KSBacktrace.c */; }; - 24BA23655F5101418049B4B82461D725 /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = BFED9260DC0EB5D2C025BBDA287443AB /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2512FEE8990D6D42F338EABA386AC2F7 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 474095ADE4BB1B597F9A4608E751BEBF /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24725EF526B66947DFCFB06F8B0442D9 /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F33DCE3027BC6BC8AC0D769DA5F846D /* EXPermissions.m */; }; + 247A9E9CF0E893DE72FAE7DFB705E4A9 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = 848E2B83890BA8EE18D6FBCE6A0C144C /* BSG_KSBacktrace.c */; }; + 24BA23655F5101418049B4B82461D725 /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AC301BADE666E324EBD0FA7B6B7250D /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2512FEE8990D6D42F338EABA386AC2F7 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A1314D1DC895111A69435BB4CBD9E5B /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25407695DB500DD87235884421DF360D /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 56669636ECF6C60B7CFB58F98AD71D66 /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2592A5FF8A7EAACC26FBC400F2A39805 /* GDTClock.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C4CBA42441EAF3C431742FAEF9B224E /* GDTClock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 259805457533172392A5D7EAF6541D6B /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D21CB99F0986FDAC89D2A7B5769D187 /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 259BBBADD7C1D83C44B3A9DCBDA7C943 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = A0922BADB5750DB26C098CF437AA2490 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 25B010F1DD663281F2EAA9987E56EA83 /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BE0B46BDE7B2B716210F16FE77CB5FC /* RNEventEmitter.m */; }; - 25E4A6EB4C92D8310DD25E69ED20BC63 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = FB7436D9950CD010952DD6E4419E0688 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2659330DBD7370573D1393130B43BB4F /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 43133926B9CE9A5AB1D5AF4BD6A29544 /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26698CB3584159578B74F00DD586EF8E /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = AD0B75F82B79F1D06A10DCD5E95555B9 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26833E29DC727084826661273603EE92 /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DFB945AB1F5ACE153825C3C27E609B5 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26FC5B4BBEF2650E15EEAD7614893F50 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = B9E8E55C5402DE1D13F2A2FA127DF2BB /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 270957F405168211B69298CB2048DF0D /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 71E6C930EB56FE5AAC7EDC2DC1A9450C /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 274F74D8522595669D50286B66527D70 /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A54BE3B7E806D34C37EA1D6A686B30C /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2764F6AB069F801DA98BB016E5058A56 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = D8FA8CB12E8C02963D96851B8B76A24D /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 276F1C6EE252BE6B491DF6BBF8DAF6D2 /* RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 1739F947D1831ED31EDD3E0E5BEDE95C /* RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27A0D7F32A4608E3E60FDBEEC68BD9E4 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 481C18E01A760B3F249339764020F262 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27AD52F67B0DCE2212BF541A9603B232 /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = EB5FAD175A817898D734D0C0922E2D1E /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27C2C46B57E24D17CC4200B4B56ED6F7 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 41989E69C1F9E62D9367BA76E343ADD1 /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 259805457533172392A5D7EAF6541D6B /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A5D8BAC63D29824374C381C0A96C727 /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 259BBBADD7C1D83C44B3A9DCBDA7C943 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 573C44DE67D54268AB03CF5F639F152C /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 26339DDF8281477EDF4062465BACA4E0 /* UIApplication+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = F57EFF2305EFF81E4002CF298FFC3C62 /* UIApplication+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2659330DBD7370573D1393130B43BB4F /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A31001672A2F92EBFE5A9DEB5FC1A7C /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26698CB3584159578B74F00DD586EF8E /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A400EAD23CF7F01C37961AE6ED25820 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26833E29DC727084826661273603EE92 /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F8EEB9B8F005A47C23DDF619994FD898 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26C28223CAC9672D32891C06401D447E /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = EF5526B1FDBD5CA54475C9028CA88C83 /* SDImageGIFCoder.m */; }; + 270957F405168211B69298CB2048DF0D /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 555B4366F2A241A2A3387D5C99717498 /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 274F74D8522595669D50286B66527D70 /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 48DBCDD7F88D72B627752289B841685E /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2764F6AB069F801DA98BB016E5058A56 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 943A32BC82DD9F90B690F521C2F3BF01 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27A0D7F32A4608E3E60FDBEEC68BD9E4 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 61AA363888A6630CBFBBB0BFB0F9D7D4 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27AD52F67B0DCE2212BF541A9603B232 /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = BB998A709396C02BF7801229F04600EE /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27CF157255C447A5063775B5BE8A7CCF /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 20FAD53F1056C004E643B3770D456396 /* vp8_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27ED1A33392FE505A9DB60184847A07B /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 69B5B379DABF557413A9AB24CFE67860 /* rn-extensions-share-dummy.m */; }; + 27D5509048B564CA523E2A0F2A2BA5BC /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C5C21E43A2EA60995ED257C9872F617F /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2816AFE7D0CEA6D240F30639E6F330BC /* FIRCoreDiagnosticsConnector.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D4A116FDCB5C0B181DD2B8AFC5501FA /* FIRCoreDiagnosticsConnector.m */; }; - 28460F084E3F76CAE4A73405858D93D2 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 024A177C049377BFFBF85D955602ADC9 /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 287AF10671D2CB0A97D051B3DF0EA3BA /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 14EF95A81351FA86BB81D0A1FE3A622D /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28A47025426535E614BDAACCCB858EC5 /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 1286014EEAC46A520E1958F1CA19D658 /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28CC9D12382FF2F86C71C861D4B967D3 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E45909F5C1E58DA49BB0DE38600D556 /* RCTDiffClampAnimatedNode.m */; }; - 28CCB8A8AE578ED7E3DA0C35893B0D27 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9C742DC1E28F4023A8291B9C6D48422E /* 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 = 3579FDC1F171440E024A4D2C7C55955B /* 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 = 8BBB780A9F12CF3E77B2EA8A84406625 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28E9F1BB04EAEBDD4C0A890332EC77A9 /* RNFirebaseFirestoreDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B30374D98D88FEFFA40BACB5AE902EC /* RNFirebaseFirestoreDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 290623CDE9DB6D8BA46EFA545419A4F9 /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 733430E897231501B7AC1A5824D74C21 /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2959BCE52C5C958B87BFF36B8785C3FE /* RNFirebaseMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = 1521F731A01FABC9EF521C6B13D29ABB /* RNFirebaseMessaging.m */; }; - 2A0F62B088676EBA50DB1F571EB3857A /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 753222B99C242663283588B2503502CE /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A2926C4D4165C17BD0FD4ADFA1C1282 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 57800479DF81CC4341AF8C74CAA41B87 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A41075BCC3D7E19022AF88160D866FD /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 371E2EC0DA2C47B1F4722AF633AEEBB7 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A4FD22248D4B1C68D48C3CC742B7702 /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A2FF97164F5996CF244965C8AEA2BFC /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A59076ED7D1E3D7335B847D1E4C8DF7 /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 324C8D7FF5265BEEB2F9AB9D71C806CE /* 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 = DFF749D95E264156BABFB798B5B5F3D6 /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 287AF10671D2CB0A97D051B3DF0EA3BA /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F219F9EFB883772A4ACAAC42BC83F4A9 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28A1031159B38198922BAE52BBB278FB /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 171720FB8E3A6800073AE237427C9B09 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28CC9D12382FF2F86C71C861D4B967D3 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A9CF187EF6A44402D284557F5084EB8 /* RCTDiffClampAnimatedNode.m */; }; + 28CCB8A8AE578ED7E3DA0C35893B0D27 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 71541F399B2685CEB9C5D006A9B20DE7 /* 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 = 9617D5B43225127539083D8CD392617E /* 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 = 9D7B7CB894CCA3FD5F353EB7F1B02EAD /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 296B737800FD484F10E3364A3E046C37 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 72EBE5488967F0F01EF6647918780E5D /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A2926C4D4165C17BD0FD4ADFA1C1282 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 30D4989713F879DD1DB017EFC27AC2E5 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A41075BCC3D7E19022AF88160D866FD /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 14A3D6EBD5C32E4A32F6B92C713CB468 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A4FD22248D4B1C68D48C3CC742B7702 /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = CFEB170D65147AE6B399CAEAB51CDD83 /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A59076ED7D1E3D7335B847D1E4C8DF7 /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 84CD02D1ED29A744F8574417D01384C7 /* 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 = B99DB16193C464C8F88E3209E3808DA5 /* frame_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2A8C06DCC95B747BD3355C8AF57B8500 /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = C2E92934A9BD986B50061D4763E2D459 /* 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"; }; }; - 2ABD5D9936F366E87BB7EA022DE746CF /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 360844A61A12EF855608DEFB9E3D70FD /* EXPermissions-dummy.m */; }; + 2A7A8253FBDC3B1262EBDBD9CD028984 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B0CCA01C1EDB41C92C17E739DF8C675C /* RNPanHandler.m */; }; + 2AB52CCC40B0A20A5F5068FF4F9A7A97 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 42D27314E2CE64DC6C50A5B4E368AC25 /* RNTapHandler.m */; }; + 2ABD5D9936F366E87BB7EA022DE746CF /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 053A5D01A585A827EDB74B9253950129 /* EXPermissions-dummy.m */; }; 2ADF07B96AFD642FDDA0273C3FC90A9A /* FIRInstanceIDURLQueryItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D308F92D63F5310C32C3FA527FC5D30 /* FIRInstanceIDURLQueryItem.m */; }; + 2B308AE04FC4208E860752D4338E73D3 /* RNFirebaseInstanceId.h in Headers */ = {isa = PBXBuildFile; fileRef = E49095A3107CAB8BDABD87287A631C8A /* RNFirebaseInstanceId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B44D303C1043476B54B0307CFB7E1C4 /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 45A41C6C7105C7C090FEA14850032BBE /* RNSScreenContainer.m */; }; + 2B4939DE5FD2554B20274F87ABAB3B82 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 00BF4BD90992B195EF34E8231C77E6F5 /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B7BBEE60DFC6B43E93D0A2BBDBD2FF8 /* FIRInstanceIDCheckinPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = 025D8E78DBAC11CB603533D28063F8F9 /* FIRInstanceIDCheckinPreferences.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B7F6AA00309882B88DDA2A40A9A87D7 /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = B6F03C8E53D47EB052A1CC5FA5F2614C /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B8706AFEBA56B16FF391E01B81D2269 /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B031CE3E700D70F7BCA195DFB9127D53 /* UMReactFontManager.m */; }; - 2B9CC455EB3417A7EFEBE610679A6E33 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D6676CECE89CEB3E98A9AFCB004866B9 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BA314D25CF4133F355A3236C0C85825 /* RNFirebasePerformance.h in Headers */ = {isa = PBXBuildFile; fileRef = 212FD633E04FF1BBE43235CC32F5013B /* RNFirebasePerformance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BA75A28217EE3FA06B996528B4B551B /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = BB3282EF4DBE9CD99DAD283ABA8C670E /* RCTBackedTextInputDelegateAdapter.m */; }; + 2B9CC455EB3417A7EFEBE610679A6E33 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = DF386E1B9ACF1CF737FA57899C6F62A4 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2BA75A28217EE3FA06B996528B4B551B /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 283F9DBC19BC9C368189DBC095F85792 /* RCTBackedTextInputDelegateAdapter.m */; }; 2BDAE2BAA48D3C6E8C983C126D1FF6D3 /* FIRInstanceIDCheckinPreferences_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A922BF86A0993A7E8561316569E94D3 /* FIRInstanceIDCheckinPreferences_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BE321A08DCB8BBD46BADC0025EE22AA /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 03820841C6D9F58DB80408E8A2CBE1C5 /* BSG_KSCrashSentry_Signal.c */; }; - 2C26317049B79F38AA56D9959D9C8D32 /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C673143192CDBADE000A4B54E42ECCDC /* 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 = 3A3FA7E5BA0595C9DB539264B6DCFA7F /* BSG_KSCrashSentry_Signal.c */; }; + 2C26317049B79F38AA56D9959D9C8D32 /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EB62C1A0405F3AABCAA51A572E4481A /* 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 = 65BC96FA2845738773136791804903A1 /* dec_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C807FECCF102D19262B8F17694D029D8 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C83F8C70F93C8127749DE41E4BFFE91 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 7AA8EBFC6653280BE650D85406DE1BF8 /* ja.lproj */; }; - 2CA635EAC5CEB15C2C25C95EA422D268 /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BE1942CF4FEF0EEA46ABD2079E5F6FA /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F05A8F8C250E94F7535D77F642B34D45 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2CBE448FB6CEF4C98AF0A90B1DAA3E22 /* lossless_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = C9D3CE9E910139A9E291604E0D688B9F /* lossless_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 2CF29C03A890E6C1671A7BAD90ADEFC1 /* RNFirebaseAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = A73627628EFEE6D6322ECC3295712643 /* RNFirebaseAnalytics.m */; }; 2CFEE3C68DF30B10733EB873C39AD7CC /* FIRCoreDiagnostics.m in Sources */ = {isa = PBXBuildFile; fileRef = C3AF44932E73D7712C931B302DAB1F93 /* FIRCoreDiagnostics.m */; }; - 2D003D98658B84C7CECF961D2E7ABB5B /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 747CAA38A4149C7741B7E1AD452C5C63 /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D0E6D123577C774F4AF94A6242FF578 /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DE0933C2CA15790260A9C7B82C577FBF /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D61A2747A7ED3643B239BF6F190E30A /* EXLocationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DCC67EB103D9A1897E64556350F2D76 /* EXLocationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D6958CEE9B32061DF2136222B5B82BE /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = AF39CC6979579912E7139AF8C456083D /* REAJSCallNode.m */; }; - 2D889A37C6B0DCFAC73E5AC673F56C1C /* EXCameraRollRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 30147B9307000E3029CAB6E9D5A16E06 /* EXCameraRollRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D8BB2B921F3490DAD4B5241FC824145 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 15CCE0603210C9C4FBCEBADDC20538DF /* REATransitionAnimation.m */; }; + 2D465D6D29E2E7185E09C95FEEB97F54 /* RNFirebaseAdMobInterstitial.m in Sources */ = {isa = PBXBuildFile; fileRef = F19DEDB8616807263EC79EBEC423846C /* RNFirebaseAdMobInterstitial.m */; }; + 2D61A2747A7ED3643B239BF6F190E30A /* EXLocationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 241A26CB996A14E5B7B7320C51998079 /* EXLocationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D889A37C6B0DCFAC73E5AC673F56C1C /* EXCameraRollRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = C7D9D34DC43886A53207BF9E80D3BF3A /* EXCameraRollRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2DB4F42CEBDC24A79C3C19B323720090 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = E286A13145ECBD0ED5107D7555B7B133 /* lossless_enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2E0CE299D4A86130368E30A7EE7F82ED /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 195E4A5DBA8DED4A64D268AB05C74423 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E12BB5A24E6D17091504210CEFE2EE1 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 225C36ED67ED12EF2B47ABAEC5FAB890 /* en.lproj */; }; - 2E2FAEABC0476055F22D6A37003502A6 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = A443AC435CE4A4AEA1064FDEF406CB77 /* 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 = DF5DD3F2D99D789C21808B3CE21D8B44 /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E56DFB8C1133F93BC20B3CA906023D4 /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = B4A2DA4C50EB3E93FC75D09645928547 /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2DD88BB1449E72F02E3B37E8F7D4D41D /* RCTConvert+UIBackgroundFetchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 56CB55815CDD2D9C3A5E0E2D4B73E037 /* RCTConvert+UIBackgroundFetchResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E0CE299D4A86130368E30A7EE7F82ED /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A6CD2C98D5C802B074C47D5E2F5A1918 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E13FCA153AB796D1228E0CBFF9EB4E2 /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C9E713F50EF0A4980AF38416D683468D /* REAAlwaysNode.m */; }; + 2E2FAEABC0476055F22D6A37003502A6 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EDCBD529E4082C773FE0393618BE743 /* 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 = 6E77E134D22C67293A6E91F68E12908E /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2EEF2428BF4748087D8E774D39E0A4F4 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = B14E94AA3FDD62E6CFC30B229F0C23B8 /* backward_references_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2EF50ADAD30A67413D8AE5E3A4BA0770 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = C58DAA4203EAEE32D62CFF20E6A02AE9 /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2F1295F7C7B8AA2E0215E549E4B7D466 /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = BFA247F5974A6677929F9A981DE7CEDD /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F532EF26684F4C1C81ADE05E45D95DE /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55D89B433C776C791AB49FF99A50B87B /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 300ACDBD332F8F4BE41870A9DC765987 /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B15F14FCD1BD1D9F4715F0A85828A79 /* SDImageGraphics.m */; }; - 300C71ABFD378A1342C940BAD49E48BA /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = A35307FC9A62F53AE1127FD976357FA1 /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3036ADAC45D7080759FDE8A391116E87 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F9D125D122E0C9558F71F9175DD5D28 /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2EF50ADAD30A67413D8AE5E3A4BA0770 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 196B36500F41B8DEAD7E76153FF0F832 /* 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 = 68E28EC045760162DF91A5E765362213 /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 2F8CB5BBEDD63D2BCE8349B1E6EF736A /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = DE8CD113CD3693946B31BF3AFBA15182 /* RNPushKitEventListener.m */; }; + 300C71ABFD378A1342C940BAD49E48BA /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E54DF39BF0279AECDF1DCDC0FCC927A /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3036ADAC45D7080759FDE8A391116E87 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = FE3D7A64EC1D8C73B06102101D283D62 /* 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 = 0732121C18F63D3E514C8AECC08ABB87 /* GULNSData+zlib.m */; }; - 306C4CFB3C9CF728AB2EE81C2BD0F3EE /* CGGeometry+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = DBBFC044221634764300D4A0C8191226 /* CGGeometry+RSKImageCropper.m */; }; 30787BC4F5F2D1BF6C15CF616FD2EFF1 /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 5704BABAC31F1A4B03A97215E0566CDF /* huffman_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3083CCD755C128DF2AB3E5CFAD11B939 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 21D313B5438489B186AF71F622626DA9 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30B264FF19160F7B84E522938128AD34 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = C2AAE71AF8006AA30A64CF4504D526EE /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 308C68231DF020391981C639B9479D3D /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = F843C96353F8D06C7E74EEBFCAAB86D6 /* SDWebImageDownloaderRequestModifier.m */; }; + 30914BF6EBA4A680F93F061C1DADB29B /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 921AC7722F2C134D66F18F51A88B5E37 /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 30B264FF19160F7B84E522938128AD34 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = CA7FE353B17B9F6411D1B8CC4F38E112 /* 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 = B8B868FABDDDED888EB3F265D4C82CD6 /* dec_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 30C44A3EC525F17B193F938EAB44F38B /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 30A630D95DA548AB8940009405D9726B /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31182E073DBF5B3E09AFD6F6664EA453 /* RCTLocalAssetImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = D2FE14F9627496A030104ADCC9D2A5B1 /* RCTLocalAssetImageLoader.m */; }; - 31274EDDBCD11A92A9DDF9C3CAFD44FE /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D037B36024DED1C435D210E5E67A1150 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 312DCE7A6237A58BFB73D95B5B7016F2 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A433F730AAD8F31114DDB79F01CDBD3 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 30C44A3EC525F17B193F938EAB44F38B /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C33E60E4947C96317C4255B8D508168 /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 310E3BD54847E2E10F7E89925580B296 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 61080DC39F2EA410E9C6C0EE6B8BF540 /* SDDiskCache.m */; }; + 31182E073DBF5B3E09AFD6F6664EA453 /* RCTLocalAssetImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F718A89C12CD95005EB2064AF63B331 /* RCTLocalAssetImageLoader.m */; }; + 31274EDDBCD11A92A9DDF9C3CAFD44FE /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = E849D6F37E7174B6C155619799AA8173 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 312DCE7A6237A58BFB73D95B5B7016F2 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = C73A6840F412A81A8DB9E48578EABA3F /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 317F317351263F3E0B8D2BE1D386963D /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = AE6E322B12E1BDF5ACF57A39698E97C6 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31A575CE50A281D0F123B2947B4399BD /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = FA488407F572597916D559E4D9456C18 /* enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 32206859790B56F683946A3D5A6E24D4 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F49C00239726F99A897536D775526CD9 /* 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 = D76047925FF4F0719ADB2EBBE83482CA /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32E684924D741517DCF60217D3427297 /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 1B5A80D6FF27D09397AC83F7FB106ACD /* BSG_KSMach_x86_64.c */; }; + 31DCF3C5777AE4C676E7D9C5BC268AFB /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = AF29E10D6D7FEC4BAE560AF2B8758531 /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 32206859790B56F683946A3D5A6E24D4 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E00F05CCF734A12CFC85CCF4150FA8D /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 328F4C888823EB806500B05A2CF90C7C /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 667562C93CE0E35859560D81A9D4C366 /* RNBackgroundTimer.m */; }; + 32C4C455405B9CD9EF755DEBE89A2CA5 /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = BA98B31EA1738E56ED3968B7D41292D7 /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 32E684924D741517DCF60217D3427297 /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 51BB6D545F8287FFECC34C9C10362B37 /* BSG_KSMach_x86_64.c */; }; + 32F4DA4E6EBA407A5878774FF15EC82F /* RNFirebaseNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = C3DEBDBD5F087F4D3F139931C71B7FA6 /* RNFirebaseNotifications.m */; }; 33062309584EE5CDBC69FC6DE862E033 /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = ECD53A35203CF3EFF6CC520D9BB5439A /* color_cache_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 330A1B0D5843F9EF53903DD77EEFCB30 /* RCTActionSheetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 22E4174F7DCEABDADC2A643765351F34 /* RCTActionSheetManager.m */; }; - 330B6B072E57ED740584170F1D33629C /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 333E66EDC8DB6E62AD52DD735C682B66 /* EXFileSystemLocalFileHandler.m */; }; - 330E49E54FAE78E15DCA4ADBB77983F0 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E64A074C8DC78A75EAAA6DA1FA9A0D9 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3334E3A05B6DAE2B18D02F6BB4FA7322 /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C3A48CECA6512C7D3DDE4E567D13169 /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 330A1B0D5843F9EF53903DD77EEFCB30 /* RCTActionSheetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 989EC3095E4875E3B1D9DBE132132CD9 /* RCTActionSheetManager.m */; }; + 330B6B072E57ED740584170F1D33629C /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 430CA544C5F5E7E8812FDA2B74015881 /* EXFileSystemLocalFileHandler.m */; }; + 330E49E54FAE78E15DCA4ADBB77983F0 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FA51DC1EB4858AA16A2A500FD76C664 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 333E72A60BAFC9EB250C17222C7023B5 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = 154797C6FA63B16E3DAB026FD0AA9562 /* neon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33428870389843BF79428AEDCD7AEFD1 /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = EF5762268C647C0466867833BCB4DA66 /* SDAsyncBlockOperation.m */; }; 335029A6D67395F3DF335ED8328DCDF9 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 6F8051770408493416D6F46068E61D36 /* upsampling_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 3354D8B4BB60FB17E7772B63D789D6D8 /* GDTReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F60D3D8296982940975BE9B7E1DD3CE /* GDTReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3371B63BCFF08BC15347772E86702AD5 /* RCTVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = CF0AD6EBF14D3F52DF8F7A94928B4D97 /* RCTVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3367B5E34D0DBAA5AEA10C99C612E241 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 435810AA44D25F78E402E260306A966E /* RNGestureHandler.m */; }; + 337562C487B9E34D6DE140597FBBEA0C /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F05AB836BDC07D1ACDC2D02D31A773A8 /* RNGestureHandlerManager.m */; }; 337D56ABE8516E491805EDA094DDB786 /* FIRAppAssociationRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 20D25FEB72AB445059B03572C15C9B5C /* FIRAppAssociationRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 338E09B092953457F18D827F487CCA80 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 78AE52F0BCA0532AAEA774CBD36EDBB9 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 338E09B092953457F18D827F487CCA80 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AF76970552CBF5D498B4B5ABE92861A3 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 33BFDF34CCF06F27AF5A95AF3D3A8CDE /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 56D5545D816557E486B76508E8813003 /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33C3124704C1D163F80C66BBB861A65C /* NativeExpressComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = F6BF19E2AC117AF21EB0D7359703456C /* NativeExpressComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33C68646A35FFA7A9964553CD0B5AE7E /* CGGeometry+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3704C27FD74B38E75C1781D6037E5CB8 /* CGGeometry+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33C91DE5F2A63897008170423C191BD4 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A7A153864847690E9E1EA47F14A4E9B6 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33CB5D3DD385D4617604E912AC04C551 /* RCTNetInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = AD49A1E00BE112B46CD42FFDC5FE9DF6 /* RCTNetInfo.m */; }; - 33D36CD4F5C0FFF36474095F79C37130 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C43B38F6CBCDC1EA3A4F892A80B0053 /* FFFastImageSource.m */; }; - 34427820C80AFC44664E60000D28F255 /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BB63E0BB432F268B4E29A03A7876011E /* REAAlwaysNode.m */; }; - 349A42986C56EA0C8FD5DAE5292293B5 /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = CB80C73A069C4CD8C0ABD0122B0CECC0 /* SDWebImageError.m */; }; + 33C91DE5F2A63897008170423C191BD4 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CA123E117105CCD6B185D40422D7DC30 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33CB5D3DD385D4617604E912AC04C551 /* RCTNetInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 27ED0005F17C8AD51E057BF21D5F0EC2 /* RCTNetInfo.m */; }; + 34283063F0F4280D8B9914E642BE5690 /* SDWebImageWebPCoder-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 37E75F1AB38A5F35704552B1D2BFDB0C /* SDWebImageWebPCoder-dummy.m */; }; + 3435DCE8EEAFAF5538A2B4F6ABD01592 /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EF817AE61E87869DECD2007DCE20018 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 346221F6C6531271BEE337C4A880BFB0 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = E047A854D579C83DD483BCBF81104986 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 349B8E6465493658CF6AF3C28F8E69F1 /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 13EF0DE8480A25A2F8C33871361144AF /* quant_levels_dec_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34C2FF6F97B984B18CD943E512743BC5 /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 140C32167571C58047CBD46B6859A355 /* 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 = 9403DAE180262FDB327C26226C15441E /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34C2FF6F97B984B18CD943E512743BC5 /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A6BCBF8DFA9036607B10E1C54A7049E /* 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 = BB32D49DA0AECFC80F73D73ECAB81A6F /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; 34EC45D7E05C7E544ADCE54C82C7F815 /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 90E0F815BB889EF23EECA55DD1FD0BFA /* dsp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 35274B076962B5B78F433966C9EB820A /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = AD0B75F82B79F1D06A10DCD5E95555B9 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 358A9BE1F23199F46F214591625352D7 /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = DD120F25C58E02FF25C34A48AA6D236A /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 35D548EAC08B3EDC7C0E66A6D99A2AE1 /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2703C72F933F53025C828C107799FD10 /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 360F4CE181F4FF694358137F8D59BB8F /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 44987E59C8ACE5202ED4B50FA7F04112 /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36414710DAF820D4E5D3770D37A7E5B2 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E862B35CABD5266D4B4CB2F777312B7 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 35274B076962B5B78F433966C9EB820A /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A400EAD23CF7F01C37961AE6ED25820 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 358A9BE1F23199F46F214591625352D7 /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3E0310CCA25F3CD5B84308609151A1 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 35B224070CE7AB10F237DF265273F07D /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ABA183D6FFFA42C5E423362BC2BDEF7 /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36414710DAF820D4E5D3770D37A7E5B2 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = F75F01C3748354CB900B963E1E280814 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 369B3B50FEDEB672D5A25634765E6DE5 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 21D313B5438489B186AF71F622626DA9 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 36C08CBA266B36BF70CA1CE5CC9DF920 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = AEE25EDFF0C6211BCEC52D37DA1703EB /* FIROptions.m */; }; - 36D6C69C0E2415D65232D1F12B1D7A80 /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = FB1241B146F3110880A9F076234D836C /* BSGConnectivity.m */; }; - 37573ED9F7ABF41FD250BDD25A3B7B1B /* RSKTouchView.h in Headers */ = {isa = PBXBuildFile; fileRef = B2312F8F4116173F59E62F4CA2EE1800 /* RSKTouchView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3767695DFDF7CA03345FBE9C829A56E0 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = FC68C3A9572247EB2C186F6FD17191A1 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 376C172C245EC00D128A6E5FA19ABB40 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 02EB98B0AADF3F35964113C1CF40B06C /* RNFetchBlobProgress.m */; }; - 3787849E17237AB188BAFCAC4E41F2D0 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = A2B2916F4B2700499DCA14A4F53CABDF /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3790CFEEEF7E1753E6A3D4FC9590EE99 /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E29CF50A9C67BCA3AB95BBF936D6020 /* react-native-notifications-dummy.m */; }; - 37C980320A374E60A0810A5542BFA6D9 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 32B13DD5CC6DB74653E5F79A53392B57 /* RNFetchBlobRequest.m */; }; - 37D06A8A0068C2499AF862603F0E612A /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = 68791E815815FE6D2E8622B75D8197FE /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37D12DBA9250E79329F84490C2ED65B9 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F2CB4CF11AA79755FBC5B08EACE06DB7 /* de.lproj */; }; + 36D6C69C0E2415D65232D1F12B1D7A80 /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 05442FDE4805564614EA4952496C139C /* BSGConnectivity.m */; }; + 37567371A8063B507807E269926FFD79 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = BA389489AD3F66E8E1CB1FE46F32744C /* RNDeviceInfo.m */; }; + 3767695DFDF7CA03345FBE9C829A56E0 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = D0D4EB434E2A7084401400859BE709FC /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3787849E17237AB188BAFCAC4E41F2D0 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 223120526602CBA7ADF9D35AC98D8720 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37DD54840768E12258A9E9EABCB6ABE2 /* FIRInstanceIDTokenInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 53F0AB7F33A2D3E8953623BA09BD091D /* FIRInstanceIDTokenInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 381E62687AB55DF94F2073E8C5A85A50 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = A042E9934070323AF37FF873CBE05BAF /* RCTEventAnimation.m */; }; - 38249DCB0B6ED78C5A06B8562A87AB6B /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 8669FB1052435F4308947465F5A45369 /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3856F841675018C86435172CFC7E4458 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F799420D931BF01E22BC2B37A32CB07 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3856FA6524A7E27D3DED0D3F3A599204 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BBAA9DB7C7A19C747BF204E1AAE8DEB /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3881653F292441196D782D8DD92A6CA1 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 37CF770FDF352A24EC3AB16FF2E96884 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3894505DCB2DF56B52A3B48ED7D12034 /* RCTConvert+UIBackgroundFetchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B10B3067584B8DE82EFD03A553B952C /* RCTConvert+UIBackgroundFetchResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 381E62687AB55DF94F2073E8C5A85A50 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 4341046B557301C8C52B4235329D3B0F /* RCTEventAnimation.m */; }; + 38249DCB0B6ED78C5A06B8562A87AB6B /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = F879B1326B54C9F9A72C1A72B23916B6 /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 382713909DA41D4E461C8CCE04DED953 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 777557749740C00BBFF089B62E1ED923 /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3842AAF12EEDE99ED4C4FB6BC98845AB /* RNFirebaseFirestoreDocumentReference.m in Sources */ = {isa = PBXBuildFile; fileRef = E792A56960DE7B083053882538A55F5F /* RNFirebaseFirestoreDocumentReference.m */; }; + 3856F841675018C86435172CFC7E4458 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 87FF5199DB4EA632F3780A6BF236F2EC /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3856FA6524A7E27D3DED0D3F3A599204 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A1F8B3A353F4A7504F87F7A7FA0A072 /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3881653F292441196D782D8DD92A6CA1 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 45C508BDB58C3C22D4B094C0BF786B3C /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 38AD4512BAEA16C8B031C7DCF55F2A8E /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 21AC8D494D1B3B82127CB52C30424F26 /* histogram_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 38BBA21348DCF9947155442372A8E735 /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 268BD99C64A6C861FED9E34CD3F6B278 /* analysis_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 38CAD508071C312156F80B948C390908 /* SDImageAPNGCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CC0A3C6582874CB0EA2947C5DE21FC3 /* SDImageAPNGCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38DE5C7EC8B865828A2C55DDA20DC4D2 /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = EC07CD6EAF5BAC50B9F7AB1B4AF6026D /* SDWebImageTransition.m */; }; - 3963D28AE4FB8DBC48097812CB07DB77 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F7E4EE9B0188F5209057622ACD58C841 /* React-cxxreact-dummy.m */; }; - 397C3EDD243353685F957F57C2240CDE /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E35F3DADF37A2F465F6F78D52CC948F /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 38E4F29F7E182622CC2215957C62841F /* RNFirebaseAdMobNativeExpressManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 167A459272622EAFCCF5329E8083961A /* RNFirebaseAdMobNativeExpressManager.m */; }; + 395E9867F38532BF9DA3280956498F87 /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 670899587CDF9673DCCDFAD2A1E5407A /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3963D28AE4FB8DBC48097812CB07DB77 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46C1A629706A7A7377A90F7FF05E92BC /* React-cxxreact-dummy.m */; }; + 397C3EDD243353685F957F57C2240CDE /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = F33097B3879E9851A14049D85599297A /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 398216CA89DB4D19E75576F65F1C9A2D /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D3BA9D50CE03C2E15E321FF935241AD7 /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39CBC50563C959FB5909CBA64A680666 /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 35DE0F9D7AF1B2613AB7CE594AA8BC4F /* GULLogger.m */; }; + 3A05F957841DF8E40F3F912B22F6B427 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 239056C460BE84F42676DD046E24B3C9 /* UIImage+GIF.m */; }; 3A2CF9C00157FECC985B4C09095319AD /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = DF84CFF1949A27612BFB1D82133AE8CD /* FIRApp.m */; }; - 3A3992E2DEAF711D7E548A03E8445961 /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C60FF237535414A616C6E5BF992C375 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A41FA077417FD269CE763B748DE3D7C /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D442802319B1F8D0A4F9DA0DD9913D4 /* RCTAnimatedNode.m */; }; - 3A6D6636D6B7431EAAA30B3666A3916E /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = D6A298CEB203F72FFD7EEF4C03CEF0AA /* UIImage+Metadata.m */; }; - 3A85C24766DCC1A2224EB8756A14630A /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 737B3C595CA63B535BC4EB3165BAD4B5 /* 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 = 19E2084D7B2F1388EFCC66087F27FFB9 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3AC27E4838AA5B5C9616AF55AA33D7FE /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 27136D2D6F45008E8D66DE0E18B49BB3 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3AD20DDE3412D157292046E18BAF6BF1 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = CD6358ECF478DF14FE6E68A4D9842235 /* UMReactLogHandler.m */; }; - 3AF47D5592AFAAA33AFFE89BF3D6E0BC /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 84F96C5D37C786149D06D1E661EB6FCE /* react-native-safe-area-context-dummy.m */; }; - 3AFE9B8BDADA084AC206DDE383CA207B /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 3675431A9DA90C3F94B56531D68D37CE /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B1FF2DE9FB1A71042F8B66B9524710E /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 210B7BD233F22F152F7CC032E98367D0 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B2118BCD0CD8A2A7D5A855464FD47CD /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = E78B4162D30CAA063A10BE260B449392 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B2531A3DD9A35DC8D9E07C1250BA583 /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 04FB336B843A7FF03BD6F065E8577F16 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A41FA077417FD269CE763B748DE3D7C /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BE5820639989CBF86497FADC01C51F3 /* RCTAnimatedNode.m */; }; + 3A6B6F3DC9C032C621427568501BB58D /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B6AB3485E97258DA51BC6AC13968E3D /* RNFetchBlobFS.m */; }; + 3A85C24766DCC1A2224EB8756A14630A /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F50D7622E84F5FA8AA25A055A69540B /* 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 = 6CD0229375DE1D2D8DEA21B80ECA6388 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3AFDD151E5107534D74663949B3864F1 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 262DEA6395C5645E1DD66157F9034448 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3AFE9B8BDADA084AC206DDE383CA207B /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 125140995B0A46D82FA3E4E85BE2664E /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B1FF2DE9FB1A71042F8B66B9524710E /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = E85C0C94B7D5FB5DC0F407F2600152D3 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B2118BCD0CD8A2A7D5A855464FD47CD /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 30B553459F4188715B5D1F719303295A /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3B3855F510D8BB2023ABFC6A5628A827 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 60C5C0D606ED67278A6E886F85F26294 /* FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B98D40D03F4A4FA76DDADACDDD2669D /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = E2DC8B644C130623A0BE199A4ED83311 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3BB7613A3A3B5DEB2C5EB61243ABAF8F /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = B7FCBB8705698B4C5C2F47EF0ECFA778 /* BSG_KSMach_x86_32.c */; }; - 3C4BBEAE55A37D985320BF5A8F7E3FDC /* RCTDataRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F96C2D034FC4DC21D29895AC31A4BAB /* RCTDataRequestHandler.m */; }; + 3B72BF5FC30C007BEC9A3127DFE5F467 /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = A2B4AA84FFEAB4694F7306618ED0D5A0 /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B765C62CF94BA0069CB9CE33FEBEBE8 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 54E8D3E5278A83053F6DE13F1F6FAEBC /* SDImageCache.m */; }; + 3B98D40D03F4A4FA76DDADACDDD2669D /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = A4C3A30D388BAB3491B25D05E1B0A71B /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3BB7613A3A3B5DEB2C5EB61243ABAF8F /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = 590AA17A070B587502226ADCCCE7B101 /* BSG_KSMach_x86_32.c */; }; + 3BE95ECF0CEDE952DE7EC6A5E31961A8 /* RNFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = 292E194053D8F2265C1B40218F834FBF /* RNFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3BFD0FE33F7819DE244CBE645010C632 /* RCTVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E9D41375CE9A5EB189F9B8A07230DB4E /* RCTVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C0C44CA17AA10A05AB42DA617FE2306 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = C24F40A63FE451294206B6301FB2605F /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C4BBEAE55A37D985320BF5A8F7E3FDC /* RCTDataRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = F92EE1C0837EB379E32FFE7059BE647D /* RCTDataRequestHandler.m */; }; 3C59E4210B09E27F847CC83CD91DB322 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7A95AAF7D65C72B05E14FDB3A23BB779 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 3C5E2F8D2019FD31E4C9B383D6015902 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 188C92AAE969C46B84D0CD680DD2685A /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C844C18E89E90139CEE252DA26D514D /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 91470931CE2F4D5F2F6D7F4DE87E4A11 /* RNBridgeModule.m */; }; - 3C9B615C35CAF8AB3D4C7728DD1EB147 /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AEB3E2C0B815875A8A54F9A4BCB269F /* RCTCustomInputController.m */; }; - 3CB6842C4C314BEC0F57A1922A3BE4A1 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B0FC520C69B49EF35100FF143549E415 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C5E2F8D2019FD31E4C9B383D6015902 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E749B8877B3B0EE7EEF1DDCF99DD0F83 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3CB6842C4C314BEC0F57A1922A3BE4A1 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5979A6DCA021FC4DB90375F8BEAE9D2A /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CE0729079D17BAE2A3F5C0904B3FEC8 /* GDTTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = E0CE7E539FABA0D0602D2001A7B3D74E /* GDTTransformer.m */; }; - 3D159BC7359816B6F847DD2854FC9520 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E9548AC9F45E0BF904B4434099635A2 /* RCTSinglelineTextInputView.m */; }; - 3D3E47E5F83FB0562F67CCE9A4AAA4F1 /* EXSystemBrightnessRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = E6390116C74EEB846D1541AA9EA9A560 /* EXSystemBrightnessRequester.m */; }; - 3D4905CE02B1796A568B89A85E763D14 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DED1CACAEB451C47EC522EB25E18197 /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D6FAFE9933382B6D2BF7C56C083C974 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 26705C1AA9F866EE38E8F7CBCC3B8CA5 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E0D9D530637D80E80BC187E766BF528 /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ACEC37385065D7204FBBF2FA7301D38 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E7551EFF7998500B299F84718DE82F4 /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 709637C0A06FBBA95BC900A5496139BE /* RCTResizeMode.m */; }; + 3D159BC7359816B6F847DD2854FC9520 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = CFDCAEAB682B98ADF0EAA9C335C0131F /* RCTSinglelineTextInputView.m */; }; + 3D3E47E5F83FB0562F67CCE9A4AAA4F1 /* EXSystemBrightnessRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = C0142ED749AF000C530635CF83DF425A /* EXSystemBrightnessRequester.m */; }; + 3DF82780CF55F81F013EBCC8EC0D8636 /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C3A48CECA6512C7D3DDE4E567D13169 /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E0D9D530637D80E80BC187E766BF528 /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 67BD77AEC4CDF83989C9357B81F0DB81 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E549B8B47A4E9622A5358E9C70F8F2D /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 39A3EFF6C0E63A4D349B6FD2C9549075 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E54F7DB97FEB6BCD18C3F926D0ECDD6 /* RNFirebaseAdMobBannerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DA2862C764DC067202223164258F2549 /* RNFirebaseAdMobBannerManager.m */; }; + 3E7551EFF7998500B299F84718DE82F4 /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 19B762F877F3B152365AEC114E9BA027 /* RCTResizeMode.m */; }; + 3ECC831D5A00F19E3A8362C2E5F29A1D /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ADEA8E9FE8D76BCE22028D8E4F20EA29 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3ED2D1ECE68A7F9D6EBD7286DF05D64D /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = C3C11881E2F336517CFF4E6B6DDE7FCB /* ReactNativeShareExtension.m */; }; + 3ED3FB625207598D554CF1DEB893D351 /* RNFirebaseLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = 13F848E82CBE206FF89F5A4D545E95DB /* RNFirebaseLinks.m */; }; 3EDDBF55FEC78332628B99B7FCCF05F0 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 69812BC4C62D9842A1B2B369C701EE07 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F2EAF75059CC2BAF3264353BFCD2175 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DD1443F82FFBF7298B7D3C8979D89CD /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F4C77BB07E74CBD3EEBF7B3070657C6 /* UIView+FindUIViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CAD73DC9C17FE6AC5CF8C596197A6F2F /* UIView+FindUIViewController.m */; }; - 3F5E15218AF798D177E4FD2650FA4044 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BA8583A3574AD249C5FD90D7D769E62 /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3F7CD3645A388BA65D793568348A4E43 /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 36BB7E4F3B4C59F2AF8FEA960B294326 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FAC1DD0638669ADAACE3C32DAA02C81 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B49501DF7904F9A8CD6E55BCD2EC1FD /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F5E15218AF798D177E4FD2650FA4044 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FE974BADF79553E4722E9189E9AE63F /* 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 = EBE1A045C51E644379FCA7BB5C1A8C10 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3FD619CD7E4DA2CB1F156E46E5096A79 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E3F08E8D85F621758B574642044F950 /* filters_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FFFC6E8E0EA3753ADCC980B209485CE /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 228ACBF4C61B3139FDBA24DCD0A952FB /* React-RCTLinking-dummy.m */; }; - 400377F580EEB21962B955A22F181457 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = DF951CC9A59E82FD8FD3175E18C167BF /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 401EC25DFDB5E510EAB23B611354C21B /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F0144562E9EE65FD04D6FB83225F9952 /* REAPropsNode.m */; }; - 40264737B93C0C0EB8EC39A614B36250 /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = D075654742F028D83F37352D3F3FC755 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40423A792261DD77258C96ABFE04464B /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = B5B3F647F1139CB1C2D5B90DC2CE7107 /* RCTInputAccessoryView.m */; }; - 40AE675CE30893125F5446DE5BBBFDB6 /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D3C624B0D9F58207A0540006A13C458 /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40DF0EAA19733ABC634FE7A739E38392 /* BannerComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 69299A2553489034C01AB719F2BC7E87 /* BannerComponent.m */; }; - 40E02135B467F425AA7FC5D7C7DA09FD /* EXContactsRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 727E407A3322087D134F715297692411 /* EXContactsRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FE34810EC8E7C6F6D4C43797EE287D5 /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 357C18207563DC20B8BEB0607FC45B0F /* RNNotifications.m */; }; + 3FFFC6E8E0EA3753ADCC980B209485CE /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 14725CAC155E8EDBB22A24BBCB965C25 /* React-RCTLinking-dummy.m */; }; + 400377F580EEB21962B955A22F181457 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = B62748FCB8AA588EF4146A7A670BEA5B /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40423A792261DD77258C96ABFE04464B /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 21ABA09EC95E05879F07F584E19B8541 /* RCTInputAccessoryView.m */; }; + 4059B077FA6EFA4E5D4F941082D41326 /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1218312F176527661BAEBEB2855444F3 /* REAValueNode.m */; }; + 40AE675CE30893125F5446DE5BBBFDB6 /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DB0BF3ABAA1B33B4E2A1F4166755A2D /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40E02135B467F425AA7FC5D7C7DA09FD /* EXContactsRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = B42FE18F19C04AC6DEDBEA85C745980A /* EXContactsRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 412D7EDE677541415E721E69A4AF4D22 /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 679DCDE0317186020EA1B2CB9E3C5319 /* SDWebImageDownloaderConfig.m */; }; + 415A1D61E8F06727B6AA3BEA94C9FB67 /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 654E140137C15F968944867C04CC2522 /* Compression.m */; }; 417DACDC0A7BC5F9A55B32734AF496F3 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E4FCFDC62BB572738897A66AD584B1A /* animi.h */; settings = {ATTRIBUTES = (Project, ); }; }; 417E75BC5FE99415F33B4422E53E4127 /* FIRInstanceIDAPNSInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 79D674AF3635BF8CD90DB77AD3BD7AE1 /* FIRInstanceIDAPNSInfo.m */; }; 417F9C8A3AA8AAC9D60B25C6FB3EA614 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 297FB257FFE6A130856F3F4054BB64FC /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 418E45B1C68343DB0396AA4CBD77E8A2 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 69A8EB204DA42F54E697DAD17D3E757C /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 418E45B1C68343DB0396AA4CBD77E8A2 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = DF584DF14D519DCC098367248F4CD3AC /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 419B3687A0EE5BD6AA2446011C690EDD /* RNFirebaseStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = CA59BBE9E3A2CD7230971CE0ABA9D965 /* RNFirebaseStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 41B89098A007746270DD180D70EC71F5 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 833C08ABA0B47B2F2829C8A2CC4C0F4E /* anim_encode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 41D1E0B51D0E945795DEA849E1194D29 /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 673D46BD840DF16FDDB190F621BE76D7 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41D1E0B51D0E945795DEA849E1194D29 /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FD0884FBF8E38AD7AE9679B92726379E /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 41D8858FE972092F3CD14BCA87010126 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05E5EB9AE27C33ED8206D5EF0B639D99 /* 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"; }; }; - 4211E1148427EF7EE1B911960D1A6D7B /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B34E0FBA56BA048EA914504DF585133 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 422E7CEFC66A0706DB0D54C106E6A891 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B7888BB7BE85EE8D527C592F2CEFD8C /* React-jsi-dummy.m */; }; - 426112F7D340323309E90FDCEDB6698E /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D55A5C0BD6C285941B1635A7BBEF6C6 /* BugsnagSessionTrackingApiClient.m */; }; + 42130750228185A9EE97B08A51897B99 /* RCTConvert+UIBackgroundFetchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = BE25945B2546B4E805BC0E01903CC69E /* RCTConvert+UIBackgroundFetchResult.m */; }; + 422E7CEFC66A0706DB0D54C106E6A891 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C3FEAA5996EBAB6C087D51EBE25F51B /* React-jsi-dummy.m */; }; + 4247FDE6A7860133AEF354B9A10F46C4 /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 6194FD1CEA962047434F7CD0840F0B3F /* RNSScreenStack.m */; }; + 426112F7D340323309E90FDCEDB6698E /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C5D7B960114F9BB1BCA58A7FA827695 /* BugsnagSessionTrackingApiClient.m */; }; 428DA569F1EB3E48A5F26F0FF30A9061 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 5666FEC476C5C8C126B29D8F691C31AB /* rescaler_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 42C0CA41DF82BC302650393BC0CFF122 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 53637AACE7B69880126FF29ED486EBC4 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42C541CDF4C323D58807DE443CB1CBD5 /* RNFirebaseUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 96416B1B39BF76921AEC20D59B06D88A /* RNFirebaseUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42C5AC349980DCAA96B4CBE42A459ECB /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = A311691C89E4304C35006AF6725D790A /* 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 = 6B2761FB0E93085DA33560A83C598CE8 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 438551EEE33E812F71A2C54EDB74726F /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CF6F54B785E9112BC6AE97E053D1290 /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43B96C3301D8299F133883BFDFD36358 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 55B8D0791E36572BFC240003E1474397 /* RCTConvert+Text.m */; }; + 42C0CA41DF82BC302650393BC0CFF122 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 23CC7846BAAAD731E9F7FE1200BA32AA /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42C5AC349980DCAA96B4CBE42A459ECB /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 62EA1C1E10E897A9DBD203F76B2C0B6D /* 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 = 622F4B1F83CB4C45EE4282F4ED21DAD6 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4361072A88F52DDD840BC58643BC5F68 /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 44FBEF46DA69AE67CB7C4EAB355665B8 /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 438551EEE33E812F71A2C54EDB74726F /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = A352EE81C4436FBC31BAC8A8587F313B /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43AB3456754BFBAB36302675C1F024FA /* RNFirebaseAdMobBannerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 685F76DE22F8EBD774E3CB935D8B507E /* RNFirebaseAdMobBannerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43B96C3301D8299F133883BFDFD36358 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = C39665AF94FBA346085767D7916412E6 /* RCTConvert+Text.m */; }; 43B97BBEA60B13CA069319A3757A4EA9 /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 31464DE3A10775862FD3837D89881621 /* GoogleUtilities-dummy.m */; }; - 43BC4B5718524A141126854098C2EF06 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F66331B97BE93C730AC2A4F4CA82819 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 43BC4B5718524A141126854098C2EF06 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = EF19086FC19FF73008D2D0747261BD3D /* 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 = D06DA09FF14C0C4880409B9CCF4AD1E4 /* FIRInstanceID+Private.m */; }; 43E11DA6D060BEADEAD736180B594C36 /* FIRInstanceIDKeychain.m in Sources */ = {isa = PBXBuildFile; fileRef = C283455D40EFD0387D66378077728A45 /* FIRInstanceIDKeychain.m */; }; - 441CC59E05CD1798A940EABEC9260FCC /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A59C91EF26C663EEAC72D9CFD60575EF /* EXConstants-dummy.m */; }; + 441CC59E05CD1798A940EABEC9260FCC /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 548EB0ABCA789B0DE2235B7CFE4C86CB /* EXConstants-dummy.m */; }; + 442933B0BCA72284899C8F62B2924540 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = B892F16336DEB00631BC8CD1318C62FF /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4430569F3E84B1F22368A37034A12C38 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = F9BDB5FB053D69C8E59F594B9E914EC2 /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 444ED64B3900960D287E3A90ADA16C77 /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2190F81AA03361ECA2D6C94FF2E95F90 /* REASetNode.m */; }; + 4452BBEA7188E0E6BE79B3B7368E017E /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 607049354624AEE8FCDC45ADA3B250E3 /* RNCWKProcessPoolManager.m */; }; 44A56E8FBEA913137B22E0F48F692DCD /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = E77E169257CAC680599A408A2E8BD165 /* vp8li_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44EA54AAFF1F64DBE3072B8D1812418A /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = D5DBFEDFA3C0C3C493B8260D15BB5DDA /* UMReactNativeAdapter.m */; }; 44FB6A1BFCDEF27B9B786C9A7181719C /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC9287B023487367544B583D62504235 /* 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"; }; }; - 450264F2621C656145265BD88DDA1CD6 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A3673B3F2C07B82F7F7466343F0A1290 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 453BBE36F66DA2B77B6A4AABF0C19F86 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = AC8F43EDEFC379EB58457C0B6156322E /* SDImageFrame.m */; }; - 45570A40FDABD8CE955117EDDED09E24 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CCCA8C22CFF4E0CE7E180BE244CBE1CE /* 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 = 9D104CD0F8A300278ED678D2409246A0 /* BSG_KSJSONCodecObjC.m */; }; + 450264F2621C656145265BD88DDA1CD6 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 372B94412F3E2A1C066996D0B590E620 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4550C54119E07298B81AEE01322E161B /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E6AD35E2827330F6D0FDDA7A31D290E6 /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45570A40FDABD8CE955117EDDED09E24 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A9C9398573E80F194501E6D5C00F72CA /* 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 = 65CBB5815C2C8E2699BCAD8FC3191639 /* BSG_KSJSONCodecObjC.m */; }; 45A40F884619367E2D134F45E8496BEF /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = A3A876813DB06919D844190B333A92C7 /* bit_reader_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 45FADA4EB5D6E6A2B5A3B8D358E27D2D /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5125ADFD04847C63A5920859FD5FAAB2 /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4629EC0FE4E8F7582CCBB32CCBA19140 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 70E0E6A82E05308737F98EC583DED5A4 /* RCTTextViewManager.m */; }; - 4632986A104DC1EA5FAB18CC815B1D9E /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E92666389D22761A623949728B7FFC3 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4660C5FAE8881E9009A260FEE9C8FBA8 /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 41E9E7440237953B48726A156EFB657E /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45FADA4EB5D6E6A2B5A3B8D358E27D2D /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = DF9E339F522DAAB2B9E73F31537F8FFB /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4629EC0FE4E8F7582CCBB32CCBA19140 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FDDC07BDB2D69B8364DA6810AD90E5F /* RCTTextViewManager.m */; }; 4672288653A12A8ED1BD40835C8CA941 /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = F6215914E5B850B4D3CA559D2EEF3623 /* GULNetwork.m */; }; + 4682E0139F8D33BE32F6FE05D0A36065 /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = B89DDFE00E22E3A3906EFC459918A226 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4692A03F476391868C6362ED0C497F02 /* FIRInstanceIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA311510FA24986BC3AF19E0BE6D0E5 /* FIRInstanceIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 469496A4CA5DD1B476B64E3FBB700161 /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DEDE8FDCFE7CB914F5537D5B619BE8D /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 46D4DB4D7655C9D518527A43C8BCAB15 /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2EB41230ABED447B9043E714CFCCD86D /* 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 = 7EF3D0E8CDB2DA70814AD22E36F97678 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46FC4AF7BFD453794AEDCE9C42F7E1D8 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 164C790EF97865907EE39DC49E5DA344 /* Yoga-dummy.m */; }; - 47024666AF3CCFAC4B025694F479B741 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 748E68FF8F0584C3062AE3DBE77FFA1E /* Pods-ShareRocketChatRN-dummy.m */; }; - 471C0136D16465639B176B26A70F9895 /* RCTVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A2A219731CE5324848BD7A1A83A7819 /* RCTVideoPlayerViewController.m */; }; - 472A6ED3C76FDD642DF435E4526087D2 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 649046F7FAAD5795A341A92920037616 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4747F8766746305A6925482005F441C1 /* EXCameraPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DD7893B62BB82BF7CA2F2886F6B5A6B /* EXCameraPermissionRequester.m */; }; - 4756D1D81A6A4CAE5A7CA47C0E749E82 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 83E3400853693E65BAAB9E182487BA2A /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 475FBB59DE86E1E478B92C83E8E3FD60 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69C063FB557367E499E02F74DF220F34 /* 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 = FA63D99B6021039B74156FB8E56D5799 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46FC4AF7BFD453794AEDCE9C42F7E1D8 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B072D8D73FB9454A1DF60D01B1086581 /* Yoga-dummy.m */; }; + 472A6ED3C76FDD642DF435E4526087D2 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BD0143DF5E499DCA1B23DAD0EDDC0E2 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4747F8766746305A6925482005F441C1 /* EXCameraPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 646BC1E0E6C82CE13BF3FC32B4E99B03 /* EXCameraPermissionRequester.m */; }; + 4756D1D81A6A4CAE5A7CA47C0E749E82 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 86DD38D171735C60E25CF6FA5142E9B3 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 475FBB59DE86E1E478B92C83E8E3FD60 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 57ADC6FB12218BC5F731E66581C6A9F0 /* 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 = 9F990AC97A7898A949B63BA279F0E400 /* GDTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47AEE83DB849E3C2B4A8B16F935B2492 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = FA78B2BF920CFFE4315BD8205A2F6C17 /* BugsnagReactNative.m */; }; - 47C50D3D030A8341837A19DB6A67A4B8 /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 825C0199C9B5A3ACAE901CFECD6DAD79 /* NSTextStorage+FontScaling.m */; }; - 47C50EFF2382C5E5912BFEFEAC80FBFA /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 19F6F6BC5950405AB9FDAF7CBC9A37A5 /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47AEE83DB849E3C2B4A8B16F935B2492 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = 17BF2BE7CA5ED6426D6B0787EBBFABDF /* BugsnagReactNative.m */; }; + 47C50D3D030A8341837A19DB6A67A4B8 /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B045D0E4243730481AAA1CB77990DEF /* NSTextStorage+FontScaling.m */; }; 47D26569084E23199966F0D962D65D0B /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = B7DEDDFABCB0CE6A9C82FF73C5D61D42 /* yuv_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4830B2CDFE04E42074D246D7192A431D /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D13984EFFDC4EE40E38B864C1DBE2B0 /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4837BDBA63362D7ABDEC3F2CC2D825C3 /* RNFirebaseDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 10A95DB26B92F016CE67E8D83B04BBF1 /* RNFirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 488123B6785D8E54DBF3FE3B87BE30EE /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 772388BC62373501BCBD91AE57706DFE /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 488123B6785D8E54DBF3FE3B87BE30EE /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E70628CB7C4150E60887D1C06A324ECD /* 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 = 3FE7DDE360A8F7B4372072070F1C53A0 /* GULReachabilityChecker.m */; }; - 48C14AF03F7CEE04CE8745503D747C4A /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 105510FA7F0B670B5EAC334893288FF2 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48FD91451DA44310A44523825F96B1C4 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E468E891956098D77140209010E109C /* RCTPropsAnimatedNode.m */; }; + 48E13BAD190035A4BAC59193F9FD58CC /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = 21848CA295A5871520AB6B6D9165D3CD /* REANode.m */; }; + 48FD91451DA44310A44523825F96B1C4 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A13DD808F30EFECEB6F8ABA4D0EA7474 /* RCTPropsAnimatedNode.m */; }; 49249CD83D6535E94344F438513381BD /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = AF829146A913FDC2D938895DFD18930E /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4930759E486069FC5A806A64CA118EF7 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 32C12603AD73CFBA479EBE94C1CDFFC0 /* RCTBaseTextShadowView.m */; }; - 49F12FC5E06C1395A4FA589053C977C0 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 57503E4B94E8B26EEFA730102E290966 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A179F67B2211D5A0C4CEFF2808687AA /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A87192E3AA37F552786A1113C791230 /* InspectorInterfaces.cpp */; }; - 4A635A71C4C46F0F2C9028A9BCB3361D /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = FB1EFF7A8F4AE7B98C3DC698BF087E10 /* RCTSpringAnimation.m */; }; - 4AA2182966D257333C8FBA2D630404CD /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 6998C004A025E96CBF652588574B1BFB /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AF04CD7C7A366230D118DE7AF1793AB /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = C8E67417E99A03C5E1CB973129A8A8E3 /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4930759E486069FC5A806A64CA118EF7 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C994142F48C355AF473A71D1DDCC1DC /* RCTBaseTextShadowView.m */; }; + 4950C7D57CBFE821D8622906BAC7F5EB /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 36BB7E4F3B4C59F2AF8FEA960B294326 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49F12FC5E06C1395A4FA589053C977C0 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C59BAEC2A7827C2B428990AD6BB07A31 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A02699F57A1E4AC27952C7A1CF7440B /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 84E1B2FAA5D3B051039B96F0883057AF /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A179F67B2211D5A0C4CEFF2808687AA /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 605635D6DB4B1BDBFEF5762CF7A64D54 /* InspectorInterfaces.cpp */; }; + 4A635A71C4C46F0F2C9028A9BCB3361D /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C8967EB8943C362A949D858A7313623 /* RCTSpringAnimation.m */; }; + 4AA2182966D257333C8FBA2D630404CD /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FE5F5E7D3A709FEE7272B876262C3FA /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4AF04CD7C7A366230D118DE7AF1793AB /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = D2A08675E7AE166CE5245BAB36CD6FC5 /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4AF533E5A6AFF13467F5968EC8A6EEFE /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 59C46475F8DC2FF79F16B0C5AD2F49D5 /* random_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4B0E6292DFF93AF99A3211F0549CDFE9 /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = BD26490FA2CAB15D99BD6281A1B1B835 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B0E6292DFF93AF99A3211F0549CDFE9 /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 86B2636F998D062D4D3FB9C112E7C761 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4B163EB758F5F9C2FC21DC257B9F02E6 /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C7975AB85BAB4A3FEE13D5BB0F0F6C4 /* quant_levels_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B35CB70798FDE7E4218999504975CBB /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 745027EDA644231242815F2669A3EB26 /* React-RCTBlob-dummy.m */; }; - 4B3E9BAE33AA82157C4759FB936EB14A /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 86CD21A2EF51923225C679934ABD125F /* RCTTextView.m */; }; - 4B9CEBB534AF8FCE46F101F523358815 /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = 1CA3DF6BC7CAD857EDF9443C5A8E78B9 /* BSG_KSObjC.c */; }; - 4BFF28FD7DB1ECC151E935651B174DCE /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 793FE83E57B1545E7FA1AA3649EF1854 /* 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 = 6E1FC64DBD40A75618ECCEF5B4A53B54 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C2D9B6E7C57A6937CEC0DC334D9320F /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = BF27CC5643F100FD1EFA42E96E23860C /* RCTBlobManager.mm */; }; - 4C6ED3E4BB6EC529B11AC77E776AD28A /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D192754C4D84F904302BC57EFAAA132 /* 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 = A14180910E915E983B9C77BB7D5E0431 /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4CB94C74E021C81CF64B0E2CD753533A /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B0F39B93057CE24A18A54F67CDAF722 /* SDWebImageManager.m */; }; - 4CD04F5852E72205B1A72794B37CFDAE /* RNFirebaseStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 014FDB19903EB134E0AECA24E6BB5CCF /* RNFirebaseStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B1D722D19B02DFF66FE43AE54A71453 /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = FF21F2F302A776515EE5EF5560F277CC /* REAClockNodes.m */; }; + 4B35CB70798FDE7E4218999504975CBB /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D52F8088FD47E4E052367ED557DC9D38 /* React-RCTBlob-dummy.m */; }; + 4B3E9BAE33AA82157C4759FB936EB14A /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C3850FE6ED692788F89481C551A0BD6 /* RCTTextView.m */; }; + 4B7D376C88AAA9EEE1BC5EA7E81239F9 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E60ECE7BBB4802FC81C5E70D6943F0A /* UIImage+Resize.m */; }; + 4B9CEBB534AF8FCE46F101F523358815 /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = 0DE6FE52679701DA0162920EC37D06F5 /* BSG_KSObjC.c */; }; + 4BA880BD319A702FCC7C4B193CBDEF3A /* RNFirebaseAdMobInterstitial.h in Headers */ = {isa = PBXBuildFile; fileRef = D253F0093B088DDC3E1FAF79F9E53D45 /* RNFirebaseAdMobInterstitial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BEB2F85653476BD049A68038D7779F2 /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 63A9BE97ECA80E9C5D89BD55205F5CB9 /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BFF28FD7DB1ECC151E935651B174DCE /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 438610B152172E5A494F3D6DAA4E51A1 /* 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 = 1184C00DBE5F7A14064790275A9391F9 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C2D9B6E7C57A6937CEC0DC334D9320F /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 570C0007299E9E1EA2C8D258775A0AFE /* RCTBlobManager.mm */; }; + 4C4300CE48D312E626040A39FD5F977D /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 69430BB7ABF514D7AF976308D4C4280C /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C6ED3E4BB6EC529B11AC77E776AD28A /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F37FD7F638A29BEFACF9294960E1A508 /* 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 = 52CBD8A933AC48227993F3E6E086E2D9 /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4CE4CA9C98A9A166CDB53B285910E4EC /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = CB5B3DD0CB25806244B3A979B3155F4C /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4CF92FEC7E0E43011AEB755E85944BB3 /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F18239004FC50F44B326951F19B3DB8 /* buffer_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4D32A6CCA77396C2A9F756475D7086C7 /* RNAudio-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B3D9F98247A67AB098FD041C45322B7 /* RNAudio-dummy.m */; }; - 4D4215373234F525515C4B90FB909F20 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = EF039B2109A76249DEC888435F565A48 /* RNNativeViewHandler.m */; }; 4D5EDEB0379E36E22184768FF6024CA2 /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 1051CBA799A5CF2A8DAF5B1664BFAA50 /* GULAppEnvironmentUtil.m */; }; - 4D637EA0B53EA0EA616F73B87C6A7AC5 /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 16144FF63150234F56991AACAD7C2960 /* 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 = 01ABF51D9235052EBB69E3ACB2EEBEB1 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D81C07DB9171EDC6A3426B7A6076CB0 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = EFDF740620933B4841AD58A53BAEC7A3 /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E1045DA909D08D6B9F2CDC2825445FC /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CB2EFDE4F32232132E630716E718B0A /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E13EC5CD0F3010E777D440256FC5B8D /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A2EAF7A7CEEAFAD16DDC5D843197C7FB /* React-RCTSettings-dummy.m */; }; - 4E47AAAD7F23D2AC2E7B1947240E0711 /* RSKImageCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F1988726E9218835ED18B388A00F09 /* RSKImageCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E5AA705753E0D10E17E10B1CA2C842B /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = E8CC0C1D6B6939ABA8743AAE9D52F1E4 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E6C515D20FCA286E05ADC20B9C15846 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 537BCF82C764E02CEEA8BACB4A571B39 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E7B7C83BCDEA577820611550D970828 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = B89EFEF1BE4BD2ABC7FE00951A366EE8 /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4EB2647C1F0784677AFFAE3DDF9DB8DB /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 1119683640F1CBB5F4697C0D53575DD9 /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D637EA0B53EA0EA616F73B87C6A7AC5 /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15E3F338E2982D013E665FA5E6266A03 /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4D698FF67C959030F1AFB8C8AE998DA4 /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = D5B72979CC82624B5FF3546982CAB762 /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D6F846F346560EFAE7474B2E8B289AD /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = C6BBF10D0568EACF7D5A2AAB7D8F18C3 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D81C07DB9171EDC6A3426B7A6076CB0 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 541665DE9513D4D514E370DAAF58ECC0 /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DE362F3947B0C00289BA2CB44436E1A /* RNFirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E84953AFE58B0FC4F1D4094F3814DFE /* RNFirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DE7D9DA27745ED5D4097B385EC00AC4 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DDCF5DC5900ABC24A22BD88B27AB2CB /* REAParamNode.m */; }; + 4DE8E4E744184DBE2CD473A8C7013B46 /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B237DD7886D1276B43D93DD6D6227AF /* RNSScreen.m */; }; + 4E13EC5CD0F3010E777D440256FC5B8D /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BD96DC68DA0234D68DF41799B3EF2E50 /* React-RCTSettings-dummy.m */; }; + 4E6C515D20FCA286E05ADC20B9C15846 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 846F375D1458E294C907D63EBB6CDE87 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E7B7C83BCDEA577820611550D970828 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 32336E7E9DC6F10F67D09C259843D0AF /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E8F029F47000CBA03672364EF5E3351 /* NSBezierPath+RoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = ECD343076F797FCD752BE527123BF02B /* NSBezierPath+RoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EA2CD2903EFE4281F532299310D324F /* RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 1739F947D1831ED31EDD3E0E5BEDE95C /* RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EB2647C1F0784677AFFAE3DDF9DB8DB /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = DF369DF3D4A9549CF6A59A917F768541 /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4EBB91E35415FF423D59491F260E8684 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 87A1F176888430BC1AB311F2BC345FD8 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4F089D7F458EB673D74481E532B062C6 /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 9620F486A797F74612F033C661AAB532 /* FIRBundleUtil.m */; }; 4F1B88A1C4970DF955ECD048D7CEA807 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 492B962160A927B213CF7B01D9381AC3 /* frame_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4F21F4385A4F5EF1CD99CB0A87076CAE /* react-native-splash-screen-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8507E4A52C119318C2F77073321AF237 /* react-native-splash-screen-dummy.m */; }; - 4F540F17EFCDEFB4DBD4C955B346FDB5 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E09133F69B207B7ED5F79BF8F9E0913 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F5F80D9D055E9C79EEE7B4BD656EC42 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 481C18E01A760B3F249339764020F262 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FA38D8C7157DA6912473A3DA7D7FB23 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 60BAB8900EAF8747BAE604479CCA6F1C /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FB74F8F0C7A3F03E52B7ED0B7108EC5 /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = D9A7A987F3D7883C69C41E59AC3A8FEC /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FD18DAAC52AF555FFFAFB81E6A7A59E /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 2006D9CEECF56A6E7407AE287B9ACBB5 /* UIButton+WebCache.m */; }; - 502C614C35F81B593E114E125FD535BE /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = F0EB85E2CC7220BC9A402ED657430087 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 504ACB2269C6117DCFC43F35556884BA /* UIImage+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = AD00E7094C0DE81613A44BC3728ECF29 /* UIImage+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F540F17EFCDEFB4DBD4C955B346FDB5 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DA884B5D6B9B7635794D7EFC0E4BBD1F /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F5F80D9D055E9C79EEE7B4BD656EC42 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 61AA363888A6630CBFBBB0BFB0F9D7D4 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F92546677BE166D9D58C6F17C336F9A /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B8493A937517A7BD1D737EC6BD9A7C5F /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FA38D8C7157DA6912473A3DA7D7FB23 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 882D4B170328E113857BE5DFEE6EB7FB /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 500F161147E3065DAED82A78399F4A1B /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = AA740C812735472DC038E14F6EB9D27D /* SDWebImageOptionsProcessor.m */; }; + 502C614C35F81B593E114E125FD535BE /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 909A3B046942A94D6876AE056EA198D4 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50509695351A25E3573F2FD7AC34F31A /* FIRInstanceIDTokenManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 92D68BA31F7A8316C65DAF12030D2E88 /* FIRInstanceIDTokenManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50747AE223523E4B74103CEE02C246A6 /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = B8B2A7D89EFF4BDAF2F211220E380E10 /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50747AE223523E4B74103CEE02C246A6 /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = BD4C8BC633E2A9B5A5D3435478D22C3B /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50A8500333976280906EE774EB7F7DC2 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = FA8BAF21586610704DB775F365B3EFD4 /* webpi_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50B8184AB566570DF641594A67FDA7CB /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BF19C73B2A4983AAD7C4E991A9FC988 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50B26DB63FD09FFC7F27BE72B9E29E24 /* RCTVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 81F5A0318ABFB4FDB7846C1DDCADF532 /* RCTVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50CD9CD928E858B3E489C36D1C3B5D8A /* SDImageAPNGCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CC0A3C6582874CB0EA2947C5DE21FC3 /* SDImageAPNGCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50D552ED4A967F6755D64C875BC3CBB9 /* common_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 409028F4E885DF3E61D8883334A193A0 /* common_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50E764695210585A24387DBE433CD9C2 /* RNFirebaseMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D52DC6400A4CBBEB06A90984AF56712 /* RNFirebaseMessaging.m */; }; 50E9FF65FB86DA0D2E58BDD4BA69B2AD /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 83959825E21EFF1BBB15737C72C4CD9A /* FirebaseCore-dummy.m */; }; 50F65A7405BEE517EC658FE55ED70018 /* GDTConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 85B2582FA56AA12026692189D9184C1D /* GDTConsoleLogger.m */; }; - 513E7E347D4D515397DFFD2F00084E6E /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = BFF97AB6432CF984C8F68AAEC8F70608 /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 513E985ABDDDF0D1E6521BE3FA2C248D /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = 223E336948E0C73F4B0ACB503052AE15 /* filters.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 51679B12D6DCCE711F03F551E52D6A9F /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 15C5E1C43335136229A04020666A12F1 /* RNGestureHandler.m */; }; - 5173DEBA77CC026CE761ADB7052C0096 /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DEA556B9F91EFEBBDF517FFF7AAFA4F /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51832BF4AEDF2D9FFBB9779DB3F9A1D3 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B0ED25D98142E212137CC0286881F80 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5184F2C9010915B64F59C26BBF1D1106 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 00BB468BBAD5B831C59D3100179CC4D1 /* UIImageView+WebCache.m */; }; + 5173DEBA77CC026CE761ADB7052C0096 /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C00F6ABD26FA24AC01558D1555972C93 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51832BF4AEDF2D9FFBB9779DB3F9A1D3 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = FBD195C1C123E5DA826A6272C83A7D4B /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5199BA4BAAB11B0D7222A09DE3D05E8E /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CB18EB7E4432BFEA63A9D306E03CEAF /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51C79C88820B5197AB3CDB9376396195 /* EXCalendarRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = BEC8DE5627FD24B5F94CF1CEDD4EFEED /* EXCalendarRequester.m */; }; - 51CCEC05294FE21EB4674EDD80F79104 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E719086B586CDE0755B188BD6779394 /* RCTRawTextShadowView.m */; }; - 5251E839853EA8851DEF6A51A9D3DEA9 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 46D7F4DAB618D4CAE271758C3510F085 /* BSG_KSString.c */; }; - 52AC193A72E9AA0A819B663789C00AC7 /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DEB3B6D514C2E342DE40B97B52129F77 /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52C3364EF02A8F271D95D5A184391032 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4495468D6608A6D5DEB3E37481C38D69 /* QBSlomoIconView.m */; }; - 52DD1D1C18AD1306859A2E8B220EAF0A /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 88CBF104300986618FEB745D95C32C89 /* RCTValueAnimatedNode.m */; }; - 5350B6EFDA136CA48815A7BFCE49E4A1 /* NSBezierPath+RoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = C20B4C566C1CB5C6DCE02D4331AEDCA5 /* NSBezierPath+RoundedCorners.m */; }; - 5351E09175642E351430005A52D532D8 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3389700D11046964CE7368501A915C4 /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 51A7AF9FA103DC476D1C29436B83E374 /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A92011A0EE4C2AA939C19D776A9A3FA /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51B1537EA9A2774DFAA5C9CCE30C1AD7 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = F5EE07D4FF7C481EA57281ABF12FE6C5 /* RNFetchBlob.m */; }; + 51C79C88820B5197AB3CDB9376396195 /* EXCalendarRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = B37A90398BCCDCC233D0E07016024232 /* EXCalendarRequester.m */; }; + 51CCEC05294FE21EB4674EDD80F79104 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 09AE6C4847EC41611B376E9BB177F772 /* RCTRawTextShadowView.m */; }; + 5251E839853EA8851DEF6A51A9D3DEA9 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = B7C45FCE2881D036B56473739FCDDBFE /* BSG_KSString.c */; }; + 52DD1D1C18AD1306859A2E8B220EAF0A /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 41678AE01C98DEFDEC7EA8306AA69CD8 /* RCTValueAnimatedNode.m */; }; + 53387FD06762E2FBC84D8FF4C435EB9E /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EC49E6D8EC9A413644DDAE2B305BC4F /* UIImage+MultiFormat.m */; }; + 5351E09175642E351430005A52D532D8 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8AB56EB9AB0FCD6B15E62D038FE0A714 /* 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 = 2889DF8F05E40EE167FE8A782E1454EF /* GULNetworkConstants.m */; }; - 535E793401A5C4AF4B3CE34F25E9548B /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 79C60F5059736B2C4690D774D98E0F4D /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53752865AAC13F09268AAD96DFFF6177 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 524690C6149DF048A91A107B8A1E2891 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 53C4B0F4C7E89700FD57A4F84F52C366 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E358966C3DFA031055AF8A397211BFC7 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 535C3529F613EF1C9F771E8ED8E1C833 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 270967510F13979B1EB6F3574EEC77F1 /* UMViewManagerAdapter.m */; }; + 535C97A48D6422570B25F65D60A76B39 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 39D0F9ED2E4BC0E3916B780CA5C9D622 /* UMViewManagerAdapterClassesRegistry.m */; }; + 535E793401A5C4AF4B3CE34F25E9548B /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = FC1FC0DA8CEE8B98F69F2AC74A9D663C /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53752865AAC13F09268AAD96DFFF6177 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = A0C6606D2DA7EEA34B069ADD6667E0B0 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 538FD29A5AF83965FBA0A0A3D22B46ED /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = B40E4EF58D07B711871FFFF02676D5B7 /* REATransition.m */; }; + 53C4B0F4C7E89700FD57A4F84F52C366 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 688CA9964A0D2EB7CEC203851F00E7C3 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 53D5D5B4167585786C05375D4F27D95D /* GDTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ACAD788D95A67AD3BA519FA28D368C1 /* GDTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5405424AACA46A4BD2DEFA3249D84ADB /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = D5EC93F587CEDA8EF6C9365F76039DC8 /* NSError+BSG_SimpleConstructor.m */; }; - 540DFBC1D3FD6F5E21160EC3B01CC2FF /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B8A74C2F27E73CCF0884BF48A7C358B /* 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 = BEEC1B87BE6AB4B746CED63C3CFACC6E /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5430AB8B59825CA8017ED5B8666EC767 /* SDImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E12BE8126CFBA86063B52BE2F28A4BE /* SDImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54B2CAB8FDA9EDF8ECCD35C5E0ABE537 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 05D2BDC1BB3CA0A49905FF67637CF66E /* 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 = BB9CAD04ADD8404E21061E072AD9F60A /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54B5F5566A6E71CEF68924E53B0210C6 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = C0AC944A756460B48773C16C85ABEE38 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54F82B8C1F0C7543143C8606F851C861 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 797AB64E8456717E70370CEDBA49D4A9 /* RNGestureHandlerButton.m */; }; + 53D62A70A8AE75416E2E40EC6824300A /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = D93050D6F9D827CAE6D7A7B952A30937 /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5405424AACA46A4BD2DEFA3249D84ADB /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = 30B5540FB20E231DD0C1B3C19AEF6296 /* NSError+BSG_SimpleConstructor.m */; }; + 540DFBC1D3FD6F5E21160EC3B01CC2FF /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EAC1B1DE473FB1605621FAF200F94389 /* 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 = 812EB72D39D58EC67F1D198219C875DE /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 544FF2E6AE51D35128BE5078CE197DF4 /* RNFirebaseAdMobRewardedVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = FBE5378C09BFC55CD82F6C17426AE8F3 /* RNFirebaseAdMobRewardedVideo.m */; }; + 54B2CAB8FDA9EDF8ECCD35C5E0ABE537 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = A9622D55AEFAE02CED2DFFB85F78F9E8 /* 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 = 34618B48335451A86FD63245F8B1A2CC /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54B5F5566A6E71CEF68924E53B0210C6 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = C78FC1440F0A278101EA115E5D9AA22A /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54D4F6C2F89B67BA585309B8959B2238 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 15047356F0303DE5403805E4517E1120 /* RNLocalize-dummy.m */; }; 54FF2E101D4C264550CEA1BE540171E6 /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = F7BB7A5066213E49959F8E0552154F3C /* FIRComponent.m */; }; - 555C96D572170356B9BEB1823F3D0BD0 /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3583ED43A6647A32545A09879D94DDF5 /* REAOperatorNode.m */; }; - 55D506C93250E7741FBD315EC6116F5E /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 15725AD47425DBA11176117DDA118070 /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 55EA3B3035F4095615F1223B8C6E247E /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F5D05C2F0E0722A004161BEF93553C58 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5605C330B121799EBA27F8BE4F2B8BEF /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C641CFC2B167B82C543D9CFC19FB102D /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 560DC5FDCC5F3B6EC9E0A614FF70DF07 /* AudioRecorderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 91EB93590129044FB30A60CBC3599486 /* AudioRecorderManager.m */; }; - 561B4750845964EDC17BE91FD1D3196A /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 177F7E8D528169E7CCDB2AAF9E885D56 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5665B0FD0C271AEB151BF1DA9795B21F /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ABA183D6FFFA42C5E423362BC2BDEF7 /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55D506C93250E7741FBD315EC6116F5E /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 534D7E0FB2F0EFD8D7A082573E2E647D /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5605C330B121799EBA27F8BE4F2B8BEF /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1EA1E4929834E80F9031A0E802E1E931 /* 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 = 4A40F56B2854F60A4752CF1C9494C1B9 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 566AFBB16D10757E0FE89F41B838BE25 /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 54A0E591B6628275C03D2CCD8991BFED /* FirebaseCore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 567AB7BA9ED6D7951398DE1254AD4420 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F106E20FA9E15C3EC78264404AD0E84 /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5686961AE8248819AEDE2B72C28A3D8E /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EC49E6D8EC9A413644DDAE2B305BC4F /* UIImage+MultiFormat.m */; }; - 569B2C265512E273E8400FEDFF14CA21 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = DA46B0664E3A7BB9E473F604D77A3A5A /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 569DF954E11A7EB07D7A15FD77E50B17 /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 296C7741FFDF6C5CFB206BB5119D280E /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5706EE7EFA4593AA47330FEA9638C748 /* RCTPerfMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 015E5200F4C3DA81D4F43021B2CD8E1E /* RCTPerfMonitor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5715DC185B6518882C79D46C59E75303 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5757EA420E39BF342F4C1CE3E3F92003 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 571E1EA53535B415C4C4364B89CBCFAE /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C967157D298B7BACB2B943C8DB8CFC5F /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5720624D4B3ADE206287F4ABDB5C24AA /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = B95400480330F81F79600264A3A7A3EF /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 579AB54AE83E0BFD455AE2FBA3441A1D /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DA052739501902A223DC53E296907BF /* REATransformNode.m */; }; + 567AB7BA9ED6D7951398DE1254AD4420 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 12DB2BF5A4BB79C25434C6447445D7D0 /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5706EE7EFA4593AA47330FEA9638C748 /* RCTPerfMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FBF7783362F2FAABF6B7F8AD2FAFD62 /* 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 = FF7A4EF0C373D5139F2F1CBB88FC71CC /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5789E04C07883D3AD048CF4E89B500D3 /* UIApplication+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = C5963C328E7C3559A3F4E49F6284D75D /* UIApplication+RSKImageCropper.m */; }; 57C8A26C5E905E0B125AC142E720F5DB /* firebasecore.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C077CC137295840C2A89B6EB5FA0BAF /* firebasecore.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57E2EBBA4D1A3ECA699FAE40C503D4B9 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = BF868AF1CA3630C36493C0F530ECED27 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 580D54D7C2205BD1D610FF3F526ACB10 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 51568D362701B6B81C0139744164CA4D /* REAParamNode.m */; }; - 5841D76B68F87FD612007DC00D7A2920 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C967157D298B7BACB2B943C8DB8CFC5F /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58E7D43C3F1C656961F136BAD271DA54 /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 742AD48E6C5612CF0796FEAC2E2629CE /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5841D76B68F87FD612007DC00D7A2920 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FF7A4EF0C373D5139F2F1CBB88FC71CC /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5862B0C376C9AACA0211FC764A66B7F1 /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 58FFE1B9B4806FB71C38CBBC6739CF31 /* REAEventNode.m */; }; 5911F2C36EE1970C228AE32A316816B6 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 31903A482DC8C2235D99A585FA8FDECC /* tree_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5969CACC9847943362447CA98EDB728F /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C3ED87CC99B7D13CD7CEFCF9E532F865 /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59775D0037099876C7BEDAA541591344 /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CD5BDE2BC7D38A713D9334E31C56E76 /* BSG_KSCrashState.m */; }; + 595D85046F929FF13BCCE683D0805A6D /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = EDAA4916ACE76B6A069F9ED3C4ED339F /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59775D0037099876C7BEDAA541591344 /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A4EE097A0C337F137E5092EEFD7EB51 /* BSG_KSCrashState.m */; }; 599C79E2AC486198363DF63026441579 /* FIRInstanceIDVersionUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 31D51E61D6546C558B473DDD56522073 /* FIRInstanceIDVersionUtilities.m */; }; - 59D86DF9B75C365BEE6B352CA65C2339 /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 151722630194C5B61305BEB330CD3991 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A05CF9E215BB1540C2111A7783F6C09 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F4E8BEA4DB45E07D80B73BEF701E6806 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59C3E7066177B223E3A9B3D152B11E02 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = CDE2E14DEF8ED843D0CF8135FEB889A2 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59D86DF9B75C365BEE6B352CA65C2339 /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E198172F6749DBC8FFB5CC6034E4D8E6 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A05CF9E215BB1540C2111A7783F6C09 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 50DBDC3B06FB28E4840470D3EA068F97 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5A2FEA1B25DA5D3DB81EA2927DA1CB09 /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 15BE0F71ACE3238A9003A48B3FD9FE33 /* config_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5A361BB7796228216B1187B398A60475 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 54A46897422039769E26E67F5A71BDEA /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A4B49AD1E026D4CD9FD7A750F9B614D /* RNFirebaseAdMob.m in Sources */ = {isa = PBXBuildFile; fileRef = 32D124440224981CAAE96235A81CE22D /* RNFirebaseAdMob.m */; }; - 5A4EDCEF7D33FB0A946B748BF20174EB /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = F3BCAC2B84DF445FA5C5BC4F35821032 /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A5743CF4E389A0A89510C2F769ABBF2 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B91BEAAFF4DCB95DA0D8DAEA4E232F30 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A75D23BCD436DE88F31A570A97F4CAB /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = 472B6517DC791653B82EA7988B300BBA /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A83023D1299434D1918237AAEDE947B /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 554416244A08CCECBC8C85B538B91F55 /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A96898E2F6E59D21B8DCDA23E48ABE0 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 430460805DAF79AB9221E24E244100CB /* 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 = CBD5488259C5761A140A5F80A6469C35 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AA30030BC8E3342904CA0FC1962F447 /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 54C982C90AF5EFE8A833693625838E0A /* 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 = 987A01F7D1CB6D6C6357094D937438FA /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AD2D50EA0EA95CD2488782E90B478B6 /* EXAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = CDD1C880EA4AA2B057D5D718DE4E0F6D /* EXAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AD5CA5E9217E838A17B1E7036EC55AA /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4771E4531524CF9305A27CCEA4CE52A0 /* 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 = 5C09DE05756B527F34066B000593BE8D /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A3483B2F62B1233A0E3B1542A4D227F /* RSKImageCropViewController+Protected.h in Headers */ = {isa = PBXBuildFile; fileRef = 48702D847F7EC6147DB79EF8462AC9F4 /* RSKImageCropViewController+Protected.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A361BB7796228216B1187B398A60475 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F55E551A8CB8A46CB7B81200E70D4C7 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A4EDCEF7D33FB0A946B748BF20174EB /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = D441D8AF46EAB4DEC84B6D1DF54A222E /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A5743CF4E389A0A89510C2F769ABBF2 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B85A285352C374D520086FDCF7B0F8C /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A75D23BCD436DE88F31A570A97F4CAB /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = E60EB5702F44F0338F436F0649EA09E5 /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A83023D1299434D1918237AAEDE947B /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E54A85CB4B798EF35CB5F1903DDFB5A /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A96898E2F6E59D21B8DCDA23E48ABE0 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = F106414321C52BC0328541629B8B29DD /* 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 = 835373FDECFAC8B72C5C6F5AEFC7A42E /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AA30030BC8E3342904CA0FC1962F447 /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F1A807662FDC7594F91714855F12EBD /* 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 = E399DC420F7D49BAA8DDEE6C78F05A8F /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AD2D50EA0EA95CD2488782E90B478B6 /* EXAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 629BBD764161A3DE7E9C7942F38EA4EE /* EXAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AD5CA5E9217E838A17B1E7036EC55AA /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CF3EC69826025014E5DEAD9152E01A0 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5ADD911E10B63E8FC05A01004C3540DB /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 82C8F9A5A7C2C2F1B6DA5E7EFA6321C9 /* NSButton+WebCache.m */; }; + 5AE4304B939F17A88B6C4244ED516EBE /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 90EF3CC92E1A8E488C018136E9006A28 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5AEE52A5A72E036A8C066F41EF446DDB /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 969DB18DF135A3C5DF7F98551D9F1DC8 /* dec_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5AEF5383C1B91A338DB666B3416E55DD /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 398785D588862DA343BE481C045AC431 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B1FFEC3DCD784AF75853AAEA0515FC6 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 39A85E3493CFAD508B9032DBD949EF72 /* SDAnimatedImageView.m */; }; - 5B2CEB07FF22AECAF505F521E88E2E8C /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 901456400438C05BA7A0A511AB22E059 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B57F4D0A4D4DB8F9D628FF069B1F4EC /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B3427F3B243F0244BD72CAB4E3F7AF19 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B8A0EBAF1B94B7FE5E55162A2707325 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = 857A18203467E0E53B167530BEB153F4 /* BugsnagSink.m */; }; + 5AEF5383C1B91A338DB666B3416E55DD /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = E4882FAE6F2C0CC916E6871F70A1A983 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B0C95E7BF3ADBE459D5E0C31135175D /* RCTImageStoreManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BB73A2FA7AABFB68521C902D59683FD5 /* 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"; }; }; + 5B2CEB07FF22AECAF505F521E88E2E8C /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = E5F32C80489C8EE4CB8C544D85360E3C /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B67AD91E66C582B344475F4947E8C97 /* RCTImageEditingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B3EFAC78F103E51CEA11AC34D1ECF0CB /* 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"; }; }; + 5B7FA7BE3E1F99E93599529C872DBBFC /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 283DAE7E7C078A748285F6E5DDC6B489 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B8A0EBAF1B94B7FE5E55162A2707325 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F2E4423240E0F98D08353BC08A7D0AB /* BugsnagSink.m */; }; + 5B8D70A5FDA1638D26417A9E1496F90F /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = CB80C73A069C4CD8C0ABD0122B0CECC0 /* SDWebImageError.m */; }; 5B9BC4FE2C8655F5752E5909DF135E91 /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C9368F4CE40D3062B324045B4952F2A /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BA8580B31EA2CDD88C944A4E2D5218E /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = AE6E322B12E1BDF5ACF57A39698E97C6 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BF763F8EF91BF90AEC8E80EDA35C4F8 /* EXAppLoaderProvider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A34FDBE2C639412DD7763955BBF3D46 /* EXAppLoaderProvider-dummy.m */; }; - 5C1EB3FCC8EC9B7CE8E693EF269E7658 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A5C5ADDEC5949E17C0C7CA5BB0EB911F /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C3C5017E8709A39D95BDAE7AF3D04C2 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = FD65C3B227D72A06B16ED2EC77829389 /* 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 = 0E8177E5B34A0B1FAB6FC745856B935A /* EXAppLoaderProvider-dummy.m */; }; + 5C1EB3FCC8EC9B7CE8E693EF269E7658 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AE6E96DF9C6FDEC503DEC3366EC4D7AB /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C3C5017E8709A39D95BDAE7AF3D04C2 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 114C34D8834697823FC79812526E14AA /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5CD2A015A7A05B92BF2F5E7D71D12B1D /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 41EA49FA427B1026577C7259B70565BA /* bit_reader_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5CE502F7F5ADC4C2F77013A953F9D1D0 /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E75B9E466529351EF714E9AE96D5FC9 /* 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 = C969D899668D9AD51A4D693232EFE593 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D7BA29018680739DE57105640A48D7A /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A0FF8480437167FF0A6C777C559AAF3C /* EXVideoPlayerViewController.m */; }; + 5CE502F7F5ADC4C2F77013A953F9D1D0 /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C20BAEA9855B28809BD0DC67FFBCFA4 /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5D36C63A37E823B89AAB569ED5ED35FA /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F2CB4CF11AA79755FBC5B08EACE06DB7 /* de.lproj */; }; + 5D45E31CA233C20BE0B66629C2CC9FCC /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FAB6B1FBC8FDE76931F66FFD83C17F5 /* UIImage+Transform.m */; }; + 5D5AC98F858504014764C1F6F89B7C49 /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B46C473A86E2ED7BF76C7AC7E5BB383 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D7BA29018680739DE57105640A48D7A /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F040E331E673F93B31ED42B854281C45 /* EXVideoPlayerViewController.m */; }; 5D96F097503E7F4D8615528BB6C55CED /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 90DDCE0CF917557ADDE4F00557E21824 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5E0C04DA2367DFAB13CE9337ECF3D4B1 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0DAE54E21F9919D9214332B4A4DF16DA /* 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"; }; }; - 5E0E1E9B716583795F2515FA33088733 /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = D488F72CE205F7975B1AFBD3F1D1A201 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E21847867E116743840CD6CD81C62B2 /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = ABBA1006B691BDDC97E06F44EFE93FBB /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E28BF203F809F33AD99103DD1450BB7 /* RCTTiming.m in Sources */ = {isa = PBXBuildFile; fileRef = 95E2CA4F1266539E8D8FC4772351858D /* RCTTiming.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5E28D114FBF2B19397D976DFE3BD3D67 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = D326E96219DBD79E0321A7440F88A33A /* UIImage+MemoryCacheCost.m */; }; - 5E2BD4CE63EE70F3C033D97CD9FDD380 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 64225901D9BC184AE5F93A69092D299A /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E127C7E9E2B3786E9E37204858EB0D5 /* RNFirebaseAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A2D3908B9858F2CCF886405E3FF5E1F /* RNFirebaseAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E28BF203F809F33AD99103DD1450BB7 /* RCTTiming.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD815B0A50F75539647B5A987D130B1 /* 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 = 5FC66961EA27E6026AA4E22CBDE039D0 /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5E2C96CDCC4F7D22F998106A11BDC1BB /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E5D78BCDC74B623E9DD98FEBDE55424 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E3C7280509D78C6B01C5F2F975F4DA2 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3993F566E0DC59835A29E87AC2D5B5FC /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EA5321E522B0A79EDFE58DC64B02977 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = FF9954C873BDAE25C6888513E9E71532 /* 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 = FA6A05E24DF5C1BDADD225F4BA44730F /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E8B4454F4BDC73640CC19E4CBC814CE /* react-native-keyboard-tracking-view-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C9FCCD691B58ACED82B04848C9B9B860 /* react-native-keyboard-tracking-view-dummy.m */; }; + 5EA5321E522B0A79EDFE58DC64B02977 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F52746296A9DABDAD3FD8FDDC0DF9BD /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5EC89420418DDBBCA3DAD0AB146A052C /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = FCEC2541110D1265792D327D918573CC /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5ECD87A0265E9566AFDBA7027B201F5A /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = E070640A397B53A09E64766337E88D56 /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EF356ACED46204A70FCA25F1671A225 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A465236DFA5D2FD0A21D4D53F8A328D /* REATransition.m */; }; - 5F03B044C0DBA7CD3F58A14F45BA064F /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = C3CBAFF43E73228346B47BCF6BBCD62C /* RCTInputAccessoryViewContent.m */; }; - 5F0DD80C380B6D228D4A33595B3E84F4 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 943969C427D0DD2507BFD435F6B1657D /* 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 = 1221BB61D6A94B5190923E67EC6BBD2D /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F357E5B66B624F873EB65A5009CE47E /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C2593EAEA3167BA5619CD29EA9D93D13 /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F42A288B16A5ACA9FD5EB9080CB6A57 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5903B33A3AF28AB28A797A95DED2BF7F /* RNLongPressHandler.m */; }; - 5F5C796CF66FD9C4F874D4E91B30D7AA /* RNSplashScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = D49F9ED1D4CB45DE93625BA200435AC5 /* RNSplashScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5FA8B5F38C07C80F3A249A43CEBA64CC /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = C89FF0810BD4F04063F625B87CD9043E /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6007EA5A4A08D6AA479ECA1AA6A44E57 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 9403DAE180262FDB327C26226C15441E /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F03B044C0DBA7CD3F58A14F45BA064F /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = D7DC864424FFCD32B48738F8E72507CB /* RCTInputAccessoryViewContent.m */; }; + 5F0DD80C380B6D228D4A33595B3E84F4 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7005E4DA7F55B511559E8246168FE76A /* 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 = FB55E6533C35670B3BF5EAFAB97011B1 /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F6279992AFB146BF2BE1DE2FA807B1E /* RNFirebaseAdMobNativeExpressManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B8D5E9FDB2234F0FAF6B2E0983778CD6 /* RNFirebaseAdMobNativeExpressManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F893C23163105DD1120AB46B1F06E95 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B79E1416EC80D9D1EC2010E21C56020 /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5FA8B5F38C07C80F3A249A43CEBA64CC /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9856F95AC8C1232A931036A55559BC99 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5FBF988050AF716B9FAB37A30073D005 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = B5D0403AE234D3440422D93C4C145063 /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6007EA5A4A08D6AA479ECA1AA6A44E57 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = BB32D49DA0AECFC80F73D73ECAB81A6F /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6017B2E333E17232E88A3D32BB8909D4 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 39714F1130FE6E7C69D6BCDC08FD2CC2 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6067BC213ACE4C1CE241E87E5FD7FA42 /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = B7113A458284B87A443CFA72AEF1159D /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 608B30A9766B7C7AD75855008A72B76C /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = B649F5CAB443A7201C306A7708BE67E0 /* endian_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 609BA655CE8EFF1990DA74EA42437886 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 4079980CF0CE484D8AF2C6718D9D390C /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 609BA655CE8EFF1990DA74EA42437886 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = EE9B1F8A8D75DBD0B724CBBC425403EF /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 61000B636EA54B95FE41F513135EC7D6 /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = D02A7A1FD348673DF58087A42715BAC1 /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 617F643AFD59C5D75813423ADD30B624 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = BD756CCC8A6F288479927B7A468F5DC4 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61C31E9A82D6E552394CD1B1A1E0C181 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 585D998B4AFBFCCC1B052DF5DEAC44FF /* SDAnimatedImageView+WebCache.m */; }; - 6245184C3F3F969F1DD63C625C3173CD /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B59EF3CA58F8B1D0A9B97CBF8626C28E /* SDWebImage-dummy.m */; }; - 628788990C11155BDEF1DC2A9E827574 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D648BCD4E994941382EE954821EC72CB /* RNLocalize-dummy.m */; }; + 617F643AFD59C5D75813423ADD30B624 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = C6322163B7128CD797844F1CEBB989F3 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6203436AACAFD327B7D94BB6D356DFBF /* RNCWKWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A3D10984774FF2D4A12FA7CC49BFFC3 /* RNCWKWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6293B34D59BC5B39CBB09D323E9D3FDC /* backward_references_cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 5301CA37CA62E448D5058C24D6839E4A /* backward_references_cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + 62AC4838477BDAB0ADE018869EB462C9 /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C530D77EB7818C7B66D52A0E2D32F9D /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 62CB8189A8DFDB52140C78C76EA04823 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = BAAD5D2CCF9D8C098D404B8ED9F844B3 /* idec_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 62E9493C7A7BD2EBAD58E8F3893278DE /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = EE1EC80F8BD71CD7BE459EE5E2EAFAB9 /* RCTUITextView.m */; }; + 62E9493C7A7BD2EBAD58E8F3893278DE /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = FB0FA281B0BF713CBC57241C1246A488 /* RCTUITextView.m */; }; 62EF05AD5396C78743EC5BDD2643D95C /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 707423AFCBDC0B47C1E6ACB5C2DFD98C /* vp8i_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 636AD3E42ABC1403BBB9385ACAFAE863 /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B9DAFA142346219493C216D081E348EF /* RCTNativeAnimatedNodesManager.m */; }; + 636AD3E42ABC1403BBB9385ACAFAE863 /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 84B93183B0BF0D16902A3D146735FF9F /* RCTNativeAnimatedNodesManager.m */; }; + 637F48B06CDCBCD6F22F7839F61B70EB /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ECB420536ADF69CE9843B14210A5ADE /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 638CEFB487E5F9D7E8D66C1FEE5C7DCA /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = C402D82EE3109C9B95D9482EB7EC83A1 /* UMReactNativeAdapter.m */; }; 63935F51290563AEB8FCAAD00C5595EC /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = D2D458AB4BED0D5249B67CC59E72E84D /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63BB559BC6DDA8726779E5435731BBF1 /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CE38B3F7FA76E5D7E0901780BC22931 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63BCDF27B599B64B28D6A46D624234E3 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 953D86414D1C162F750E54AC5F01BF20 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63BB559BC6DDA8726779E5435731BBF1 /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 0182ABCB8A61B583B37098F2F4D3D3D3 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63BCDF27B599B64B28D6A46D624234E3 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = C238953E538AED81F3041EF99B90B69C /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 63CF3331255C82F8397096D34A4CF8DF /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = DDF3683F3ED11F7BCF308D682651AAAB /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 63DEF5208CD7762EF53C76EE6436D183 /* RNFirebase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 13536C6E4C7F4304016BB076A7964256 /* RNFirebase-dummy.m */; }; 63DF1931079EE301A7422BEAA101EC70 /* cost_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = D230EE1096F3D6F19088E6D44B8AD1AE /* cost_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 640012298102A07B297D5FE1C41DB5C8 /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = E21DA4EE9E2F720E5E3894CA9F2F5A62 /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 640012298102A07B297D5FE1C41DB5C8 /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A320BC213025221920BC95CF58F90A0 /* 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 = ED5429E388CD23904C491234D507B650 /* quant.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6446867E20E972E64B5659B208B143C7 /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 9F54AB51FA0DD69A7F9B1556521124DB /* dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 645D1CBA960966B8B12DEE4B27FBFC0D /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C825CB7BFB6E74922A33A3A1B0652F6B /* READebugNode.m */; }; - 648C1E17FC1F41F1C1A708CA1A4C5584 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 19100DEB96768310FF4BBDB272FA0BB3 /* 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 = 2A9136BB9773FE121610B6B24E0FCB2B /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 648C1E17FC1F41F1C1A708CA1A4C5584 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 49EC7C3EFAC13533502ABAE3EF8E95F9 /* 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 = 99FCAAA12DAD18758896A64F4FEE3AB8 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6491074DBBF2A3EE1448796EC326CB0D /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 2660A4836DBFBDC3B9829B71F2C14FA8 /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64923721BD562B3674943E640F4F5396 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 09E3497F9523C8F5CB165879DCFA656C /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64A68133486FD6417146155B801438E9 /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 379B7B0654757D17D8631C931D444E9D /* enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 64A6A8A57572DD34C738AF5B476113D3 /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = 7881AB572723816FECF3BBB4611C82D6 /* BSG_KSCrashReport.c */; }; - 64AFF6CA26961512224C877D3AC15DC7 /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = E4134546CFE760F7541AF4F3851E901B /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64A6A8A57572DD34C738AF5B476113D3 /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = 2BBD63C212911F5113769ED657A04A00 /* BSG_KSCrashReport.c */; }; + 64ED3A5FAA7E4FFB06957894BCEC67DC /* UIView+FindUIViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 733FEDD8017B2DDE7BCA6BBDF2D8B241 /* UIView+FindUIViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 650D89555B807E9AEC681EC6CD423A12 /* GDTUploadPackage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = AB7BC8B336978A727D8B9798D3960BD6 /* GDTUploadPackage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6515349D38E65E826803CF232D7FC207 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 84F69C57B313D77512C38C51B2F40A2B /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 654D121317BB160879402214BDA319E5 /* UIApplication+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = F57EFF2305EFF81E4002CF298FFC3C62 /* UIApplication+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65D9F74674CD1CDF569A77E74C5F26E7 /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = D75770D70B9176C24A1674970C0004EE /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6515349D38E65E826803CF232D7FC207 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = BF668DD35F7117FEFE217B1BEC930535 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65D1DC471DE56E0ADEB3C5CEDE68F150 /* RNFirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = 53D69DCFC390F696D399C4B414606A91 /* RNFirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65D9F74674CD1CDF569A77E74C5F26E7 /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = E9F7DBA2F2ADB56223D8FC71E44FC92D /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65DA5CA0B43BE1A8253C7A67256FC3C5 /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 9AB597237ED03CB3C5B0791C3310AF6F /* lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 65F229D488336A7011978AC0403FF917 /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 03915CA7C6FA1417CC0D88F12E484E7F /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65FACF736CEB2C1BB3F8032FB195D1A9 /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = C831AD93D1E9564ECE14E70441D6FBFD /* BSG_KSCrashCallCompletion.m */; }; + 65F229D488336A7011978AC0403FF917 /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 426C1C903F357DC2DE898B6998D0DD5D /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65FACF736CEB2C1BB3F8032FB195D1A9 /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = 60307B4AFB07C7D8EE7B8A6C85039606 /* BSG_KSCrashCallCompletion.m */; }; 6614083802E731AE356FA666BE7013FB /* FIRInstanceIDCombinedHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = BC9E7EEC35ACAA2457D991913A17F23F /* FIRInstanceIDCombinedHandler.m */; }; + 662FBD091B641AD64A0EEC25AA4CF07D /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27BB988E58B26A522972143B489F069A /* RCTCustomInputController.m */; }; 66527E65A382A6BB2FCAA7EA4E058755 /* FIRIMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FBFB7E44F8612A1D992ECE31DE32523 /* FIRIMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66636231DA050692C3D96586EBB31B15 /* RCTFileReaderModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 82D07583C91EC8C527B7562AEC6F0968 /* RCTFileReaderModule.m */; }; - 66CC88B008AEDCC3CEB221646298A72B /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B921268D193BCB0A43F7C215758D0B44 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66D8BF5DB0ED4161A11F83B0B4F3DB42 /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B3BC69DB1E1F0AE4CDA5D9513932AE8 /* SDImageCacheDefine.m */; }; - 670C1C9956D75C9518BF20641702A6A8 /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = A0462C15B6BC705D0E86F7957176B303 /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 66636231DA050692C3D96586EBB31B15 /* RCTFileReaderModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 77D6BC9496CBB29DC41F919B1A14940B /* RCTFileReaderModule.m */; }; + 66A4A7D00F1E4E2BCBFC150FAEB60E11 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 415C3BA01E823C90D60BC65AEB69F185 /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66BCA4E1A7DC44EE98D3FF1D1744F5CC /* SDImageGIFCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = D682A46134B9317FB89052EDDBF2A659 /* SDImageGIFCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66CC88B008AEDCC3CEB221646298A72B /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 062AE6550F080AD30620845DBEB0FCB0 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 670C1C9956D75C9518BF20641702A6A8 /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9EDBD3BEDF444E97BA7E052508D06878 /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 67CD6D758532BEE373D126154D26A0A3 /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0110C6251B29DF2D5A7919AB676C8FBC /* REAStyleNode.m */; }; 67EC503D6E3E390A859DB9AC74C64686 /* FIRInstanceIDConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 29EF9976E1FCCE2A476ABB169855179D /* FIRInstanceIDConstants.m */; }; - 67ED22D95C9FD71789906A1758236882 /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = F0144A1DC33A190BED1250780C291F7D /* BSG_KSDynamicLinker.c */; }; - 68A7AA629A26241F8759D2DAFDEE680A /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 26BF9F2222F478ECF2E8D83F8280F2B7 /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68C287FECA03B2DD27950AB838AB4FD8 /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E9C9D017230441E72524C75A4DE8368 /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68C6678CBDF5D435B8A2EC7AAC70EAB4 /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 744A8E9E8392FEC342780386C7F654ED /* BugsnagNotifier.m */; }; - 68D1F82292ED12F36C87EF8FE5916F51 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 67990EEF473097800E970FF9A56943FC /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68E76BCBAB48EAB43038D4508AD83530 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BD0501497EB1D2525E810D765BE138CB /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6911418079370F89A57E161AEF1725EB /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = A2145EC1475F7A3766093EAA79881B40 /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67ED22D95C9FD71789906A1758236882 /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = A2AB7A8A247219B30EBEDAB3E29FA7F9 /* BSG_KSDynamicLinker.c */; }; + 689F5AEB8C37AA795EDF57DE860770B3 /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FD4960E636E1EF34354A4B03380DB08 /* RNGestureHandlerRegistry.m */; }; + 68A7DB696C4216A15AE38A20288DE2B4 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = AC8F43EDEFC379EB58457C0B6156322E /* SDImageFrame.m */; }; + 68B0BD6F55FCCC49D648C321BD7D623A /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 777307D855D4921B8B3DA30B4BFB6043 /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68C287FECA03B2DD27950AB838AB4FD8 /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = A22A14F0FBD25D1D6ED85AAF2766126B /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68C6678CBDF5D435B8A2EC7AAC70EAB4 /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = B9F668C38D2AC42B82699C84A7F586C8 /* BugsnagNotifier.m */; }; + 68D1F82292ED12F36C87EF8FE5916F51 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 148980C89EFF8F652687014331586428 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6911418079370F89A57E161AEF1725EB /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 255F369A3756B80CD77447496371F192 /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6948C8D514B377447A15A08AD73DA213 /* yuv_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = AFD44A12524FAD7F225DC2368126A3C4 /* yuv_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 69625D349BD9A4F3C8CD4F3D996C8499 /* RNFirebaseInstanceId.m in Sources */ = {isa = PBXBuildFile; fileRef = EA8C0B67A692AC97697019F89486F73C /* RNFirebaseInstanceId.m */; }; + 6963328DDFC9434C2CEA20638C4526A9 /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DF239F485579D2099543B08E4165026C /* RNFlingHandler.m */; }; + 6989C980A34E97C31964B28A28B12E51 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = B76A6BAAFDF07809B2715060E43EB92D /* QBVideoIconView.m */; }; + 698B2D16FCF5E12A1AEF1EADEAEB109E /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 6318E4099A584F4D43F9DAC3EE1F943B /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; 699A3647F99D6D97EAE31610A587772D /* ssim_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = C56BBE4016E34220AA76571A0BB89A39 /* ssim_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 69C1353D43F198AC2F8FF8B06AF10E84 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4E129ED0E4C41D48F63CAF12143A13DC /* 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 = AF8A9CBAEEECA935A9171CA8E13DAC11 /* 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 = 916FECB97E3156220902918176505F1E /* muxinternal.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6A5C926A16DABC844336FB51F299A791 /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 61AA63660E6916B04FDE912FA8A5B429 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A75227A9638E3AD9CF6D469129D03A0 /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = 814D86E28D60E9243E49771E1B17000D /* BugsnagMetaData.m */; }; - 6AD787070E9F50E05FE1BAE47074CA29 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B66A14EEA57D04353FC41FCCE22BDABF /* REAConcatNode.m */; }; + 6A08091FDB521988F9EDCC9723456CA4 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = F19BCB5E384F48FB9A57967B08C70F4F /* RNJitsiMeetView.m */; }; + 6A0D2748750478853A7971544FB2360D /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3930DF44CA320210AFCD00EDF24C3008 /* RNForceTouchHandler.m */; }; + 6A15E5F4933916001AFD257AC5B29A1B /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CC89BB934369B19B9F46D39A46AA58C /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A37F100601DE67590E35A3D25D821D1 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 74D4650E4F3520024D7273E68F8EA369 /* UIImageView+HighlightedWebCache.m */; }; + 6A5C926A16DABC844336FB51F299A791 /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E54F978444A7CEF84EE02DD3AAA36A72 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A75227A9638E3AD9CF6D469129D03A0 /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = FD725E3DC813EBE48EE6AE23395DA6BA /* BugsnagMetaData.m */; }; + 6A7893ACD4924F81F6774A55884CCB24 /* RNFirebaseAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F11F570308CDC853BABBEC38D47572C /* RNFirebaseAuth.m */; }; + 6A7901D5438782D99EB32AD95AEC6F6F /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = C4BBC310691D1955EABB6CCD8E2335E2 /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6AC01B956D5D44F3D08EB935A928DC56 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = C7B6461DDADD7F645B46FFC393866F9E /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6AF54979B8410B311076E6D99ACE9227 /* FIRInstanceIDTokenOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6687C4365A4AD7F30B423DE9083B9ABF /* FIRInstanceIDTokenOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6AFE02FC6D56C37DD0B85369678D68F1 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2527DB628E9DC404A797B079C37E4DF7 /* 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 = 073E8A3CD06AB6BBB7F2FEC7E54F5E94 /* EXCalendarRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B3C12BB17B7D3DE4D451143417A4FCE /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7D01979664B40391BB52275159EBAB7E /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6B522302A9BF66638B95BB21EF10F035 /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = C809FF26F15281FB86EB559F471601F9 /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B690A1AD450BC998489A93D3DB119FB /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = B40741E4D0355C3E8580FB4615BF911F /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B987FEE83345F7C546FC3C8F4039225 /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = D4B411DFA781143F4EFDA63B4BE25ED6 /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BB06CB7446BCBD59FD95F327DF028BF /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C0F9C2B70B66E383889AD66C2E4E0A9 /* EXConstantsService.m */; }; - 6BF1678A17B31EB9AFCD005231DB87C0 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BAA2F72DEB9C7595D3A84FCBBA90499 /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6AFE02FC6D56C37DD0B85369678D68F1 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CB72724311908317E86E7679E0EB38B0 /* 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 = 0FD69AAD99CAD6A9F1FCCDF4C1B7FA7C /* EXCalendarRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B3C12BB17B7D3DE4D451143417A4FCE /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 88CC76C7B3F3D5DD730A169F26DF8B7C /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6B522302A9BF66638B95BB21EF10F035 /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = 898A64B1A8A41E76DB7072DB08974FD3 /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B5BF2F5DFEB5BCC1F0B601FB69D4B61 /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 32CFF873DF3097D76C880151012A947C /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B690A1AD450BC998489A93D3DB119FB /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CDC53720F88761FFEBBA22F25FB5359 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B831BB0A9883DA0B6EC69C7BC01C8BB /* RNFirebaseDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D94FBC1079F7E257483B299E7C8C892 /* RNFirebaseDatabase.m */; }; + 6B987FEE83345F7C546FC3C8F4039225 /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = DA2E1D5D2151B6E028039E086377861B /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BB06CB7446BCBD59FD95F327DF028BF /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = CA94976BBB1A2EF6CDDEA7C1D01F25D3 /* EXConstantsService.m */; }; + 6BF1678A17B31EB9AFCD005231DB87C0 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 661F03944A7D3C41BEACEE82E89C53AD /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C22640B5700F54A8782D9863B890045 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = AE882515169016DBF6C94EB428CEACF8 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 6C313331E905110E725915EB39D5616D /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 614EE224B841DAED3A4E58F0593361FE /* predictor_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6C50E9571D234D7FB4B03B8FDDBCDAD2 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F3E0A3E9EA744F62A7C5F61819FDD96 /* RCTTrackingAnimatedNode.m */; }; - 6C6F8AEC5EEB35E7732FD5687A93B5DD /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = CBCD8EB01BC31B1ECEED391EEB3E7088 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C8A4C64FA432565E4D72C641396D7C0 /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C874F643B7C3F88D72A2A4DF1CF2A46 /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C9136BAC4C4CF4F42855DA934446168 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 33E0FF5D0ACF793E0C3B6B89A16808E5 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D11C841CC533D91B06FF4EDA76711E4 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = D3E1FF370DE1C55EB660BD7C86F8DCD3 /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D19B2B283036AFA055D9D8F34E166DE /* RNFirebaseAdMobBannerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C3B7059B68C5F008E579860896BF1AB /* RNFirebaseAdMobBannerManager.m */; }; + 6C50E9571D234D7FB4B03B8FDDBCDAD2 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4967F3875B9AFACFD314B94A3352D8DA /* RCTTrackingAnimatedNode.m */; }; + 6C6F8AEC5EEB35E7732FD5687A93B5DD /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A0D8670A8F4F0002D6099952104E081 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C8A4C64FA432565E4D72C641396D7C0 /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = 26D28BA05D94E0E8DCFB49CD3794A884 /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CB2A53FFE8F661C8CE4FE65ED6EF44A /* AudioRecorderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A00C194F97F81C3428B538B51E2A782F /* AudioRecorderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CB39C8B4A6830D3E5B5AD7D62A3257B /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 037A48AE57AA6B3C75EFEAD196441BC8 /* REANodesManager.m */; }; + 6D1922AD2D5B53AE36209F7737739C13 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 55EFBC31BDC682BDE52319F571FC8B49 /* QBAssetsViewController.m */; }; + 6D3F9876A7B825A3F91F52967D03CB4F /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = C7C5F0144054BF042A76CE92B837EE3C /* SDAnimatedImageRep.m */; }; + 6D5CA15D3A9F16A3C1696E64BE2791B2 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = DA46B0664E3A7BB9E473F604D77A3A5A /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6D6306B6CBB2485CF0C8E9A187068EE6 /* FIRErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FC4EA51D4334A74F17991DB1D8CCD57 /* FIRErrors.m */; }; 6D71A6D5CBB1BDEE1413910216E73651 /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = F366F5022D2BAA995F22199BB3C69715 /* bit_writer_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D809E0A2AFBF0B3E07F94273FC75917 /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 005BC469630F6F7D66610C867DC586BC /* ObservingInputAccessoryView.m */; }; + 6D82A28EC10650BD00BA5932A280A416 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A32AE1FB919DCA6398458A35DEBF369 /* RNDeviceInfo-dummy.m */; }; 6D88F77B9828718B58B8F3C1C5D7F8CB /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D385CBD7A2F9A9DFCA2BE01040EF91A /* GULApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D9AC7F4E7907FD379B9441EB51BC46A /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 545145E75CC7F87054F8129F9D6AA8EE /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DA0FDF01E36A0086FEF24EBB996C56E /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 249A16AFFF0ED3697855E03BDE93F40D /* UIImage+WebP.m */; }; - 6E2E77315D9F40E7E3F4C34327468B56 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = B9F64D87ABFA34CCA549E3A416E0072A /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6E30F4324AE4B253140A26ECAEE5174F /* GDTDataFuture.h in Headers */ = {isa = PBXBuildFile; fileRef = A3CE88F6F24B9C3D2A67337E6C9E73B6 /* GDTDataFuture.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E3400348EC1A3F1C9A6F2D25AD41F5C /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2641C911F6D6E4D1F425009DAB0C1FD9 /* 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 = B9295502C8E57344C28AE10125A0D9E3 /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E40AB6CF0A80BACC8B38E08EA277FE3 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C5DB5852C6DBBFDD90861989FCF5E7A /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E4BF7852ABF14FA7AB8EA27DFA8AD13 /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 61F47A738145109F37BC5439CA43A250 /* RCTInputAccessoryViewManager.m */; }; - 6E55FBBBC6C40D0F914F54D9EA686E61 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5516973A0EC1C04480B65F7E92BC41F6 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E796D4A11C7CBF2EE4CB9D202FCE9F9 /* RNFirebaseFirestoreCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = F4A67157E188E6C729E2688D88DBAD4E /* RNFirebaseFirestoreCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E3400348EC1A3F1C9A6F2D25AD41F5C /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CED7B95E4A78B2AD74DB8526ADD32676 /* 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 = 031092BE47CEE783A63FE732D8DCA106 /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E40AB6CF0A80BACC8B38E08EA277FE3 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 159C23316B64E79F2A8F063074242D3E /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E4A80096B0B2DB15D266966F413266D /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B59EF3CA58F8B1D0A9B97CBF8626C28E /* SDWebImage-dummy.m */; }; + 6E4BF7852ABF14FA7AB8EA27DFA8AD13 /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 25E8D94BF8D71ED99315114105FB7E17 /* RCTInputAccessoryViewManager.m */; }; + 6E55FBBBC6C40D0F914F54D9EA686E61 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FD0B65F93BBF3D29E1F13C7E482877E /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E65F0987F2C575C2F7B62E21EA29F13 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 68BAFB9E39C43F2EEEFC0BE5F3B9F6B9 /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6E9BFAD5B692CACAAC407E94819C5C8E /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C4674C2EA2CC570B332217582E8F8A5 /* cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6EC711E581E00F8C6B5FF05427D713E9 /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F078F24ACD9A1D9BC8095075A2E070A5 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6EEE024FC170587CCABBA893793DA0D5 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = A51A983258F0D553ACDCFC3621672FD5 /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EC711E581E00F8C6B5FF05427D713E9 /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F5A1D2A2181A3CE2E6F5A205B199A4D2 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6F4258691BBFBCBACDBEB1CE07169A3E /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = E46CB1CAF8EA7964EFA29B3CC90A369F /* huffman_encode_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6F4E8B663EB256B775EA2F06FC361A76 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = BA0AD95D9B63C03558D2620776EB94CF /* rescaler_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 6F8DFD8C580C2707F7B8F04ED1E9EDDC /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 57AA80394B12EA09B73F02C901B209C9 /* RCTSinglelineTextInputViewManager.m */; }; - 6FB986CFB85EC99DD203D0036FB14B76 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 262DEA6395C5645E1DD66157F9034448 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 708413DCAA0BF70AA7E279ADC4B3712F /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = CBAC4A58CACE4D055CAD511ECFF72574 /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 70C118C7502A16753C746515F819E801 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 027E90B2E827C026B2F0237B4E501353 /* React-jsinspector-dummy.m */; }; + 6F8DFD8C580C2707F7B8F04ED1E9EDDC /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 04455DB3BC054DF6D56C6BA001B5A7CE /* RCTSinglelineTextInputViewManager.m */; }; + 6FBD05BF831AA760226002C4ADDE10D3 /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46D44A32F0EB4AF27997E7A836AF2409 /* REAOperatorNode.m */; }; + 6FC04935571C21478EC157B715438951 /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C24F2D232EB58787DEA2CA30758659D6 /* RCTCustomKeyboardViewController.m */; }; + 6FE90C9F9C673C6B799AD612E9B10074 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = E8538B57397E0EBE516081FD6AB6BFC2 /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FF758D08BB2E224DB1665885D61A5D5 /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B3BC69DB1E1F0AE4CDA5D9513932AE8 /* SDImageCacheDefine.m */; }; + 708413DCAA0BF70AA7E279ADC4B3712F /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = D5065EADC6A4E0E4BD0D987857BA04DC /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 70C118C7502A16753C746515F819E801 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8884711445A12C0B14C2DF437F3EEFD4 /* React-jsinspector-dummy.m */; }; 70E4098896C59ACF3FAA501809F6C871 /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = C90497D51FA05FB28EEA809E24218800 /* cct.nanopb.c */; }; 70FAC5BC128DFF5CD80CBAB721D7365C /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E5E58FCCEBA49B80A23B5C666A867C0 /* picture_csp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7120FE19E3692AE27614B02AEE3330EE /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 88393E8369B47087272393526F8E3BD8 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71198F17B3DEE933A0C34D2CACC93AD4 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = F3BEC0B48A4079D97A09C0489F762EAC /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 711FF77D7CDFB3570001A7AB723737CE /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CF7967DC82F7EC57B857DB11F4FA8AE /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 713D5224D5B84D236054CC91E7529C94 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 83BF54DDED3A170953CABED79380A53F /* SDImageLoader.m */; }; 71563A590B4A408CD38D24B12C2EB8D5 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = A3A07008413FB1170DDEE62B18A5EC2B /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 717BB18A43554B45B82D4E9A4C671EA6 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 37006D61CD175B673FEB9953C5756E90 /* UMModuleRegistry.m */; }; - 71A6A6CF25B2236EA8C71282FC82E952 /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E625706D264318EE4B3D85897654253 /* react-native-document-picker-dummy.m */; }; - 71D34459E829DC30B72D6FD945312A9F /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4012680413DA1D865421D65EC764BC7D /* 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"; }; }; + 716BD76790D5CEA0DC5765DEEED78171 /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 580BC6FD478957654C4352DA4270E025 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 717BB18A43554B45B82D4E9A4C671EA6 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = D5050F9FA6EF770BDC0BA85B547449F2 /* UMModuleRegistry.m */; }; + 71D34459E829DC30B72D6FD945312A9F /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 45B386987E971282C4135DE079AA4C5A /* 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 = 8F796D76C61E14B0B17E5CA9360538F1 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71E4F9EDFE94295A9F52BC65469C4937 /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 33EEF8A74FE15E3B8262554D8BFB7C5C /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7219BDA57912F639EDE3430A5F74DA01 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 1428E0C6D6E05B3D675BBA4B17AE77CE /* quant_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 721CCB80FE551F890EBFFBD7B6BA80D0 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = A8F75DE0CDA238306BFC8DF0E2DC9F75 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72207AF9A2D03E8CA4210385C522F56A /* RCTImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 59211F6BDE83CD47BDC7A101632B218E /* RCTImageViewManager.m */; }; + 721CCB80FE551F890EBFFBD7B6BA80D0 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 95AA6E8D48E806E9A46EFB3DF6644B7B /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72207AF9A2D03E8CA4210385C522F56A /* RCTImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CDD45AA3C601E1A3A45A712E8A9DFD90 /* RCTImageViewManager.m */; }; 72238A727023831852BF9A8C9B83C49E /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 58F01E0DA9B45DED9D4F770B19A26A32 /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 722BF027563B1378E4BF629A83137812 /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = E0224C0B2583436EB8BEDD12EA61A543 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 722BF027563B1378E4BF629A83137812 /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = D02ECCE46323D1937AF1BD582D5AFEB5 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 723874281B7102822C9263F25B4E9AD1 /* common_sse41.h in Headers */ = {isa = PBXBuildFile; fileRef = A789BCB1B19C7F2CDE89F3BFAA434C8C /* common_sse41.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 726FD782FDB88CDECAD9C1A7989222C2 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BE5ADA48556BAE6A528B69D5DA29258 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7271CE173FDE85DAAA8CFCAE786F7774 /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 10527EA069F37FB4FBAFB253864AC87F /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7281FD9F17AEE1BC32D94733E8702C03 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D767267E6C3C9289E8D7F0FCE6A7EBA /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72938CE2CF79C1AB1EFD9CB2D676968B /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = BF4A954F5F1AEB45D11A42BA42FD62FB /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72A39C877D50E4BEA0F3125E9AB143B4 /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 6520D5F39B4FCC1EEE251141F081ED40 /* RNNotifications.m */; }; + 72494C26A7F05205DA1CBFA4606E546F /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = C6F52C73A69547A8F79B0ADD6616B8E2 /* SDImageCoder.m */; }; + 7265F7B20B99F28D87B5BB1C4DDC3B35 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = A744A3A023AB3CEE93418334F39F4C2A /* SDImageIOCoder.m */; }; + 726FD782FDB88CDECAD9C1A7989222C2 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 76A738794D31D885B111B85A18CA1CF8 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7271CE173FDE85DAAA8CFCAE786F7774 /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D0AC2D50D7D2C791B08AD60C6B17CA5 /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7281FD9F17AEE1BC32D94733E8702C03 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = BF7C8D82374ED918C8F4EC3C2D81AC16 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72938CE2CF79C1AB1EFD9CB2D676968B /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = DC92291832A9A80C8FEF22C37FAD5B20 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; 72BDF84A85955FC2E2BE3DBE9395CEC2 /* FIRInstanceIDCheckinService.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E6F4ABB26BEC546C406085DFA89BAB2 /* FIRInstanceIDCheckinService.m */; }; - 72D6492D149516E3ABE5E287691D1182 /* RNFirebaseInstanceId.h in Headers */ = {isa = PBXBuildFile; fileRef = B196CDA4EB6FD3838DAE6A83724ED8F9 /* RNFirebaseInstanceId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73049461ADD258899179139C9863A3BF /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3216F8147EDF38C0ECE3396AEA3F4635 /* RNGestureHandler-dummy.m */; }; - 7317B40CB3A8A0CFFD15A59BFC59C304 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = A0C318184648BBC609663DBC9B2A73DD /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7319A3F06113062284F479942B40FC7D /* GDTTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B19ADD5978A26E9F7AF6C3706F00ACA /* GDTTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7330EDA8FFE2FFB6108BD38FD271465B /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E7AC849DB321BA7905B3592CFCD745C /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7330EDA8FFE2FFB6108BD38FD271465B /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = DCF6C088310EEF30275C9C3B4DBC9F25 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7351B6E93BF34663CA0551A948647BC6 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5AED658B9BBE1DA1AD0B2B7A7E2D5BA2 /* 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 = EDF98F2A7B780B4EB26AEEE45E9BAE4F /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 736E35BAFB0071DECDA8619C52CD5A34 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EDE5499A2030945932C276366A4F22D /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73B66CA537D75EAEC7AA15EFB4281366 /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = EC98255645D800D93AA313FBD7A2C65C /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 73BC222F96DC7059E988EC0D2EB7779C /* GoogleDataTransport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EAE60BDB931F4F21378EB2E3AAAC3FD /* GoogleDataTransport-dummy.m */; }; - 73C40A83129D4A39779C47D6F3831BFC /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E49FEDDDD4417AC7155DBD9401C4C9A /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73C40A83129D4A39779C47D6F3831BFC /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = C04ADF14DB99C7990B47F00AE3C4E79E /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; 73E56E4F2078B208F760010D1C081DD5 /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = BBF36F839AFA87F8CEA19E8669A7D4DE /* picture_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 741A12B997EF965E34AEAFBA94A51CDE /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 349B303B05BB20373D3EEB2EC8058087 /* 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 = 788DEE98E3CA1A812D1798E35B6DFED0 /* RCTBaseTextInputView.m */; }; - 7444A40B1B537F90C7C63E07F94D1518 /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = A0A6C0C98A5E837EFE58CDC4B7EECACD /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74549267BFEFF05E61F6131068DCD5FB /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A763DF3AB18E74C80668090681ADFFC6 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 747528194EA554B8A2DCD66DA63D1541 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A5A425A0ECFE22EDBB587C1412BF24B /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 748F9A036CB366852DF989F8C9E7A4A0 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 74D4650E4F3520024D7273E68F8EA369 /* UIImageView+HighlightedWebCache.m */; }; - 74C4457E703A0221A86BC51224C34F34 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = A5950D78481A135EEE8D46816F77759F /* UMReactNativeEventEmitter.m */; }; - 74D5A67AF1B5CD8D5F70D4B21B377940 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = 018756ECCADE640B4D5FAE732E732ECF /* BugsnagCollections.m */; }; - 74E6B1A9117E10D900B596C8D8769C40 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4C2FEABDB84EEA3D5D959A81F784F46 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 75239529D9A61FE779143E836E4C4EAC /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B0FD580475D1EB5A921C9AA90FE0C0A /* REAFunctionNode.m */; }; - 7530B9B32DBFEB2F4C79083FC1D58972 /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 6249CB308C9D6E64F30262E644AF980B /* RNSScreenStack.m */; }; - 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B194B571DE62CC8A6C06351641F9EA45 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 741A12B997EF965E34AEAFBA94A51CDE /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 044393F552A853D58562756BD01C24F7 /* 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 = 98738FC7EF9E6C189DFCD03F8F0586F9 /* RCTBaseTextInputView.m */; }; + 7444A40B1B537F90C7C63E07F94D1518 /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = FDDDC2FA9F4DDA2DD7852488C0CE7446 /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 744F6FE700AC897DC7D1755A132AEBF2 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 375519D93ECF9CF39780B72B9BF6F8F9 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74549267BFEFF05E61F6131068DCD5FB /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46C34CAB6AAC0E0EB79854BDD52EA02A /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 745F8A401022814F8ADC2FC6A74AC43C /* RNFirebaseDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 683059112877707E522BC088D2CF1657 /* RNFirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 746A438AFE2400D25E5AD34D3EA23FE0 /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C90957C7667D5B970F4C8D60145A5B3 /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 747528194EA554B8A2DCD66DA63D1541 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D4612EC95007C01427A34C2518E174B /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74784B99C1D415BBD5E340C94790771D /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 731770A748AEAEC1DE4DC296EE81C262 /* es.lproj */; }; + 74D5A67AF1B5CD8D5F70D4B21B377940 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E5A68431CC08DEFE993FF0DE9CF6989 /* BugsnagCollections.m */; }; + 74E6B1A9117E10D900B596C8D8769C40 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2ECB2C5504539A433653C059A976740E /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 74FBF6D41E92A7AF6B12A11DDA54DBF1 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 64C97CACB57042717A809EDB0DF68C63 /* RNNotificationCenter.m */; }; + 7509BF17FEA74D4B07021F4BB62EB49F /* RNCWKWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E706CE3149E69838539A935D471359EA /* RNCWKWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75505B0473CE52D1EC6FD0662927D4EE /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FCAF76084323F3656DC28B8A4A5F326 /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C56082C206BF8B76E902D42B784C1DD9 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 756C704F3468D971059E9D9E6F2A4AD4 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 149234285FE52788DC286C2C1D089708 /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7570106BF161102128638495CAE72BD2 /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 619582124D825EFD58499AE14122B7BA /* GULSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7671DE80D363A885CCD01409AE9AB7E8 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AA27D3D45E7947A6CB774F5D94FA3B0 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76966825AFAC7780BEC02DDD768998DE /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 98A5BCE524F6789D52CAD863DFAEC38D /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76AF9F9853821414CBBAF755E1EE9634 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 08049A44DC9E04D54FCD791584970ACE /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76966825AFAC7780BEC02DDD768998DE /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E9EC060AED3BF6D73D4CAE2EA0E4653 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76AF9F9853821414CBBAF755E1EE9634 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FA11A77806199EF2A7B33609893BBBB /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76D1C4D23092C8C69F0FB8B8A8C0F5B0 /* GDTPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B3C64D8E7C1BDC8E99A1ABF53D7CBDD /* GDTPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76F10CB96CF716082D34A52B2D7C1ABC /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E18F368109515B0C907BB2AC768E68C /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 770616B87C5433432ACC19B941AADCB3 /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A5EE0E2BAF40FC2979AB4D85F3609396 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76F10CB96CF716082D34A52B2D7C1ABC /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 17644A6B0E396AF4AD0662B27777DFF8 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 770616B87C5433432ACC19B941AADCB3 /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = FBD79F3E8B7334FE5D9E4C46AAC88A28 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 770F6A0BBA21C9FD5198F2B515D23673 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = F208206AA517C463DBC7F8798068446F /* types.h */; settings = {ATTRIBUTES = (Project, ); }; }; 773DF3823FEB72512772C62E4829E473 /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = F7B56AF292E8F7D5A9C9F485FF4716EF /* GULAppDelegateSwizzler.m */; }; - 773FEBE5BE25C0B804379C17F12165B7 /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 35072EFDB0C5C95E680212953EF13E30 /* BSG_KSMach_Arm.c */; }; + 773FEBE5BE25C0B804379C17F12165B7 /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 3FDCC8ABD7A67A253A07EF146FF0B6D1 /* BSG_KSMach_Arm.c */; }; 7767C0E3952BBC08D1308CF4E06820F4 /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = EA5FFEA91E07D363F41AE15ADD8C866D /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77AD9460D53CB483F7E51FF86FA1535D /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F5B77C064B8778CAB3C2D3942D31337 /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77C74C9B2AF8379451AF689E364BE9A5 /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BBEC13B79F27D6ED869EBC9DE30FDFE /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77FF9BB47342E906B8686B495917F32A /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B638966B546BA1004E64E67CF3EBB70 /* RNPushKit.m */; }; + 778A5738B819A022DED1FE00F7C74ABF /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = 099698855A327030936F87CEC20A807E /* UIResponder+FirstResponder.m */; }; + 77C74C9B2AF8379451AF689E364BE9A5 /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C62974E05057B212D7CA11B18B225453 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77DEE4A9F5F1BF10930B258677445AC7 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 27136D2D6F45008E8D66DE0E18B49BB3 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7831753803D3307385C9EE8489298C10 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 538E1380F02205A6F58F796C494CF55D /* KeyboardTrackingViewManager.m */; }; 785991A68E98C37DE3C394FCDC94C615 /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 70060452D67BD5EB97DD07492D5C0009 /* filters_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 786D43389C40CF3C88DDC9236259B1C1 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E0B17FD3C13B86EE8975CFCFA8456761 /* RNTapHandler.m */; }; + 78756A15BD7FAFFC65DC14928C77CA27 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = A6B606BFDE50C43337BC6D7B158FAD3C /* SDWebImageDownloader.m */; }; 7882A0C218AB456334FBE9D8B43C6D4C /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 818C1CF8DB2C1051B3F456E59957FCC9 /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - 788433CC790A9524243F8920E6A93DAB /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 97FD81BBA20148E68B95E54C61AD992F /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78BF1F947D28284C6C5B06636B83AEF7 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = FCADC8EB4C6EEF0EC86B28E9D528817B /* EXAudioRecordingPermissionRequester.m */; }; - 78C7BE01307B56D8E27C8D4B623C74F0 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 520578A5F116585B434402D0843DFE42 /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78BF1F947D28284C6C5B06636B83AEF7 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D63A93F7ADBFA07F80E9681BCDDB72E /* EXAudioRecordingPermissionRequester.m */; }; + 78C7BE01307B56D8E27C8D4B623C74F0 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 248035685EB19D1B3F5667BF8645BED5 /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; 78CEFE0EA22D795E0505D916879037DB /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EB0D3E0EBAD4857DC375821F6C639B7 /* FIRComponentType.m */; }; - 78DE67B45F339DA196BB808123929918 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A9850902B2324332C3208692F49F11A /* RNGestureHandlerEvents.m */; }; - 78F5673FB2E5D7BBE1FE9F0EC7C1D9B8 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 31554746BC6159F2CADBE263BFE17239 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 793686E6F8F9D34CE66F6FD40B0AD062 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5386540EC5258D7E7F849C9E8E1DAAFC /* ReactCommon-dummy.m */; }; - 79408783455312BF09818A9821A0E821 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = 76B1A4CCF35779C9E2ACC3E5D807D236 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78EF4351C660BF653179E4C345408F04 /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DC693D103150FEFF9C68DEB994CBE35 /* REACallFuncNode.m */; }; + 78F2D3E258BE2CA611731445F337D6E9 /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5566964AFCE43B80771F95B85FA4C68C /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78F5673FB2E5D7BBE1FE9F0EC7C1D9B8 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 50EDF2247D0E2B94B1E4D798890BFC72 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 790B06A400EAEF418D89FA213589513E /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AA6D5CB12274E3E0BAA73FEA0B758A7 /* RNEventEmitter.m */; }; + 7927B8A57D7C0B8F77737CB047B3209C /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = DAC88AD06AFBA35B7614B2892CE1862D /* RNNotificationUtils.m */; }; + 793686E6F8F9D34CE66F6FD40B0AD062 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 621E16A73348549B7BE9353D22D6702D /* ReactCommon-dummy.m */; }; + 79408783455312BF09818A9821A0E821 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = D7DDA4B923909E2ABB26250538C84B76 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7956F82E4FF2E7C95F619C7D46C46EC6 /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C664245E83B7E6B08825366B395D2E9 /* demux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 797DD49F88C7649EE8E4BDB9DE7FC7CB /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C32D9BF00B81642F8B3EA21697B0DC90 /* RCTModuloAnimatedNode.m */; }; + 795B1CBAF4B0CBBE30C8A0BE544C16EA /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = FFC5ABC27E695D934677BECA7F9216F6 /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79782026EB4A7CFD97D18887D4A69187 /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = F12C31B209356772EBED28609068E257 /* RCTConvert+RNNotifications.m */; }; + 797DD49F88C7649EE8E4BDB9DE7FC7CB /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E8BA406F1554548B86334FEEA49CD21A /* RCTModuloAnimatedNode.m */; }; 79D771190DC28CC5FA02B46AAA902880 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 1D3C3C38EE9A9D054EF043CEAB28068C /* token_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7A811D78E1C0BDF618A788391D1EDB9C /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = A0D1E2E71A5DEE6AFA783575E6E4F9A8 /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79FEF77F2B50481498F13E270FA06498 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = B9D027B630B02D7D423D5976C3AA1D8E /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A7FB20030460975DBD48FA2D446C441 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 39F1D6B5BBF0205EE9E40237497EF704 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A811D78E1C0BDF618A788391D1EDB9C /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = FD9CC0B318912FFEC6798E5431C6C273 /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A907775D8693790C443C198381D1025 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = CB5AFFF5AA989115573980515B16C98F /* webp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7AF24937D7341C2A66D668D181E52E4B /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E42DFF5D2D504893A52117043570B29E /* 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 = 49CF3A11E5181DA8ABE51009D71CDB6B /* RCTTextAttributes.m */; }; - 7B1ACF015C0596D4C32457CF4A4588E8 /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = CC191D45EDDC88508CBD0A193A27FFF7 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B55C57DA5E1D5ACA52260D3029AD5E7 /* RCTFileRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A20C907D6FD0AE8AFB94779E776E8E1 /* RCTFileRequestHandler.m */; }; - 7B64E56982CD7C9C7729CFB57B7ED281 /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 95321D22E8C964DCE9A3AC29C4ABED29 /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B80BB9709BB2CF9B1F4746EFDDE6110 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 524D7B4F89D6A468AB8F84089F026E1F /* 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 = 7E0062B09494B55074D1C5906D3AF2C0 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BC5D031DAE944FEB8B8592C0ECB8254 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DA314410DCCCF798F8D1245B85E59FA /* 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 = 99CDE548697338314717AE0E6134FCB2 /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C0E098EFE7EB53DACA3FA5E93BF77F4 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = A913C19CF60D9CF747C88410F3753B03 /* 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 = 568323E31B4DC8CE5019B9C73AD200D2 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AF24937D7341C2A66D668D181E52E4B /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A87AC62844575266891A5467856DA092 /* 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 = 0EE37BEFEC43603EA71DA17AD6DB6EC8 /* RCTTextAttributes.m */; }; + 7B1ACF015C0596D4C32457CF4A4588E8 /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = B7CD90ABFA5CAD203DECF9778DF221F5 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B47B5C1E117C44D046318E3D42BD8D6 /* BannerComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 53CCF119E6E87F4352F1C3330BC95C59 /* BannerComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B55C57DA5E1D5ACA52260D3029AD5E7 /* RCTFileRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = CCA72E64A0F57F58993904DBB63B6CF7 /* RCTFileRequestHandler.m */; }; + 7B80BB9709BB2CF9B1F4746EFDDE6110 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7AB55ECDCC1B343952FDF3AFD1C899C7 /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7B8479CBAB465FDB5E5A183D79269CA5 /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C7082E79F2AAB8C5DFA3C141991F6634 /* react-native-background-timer-dummy.m */; }; + 7B98535A8C22F503BC7B0AC71AD79763 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 95C99A3FFB6500F1978BD60C43BDD8BD /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BC5D031DAE944FEB8B8592C0ECB8254 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = E1E2E32840FA665638BC0BDAC13FD8BF /* 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 = 000EE617F442AA338B46300173F67B79 /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C0E098EFE7EB53DACA3FA5E93BF77F4 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 07E7EC48E22A55A891407DDFFFC66381 /* 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 = 034BF2C44FD02FB17FF3F13F5D6A2AD0 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C2A67008A35621FBF38CB9C2D078C22 /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EFA17A1611483E4CAB28842BA66A59F8 /* rn-extensions-share-dummy.m */; }; + 7C7CADD66F525289C297AE184A6FDF5D /* RSKTouchView.m in Sources */ = {isa = PBXBuildFile; fileRef = D242D9E89804010D15F96FEECDDC22FB /* RSKTouchView.m */; }; 7C87A0BA4406932C036C25C471937D6D /* GDTRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = B505E3E20E9E415F54A53A88DD9B0464 /* GDTRegistrar.m */; }; + 7C89C234A3184FD5F79B0B7858B84CBE /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = CFDAA17195D4BBD9B343F6A16B797EC4 /* LNAnimator.m */; }; 7C9959418FC8DEFE5344262BE5E14C57 /* GDTEventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 439E3B1335B2E9CCEC4C49687CB5BABB /* GDTEventTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C9F0F588A7354BB1EB8A568061BDD19 /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = EB0772A091863E29F4B6FB5D7FE1C8F7 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CAEFB5C526733012F28D11B3F18BF7D /* UIApplication+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = C5963C328E7C3559A3F4E49F6284D75D /* UIApplication+RSKImageCropper.m */; }; - 7CC70440A76A2C6E9F08A1C75BCE5503 /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 61F76F2B12CA5ED98EC7DE96FD36B393 /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CC8556D44DC05010EB50BF43883B967 /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = D411C6E983EA5D486B179BEF94DE3729 /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C9F0F588A7354BB1EB8A568061BDD19 /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 44F9738EAD6E7B2FDBDFCBA059106659 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CC70440A76A2C6E9F08A1C75BCE5503 /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = BE305D50A851A552CAE374BCF1D4F77C /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CC8556D44DC05010EB50BF43883B967 /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 62BDA27416F0DA8CF8FFA27D15F81424 /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7D0FEEC462C260D07B9020311037887A /* FIRInstanceIDKeyPairStore.m in Sources */ = {isa = PBXBuildFile; fileRef = C4ABEED1209A2F9E1A8AF5F5560F17A7 /* FIRInstanceIDKeyPairStore.m */; }; - 7D1589A8948B1939840F47E127148579 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = E047A854D579C83DD483BCBF81104986 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D3AA7A70DA7DDCE7FC0B4238C9DD447 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 43104A491C9DF0BD0AEB9715B949B9A8 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D7955B85A6F121668375E01460DAEBF /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BDBF74E8AE5B9F337FB2345862BC53EF /* REABezierNode.m */; }; - 7D819301BFE77D37A00BAAE737F55116 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 445AC29FAF9E4FBCA3A1FD7ADB84CDCC /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D8644970A1D687E8DE490D081CDDBC5 /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = 763804BFF9B43FAC3F6E0962685F2230 /* REANode.m */; }; - 7DF6EE30D791A79DA94E4D4E0B96A2A7 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = C5E0474C43CB4DC755D7FD8CF4B490A9 /* SDImageCacheConfig.m */; }; - 7E0089C6834F13618E371CDBF21ECFDB /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 09E8BDBF03C2CE0E0637E1E405CFBD21 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E43F692E64E101B52817BC5B68D8E6B /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = A75A85102C13352816AD523CACFA9AD7 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E7124056E5C06DD2D8BEC1926598CD8 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E697EBFC2737E291BF40BD6E0D7E8A7 /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D2C70695A3A8E32A12C640BF348CF6E /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = C60C7CD3A7A4ABE97A9B002D3D67323C /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D3AA7A70DA7DDCE7FC0B4238C9DD447 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 96F530C4CBF8BAADC5076ADD050B5A0E /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D819301BFE77D37A00BAAE737F55116 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = AB2489B797C034EA15440E2359F3B894 /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E0089C6834F13618E371CDBF21ECFDB /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 02A0229394953FB8D15C30C1E490DAE9 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E7124056E5C06DD2D8BEC1926598CD8 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EE294603FDA5FE8E479D40E580BFCD5 /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E99C537DA1860FCF8A01749AF2170A1 /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C3AA4CB7AC17CEF05DFB7A28CADC8AF /* react-native-jitsi-meet-dummy.m */; }; 7EF283AB71EC430A672EF05EDFAC61A9 /* FIRInstanceIDTokenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F26D92BC9188533EC4BC0A385FC9464F /* FIRInstanceIDTokenManager.m */; }; - 7F2BD806FB73919DBA35064DACA92472 /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 96AAFEA40C907D7186049F7947993ECF /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F6B1DE969ECB7758AD1F8339724ABED /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 771486F1326B18E61A4C88B609EC7B9C /* 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 = 60EEF2C7C62A445988B325B0912042FE /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F6B1DE969ECB7758AD1F8339724ABED /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4CE9E319DBD115CBABDF32645507EC8C /* 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 = EAFF7DF58471BC362F2D2DAF2215797F /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7FDA2E290B7302CCD1F95EDA0B57AA51 /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 467333A9ACE774CF8AA2FB7428A96541 /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7FFE3E50F543939A64CFB94D5314A518 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = 8612CD6D1972BAED1FB3DDC784637F7C /* yuv.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 801BA1A20B42239767B084DB6B851E23 /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = F28D6C4FEE0BE4BF51AF475A033F11F2 /* SDInternalMacros.m */; }; - 803053E81096BDE4B074A94A935F84BA /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 026242D775D0D1C6C5C2064BA17FBA1D /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8075DC731E37445F52255CAA3A228522 /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 03D03E5D8E11BC46FA4CEDDA928F825B /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80A90CD919B2B48773D864EF170C9DAC /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3676A972801F4861E5D0485DE7C09E39 /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8022D5C496701EA42FBECEE66644EE95 /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 49B53B91A0A095795C5B103601EC9091 /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 803053E81096BDE4B074A94A935F84BA /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DB92CB13D90E6A63C9449EB4A3D5FB0 /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8075DC731E37445F52255CAA3A228522 /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EE49F2E42B57ABFF7A9DC176D440F76 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; 80AC5B0498F2D2CCEE4DEA1CA335C6A2 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0AC1EC82016B61852F34E2AD946A78FD /* enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8137F4B4E4C8DB968926C58ADEC3F896 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34ECA820CADF5DC6E239E8E6A7EE7ED1 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 81438D773BE32EE9408DA114072190C2 /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B5406371BCFF4F1D5701E5CDC1DFA89E /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8158FD3496CF1F4B9B686F7D45CB01EB /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 30BCAF63832753D77F69F7D14EC383BA /* QBVideoIndicatorView.m */; }; - 8165A93C887226725BD1907D99BFBA3A /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 39F1D6B5BBF0205EE9E40237497EF704 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 811F9D1679A5BB13D632F247E4C89162 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 47155E3446D20E771443CE350B3B2C19 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8137F4B4E4C8DB968926C58ADEC3F896 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C171DAA5581762934238E562AB7204F /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 813979E524DE1FB65D5C77C4DC999DEC /* RCTVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = BAF475FBE73DECDA301043F705C1DA1D /* RCTVideo.m */; }; 8182F2E263B427AA12C4AF390B885D17 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 59C9B544BB234F46215C3B5CD6D35C0E /* alphai_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82224F93B10B178593D007E5A68F8FF2 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = CDE2E14DEF8ED843D0CF8135FEB889A2 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 822708633940172314602DF0134F63F3 /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 01C6389F9925C66D3B6ED1AA58A3810D /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82604B7ADAE3AE58493DD4DC52258BC1 /* JSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 495E0C732876CA1F3142152FAF076FEB /* JSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 819D0F93428068B08237C1383A8FFEF8 /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2023A72C011E18F05C0BF471D42E29E2 /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 822708633940172314602DF0134F63F3 /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = A5306B67950A6E590FF79ACF340E2A72 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82604B7ADAE3AE58493DD4DC52258BC1 /* JSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E93C236783610CBE74D685376947EF4 /* JSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 829AB544D5632D7C444A13B57AEE4C9F /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A0A418D0FCD4E42A69851E89B779D00 /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82BBD6475B1A213B38450FF96A13CF6C /* RNFirebaseUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 66811F873C66A7948D2771AFCF65C980 /* RNFirebaseUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 82F9B54A62E5D0DFDF2791B03C17993E /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = D26DCA8456FCC2D29FBD25DB58BA91F1 /* bit_writer_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 83408F01EBA71440E6C97BDAC6DFD142 /* GDTUploadPackage.m in Sources */ = {isa = PBXBuildFile; fileRef = D624A4AC905CEE30FA3E4438A36E08D2 /* GDTUploadPackage.m */; }; - 835E28E6AC8654393480EBE31B99BBFB /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = EBDB25D003B75D0DC0446CB4F81F1D98 /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83761E62E577F2305290E3E62A0B92A5 /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = 07401BE7214B2F6F903AB170EA90425A /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 835E28E6AC8654393480EBE31B99BBFB /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 406F0A8AFBB83E44E858A26C5A72FB5A /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 83761E62E577F2305290E3E62A0B92A5 /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = E42E8FF004760A273B45C14DBFDEA993 /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; 838FC3FEE030FC85C632A5D99A7F80C5 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = 1026922C2622230E82FD9EE8866BC4F1 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8392D2B78CCAFDFF0BF01136BE4D4601 /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = C2CB9B684BA15EBE98EA0A7EE838582C /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83A7598AFBC9F9F40C6D6AE20D2D6A57 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = D434EDB1CBB94586CAD133E0226092CC /* SDWebImageCompat.m */; }; + 8392D2B78CCAFDFF0BF01136BE4D4601 /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 7918836174A9A268DF3E61CB96E07382 /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83CBD6741F2817605776207A9D4EE8A6 /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 1046F11C1EDB6077AF33DCB81D11A5DE /* lossless_enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 84003E317DFEEE51A73780169483DACB /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 189A3D8AD937A8E7324DDB7F335FCB40 /* GDTCCTUploader.m */; }; 841BD4293BD63E749D78D404D4E2718B /* FIRInstanceIDTokenFetchOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 381807F28CEC843BE35E44FB6440F1E4 /* FIRInstanceIDTokenFetchOperation.m */; }; - 8457E650244444D1AB52B20F9118C672 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = B76A6BAAFDF07809B2715060E43EB92D /* QBVideoIconView.m */; }; + 842D83DACEB91DA0700B8A1E4A0A0CC9 /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = DE2B26B0E0BFD62EF816B83137A018DC /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 843C5C971393E98ADA0A22473480760D /* RNFirebaseFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = 95BC1336B0F1DF0B8B9A4478EF9E6918 /* RNFirebaseFunctions.h */; settings = {ATTRIBUTES = (Project, ); }; }; 845A994AD06C3A97A7E1B733653C29E4 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D4B6FB15B01DC3C783B0006A9433CB1 /* vp8l_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 848E360DEDAB6A5661F407BDF4257129 /* FIRInstanceIDBackupExcludedPlist.h in Headers */ = {isa = PBXBuildFile; fileRef = D14790922BEA06A54EC252F69D7A7774 /* FIRInstanceIDBackupExcludedPlist.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84D5392B1A75CD70EFBA80BA685A24E1 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E7A0515558C074F7EC178655DAA5C6 /* ReactNativeShareExtension.m */; }; - 84F44E243C959452DA1ED32EBAF1A314 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 3089DD250EDF54060C42681665272839 /* RNSScreenStackHeaderConfig.m */; }; - 85233251D8E6162F3BC0BBE816ACA76D /* EXCameraPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 83891139F79BF847C56CEFBF6C3713F8 /* EXCameraPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85527E4C0F86A8DA7C04CAEB07E66EB0 /* RCTVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CC511B16EF948EAAE9EF314FD8D5FED /* RCTVideo.m */; }; - 856883661D0E61CBA3FE13895FDCF032 /* RCTAccessibilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 897C090F907DEBF41227E3CCEF14BC37 /* 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 = 4B68A1F97B6A2DF2AD5398B70C161CF5 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 859B985A52815D5B3710FCC5292CE486 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E203022524F65016EBA5089F3467300 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84CEC174E821208CA9C957603D18652E /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5790CED5B5C3ABB8747E23A56375F84F /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85233251D8E6162F3BC0BBE816ACA76D /* EXCameraPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 55FEA42274B43F7959F933B6E7D0768C /* EXCameraPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85352C34EA357F9E8590AEE100DDFFEE /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FC5DFE0E717A0A6D92D453D6251387BB /* react-native-document-picker-dummy.m */; }; + 856883661D0E61CBA3FE13895FDCF032 /* RCTAccessibilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3221FE00A1602F823985FCD2723820CD /* 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 = 3091E2CFFC0B4A1C7BD3C4D9B28DF2E6 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 859B985A52815D5B3710FCC5292CE486 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 783D3A6D2930F4F2E252E0843414B1EC /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 85C2EC99B56CFD98C2CCC5F32FA58F0A /* FIRInstanceIDKeyPair.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EB913031D891F3545DE175B7E2F52F2 /* FIRInstanceIDKeyPair.m */; }; - 8602CCD0C12D4FD780963C9E743D19B3 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 078D9ED0FF01965099F47CB760602BB4 /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8619C76EE9C70B2C7B1A34946ABE8049 /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 91DAEEAA913712230E2663F4CDD7C877 /* 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 = 41BD29A4D64B15AA9C08CDAB6A72748F /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8602CCD0C12D4FD780963C9E743D19B3 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 147617E44F9FF00DFBA646A5E61B5F6B /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8619C76EE9C70B2C7B1A34946ABE8049 /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D402CA1FF2E44253F8C2FFE4C71CC15 /* 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 = C5E6C401811F8E8E72A347413A20E31D /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8649A76A297D2E21447A67155DF34A79 /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 89E6FC9046CF63FA2BDD5D4FE972D3F8 /* rescaler_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 867B34B657B44C3D63B45D3A3B18DA83 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = DEB90A98E2586521660B8F518126D411 /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 867BF4180E86B2C5639CA928E0621152 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = B2000FC668084E1BB47312BB65BA59B8 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8693629097C6317357D73FBBC11B68DB /* EXUserNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CA3D3FBB9C732E53BDAD62F66B1EA24 /* EXUserNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86AD40358DDB91830D0A460517F0C1CC /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EE953B05322E4D02384D64B041779BDD /* RCTDivisionAnimatedNode.m */; }; - 86C2CB198936AC2FA3B2B21E0703A1ED /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 67F0BD21A792353FDE8EDD3064FDDDD6 /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 867BF4180E86B2C5639CA928E0621152 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 624EB0EC80205CE1C8038C4BD5935FD0 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8693629097C6317357D73FBBC11B68DB /* EXUserNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = B755EBF064CC633CD0FB942E32ADFA78 /* EXUserNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86AD40358DDB91830D0A460517F0C1CC /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 502D139D75DB561ABA2CA2FA7B4C8FEE /* RCTDivisionAnimatedNode.m */; }; + 86C2CB198936AC2FA3B2B21E0703A1ED /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 68C80B33AE1B6879EB74CF8842CB14CE /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; 86DAEF8820731D1C15928424330BA767 /* upsampling_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 98365AF226B34BED76B8944130B05D00 /* upsampling_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 86E13E7B5BCB2E1F8295C5A07406405B /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F2500AEED7F5B9F3DE2400DC92BF592 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86E5D60C7FFF21EDED11E21AD50A0DC6 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = DE738962416D1A0FB5D95C5025691CD5 /* 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 = 7784FF227D491030A468168FD275B896 /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 876837248C26744303C968C537600017 /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F957A58E8FE652DD1F3DE28B8CE50D5 /* RNBackgroundTimer.m */; }; - 879AF62492BB818164FB39048C9533EB /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4CD8FC8ACBD058D65E3A2E2E8E1663A7 /* 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 = 9B6C8B68076FD1E21202C5BCD2F3EF78 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86E5D60C7FFF21EDED11E21AD50A0DC6 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 13295BC400A5F4F8C1621BF5ED23EA2D /* 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 = 3D0BAD9FC243B9AF0FE127E76E95F46F /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 879AF62492BB818164FB39048C9533EB /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B53FAAD75C0C6369D832431E85667CCE /* 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 = AB30708B801882F0388B037ECF55C75A /* picture_psnr_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 87A62425770DFDA0D6DDE71681E5DCA3 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = E5C53B891F06F1C7FF25B522823943C4 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87A62425770DFDA0D6DDE71681E5DCA3 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 499C5CA01A8F491E9ED436E6171BB50D /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 87C77CE28E3EF45AEFE750BB7575FFFC /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = 162A20965F55A7F42EBF98FD66CF91C0 /* muxedit.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 87DF5F5C3A81BFB97E558154835A7721 /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 331D203E413583EC7B1137D6FFF0D3FE /* RNGestureHandlerManager.m */; }; - 880139AB323156492DCA8B199F96DC5A /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BA338194C90961253A3D4E0A70D7A57 /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88214E5E2A114ADD3EE51DEAD80359E6 /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = 43FE608151DDA2E629BA5C12D0DBC0D4 /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88214E5E2A114ADD3EE51DEAD80359E6 /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A04E2393782BA1C44DD03CD92C6AE13 /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; 882B46F5C2965C2DD4C1F4916EE5E1CF /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E320956FCADA646E2ABEE42F32A6DB3 /* FIRConfiguration.m */; }; - 8840DA01963F101CF90D87A3F13CCDD2 /* RNFirebaseAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = 506859CED17C25CD4D15CC68573AC710 /* RNFirebaseAuth.m */; }; - 885CF319B84AFD4047319828541855D6 /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = E9DC781ACA5F2608552586A764F57DEB /* RCTConvert+RNNotifications.m */; }; - 887CB065B3EDD6200222884879217DEF /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C62901F4640CD3B115C26B6F444BF1C /* RNCWKProcessPoolManager.m */; }; - 88902F9738770E60153CDC8566F6D068 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F8179C98B286C5C9274EB938E6B8C626 /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8863BCB634FC78A220CEF2C4A8D502CC /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = D7D231B7CEF66B3DD619BE56A21D09A5 /* SDWebImageCacheSerializer.m */; }; + 88902F9738770E60153CDC8566F6D068 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C70A672855707370603108A8BB354B3D /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88A32154F34FEF17860B42BA471D5C29 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 935271ED504C7B694762B790EAA3118E /* UMReactNativeAdapter-dummy.m */; }; + 88C80D8900DD191B23C09295A1A411CC /* RNFirebaseFirestoreDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BA993BA85D5B32B217BF12413874098 /* RNFirebaseFirestoreDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88F20E46B225883D2B2A5457A006D8C9 /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 55777AADCAB36748790FAED06062D2F0 /* FIRAnalyticsConfiguration.m */; }; - 88FA13F1D8FA8BA39D35E071FC0A86AA /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 359B060557BFE9DFF9EC8C4570EB28FA /* UMCore-dummy.m */; }; + 88FA13F1D8FA8BA39D35E071FC0A86AA /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 81E495DC27F8820E0F7C1E39F2D71739 /* UMCore-dummy.m */; }; 8930132E132D64934AF6AB53407AF4C0 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EDDE346EC979FCEF409700FA05BA63E /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 896B05EFDB2025BCE55812B2A7033E55 /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = F843C96353F8D06C7E74EEBFCAAB86D6 /* SDWebImageDownloaderRequestModifier.m */; }; - 897618C39265BD7DD7247F79C208828C /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = B47472639633B31D60237D7C0887F1F9 /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 898B86759EBBAA914DBD50CD1736B3CA /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = 68343C788E89DA448E407E7A946A020A /* RCTTextSelection.m */; }; + 898B86759EBBAA914DBD50CD1736B3CA /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = B7D880AD3344988E75DB2D19B5008257 /* RCTTextSelection.m */; }; 89B1C58AFE4D079F1775D9AE2589B02E /* GoogleDataTransportCCTSupport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 006CEC4F93311B953E62A6EB723739C9 /* GoogleDataTransportCCTSupport-dummy.m */; }; - 89CA75060FE539EDBE97F3994A88E83C /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E40CB03180633460FF63486832E00806 /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89CA75060FE539EDBE97F3994A88E83C /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C2B92333BB5845F760C448E223DD5AA8 /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 89CDAEA204DA1341B986C199502BC4F0 /* FIRInstanceID.m in Sources */ = {isa = PBXBuildFile; fileRef = F3BE6A89C0B0239C7809E9B1FF58C15D /* FIRInstanceID.m */; }; - 89D3C452A34A703CA62770C2A9ACBD0C /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 561D5A5555B1FEF4E603AA0DB67A0CA9 /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 89D7D74CD55EA011F6710173BC8B653E /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = FB0C5088029F6DF10F6F169BC3F3C2E5 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A1536B0BB44EB52B90F994FE7C03CFB /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 61080DC39F2EA410E9C6C0EE6B8BF540 /* SDDiskCache.m */; }; + 89D3C452A34A703CA62770C2A9ACBD0C /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 72173F0326F3F2CF6249B84E3909FFF8 /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89D7D74CD55EA011F6710173BC8B653E /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 093A24227EABDA8622F866E729A0EB3D /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A222A382DE9E434A7D147C66D2595D7 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CFF7D36BBFE7BA1BD9A53678FA8A3B1 /* RCTConvert+REATransition.m */; }; + 8A2E928AD77641900A8ACE4C4CFA1E07 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = FE9882D6F1ADD55B531AE6C0DA506CCC /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A885CA9B621D1B647CE2A6E5365DE12 /* FIRInstanceIDTokenFetchOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = A1608DCB703A1DAA8318175F1BD6D540 /* FIRInstanceIDTokenFetchOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AA624EBE6D8181F8A2539332EE2A019 /* RNCUIWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 88166403512FC6CD0F60F045A97FCEA2 /* RNCUIWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AEAECE87A41AAFC9191A5E0367F8870 /* RNFirebaseDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 49070D4C872602F6290CC0C6719D9003 /* RNFirebaseDatabaseReference.m */; }; - 8AEDAB6C56143F3E1C0DECD71DED9F34 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E10AAF26D2BF5079CDA145FFC3030730 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B2A0AB5241F9525A79DA9CEF1A2E954 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CF514CEBEB7B53040F577141FD44EC5 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B4EDC8F787D8C2B92EDD3DF71352F2F /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A4861BBAB43CDAB8683670C6BC93839 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B607A94E30E24C67C5166B4F09875A3 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C4D965126B9D67D008EBA4BA083FDF3 /* RCTImageUtils.m */; }; - 8B9EC40F9CB55AF6A8C2973209ADFCEC /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DCC4B92A5289D7BAE0C5E6E84654009 /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BBC06827C654B4FE81138B01A00F628 /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C639040A1D67515F2D55E631E08D192A /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BC0269A74DD47B38189F02A1A5E8B91 /* RNFirebaseDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D8AA8D0D1F634E75FE154E4E4F894C8 /* RNFirebaseDatabase.m */; }; - 8C26C66BE52E4E52ADE666FB7506D039 /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = 9BC23BB7A8DE345C7FD96BA090F09B73 /* BSG_KSMach.c */; }; + 8AC5698C17D587B15B82ED4ADF4D30E6 /* RNCUIWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E0E131BC3D68CD4CF4E45F8A5B77A0C0 /* RNCUIWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8AEDAB6C56143F3E1C0DECD71DED9F34 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B1DB83D9D53946D698A41481D8841122 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B27DF2F5D797272544439898E34E729 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 22F17609A13F48A6EF6EC0D3BC5F9A3A /* RNNotificationCenterListener.m */; }; + 8B607A94E30E24C67C5166B4F09875A3 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = DAC7475ABC0A021C153586AF1B38843D /* RCTImageUtils.m */; }; + 8BBC06827C654B4FE81138B01A00F628 /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C61BF98CD40D21619BD6FFB97EE88B3C /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BE187447DC42D9B8C88D6E2BF5F6139 /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = D488F72CE205F7975B1AFBD3F1D1A201 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C26C66BE52E4E52ADE666FB7506D039 /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = AE94B7C81FB439C90658524538A54B96 /* BSG_KSMach.c */; }; 8C3844F23E883CC4C3AFA8F54BAAAB69 /* GDTUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 17301E3B0DEF204F7CEA173D05669137 /* GDTUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C7A15FBAE7271D2AB49E08463F5BC95 /* EXContactsRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 3195505E0729B4614D60025ED7CAA2A6 /* EXContactsRequester.m */; }; - 8CCFAE8AD413F51A5E12D9BF2B2579E3 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = E2774BE5BA001204679B658F551086E7 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CD8228C936FD255CD294290118A29B6 /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = FC29B8E002404194B81CBC6A6A6CB468 /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CED141149EFFBAD701E9AAF21C0D03C /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 6534BAA3AB8D0B453F3B86BE5CAD4908 /* UMUtilities.m */; }; - 8CF595FE626314CCFA783699D5A3AD36 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 14583AF4E411CD44F77D06F9F5554F11 /* 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 = 5FA1B97082959A71FC1CDC378E1EF54A /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D768CD75903B52924A31E9C576E8CDB /* RSKImageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = CE9DD018769C9C2FCA491ADC228A0851 /* RSKImageScrollView.m */; }; + 8C7889755432A664D720800616832C66 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = A110CE3C880FAC45F8BB586761603C09 /* 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"; }; }; + 8C7A15FBAE7271D2AB49E08463F5BC95 /* EXContactsRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 959E4F2F20DD331569989D41276051E1 /* EXContactsRequester.m */; }; + 8CCB58F61CCBA457A9F9AC2F2BD1760F /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 30BCAF63832753D77F69F7D14EC383BA /* QBVideoIndicatorView.m */; }; + 8CCFAE8AD413F51A5E12D9BF2B2579E3 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = F39D87D87782BE2F3483A8F92024F25A /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CD8228C936FD255CD294290118A29B6 /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = BDDBD2943A9B87E4E890E45468BD30D4 /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CED141149EFFBAD701E9AAF21C0D03C /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 32D442C11B07C66C9018E78AF1F7D796 /* UMUtilities.m */; }; + 8CF595FE626314CCFA783699D5A3AD36 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = F325369DEAC2F9F3E8BB72E3CB27E587 /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8D0F057AE881259557A6AA0E3A2E0530 /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B5406371BCFF4F1D5701E5CDC1DFA89E /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D220C34A63C202CC199E15B400F33E7 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F98E1DEFE3A940C12562B76C495E364E /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D42EE01C40816C2E740C026F7632029 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = D30D5B4250FE25C0D94E0FD37FCF9A12 /* SDMemoryCache.m */; }; 8D8C90B91DB286AC93C129B102A9BFDA /* FIRInstanceIDCheckinService.h in Headers */ = {isa = PBXBuildFile; fileRef = FE3DF4EF4E5A90A23B9E0451A9EBDFEE /* FIRInstanceIDCheckinService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E12F102AB2E9838DDE6962237785645 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 189A9E75BC5BDDF1819E819734C9FE36 /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E412E8EFFF7AF9D9DE06F5741936067 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 6210EDE02A96E7ED3A46A4019479BD8F /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E4CC3D37EE715B039C6809126E738B0 /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 757934FE95DADAA21806311FF273FF0E /* RCTInputAccessoryShadowView.m */; }; - 8EB62CE7DA186C62D6122B9A44417281 /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = D29FAC4AB3DAA712FC48194E75DE9B86 /* LNInterpolable.m */; }; + 8DFB3D919F98A9929F9D98A33D9B6F92 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 20C407A2DF0A8582F2F15FE345DF3003 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E12F102AB2E9838DDE6962237785645 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 635B30421D1D064749AABA2E40F9BF36 /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E412E8EFFF7AF9D9DE06F5741936067 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = A43BA5B3060A78F4C17C697796E5B8EF /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E4CC3D37EE715B039C6809126E738B0 /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = F14E4F9E7E375BE6FE42E2D25CBE3C26 /* RCTInputAccessoryShadowView.m */; }; + 8E7641CCD61C201FE0E7B7C31B803614 /* RNFirebaseAdMob.m in Sources */ = {isa = PBXBuildFile; fileRef = A70694F5A4C5B5EF87E255F6DA6125A9 /* RNFirebaseAdMob.m */; }; 8EE80AB91ADA3A9A2C6253A49BE3664D /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B19B55600A8123A16887CADB6BCA677 /* filters_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8F224476D1EBF85E0ED56DEABDB859CA /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A45D44F0A4712BAB4EA2AA811B2D8B6 /* UMModuleRegistryProvider.m */; }; + 8F224476D1EBF85E0ED56DEABDB859CA /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 74ABABBA392724CE895FBCE6CBFC9966 /* UMModuleRegistryProvider.m */; }; 8F2FFF7829D53299777DCF5ADBD4E4F4 /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 0A26BEC640FBC7DD1CC203FD1899D261 /* syntax_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8F3B79F769C77B1242AD6920F841972E /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 008220F7548BADDA4DC0EF2CC64FD05A /* vp8l_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8F3E78E2DB7AEB8C9FB6BFCDDE9C7089 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = EEA510D50642D5063ADD2D6ED11895E4 /* bit_reader_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F467DF6B02968F89BEF4985911982D2 /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 48FFBF121F31AEA781C280C41AEA8A8D /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F6CB9E0DB86EEAD23B6D15AA3A1A546 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 08049A44DC9E04D54FCD791584970ACE /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F40F8E91AF47A8CE35FE966A7E4F767 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DED1CACAEB451C47EC522EB25E18197 /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F467DF6B02968F89BEF4985911982D2 /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C7E2C6308D8C8DD2F1341FB8F321FD4 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F6CB9E0DB86EEAD23B6D15AA3A1A546 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FA11A77806199EF2A7B33609893BBBB /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F954BFA8C27E1B462B557A6C591B8EB /* FIRInstanceIDKeyPair.h in Headers */ = {isa = PBXBuildFile; fileRef = 222730D89A07F1BE4758382C6BEF2D7B /* FIRInstanceIDKeyPair.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F95C811580055653F64AA077EBECEB0 /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = D6DCAEB56D8DA54613340766690167C0 /* vp8i_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F98A9853EEF28C20D7A16B2C0265B7F /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EEE2ADF260DC6B0C67C10B80ECDFFDF4 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F9B46ACE8331F537048C4F1D64DB2B3 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C9172E1FD4EC4C46CB01E67337BA2C4 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8FE04A0459B6CACFE4ABBE0DE4743CA0 /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F8FBB91717BEF08A3C1FDF8D36D7ECB /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8FECA6702233F091518FE35B9946E2F9 /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EBC637EE3FDD33592FB4C7CB0EC80A47 /* FFFastImageViewManager.m */; }; - 90007F0ED3DEFCAB8AF1D75D79940D55 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AEC7BEF09E4F9775F9F6D4ECA2ECD20 /* RNScreens-dummy.m */; }; - 9047B551488146C5F386432C42229B2A /* RSKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = DE0704E4E2DE0B2DCC750EDB922186CF /* RSKInternalUtility.m */; }; + 8F9B46ACE8331F537048C4F1D64DB2B3 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = BE4D11DC428728370935140D16D3665C /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8FE04A0459B6CACFE4ABBE0DE4743CA0 /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 333ADA951A0BEE1FEAFF5ACE35B8ECF0 /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9043B2D3BBD4A6EBA058D4EB4B2F98F2 /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 56F18861E692F6A345A9D6CE9475B5C0 /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9058DE52F6CC41428189AEF7EF397B2C /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 686BCB212BE0B5A111429F866D9C6411 /* random_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90891F4884E27C8201EE582CB7949F16 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 40327D76B5CC7390AFCF86048D3C9213 /* lossless_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 909311DCD5AC14FA25CFC5F733A46BD9 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 44ABBEBEE6E8977D6CF1226A4CB6A441 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90E94C04A7E0488C23AB65A24878F13B /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 839FF9FB3C504A04C732B44C2B167713 /* react-native-webview-dummy.m */; }; - 91446633BDBBF72BFFE0F45182D49D33 /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 59C6272923411E4BE89A82E5040D98FC /* EXFileSystemAssetLibraryHandler.m */; }; - 91C15B75F2EE203EA03430B4896BE640 /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = F01F8A651D0F97804369446D71BC17A1 /* 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"; }; }; - 91C6AE23BE26870687264BB6561D2D8F /* RSKImageScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 35B10CD2AF0B7EF54D09EEDEDD29C454 /* RSKImageScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91CE90410CE67344FD8186B34DA73AD1 /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = A98D42D2F791FD55BA9CE579DCFBBB6F /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 909311DCD5AC14FA25CFC5F733A46BD9 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 92FC18EC6AD15E95D5C55E9E231A2178 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91359B220D66AA1F73007FA3F3D46F5F /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 176CD31DC31EC631510B1386AAF45DA4 /* UIImage+ForceDecode.m */; }; + 91446633BDBBF72BFFE0F45182D49D33 /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EBA5025778E228CC965FAECB1A78CBA /* EXFileSystemAssetLibraryHandler.m */; }; + 91CE90410CE67344FD8186B34DA73AD1 /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = FC9BBB92DF15F0771D6FBD1458871EC8 /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 91F98C0368F0FCC6306D4CA7B4CE4131 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = F01130C986BAC60F5B3ACD416FBEBDD5 /* rescaler_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 91FD01CCAEB23BD7D2E398810DA2457A /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = DE7628942074E2E9FB76E1CAEDE49271 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9203BCD0B116F6976200251A5B486DEC /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = FA70C0C21F424E0C40C6162AC449CFBE /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - 920B90E6A3A2871D8C38BA412F6970AF /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = ACDA1DE1654B36F054675ACB4E873B75 /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9218C8F7BEA79C4D782778F9F35203E7 /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CF091148045C9BE0A1F7DB31B12A171D /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9221EBFF705DEC82498E5FD3C8356E3E /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = EC5EAD2792D00175F98B34546D424FC6 /* 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 = 11BA5D3DEF054551B8DD75DD855E021A /* 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 = DBC2F83BD3B511BEE9C55FA2CBACA7A0 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9218C8F7BEA79C4D782778F9F35203E7 /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5843D5D3667FB0238E3EAE2D7449E82E /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9221EBFF705DEC82498E5FD3C8356E3E /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = BA1FDDA89F369E09845E91BEE4980D7F /* 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 = 3A2F76867CD64DF89F23D6837328260E /* 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 = 70308215C1175325A3EBB9B449C9828C /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 926DCB75CDCA4224082A5557643B8340 /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 317F124D9FDC5A216174EF9257BC9A35 /* FIRLogger.m */; }; - 927064FC2115385FA31FD9F4FFC99E36 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 447EF1EA74117D6E0BB07725CCC9DC21 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92B728E7535FC4E71B88CCF542D0F202 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C046D3A111C990B22B244A5CEAF1235 /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92C47060A7FA2A54595556C87BBC5E08 /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C3F24269B77A0E8A47C499F3FD1763B /* BugsnagFileStore.m */; }; - 92DEBEA9A386D7889CB3E74FC7704DA3 /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = 76EDC43AE837446CA118C6F033D1446C /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92F3DB9D5A0513868F3EF6B2D8A51C60 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB4EAA863CB8178BB1393C42EC98C6EC /* 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 = 0EE4B645C22834041013277CF3774631 /* RCTNetworking.mm */; }; - 932C059F1E0DFDA1F7D192C2E8056114 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = B2003958EC394E36B16B2E029E0D631E /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 927064FC2115385FA31FD9F4FFC99E36 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = ECDA3645A898A8276498D93C1190AD6B /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92B17D558A523FEFDBDFC18946D5B0D2 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = B22E5237A551120F5B084752758535DD /* UIView+WebCacheOperation.m */; }; + 92B728E7535FC4E71B88CCF542D0F202 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C6EE9F84C091C7D9933B6592258344C /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92C2AEF73A677FAA099C9FEE64DFAA10 /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = EC07CD6EAF5BAC50B9F7AB1B4AF6026D /* SDWebImageTransition.m */; }; + 92C47060A7FA2A54595556C87BBC5E08 /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 30540B5CD8D8D67A88C3FBCFED33E27A /* BugsnagFileStore.m */; }; + 92DEBEA9A386D7889CB3E74FC7704DA3 /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = DE721E39C1F43835E859AE29B93A0629 /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92F3DB9D5A0513868F3EF6B2D8A51C60 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DB010F05ED85B59E18461127BDA2011 /* 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 = DC5012D88B77C31B39BB274BFF3219BD /* RCTNetworking.mm */; }; + 932C059F1E0DFDA1F7D192C2E8056114 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = DB2CC93EAFD0652A1251BE276258BCAB /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; 932C306F1F748B77A388E1D22BFB051A /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 256BB2AAF671BDAF194B89E664B8B1F8 /* glog-dummy.m */; }; - 93975F2A43C8B6A57CF4585534F15702 /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F22BD4AA11C9AE735BF3D9A59AE4C137 /* SDImageCachesManagerOperation.m */; }; - 93CE32A20E5A7C1A793E1FB529882268 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 35E8E0CB837BAF6BB30DC2F2666F90CD /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93CE32A20E5A7C1A793E1FB529882268 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 94D6D30F732919276E067AADAB490563 /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 93E3441ABB65B7C821BCDA662B2768FB /* FIRInstanceIDKeyPairUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 152184A9ECC7559175B56605FDE9F997 /* FIRInstanceIDKeyPairUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 94013824F6693C27E33A308D811AA546 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = A3DF66B8813204A50D7529342588A70C /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 9404963E6D9C501EDE2BCD5BC72FB37E /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B23FD9B97F21045C669537FEAE2E29D /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9418BD629A6F1D66A2F46DFC41A8C587 /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 319BA8E6EE102A4442F9C0B07E458DD7 /* RNFetchBlobConst.m */; }; - 9443D841371B81DDCEE8703241BA0BAC /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 51F5AE97EBC08D9324A6F718CFC8C22C /* RCTProfileTrampoline-x86_64.S */; }; - 944C86F14C0127649AE14497D7D8BA0A /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = C9D511B84C427CC29548E68483C6B16E /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9404963E6D9C501EDE2BCD5BC72FB37E /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 10FF28A7F6F22A3B7399C451705D661E /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9427D44CC1F4CD3C12004EFE5480EB10 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B0F39B93057CE24A18A54F67CDAF722 /* SDWebImageManager.m */; }; + 943BB824B50B2E7F576F43C4B11F3FAF /* RNFirebaseFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D00044A78AF2C669000B43E09D48157 /* RNFirebaseFunctions.m */; }; + 9443D841371B81DDCEE8703241BA0BAC /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = CD662CEDBFD96BFA0736A129B582B0AB /* RCTProfileTrampoline-x86_64.S */; }; + 944C86F14C0127649AE14497D7D8BA0A /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 92896B4FE27A8B9CD1DA76E16BDFB022 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; 944FF9384860EA20586A25FE9FF6C62E /* FIRInstanceIDCheckinStore.m in Sources */ = {isa = PBXBuildFile; fileRef = B8004FBFD4A41E8A292CCE60BA84510D /* FIRInstanceIDCheckinStore.m */; }; - 94629AA299477F3F9E3ACD77E8AB0ECE /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8263ED3D75AB0213BE2E35DA4D2CA5EB /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94E7D41917AB5C74D40BE94174E1D4BC /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 11870B3F7707405FAA4B9E6832E6EB08 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 954FE445339ECBB6E7129578A9ED98A1 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 80C4A2E4D76203670EC68AECB8D26B36 /* 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 = DEB21DA40A7D7B3E1D6A593245AFE04E /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95483100E9100741D75C9EA5E0C7AA3D /* UIView+FindUIViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F837651F5D08E18CB65FEA245D52D31 /* UIView+FindUIViewController.m */; }; + 954FE445339ECBB6E7129578A9ED98A1 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 523700F193E295798F5EC922B95231DC /* 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 = 81838BAEDB803D84068CB99C819B76B8 /* cpu.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 95BCEB87FFDF3B51A1B01518D1CEC889 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 38A7C07FB150C20816E901B787BF37EA /* 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"; }; }; + 95577CE9DC0BAAF6EC37C1288ED1C00C /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4700497CB6F7892DEBC975C55A151D91 /* RNScreens-dummy.m */; }; 960BB6A747C122E41D0F93EEA6E0624C /* GDTTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = AA2FE9A64387B0D50B6D9D4F7B45F847 /* GDTTransport.m */; }; 964ABA3C96E97D837CF19EF6ADAC7E3F /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 6EA819122B8F26A2B33A282E42FDB70B /* enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 96524DB391FA3D7058641F02E5B32F58 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A809A23E9EF95C498E5964553A87330E /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9683C31826946F3BF96B99A025D056FC /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F354FAEBB55CA4A77CF2A593DBDA38D8 /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96B4F4E21FCFAA146F6F5F35DC41CA71 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F8A3D62CAF53EE715782552E7018A591 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96B98E1B9F5AB6BED217E29BAAF82FC8 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FBFC0A7849A3B83550D5EC17C4FB51F6 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96D1F45BCCAE2836A1FFFECE8571FF27 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = AB3A76E3BD356B755BE10C4F27A944F1 /* BugsnagHandledState.m */; }; + 96524DB391FA3D7058641F02E5B32F58 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B2B9B966CF0670022DA229F644227B1B /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9683C31826946F3BF96B99A025D056FC /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CE243AAD7E2688A6F06CD4B9E4124DCC /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96B4F4E21FCFAA146F6F5F35DC41CA71 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = AEAF91E2DB5B6A939D80226C6461B2ED /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96B98E1B9F5AB6BED217E29BAAF82FC8 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 56505B21ABD3B3E95EB5A96E9FBC65C9 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96C83EFFA6F79A96FEE6BED5EF788142 /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F965DCF885F1426E09025A2E6E691E96 /* RNFastImage-dummy.m */; }; + 96D1F45BCCAE2836A1FFFECE8571FF27 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = BE862BF36C8861440009B6D78B4F44C5 /* BugsnagHandledState.m */; }; 96D3ACDC9FE404F697EF785FAD078FD3 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 35CE46312490F4C504F7DEAC11D569DA /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96F48986ACA0DDDECA750B733AD58D5A /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = F20519740F9C43E31D42ED4F436B4CCA /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96FEB9F17F3553A3EACC3D455D3DD5EE /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = B5BE24CF227352207ED74841C688D105 /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 979FE135AD6F5501E856E33EC5CA8E15 /* EXAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = BA2DEA4A7585625DC467AD048303D374 /* EXAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97B13A3AD8AC7ACB15086E390558CD9B /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3187260C25DF89EC205D9316352ECE78 /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96F48986ACA0DDDECA750B733AD58D5A /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 61976DA468A2E5DB64CD0A3450FBEE31 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96FEB9F17F3553A3EACC3D455D3DD5EE /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = A00442AA0B1FADE223DA97EBAB3D838B /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 973784968413BB9308E233CA2512A8EF /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D84FDC058A1FD39DBDD29372DB782E3 /* UMNativeModulesProxy.m */; }; + 979FE135AD6F5501E856E33EC5CA8E15 /* EXAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D0EC6831411EEB8A8213C4238F8CA1D /* EXAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97B13A3AD8AC7ACB15086E390558CD9B /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 52EB945050F8273FCC2AA02B3FF3D450 /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97D064D865A60353B7C736205A370BBD /* FIRInstanceIDBackupExcludedPlist.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C074F0BB1DC75EFF07E654DBDA12A59 /* FIRInstanceIDBackupExcludedPlist.m */; }; - 97E08713886A4A374835B115230D389B /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AB5C07CB50B14C998285A22697FDAC0 /* SDImageCodersManager.m */; }; - 98018E40ADAA6790B235AB57C3513983 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 91FD49BDDDF74385D62455B48BCD74F5 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 981B4DF825879C29CEF8E54CBBFA8043 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E2727D828C1AEF7210CA6BFFE7FD6EF /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98376979329336BC66814458E982E522 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = B892F16336DEB00631BC8CD1318C62FF /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98469F2152D28A08969776F6A4092C8F /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = AD246E5AD9E80917275152C3151879E1 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 98626D45D73808F5F9D0129E377E8751 /* RNFirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C4DE418E6C4007E2836C1CBA0AB7829 /* RNFirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9875D0858E48960BB7CD31B152B7B855 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 74D69112E4D6401A96119500674C49D6 /* 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 = AA65C22B9756E0B3F3715C18C629DD73 /* RCTFrameAnimation.m */; }; - 98DEE891E74FAA254F5C3AABBACF66AF /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 68BAFB9E39C43F2EEEFC0BE5F3B9F6B9 /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97E790A3FC1FA90CA1CCA5B216E62821 /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B03DACD4D293CA5E131B244DF380A361 /* RNNotificationEventHandler.m */; }; + 98018E40ADAA6790B235AB57C3513983 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 76575E3B79BFD3AEA8E0A0C627421865 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9831CCEEDA0AACB20231D40C03DACDD0 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 39A85E3493CFAD508B9032DBD949EF72 /* SDAnimatedImageView.m */; }; + 98469F2152D28A08969776F6A4092C8F /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = FFDC942E37948825AC39ECEFF5C5AA17 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 986352EF8FC0F7AA7FB688747682E76D /* RCTVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0534438AB319701CE76AD8A253D6A792 /* RCTVideoManager.m */; }; + 9875D0858E48960BB7CD31B152B7B855 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C1A507BCEB82D132645DA32F46BAC87 /* 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 = E597B6B237F0736D5C201E27C53A3F5D /* RCTFrameAnimation.m */; }; + 98A532821AB98B62050BDF90003E9C51 /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = F28D6C4FEE0BE4BF51AF475A033F11F2 /* SDInternalMacros.m */; }; 990BB1DEB3F600D896D5B6CDC343E258 /* FIRInstanceID+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 12F8DF71502293584E778A7A547B9C0C /* FIRInstanceID+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 993B1B14E6A0E34BC5DAD43E7AE297F0 /* FIRInstanceIDURLQueryItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B504985165E0E100AACC1C8170B53D9 /* FIRInstanceIDURLQueryItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9963AA363125A7918D0144B66F5D097F /* RNSplashScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = DBA790A60CE99F2A73FACE7020931AD1 /* RNSplashScreen.m */; }; - 9966221A016720B9EE0CF33068086756 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = C4BD169CE289BAE4445841400DB80F38 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 996E068909443195C72D4CC3501ABDC6 /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 727D71946298C0D81E3E63197B42D07D /* react-native-jitsi-meet-dummy.m */; }; - 999E5AA9B81CB7D9F51034F208889222 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B1D73A503CFA0C4F313E4D1EA235247C /* RNImageCropPicker-dummy.m */; }; - 99DDDDF4A2E5D42BDD113695B814D0E4 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = 233FF4637F4469CF1895584EDEDBD214 /* 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 = E4A298AA53A807D585B28DFEC3E3FE48 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99FA8D90B34730925CF4BA8C9893801D /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = BA809AF0EF74364F699C474DD8A703B3 /* RCTConvert+REATransition.m */; }; + 9966221A016720B9EE0CF33068086756 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = C006DA03186A2DFF16C749637E83030E /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 998FBDAF9CDE335B0D3711382CB1A645 /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = B8B967F67A9A47EAE957BE83BF7A08F9 /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 999FC5F496B026571EC6B14A034D209E /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D409D02ECC9D15E6DD381481625E516A /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99DDDDF4A2E5D42BDD113695B814D0E4 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = C17A7BC9744C2846DB65A6B7FC5AC80B /* 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 = 9F70832FAF8D00BECAEBBAEEF9757BF4 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A02C7D10BC6C19C23E53FBC64E1ECFF /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = CB24821F8D92E1785823CD7E825ABA72 /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A3099BF1A3303D97FF4B77EE8FA453A /* firebasecore.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = CD66EEAD4E79983350DCD51A38F9617C /* firebasecore.nanopb.c */; }; - 9A6E9BAB59FA74125780FA1DC4844EF4 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 67CF8F37C4B72033AA6E2DE612F55F2C /* UMModuleRegistryAdapter.m */; }; - 9B7F715EFD137258EDD0A8712D147896 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A0A418D0FCD4E42A69851E89B779D00 /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B951038237159AC22318AE21C572AA4 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E394BD039B2AF6514E2AC79928FDB8CE /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9BAA1751FA036A5A6F99C578D4C8EC4C /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = BED3B6FED796457A557A1E562F9FDFF8 /* LNAnimator.m */; }; + 9AB4F6875C92E1798A304A926741343B /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D7C64A9E80DF537ABA85966CF90017B /* RNJitsiMeetViewManager.m */; }; + 9B951038237159AC22318AE21C572AA4 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A3CF386E760B431AF279467E1DCCF2FF /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9BA9DE0A4FBB2114482FF1303AD3EF4B /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = DCBE288F57E819BDF9FC650A6C8F0D36 /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9BDCFC848F4DFD1BF8A53CF29164196D /* GDTEvent_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 40741D638131EE00D291EE5ED5ED0EE2 /* GDTEvent_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C2121F5D96BDE54DA8B179237762DE2 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 3029A4C8498438BB04B0630377E29DCE /* EXHapticsModule.m */; }; - 9C45F3097C1685B43083EEB2191E2BE8 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = C24F40A63FE451294206B6301FB2605F /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C75A78B30DF7E6F46A8D7DAA755F9FB /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = D7E3497D52E7538E1EB549888A128920 /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CA36998F09CD94866575EA5498A40DE /* UIColor+HexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 161E6B4993A51A7567AA66F65067710A /* UIColor+HexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CA41726B97C49B6AC1035961204FE9E /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = EFBEEEFBB317877C7D23308BD86DFF4A /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C2121F5D96BDE54DA8B179237762DE2 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FB6B0D132877CF3361A6436313E5619 /* EXHapticsModule.m */; }; + 9C627964726A53116F4C89946FE65B82 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = E1586535F11C552CD5FCA9E225D102FC /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C75A78B30DF7E6F46A8D7DAA755F9FB /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 3736B4D92E8195168EE3582062C4457E /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9CC8AF94995AE4B94A792BD1BEA1358D /* GDTUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = 707555184D304EC85645A35CF7314FA3 /* GDTUploadCoordinator.m */; }; 9CD9716DD336B98D69841069C775A17B /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FACD71042E4D857E776DAC66755DD07 /* thread_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9CDFA0146999D7C28645CB9F90B05188 /* GDTStorage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 831A0F10A4C41270F2BF95014C327852 /* GDTStorage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CE010BED3CFFFE64A74A8E8A39CCDF3 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FAB6B1FBC8FDE76931F66FFD83C17F5 /* UIImage+Transform.m */; }; - 9CED9EE5CB7376FF7FB07C9F43879FEC /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C4F70662866A6074C00FF398B7C03D3 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D02336A01A532998ACD33E13D64E0C0 /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 69430BB7ABF514D7AF976308D4C4280C /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D132646828F497BE8AF8BA790284D5A /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B723E88641B9F8F46432CE58DE751BA /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D1B7D7C384422E5F9AC1AFB05B0673A /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 91D6F5754639B6F94FF0134463F2C36B /* REASetNode.m */; }; + 9CED9EE5CB7376FF7FB07C9F43879FEC /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 90064060BB25376D466498BB22259FBC /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9D37DEF72A22FD1A72198F1C269F29E9 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 40FEE1DB8E538F394A0D1D2D409109B6 /* lossless_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9D4DFE39AF6C01860D2AAE22FA3813B9 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = FA446B698417568D5BEB49568655AE65 /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; - 9D7A2611F36B7955207444B5443A47EE /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = BA8C1095D4A9AC8719FE42E57A6BB304 /* RNFlingHandler.m */; }; 9DA03626CB8941609E390C7618C2A9E7 /* GDTRegistrar_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6825336D6AD10203C5BD9D6A22227590 /* GDTRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DA7EE268BCE3FF43F201EF8D4B6955F /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C04E7CB35881421CC7C4DE9AE2276BD9 /* BugsnagReactNative-dummy.m */; }; - 9DD2BF0D6A0759F49F517CCE6F829C8E /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 921AC7722F2C134D66F18F51A88B5E37 /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DA7EE268BCE3FF43F201EF8D4B6955F /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E61D1F9C622B0200284D9B1D2CAEA105 /* BugsnagReactNative-dummy.m */; }; 9E1B95C86133B7162A822F044D8A3C76 /* FIRInstanceIDKeyPairUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 73D8BF6F101EF44148652F03AAACE03D /* FIRInstanceIDKeyPairUtilities.m */; }; - 9E30093D2EB07DA80287548807D526BB /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = D1DF776A8CFD4EA62F1B7106C11682BC /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E3F8B8E980D44D65D8AB818DB9D0E22 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CF7967DC82F7EC57B857DB11F4FA8AE /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E7E3ECA43817F2533DCF75144D453E0 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D767267E6C3C9289E8D7F0FCE6A7EBA /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E8D86EEF78286491077C58C4319AA8D /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 683F7B0626624F23FAEF3328C288C85C /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9ED509214D9902A26629B908DD863808 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 83605A4F3CAC4DEA96570C8C7181B6F9 /* 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 = BB4F98F9A79C65BE96594A6A62ACA28D /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E7E3ECA43817F2533DCF75144D453E0 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = BF7C8D82374ED918C8F4EC3C2D81AC16 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EAF96097F7C9D6864B180F7C1355EDF /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 81AE13227654D5A004659D815B53ED32 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9ED509214D9902A26629B908DD863808 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 784032A5322B124C5B6599C68C0F8947 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9EE096AB3039E309BE9F295CCC7527FE /* AudioRecorderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 512147BD01A00A9A399A9F21DF93F432 /* AudioRecorderManager.m */; }; 9EEFFE4F5B6FA066318BDF0BCD0B12BC /* FIRInstanceIDTokenDeleteOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 0428FAB1B198A263768D56F4A20DEEFD /* FIRInstanceIDTokenDeleteOperation.m */; }; - 9F18ECCA1790C924472C0CBDFB421C08 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = D2636EF8E148C627BDF9737E2572C5CB /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F59B5E787DCCE4694FA7FDD16599DA8 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = 41491B4CFEE4E88898218256C9B31149 /* BSG_KSCrashType.c */; }; - 9F87EC2899A32885BC96D1F73A78357F /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = A671A890EF7D563E9B424DE0D4ABEB1F /* RCTImageCache.m */; }; - 9F9500DD72D147897FF71A3FE891A5E5 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = E00256C3604B84A2CCD6B0756DC79CB2 /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F18ECCA1790C924472C0CBDFB421C08 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ECE1F925ECC0E51F74CE044F6D1AA39 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F59B5E787DCCE4694FA7FDD16599DA8 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = F1808C91B566577A489B240322947C38 /* BSG_KSCrashType.c */; }; + 9F87EC2899A32885BC96D1F73A78357F /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = A832916A078966CF057416B5074A3D43 /* RCTImageCache.m */; }; + 9F9500DD72D147897FF71A3FE891A5E5 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = BB95A42F1DB412AC51C240029BF888A0 /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9FB5323418E1EAEB28FCF70C427CD296 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = BA4E478BE1D462DDEE6877421281D92C /* backward_references_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9FFD8F1095860972C91388E79894DB12 /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 076356B50D29C4F9855F5DE0CBCEBB2E /* UMLogManager.m */; }; - A062043FC607B07FAA0728CD52647A6D /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E84A2B5CBF4936A0B8979077C0CFFF4 /* REATransitionValues.m */; }; + 9FF37705DD6F36F8D0B31B5DCCF161F3 /* RNSplashScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F684B0B3F92BA579D74956F3636C84A /* RNSplashScreen.m */; }; + 9FFD8F1095860972C91388E79894DB12 /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B6589BE603FEA2993B00F22AA582653 /* UMLogManager.m */; }; + A0A9805973D107A3AE03D182A3A1F7EA /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = CA28D65097E457C8F388D75083A9111F /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; A0ADECAF3438ED32F69B08DDF30BF4D3 /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8ED632F7A0BA00A16F1DDFE661F91ECD /* DoubleConversion-dummy.m */; }; - A0B50A62EAAC30EBEA3F8F613C49C05A /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 608833E6861B4E4F8275CC22B3FB5F81 /* UMViewManagerAdapterClassesRegistry.m */; }; - A0B88D46A78F2FF5E0096456B6408FFF /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = EFC282E48CD62116ABCC0607EB1C39D9 /* UMAppDelegateWrapper.m */; }; - A0EF8DCDC1591E13692B28C9A9F34F11 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 704C0EF5CF8F036B06D71B8404F082B4 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0B21A8FFC448CA07A0173E8065DBA4F /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B15F14FCD1BD1D9F4715F0A85828A79 /* SDImageGraphics.m */; }; + A0B88D46A78F2FF5E0096456B6408FFF /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 8129C9C241D72DBCD91B3FF571A91FE8 /* UMAppDelegateWrapper.m */; }; + A0EF8DCDC1591E13692B28C9A9F34F11 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = E8890B903CEC07A38B5E97F6B26123A0 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; A157CA36BC537CC9E89D6DA27974AD72 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = B36C118383F797CE788925AD6AA6D585 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - A17F3275729078AD008C25F8F2C7F77C /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DB6EFE5277CCD8A54FB4610A1FE0D3E /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A17F3275729078AD008C25F8F2C7F77C /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 07233EDA1FC3BE41EB1F2313D8F020BB /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1941A826F689FA16724D3C0CEB50724 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 38CDD663F2229741EFDE605F49D55F74 /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A196C02C3B3FA339D33D46ED6BA072E8 /* FIRInstanceIDUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = C243618E51AB390562FEE55114C657DE /* FIRInstanceIDUtilities.m */; }; - A1AF06FAC1DD80E3E7178DBAD4BE2247 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6588502A14DCCDF5A37D2A2DDFA3AE4E /* RNCSafeAreaView.m */; }; - A1B06EA50F276D2CD90D664F7088C959 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E7ED6B57037EB52B49820D4A514E644 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A1DD6248165A14E9BE84518A3DBDF6E9 /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = AD3B41E0B2649E3F42467961621D0F96 /* BSGSerialization.m */; }; - A21406DD08E735F678E9F090099C47E0 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 428844487F23597C747AD12CAD9D1440 /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A1B06EA50F276D2CD90D664F7088C959 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 11E4FD2442C70128644C7D019F1DCA17 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1DD6248165A14E9BE84518A3DBDF6E9 /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F2E0C3D4F7F3E5B307FBEFD9725F1EF /* BSGSerialization.m */; }; + A1EF1A44275F86776A7D9711767D32F9 /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 68C53D78F5C0E4A6985095AC54E666E7 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A21406DD08E735F678E9F090099C47E0 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = C444E8C4FFBDF6017C84D102EF653A10 /* 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 = 07F2FCDE8CF5AE5EED96CA8EA9AB1354 /* rescaler_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A27EF607EF11107887ACB1B2B805275D /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8263ED3D75AB0213BE2E35DA4D2CA5EB /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2A70CD096FE24B7E48EA8C86BC112BD /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A0950220244BF61D612736CA0B8AC13 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A26C65DA4E90553ED01198F57B94D9D6 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 058C156343A4AC8BE485A77F1474F9B7 /* SDImageCachesManager.m */; }; + A27EF607EF11107887ACB1B2B805275D /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = DEB21DA40A7D7B3E1D6A593245AFE04E /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2A70CD096FE24B7E48EA8C86BC112BD /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = C999CBF0CDCCF9350B0C0A8215830F1C /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; A2B1FFACE7567768C3FC2CEB3CD9499D /* FIRInstanceIDKeychain.h in Headers */ = {isa = PBXBuildFile; fileRef = C1B012452C7833FDA989026BAA5BB17E /* FIRInstanceIDKeychain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2BB5FDD99C8D8A31F91D6698801CC6F /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 2711C01F7907BA82903E557C61359C28 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2BB5FDD99C8D8A31F91D6698801CC6F /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 79DA7C793A6EC92ED4DC9668657C2B27 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; A2BCACD8EA23E21607E2B81D655C81FE /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 82A45093CB9A7521E5D4DFDE161F0934 /* upsampling_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A2D312CDE2CA43873C1C0E190F7DBC14 /* react-native-video-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A9954286FE2B8FFC4E7BDD00D99B662C /* react-native-video-dummy.m */; }; - A31C52F4721B38C99C9BC7A6A64E7847 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5569BDCA2E37EEDFE27DECBA17377386 /* UMReactNativeAdapter-dummy.m */; }; - A36AE41D52A9F968C8688EB5B2614D14 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D41565ECF50A645AFB1FFD05C35005E /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A38317FADF375FCEB9F1E391DF5B6903 /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 32D3A5FD177AE01A2EABD8740246262B /* RNJitsiMeetViewManager.m */; }; + A2D8BC4F024E788E74788958DB114D6D /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E788ED0D0E971350B6AA43A6E9EA1C8D /* REABlockNode.m */; }; + A3411BDF8205A778C85663247380FC37 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A365A488B320F4811CB15565335096B /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A36AE41D52A9F968C8688EB5B2614D14 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A7F70906ABA2A6F5B30D5A3EB40CE4A /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; A3899A422351CF681012352754EFDED9 /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = F5776A6462FAB1D3EB2498EEABA6EF42 /* lossless_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A38FEF0CD3E30E7CFF18870BAFC1FAF1 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = E6A82EFE71F698F08729D8A48A8A18CC /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A3A0FE96343D00499AA143E78358C52C /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = C7B6461DDADD7F645B46FFC393866F9E /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3A4A064100A12ED2387C3EACE12D7C2 /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 831F2DDCB51B3780CE7D6A9D4F430D89 /* 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 = 0FB6260E5B1618C8A23D9F32B4677B0F /* EXRemindersRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A41CCE6BEBBE0CA021C67C1D69BE8DA7 /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 6415D47E5E5FB17066FCD67569076652 /* 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 = 0B6DF641E271B5C0C994E22FB503DDC0 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A39BEC2BD0ADCF594EAC8A5BF30A4F94 /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A5B59423CA8D381C4BBD432AE6AD75F /* REAModule.m */; }; + A3A4A064100A12ED2387C3EACE12D7C2 /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 675E5D49D53D73187019A27801C41869 /* 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 = 6F852CEDE307141D58790A6953B2FECB /* EXRemindersRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3B90C63A7501F3F979CE7E695C5CF75 /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 027DEE4C1512F5E35E4ABBBC3D80CADE /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A41CCE6BEBBE0CA021C67C1D69BE8DA7 /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DD79C048F2F9C16126AC0E71B625506 /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A41DEDBF062AFD04FBB39D84A983272D /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BDC91519F1ED4F6AEDAADB17C5A4FDE /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A478B88053C971FA3749431C59577E83 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = CE94ECF312F6A0B42B6BE768C75B7482 /* upsampling_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + A496FF8B0833F966E8C4B8DACA462DDB /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = ADACD95D8F6382B1FD9712DE89344E08 /* RNNotificationsStore.m */; }; A497FB482F032365646003FF4688764B /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D1C56BE80AF1FE8CE01A1E6B7B9F51FE /* 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"; }; }; - A49BB6315D9B001445F2CE0ED1DACAD9 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 019752590BA28354EEDFA435DB050EAC /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4D08ACD1EDE1F71F05DD430CCF9D3A6 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 840FA7F9C9DC617CC47EAA918C0EE0A4 /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4DCE185030300E41A470AE199ABCB22 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 296459A2F0650D21EE05089829080E39 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A554A0E915AE9038056801F95122E188 /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = B67C0CBCF0E90DB1A7017C4FA305DE0F /* SDImageTransformer.m */; }; + A4D1AC72E2F6BDACD5C201246CBBCC90 /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = BFA247F5974A6677929F9A981DE7CEDD /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4DCE185030300E41A470AE199ABCB22 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B35119F4088DD54E10619963A15ACA97 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A5245F8132375FC9C92D2D5BE5D94868 /* RNFirebaseRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DC2FD8AE0197E4115A8D2A9B5EDB31A /* RNFirebaseRemoteConfig.m */; }; A55A2AA9ED8DEA86F1FAB5D7D8903F2C /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A9826242AC190D52FE58337BBE37A4C4 /* nanopb-dummy.m */; }; - A55C24FA208312D46CF87FD5853FB9AA /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = 140B2D0F51861EEAF82C5B9DE4181EEC /* BSG_KSCrashSentry_User.c */; }; - A56D474B2B75A4FFA4FBE9F69CF5437C /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C9CB52510C7D90A4BC4CF734E58B1883 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A58F08F163593B4D07A2AE698F990BC9 /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = 49FA8818599D445027EB04C586A2A6A2 /* BSG_KSCrashC.c */; }; - A5999206D272135F114630F2DA22BB29 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FF098084549987D8E0446F16671D4E9 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A59BB1F31F21D4D8A649DE0F022A17BE /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 0BBF37AFD62522FA77A1FCA579A3062A /* RCTProfileTrampoline-arm.S */; }; - A602AA8293A289F43D9A18AFB17E770B /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 82C8F9A5A7C2C2F1B6DA5E7EFA6321C9 /* NSButton+WebCache.m */; }; - A6284294E40579F2DA118DF27AFD97F3 /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = AFFE0298F47225860ECA486FDB8262AB /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A63002202167319878EE8A8DF68E0A18 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F4870412EFD472EE8964494A24A22A4 /* 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 = 8E5D5A56442BC1A2D76A733018CFDB67 /* 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 = 925A92D967E9433955AF48E86676E589 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A55C24FA208312D46CF87FD5853FB9AA /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = 9BE194BCBF94E09172E4340DD7686E24 /* BSG_KSCrashSentry_User.c */; }; + A56C50CEC7725897661EFBAD374DA115 /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = D2AB9B67B0F639DA759FC1B0841BC6A9 /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A56D474B2B75A4FFA4FBE9F69CF5437C /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 25E04E81DF3771994D1AD16A26EDCF46 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A57FBA38708D3D49E038F09E3190E0D6 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = EBCC1EE518130A7BEB24147271BD699A /* 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"; }; }; + A58F08F163593B4D07A2AE698F990BC9 /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = 514E0D016C1BE2F8E682DF87C7BB3240 /* BSG_KSCrashC.c */; }; + A59BB1F31F21D4D8A649DE0F022A17BE /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 88D32AEAF24B72B853AD03FC0774B285 /* RCTProfileTrampoline-arm.S */; }; + A6284294E40579F2DA118DF27AFD97F3 /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DC26F9789EA7BEED081317924D62931 /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A63002202167319878EE8A8DF68E0A18 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EAA1B093A4DB20F9F31584CFE7262384 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A63FB356D9F55E74A4EFD49D8D269C52 /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 10D27A7F00D229731BC7F62D6A8F461B /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A63FEE2D803BCBAB24BADA5B88EE49C4 /* RCTAlertManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F1A97663093C451E51C1285AFBDD4177 /* 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 = A731CFCEDA268A9E7D5B827BCA3528E8 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; A68A07EAAAC0205BC3CE6313B6FA44AA /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = BC24DDADEAFBD94E4143A49973415FC5 /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6F29F923CD8B7663A3B1446BB8F4192 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4339CC5EDBE21248B57B43142C78FDA4 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A747D00921E5C8459DFF2004FF05D98E /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 496F4557E7A4D54E268368278710F825 /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A799D2769C65005F19BEA2BB6DB53B70 /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = EEB5281683361FD2FB295C3256F443F4 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7A026D25F6FD92C8F49D7E06BD8FF1B /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D0A9025FF4604B47ACC9C18CC3C62938 /* react-native-orientation-locker-dummy.m */; }; - A7A5542511C900F52AC1B44C7AEF85EF /* RSKImageCropViewController+Protected.h in Headers */ = {isa = PBXBuildFile; fileRef = 48702D847F7EC6147DB79EF8462AC9F4 /* RSKImageCropViewController+Protected.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6F29F923CD8B7663A3B1446BB8F4192 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DC839280346F1C3CBB79D66A0473331 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A712234B9A7A5984D6D8DF3B373BF3E8 /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 04FB336B843A7FF03BD6F065E8577F16 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A799D2769C65005F19BEA2BB6DB53B70 /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 942CE26A8AA3D8D3B39ED7DA35A07AA3 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7B4081CFE560DF41929CD190B0E18D7 /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = A86B86337D02147402852F004802F71A /* REAAllTransitions.m */; }; A7D325ABA622F9D7D56799439D272EA2 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7AA70902F993F49F584014B81ECF7583 /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - A850323E93ED4EEFA8FE1A1D774DF7DA /* RCTKeyboardObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = FE49025B5A39CAC4A13F919BABD3E20A /* 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 = 9FD51D143FD71CBFA5350EB8CFB8E60D /* 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 = 398CD556F8B631C62A717D5FBAD01522 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8884B64FE7F01C2BC171BA9721A8281 /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = FF3246FE28E33D7A28FF5A2C26ADD2AC /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8968682E0FA6CE487A329EE245CE866 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B2689AF3C6A5C24499AC4698427F4C8 /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8A4C58599FC553160B594E4A6BBD860 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E5FA3CB30EB592869B083947201A5EA /* RCTDecayAnimation.m */; }; - A8A648552B907AB12CBB0F0988191FB2 /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7206D69E698E689460E8C5A477C1CB6B /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D761807A2FECF60EDB424C5ACC8B538 /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8F813367283E61EF989A9161DC3F79B /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = DC91FC415BF07278BB1143F82FC4B0A1 /* BSG_KSCrash.m */; }; + A8264F2A2D4914201C40B91100B7C2BE /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = DFE6F4AE4A52E0402C95624B31731A16 /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A850323E93ED4EEFA8FE1A1D774DF7DA /* RCTKeyboardObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 08E1AD7FD4DC7B341AB680D19921759D /* 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 = 4E805B6A93E2DDE62578C56D49A0CC4E /* 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 = 445640C4E059EF5BD5ECBBD9FF01EC39 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8884B64FE7F01C2BC171BA9721A8281 /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = E730F5A0625FEFFE5532EA912AAFA8F5 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8968682E0FA6CE487A329EE245CE866 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 58076B1CBB4B83F6FC127CB8A4EF4CF4 /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8A4C58599FC553160B594E4A6BBD860 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = C11B859C9B678D377691DAB7053CABB5 /* RCTDecayAnimation.m */; }; + A8A648552B907AB12CBB0F0988191FB2 /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C6F14FE5674A24CE56D53EDBD32640F /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 045BDC76AABBB9A6173613CD6C96D9B9 /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8F813367283E61EF989A9161DC3F79B /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = 62823C0EE64253C9C2D22C7DC7268CF8 /* BSG_KSCrash.m */; }; A924B55918143BD56D787E62B2FD3129 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = D8322329471A998422CAA20E7C3BDAC2 /* GULNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; A9259A030B103BC6C003F7809B560F9D /* FIRInstanceIDUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D82F1D2804E0B1108D45AADFEE32BF6 /* FIRInstanceIDUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; A92C327E57D9A9746F7176FAE308E23D /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FB899140A93A07307991F163CAB9FA8 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA0C7390010136B9FEB8AD0112D8C60E /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = D47D7BFB7566E8A7C3476E0370D0BE27 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA0F716DF4C2907DEC44755CDD57AC23 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = EB90C3B9038444E21C8CF6386023AD2A /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA2B0CAEF7220F8526DAA0B6C60C44DB /* RNFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = B33FEFD08F37A550E2C635EF0D79B7F5 /* RNFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA37665ABF39EABCF4356FEEDD2F47A3 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A5C5ADDEC5949E17C0C7CA5BB0EB911F /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA0C7390010136B9FEB8AD0112D8C60E /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BA08CB7743F937D23C1A6C7D8FBC27B /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA0F716DF4C2907DEC44755CDD57AC23 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 49088C0902F6B970C7555A3B4255F85C /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA37665ABF39EABCF4356FEEDD2F47A3 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AE6E96DF9C6FDEC503DEC3366EC4D7AB /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; AA6FD30C2E41C5828D10AC115BF0D278 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = CBAA112A0946E2A10349054B42CCFAFD /* alpha_processing.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AA78A3D95AEFA991A1D04CD8150B96BE /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 57800479DF81CC4341AF8C74CAA41B87 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA9F8D854A546813EECDBC68A01F1B55 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = BC5E566CC46B70BDC9A5B9B3461FEBAE /* SDWebImagePrefetcher.m */; }; + AA78A3D95AEFA991A1D04CD8150B96BE /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 30D4989713F879DD1DB017EFC27AC2E5 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAFF072BFB3AD8990391E4781B0ABDFB /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DA4A8DA48D85D2FA92152D838BCF910C /* QBAlbumsViewController.m */; }; AB1226A0DCFE6A926C88AC6DCB647095 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 77134938C96318C3C12BE76FAF9D228F /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB135DF9642F966197BCCC01EDAB267E /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = B8208665A653F01D54059A73295FDE93 /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB17B27EE83377D706D7B16A334B1D16 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8903713160BBADFA4ACAC276057D4B5C /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB2DF9D8AFA2AA495F4C18D293F51A63 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 881F3F80A1FE603DF970448C24658675 /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB86BCB2269C408A867C16E19B0F615D /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4C2671E96FBDB6EB09DF61C9345F9024 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - ABC98EE345FDDE750005777CCCF68D06 /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 39166A3ACDF4227152116AD503BF645B /* FFFastImageView.m */; }; + AB135DF9642F966197BCCC01EDAB267E /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = BE1D0D6043DBC36E460388414B674120 /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB17B27EE83377D706D7B16A334B1D16 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = FDA5B7A03641BA8B2DBE29A614E7770D /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB5088155ED951C7FD8AAF83A8E9D712 /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3505D6FE5DDE3A48D66A447E8A218EF8 /* FFFastImageViewManager.m */; }; + AB86BCB2269C408A867C16E19B0F615D /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69C07DFADC33ADB0F48C471F4D398D37 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + ABB47A42B6AC5FCC66D51004653F1350 /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 170093C4AB07780A25C833E08EFE2CC0 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABD5CE7D3CED819A1F0A08FFACA97498 /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = B41F4F764DC26EBAE2BC6EAF72039F73 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABEF209DBC95C08DBDC89ED050E0CDE5 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F8DE0EB9FAB472116E359796DF26409 /* RNFetchBlob.m */; }; + ABE81D6839086AEE70A51A5594D0CFE0 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = C5E0474C43CB4DC755D7FD8CF4B490A9 /* SDImageCacheConfig.m */; }; ABF126106FD8D877441956C3AF553EEF /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 00FCAFABD8C04326617B681ECF1A75C4 /* pb_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC3D0C5CE1A3373A92A08FB233837183 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A9136BB9773FE121610B6B24E0FCB2B /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC3D0C5CE1A3373A92A08FB233837183 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 99FCAAA12DAD18758896A64F4FEE3AB8 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC6AC70E3EC8B0747B28E02CB723332F /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 390BCA19F868BD4F10CC42800D2F720B /* tree_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - ACCFA8651243A8B66223A58FB5C4D7B1 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A7A856045AA9746C6CE18B9C4D1A5880 /* EXVideoManager.m */; }; + ACCFA8651243A8B66223A58FB5C4D7B1 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 03DBC959BA24FFD4FC5267A7255E3E29 /* EXVideoManager.m */; }; ACEF93717CED6920932D1505DE58206C /* GDTTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FEF4CD89A0D3A38ABDB59E2DA0A6050 /* GDTTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD3AAEB463169A1BFF8E5E268764213A /* react-native-keyboard-tracking-view-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D76AE5198366EC5C840D39481EF7D0F /* react-native-keyboard-tracking-view-dummy.m */; }; - AD47CE5C5BB9EE1563C6666B5FD1D05D /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BE12B775FA858722C656B6CB23E0FC8 /* Compression.m */; }; - AD5A9C4E3B05004DD94EF8B0BA3C82F1 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C5E1FE199F096E6F7DC9E1FDDB0C346D /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD62B8FE96BCBB88E2DDF1A71EA69459 /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FFE75388EEE8D910347DAB00BFB827F /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ADD9AB670AE978846E04C58C7762ECF4 /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AFEFDB824E01E0DD552C963341636A78 /* QBImagePicker.storyboard */; }; - AE1666A5931F876EA711E4C94CAFFEAC /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D840A641681843914893876836B4FA96 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE16F2E116CF727AB4FBF36B47FA7D65 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 689DE2E62C2A64BAF2D9EA01E6D8EA4B /* React-Core-dummy.m */; }; - AE50881383D99425658602348D1744B0 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 422EC0A9C834E03CE373FE805701DEB5 /* EXHaptics-dummy.m */; }; - AE7DFDF9C67FD8AAF3A3E5046353CCCC /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 01DE02F9F42C143CD38F32DEDA4223B3 /* SDImageAssetManager.m */; }; - AE7FEE951368CE6570DA22D040F3C0CA /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EEFE603F9091830102EAD978B0A9EDE /* RCTConvert+FFFastImage.m */; }; - AEA0571AD000EA6F97808A38CED466A8 /* EXRemindersRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BCEE5E040F3D638C0792F449ABDA87 /* EXRemindersRequester.m */; }; + AD19DA25FCF49041BAC3ABA2D00FC9C7 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 11C50485C128CA353722F5F1B3C0F8B6 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD274B1478D7130D4EDD4B3DB34A50F5 /* RNFirebasePerformance.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D43F8333E425C69C7EA7AF77DEF7F06 /* RNFirebasePerformance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD508BA5069D63AEFF15EA839B5BB84C /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4085B6FA8C44FE634A2DB999BF874CC0 /* REAPropsNode.m */; }; + AD88DEDA8565688B7C3E17153C316CE8 /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = 47B0AFF0D32D5B238B0338E82F823051 /* LNInterpolable.m */; }; + AE1666A5931F876EA711E4C94CAFFEAC /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 77892E1E84595471F5AC0F2C036E5F15 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE16F2E116CF727AB4FBF36B47FA7D65 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ECA4B460688DF2142CF64C2256B71522 /* React-Core-dummy.m */; }; + AE50881383D99425658602348D1744B0 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 09BC00953B7AD898175C78AAADBD317D /* EXHaptics-dummy.m */; }; + AEA0571AD000EA6F97808A38CED466A8 /* EXRemindersRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 091C9C23AE69F9B2BA8D31111118D209 /* EXRemindersRequester.m */; }; + AEC280D821AB359C87BCCAA4A4D87401 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 105510FA7F0B670B5EAC334893288FF2 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; AEFDDCD92E687A0A93BAAA2AB9DAEFFF /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = B2FBAEFB40E64FD069B21BE4C67A4573 /* cost_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AF07DC460999AB4BFF7D68C7F4CDCC3B /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BD7C0EC7ED516058E0818918C6E44CC /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF2C1ABC93380B8C774D3C99BF7F62BE /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 53631A21AA7DE7C3CB9F063A6499C3F1 /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF4FE70F938428397637FCC5003C6BEA /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = A65940BB455BB0B0FEC9FD931DB65BC1 /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF595DAB9D60ABB10860CC5B6618FE77 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 48CD830F7E24DD3BD7BF4A528CBACE50 /* Pods-RocketChatRN-dummy.m */; }; - AF7CAABA18B600F01751B1E687EDB319 /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BD3113B8C20E70AF080D54D141380AF /* RNVectorIcons-dummy.m */; }; - AFD60F1F9A071A589DEB71457DE0E5BE /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ED0E072C4FD33A7C346388106B39B1DF /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B034EC9A1620FE8A43A1D62184C02697 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 54E8D3E5278A83053F6DE13F1F6FAEBC /* SDImageCache.m */; }; - B049DD8BCF695212F5AD90B8B67F4258 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = E229AE471DE8CDDEEC7790DBECC166E2 /* SDAnimatedImage.m */; }; - B04BDF11B7C6415CCE10788068C33F1D /* RCTVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C0811DAC6D552FB356D7575AF4844BE5 /* RCTVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B064A8622C91C82E64FDD2CF08D54A68 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 7917CDFEA845901ECC20B88651896DA3 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B088FCB60A195E4353A2905299393ECB /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 78C3881A9847D8F7C438ABDF1A993A46 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF022183DB5643AA88BA1630D660D050 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 07679B01ED7717BDB95924F0A1F4636F /* RNFetchBlobReqBuilder.m */; }; + AF07DC460999AB4BFF7D68C7F4CDCC3B /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 2742C515451DD6FFE912AF6EA16CFB7E /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF0FFD08DBF08FDBBB31E9A2D9827874 /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = BDE6E262234A5B14E7A484374795580D /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF26D3721EC5B32FD3C4296FF0E9B3A2 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 7AA8EBFC6653280BE650D85406DE1BF8 /* ja.lproj */; }; + AF2C1ABC93380B8C774D3C99BF7F62BE /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 734C761D4996E224062F7055DCD5AFE0 /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF4FE70F938428397637FCC5003C6BEA /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F9EFCA7F769A8BC9D4D8F58E29BB442 /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF8FD141A5FEB2589C65CB1252690EE1 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C3ED87CC99B7D13CD7CEFCF9E532F865 /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFAC1BCF2C50C04F7A4E16EEA743BFAE /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = C8C5CD2DE6191D4F0CFE7D02E8112BDF /* SDWebImageDownloaderOperation.m */; }; + AFD60F1F9A071A589DEB71457DE0E5BE /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C4EB2F545314F1957F530FB31F7A15D /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFDFDFFCA805C92A81F86DEA7679902D /* RSKImageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = CE9DD018769C9C2FCA491ADC228A0851 /* RSKImageScrollView.m */; }; + B008ADEBB4CF38279CB0C78ABD752ABF /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 63E21425C37E960C1E29E2D3EF3300F4 /* UMModuleRegistryAdapter.m */; }; + B064A8622C91C82E64FDD2CF08D54A68 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 5779614F1165F296705D5FD393E39B60 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B088FCB60A195E4353A2905299393ECB /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 72260382C11F2957645F698766C838C2 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0ACE29A69DC1F07E9F6DDFB138F4955 /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FCAA8376DED59C1A32771B7C0FCB62B4 /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; B0B0B766093210EB3266CFB15B7F110A /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 182E5CBFF1ADD6815DBC3A699C232952 /* mux_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0C085A3F810D1DA5D4D8A71E7C82093 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4255A70D1E5472010E7123FA03A17B7F /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0C085A3F810D1DA5D4D8A71E7C82093 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 42476F7A64AA7BA8FFB35920F1FE9AFA /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0C09BB7F88322A34648183983BEB7AE /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 58A2541978A1B839254E0ACB3701F3FA /* RNNativeViewHandler.m */; }; B0E28F82AC12DAADBCC201F6E686F0D8 /* FIRInstanceIDAuthService.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B7A559B4DD56A2C54D401167202A9DF /* FIRInstanceIDAuthService.m */; }; - B1562C94F7F2F8FA559A33B3A7EEE92F /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CFEC11A91A614DDE0F8761B5EB73A90E /* 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 = C16058E82410D17A43BC355CCA4ED3C6 /* RCTDeviceInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B18BFCBF123C8BB3F0833317CB2ACF7E /* RCTConvert+UIBackgroundFetchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 482F5F5913C7CE680229B17501F62F19 /* RCTConvert+UIBackgroundFetchResult.m */; }; + B14F855C65B222E64F60DADE67D8F328 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AEE3DD005F902CB0572F5B9E859A7D7B /* React-CoreModules-dummy.m */; }; + B1562C94F7F2F8FA559A33B3A7EEE92F /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E726FFE91602139913C1543A7328C450 /* 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 = 6262EB2DC13516A6F27E6AE25484ED7D /* 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 = CE6262D56D601609A89D3D28DE908AF9 /* GDTAssert.m */; }; B1D79119AB2B168F02963667EC88474C /* GDTTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = 23DCACE25ED518A4FE235A08301F8121 /* GDTTargets.h */; settings = {ATTRIBUTES = (Project, ); }; }; B1F0D8BF7A1CE374F9985295E86695C3 /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 43041710CE45CB1D44DCD54827A736EA /* lossless_enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B210B05CE757D6B2C0CAD0004F0580DD /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CEE2F8B47E188524845DECF761EBBB3 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B224294B74504C684A1E3F27DE4E9B72 /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AADD0595A7995C25B6508F95D287B69 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B210B05CE757D6B2C0CAD0004F0580DD /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 476900FE80EACAEF08215CC16E6D35F7 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B224294B74504C684A1E3F27DE4E9B72 /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = D6BF450B1CF01327AAEFF3843EB2693E /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; B263A4FE744BB18A7C7B543C66725FA1 /* GDTReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DC84424F7C7384C711B6162C8CA2ED3 /* GDTReachability.m */; }; - B272B8251BB36633F22FDB672A7A408D /* RCTClipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FF341EBB2130B6E8A91926D3CA35683 /* RCTClipboard.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B272B8251BB36633F22FDB672A7A408D /* RCTClipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = C92DE7A07F2E756DF5DFA76B0D7364C4 /* RCTClipboard.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B2CA11C70BAE56E96D0654BA8607AC75 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 3D69B72CBC306DA96F67BEBB2E852631 /* utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; B2D6499450888707D3DFC50BD9E94F80 /* FIRInstanceIDConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = D83FD833133BF0578E165633F10E99BA /* FIRInstanceIDConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; B2E03206695085DC3C168497F94704F0 /* libwebp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B9992A0460441B3092B6F393EF92483D /* libwebp-dummy.m */; }; B2EA82D8CDB5F846D0716ED5A1804CC6 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = E3CB6BD41583CB5AFC7913B38BB7F166 /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; B3115B87C80669BE7BCEE8EA9E0B631C /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = A29119C8C6D95E3F37AF1DF85889B7F9 /* alpha_processing_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B32243CCA74E8A6D7B41976EBBADB34E /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 00FC835CDE9DFEFF1104EF4F7E9A0474 /* QBCheckmarkView.m */; }; - B36F0C10FCF0FF9A3B8DCBED999BC250 /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EC179BB2DA882432C4069F95F687466 /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B31CD0738D82D0522E9C83D882E03189 /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = D0EA0D0D64A4CC345586C1291CA087A6 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B36F0C10FCF0FF9A3B8DCBED999BC250 /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = DC43EFFCE628499967009E8FD1F6CEE3 /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; B38A6F0A02BF1929884827243D4A23E6 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A0667FB69F570464458FD6F11209756 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B390BD68076518967ABFC3435372468F /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CEC97C8B90A6F43F7FCCEAF8DB16D13 /* 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 = 2F247C6B74C425A67EF72C70425C689A /* 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 = 54A1458A360C37A48571E2FD0299910F /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3DFC49CD5F1B7D91916567EAE8F3306 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = B04C828EDBBF50DD4110D46B7CCCC49E /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B40B7DE0A91A1C941A9879C938E47A0F /* RNCUIWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = BDDB896AE0C815BC2E6CFC74B852BDA6 /* RNCUIWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B41F1A4E0E49D3C3BEB13C83D5FB3BEF /* NSBezierPath+RoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = ECD343076F797FCD752BE527123BF02B /* NSBezierPath+RoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4300BF68D8E5E64E24CF0A04E77F888 /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = F07227FA31D8CE587E6921D10F01107E /* BugsnagCrashReport.m */; }; - B480BFFEC12A900116E4600D0AF1F5E3 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 129134F86E8966ADA3471E09FB592D00 /* BugsnagUser.m */; }; + B390BD68076518967ABFC3435372468F /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 242135F551E8566963FD257AC3087ECB /* 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 = B453937127F6A3D264A97AB9C73C0ADC /* 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 = A60CE7222FA178C7A80B5DDE6B86BDA4 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3DFC49CD5F1B7D91916567EAE8F3306 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = B073A051EB57DF54349C9150A67DAF60 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B42156B732ECB50C8C3D80656704AE49 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 91E17CCC3C8911878CBBFDA09D77A55E /* NSData+ImageContentType.m */; }; + B4300BF68D8E5E64E24CF0A04E77F888 /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F3169BDD19657EB912EB0AFCBC7E40E /* BugsnagCrashReport.m */; }; + B480BFFEC12A900116E4600D0AF1F5E3 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 6131DCBD0941A1053295C68236B7F087 /* BugsnagUser.m */; }; B4915265CA25AFBEF72EEDAC5372E840 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 1BB87A95912BAC4342CAA4890CDDD056 /* io_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; B4CB74E561AC6D58BF7F5AE56B71DBFD /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 694F7D3AE7294FE7C0CB4A0BB574213D /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5244A908660A2CC6694E901758453F7 /* RNFirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 73D906826174E00E73212B5936EE0CA2 /* RNFirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4ED9D24026C8748415A9A0E86F9DFE9 /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6207FF278A70770958D7291B4E8519D2 /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; B52794F72404F5BA7A79A2DBBF596CB3 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F0CBF29BAF39819E8063CD2CD648351 /* 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 = 5EC56145CCB711911DA3B5DF3880C2DE /* yuv_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B54942BBD25A3BDDB5B490EE1828291A /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8775FB3EC2DF584EA64AF8186EA7D218 /* RCTBaseTextViewManager.m */; }; - B58807C392160EE39BC7AA15605D3A44 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FDFCD8BE393E9584DF412AF2DF73EE6 /* BugsnagSession.m */; }; - B624497A75884DC02E99FB820379790B /* RNFirebaseAdMobRewardedVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 5528E6A2F3ACD862E83084EB2126D020 /* RNFirebaseAdMobRewardedVideo.m */; }; + B54942BBD25A3BDDB5B490EE1828291A /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E04AFC8B5440DD13FAF59D1180ABCD9 /* RCTBaseTextViewManager.m */; }; + B58807C392160EE39BC7AA15605D3A44 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = FE402DC8FD228C6CFD011F923A0A9354 /* BugsnagSession.m */; }; + B5F9CF4280F9F25C03855C5C4C2E6908 /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 70CC6D385F847CB566E86D0FB0277B36 /* zh-Hans.lproj */; }; + B6435778C9CD17E5119C42E0DEF5BD88 /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F3320F558C62ECF22D6E07B490B492B /* RNUserDefaults-dummy.m */; }; B64FA42E184A0EE28D65B959449C49FA /* GDTPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = 90C141CADBBAF70D872331E10985D3F6 /* GDTPlatform.m */; }; - B69B5C3335C5B61D37F8047AC4CDE4C1 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = F43910CB743F06F295966C913C58D465 /* SDWebImageIndicator.m */; }; - B6A68DB256FBBB8C836320B6F6B6FC72 /* NativeExpressComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = CCD3EC953CE3B6A1C8E5ED1E0D31F6C8 /* NativeExpressComponent.m */; }; - B6DE0EA13984E418BB71E9C66CB27791 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 55EFBC31BDC682BDE52319F571FC8B49 /* QBAssetsViewController.m */; }; + B67CE29038B7DCB160F3DBF14D9B159B /* NativeExpressComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F0C01DFBB5346F4FE6D03839E067D94 /* NativeExpressComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6900486138E7775C632F7751EDC426C /* RNFirebaseCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = DFD1497E7A315817235A43F4C5B958F8 /* RNFirebaseCrashlytics.m */; }; + B7222026AE68D842EFF653D9C697C8AA /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 2006D9CEECF56A6E7407AE287B9ACBB5 /* UIButton+WebCache.m */; }; B724AB793386F487E48DAC082B773D56 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = ED10B73795E82AA9A70F0B015CE551AD /* muxi.h */; settings = {ATTRIBUTES = (Project, ); }; }; B7253BE61EBDD783BEDD27B260F45F72 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 243DA0557CFD54737FFAD26E98C63D90 /* 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"; }; }; - B751A02B30D18743B395748B47369240 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BC3FF44FD0DECA39B6AE17973A40385 /* React-RCTImage-dummy.m */; }; + B73A9E09AE20B315197ED28B306E6ED4 /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 16B9E7C7E39B38F721D1296C3C14BB49 /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B751A02B30D18743B395748B47369240 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A85BBF1BB8607EBB7E6BA89D2278165C /* React-RCTImage-dummy.m */; }; + B797753627C0FEF13D81AB9DEC73B859 /* react-native-keyboard-input-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D3BB9A691B6348607528B84A81C4278 /* react-native-keyboard-input-dummy.m */; }; B7A4D50989E610028B3EE3816B474C3F /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = A6120CE8B30F6445F609BBCFEA429081 /* msa_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7AE915798FC8A54F00BC4C5A1AE2C16 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B3C4F868F5F690AFCBC2923C8B31BC7 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7B34A392B6BEBA270B4F0F1D677AFBB /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6C6BF8DEAE5F41DF41EDFDEEBB7C56C2 /* 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 = 87545F89DFF41A6193D0E86E57D4A8B4 /* UMExportedModule.m */; }; - B7E191713420F3EB03D1836E0997B08A /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = A9D228BB93A3C1F8DABA176C396E4FBB /* UMSingletonModule.m */; }; - B7E3983B43DC39D349CC5B9134F905A7 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = ACBE06FF89BA2DD1572CF560E88FDAE9 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7E92F65D6D8DB51A87741D0D3B8A641 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 13C6F9E43F61D0753575DE405608E66E /* FBReactNativeSpec-dummy.m */; }; - B811F4FBA429067098400FE870026741 /* SDImageGIFCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = D682A46134B9317FB89052EDDBF2A659 /* SDImageGIFCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B832AF604B54B0734598D42E2A33EC6C /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 78AE52F0BCA0532AAEA774CBD36EDBB9 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B84FD29B2E0A9C2F3714D67342A4A34F /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = B22E5237A551120F5B084752758535DD /* UIView+WebCacheOperation.m */; }; - B877D8EAFAA81B89E513FB5A0E30B97E /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = C4B1A1B5BDFA05E2CEE27999A2C8EE27 /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7AE915798FC8A54F00BC4C5A1AE2C16 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B5C5214D438E6FAA8D6D4D0BA99046C8 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7B34A392B6BEBA270B4F0F1D677AFBB /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1A4E202763AF3FAE6CBFC04895E4DF1B /* 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 = 7529CCA7472FB72A593D6657998C2972 /* UMExportedModule.m */; }; + B7E191713420F3EB03D1836E0997B08A /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = EEB466F74ACC7EBC0B496B85E36EDB3F /* UMSingletonModule.m */; }; + B7E3983B43DC39D349CC5B9134F905A7 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 7799616C7D51CD10922AEC96A99941C9 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7E92F65D6D8DB51A87741D0D3B8A641 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 80A15382E98BDAF0193A36F6DF062EAE /* FBReactNativeSpec-dummy.m */; }; + B832AF604B54B0734598D42E2A33EC6C /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AF76970552CBF5D498B4B5ABE92861A3 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B877D8EAFAA81B89E513FB5A0E30B97E /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 32D139AE1030A1F5EC0E6E808CD2B05A /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; B88A0A26402BC9E1A8E97FE2E26AC658 /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 903F529DD0B5A860A261EF800674CC7F /* GULLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B89B48C8C6AC9E45E892B0C80469AA01 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 482058D245DD69C4C3A6E87A0A57D953 /* RCTProfileTrampoline-i386.S */; }; - B8C0F8DE132DDA4B2F67765BBDA8962B /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 741B5CC254878F89BB3DFAB9E49B4C07 /* 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 = 3F2837544E174A1A515B0B38FE98EFDD /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B915BC2636A86740C6BB7F1F19062478 /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 68C53D78F5C0E4A6985095AC54E666E7 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B89B48C8C6AC9E45E892B0C80469AA01 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = BD8F473C3E4A3FE6CA53CE1F5D981D40 /* RCTProfileTrampoline-i386.S */; }; + B8B42FD5C70E21484DA33C68C2E0A1C6 /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = F99A39C227A6240858090253465A5496 /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B8C0F8DE132DDA4B2F67765BBDA8962B /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = A159C5095F4FAE2AA8E5AEA2CBEC07D0 /* 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 = 0ED6BF721FE2D996FA29368D4CC4C8D9 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B8DC823E24D623D3FDC3F640788107AA /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 753222B99C242663283588B2503502CE /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; B91C99470A466DCB57F620ADB4FE86EB /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7F800F4B8A79178A1AA514238E791D1 /* 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"; }; }; - B945AB087D8D6E2608E66580E9994827 /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B79E1416EC80D9D1EC2010E21C56020 /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B93DB7B6014BD4CFE1D1BAE72F4CFE81 /* RSKImageCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 294B31C1BD032FB26D3B0CA142612940 /* RSKImageCropViewController.m */; }; B950C322F3047EBBF4113A72B21A774F /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = BD1DB32E582E29C18BF49D87015CBEE4 /* alpha_processing_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B972C9D25813D77FB9AD4ED9EC505F1D /* react-native-keyboard-input-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DACED286BD47D7AD609C723B7242D576 /* react-native-keyboard-input-dummy.m */; }; + B978750E310B1EFC8978F3069655AD8D /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BD026613F6C368C6DDE23BF30525814 /* SDWebImageCacheKeyFilter.m */; }; B97AF74B8C78A7B156347B3161BFAA59 /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = C086608DBE5E51714F538B940CCC6CB0 /* FIRVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA1E41B59AA0DAD96FBD5235CFAD0C90 /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = DE2B26B0E0BFD62EF816B83137A018DC /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA2BA93F45BF4301FBCAC3F28C14D5C6 /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BB52BC5A6D5E146C1BDDD5573557478 /* 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 = 32A6EC2738B520FB1BE1FD70790DBFD1 /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA2C02AA76F1FB2454B36184BBF289B7 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = C4AAAAB99D75A904E920EA4479EA2B27 /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B9BA03782C529AAE1D395BDB2AD1BF2D /* RCTVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E36693084136459DC362AEAFB76F6C6B /* RCTVideoPlayerViewController.m */; }; + B9DB5D7FCC93DC54E4E7846B29589F67 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 915233203EE7BF13D1BE60EB4BA67D61 /* RNImageCropPicker-dummy.m */; }; + BA2BA93F45BF4301FBCAC3F28C14D5C6 /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B93D14FE376C2D5027B5831039438CF /* 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 = 699BB416915EB4AE3895CE56D70ED1AC /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA2C02AA76F1FB2454B36184BBF289B7 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = FEF802BF200B9669B9C5B9B36BE04EED /* 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 = 3A7C1893545DE6FC1C76C8BE35DCAA1D /* GDTCCTPrioritizer.m */; }; - BAAEB56CF1A1C6D7A438B3FF975AB675 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = 72282327F95F8822756EDF024E482C3A /* BSG_KSCrashSentry.c */; }; - BAC002FFBC9B1606318D4D232F2599FA /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = F82AF7A2832500365D7F13D772E53ECE /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BACE4FC8C19B79C9B6D1F7D63BFAF57B /* UIImage+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = FD23012415E231DC86E456F1F2E83332 /* UIImage+RSKImageCropper.m */; }; - BAD934141AC43CAD1092B240F575E77A /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 39C6A49C433EF04A3829B2494825F524 /* 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 = BE61E209BFADEC5159E0E8E7E4A3FD4F /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA9B9F43FA5E794B386F4D8FE15B4E82 /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F22BD4AA11C9AE735BF3D9A59AE4C137 /* SDImageCachesManagerOperation.m */; }; + BAA16ECB1EA31F1E5CD745A86C8EABB5 /* BannerComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 77EB216CA8013141E8A00A4CFB2BCDA3 /* BannerComponent.m */; }; + BAAEB56CF1A1C6D7A438B3FF975AB675 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = 810F63F23555A8505AEA8B76EDB18D76 /* BSG_KSCrashSentry.c */; }; + BAC002FFBC9B1606318D4D232F2599FA /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = B76D10F3EE89D60E6C52C27971C78A43 /* 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 = B828E567307694BEA54DFA798D446AEB /* 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 = 29E131BBE173EA23E9407F05606F398E /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; BB28C8FC324F6E7DC7CBC08C55561AB2 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 7D43C8A38081ADC40A9B7B7E25641967 /* lossless_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - BB68D8CE4C2514AB303A6456ECB02E10 /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BE4A52210C4A9853C5E764B2B1C9B1D /* 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"; }; }; + BB4BA0C2D66AAA500D8F5DD46CE86DA4 /* RNFirebasePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 02EFCB261C6AC928F019AEEEF5629A8A /* RNFirebasePerformance.m */; }; + BB68D8CE4C2514AB303A6456ECB02E10 /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F832139EA227D044E2A897B5F71A8A6 /* 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 = 739E0508F5A2D5CD2A1CFCF34938CF78 /* 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 = 2C32B052B44BFC07034F114E70AB7F1B /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB9F952256366A5F371F3878694AE44B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = FD959D94675D3A797C2B498CD66EDA86 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBB3AF86D9A57584E0DE9F9AC94D6F1C /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AAEC0DED46F2DC556FC856F06BDF71EA /* 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 = ECD86AC6341CAC8C5E06112720AD6391 /* RCTAppState.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BB8E14BFF237C231C5CE75B4A5ED45F8 /* RNFirebaseStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 82055F34960F45D2A53AF2E6478EE6D7 /* RNFirebaseStorage.m */; }; + BBB3AF86D9A57584E0DE9F9AC94D6F1C /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 88B164D86751AE69B80EA5FBC5EBCE96 /* 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 = BD28E838ADCCC65E5CCD3E96ED69CA63 /* RCTAppState.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; BBE39282FC1B75D6C1F0D8D0EDFA356E /* FIRInstanceIDDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B981FCD55F6C462368D3B10E2A0858F /* FIRInstanceIDDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBFA9C5E02F11EE6E15F694B5B4FF2BC /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = F6B4FBE64C338CB65C232D45CD23F84C /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC1BD90CF447DEDF3107AD7C8F0AC1E7 /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 70CC6D385F847CB566E86D0FB0277B36 /* zh-Hans.lproj */; }; - BC221FABDABFF1AA87EE3837A72679BF /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E099219D7E60FCFC87D5C1933412D80 /* RNNotificationCenterListener.m */; }; - BC3429185C81201E4F9AC011F09EB015 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FFBA410B7D98CB095EB075D9A0C16E2 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC3AEC8DE083424803C1D951FF0E8DBC /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 717EAE690E17417ACDE59E0F29B45D6D /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BC262B655003436CB6D8AAB91B4B9C26 /* RNFirebaseFirestoreCollectionReference.m in Sources */ = {isa = PBXBuildFile; fileRef = A302DCC4C64D912E6521BDAC89150910 /* RNFirebaseFirestoreCollectionReference.m */; }; + BC3429185C81201E4F9AC011F09EB015 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E07BF8060268F6B80602BEEB58F34AE /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC3AEC8DE083424803C1D951FF0E8DBC /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ED5CE9B9F397590A36DF9262A13DAAAC /* 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 = 520BD2BFDF3E2EAC4DCCF3B609AB1ECC /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC7823D69B7FA18696F5C13C6A9149A6 /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 85A23C75CB4400E90E923E0CC075A75E /* EXWebBrowser-dummy.m */; }; - BD18C13BD149A6754A7C328ADC72941F /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = C3156725A520FE984536BAC0B9B7EB41 /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD226B5FFD7A515527D472528F5E7555 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EC051CD4EE0FF49306A398ECB396CDE /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BD276549DA595DEA112D5EC6CAA137BE /* RNFirebaseAdMobBannerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DE1C30BAC2ED54837D3F040C0D93F2F1 /* RNFirebaseAdMobBannerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD35B7BA8E51058AF1E912577253475C /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B057CCEC1B0705DFEC4572AADF77972 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD55A36C37E88AB7E769463168B6BB26 /* RNFirebaseFirestoreDocumentReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AACFBC61EBC020ADA57FD6477F41622 /* RNFirebaseFirestoreDocumentReference.m */; }; - BD6DC23F7C3DF8D8DEF86073146F7E16 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 685E1CFEA16F021B2FE0A1E5BA66A85B /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD8944E7BE58503B26E9650876DF3A10 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EEF5E79E130ABC8A6FCE174D8710D6F0 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD91ADF4A736023C776F039224DE9069 /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = D8634B303C42FE1F0F20D61F101838A9 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC7823D69B7FA18696F5C13C6A9149A6 /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE6EC439C25D0A82CA82156AD5EEE148 /* EXWebBrowser-dummy.m */; }; + BC8082294AC06051F7A4F5F4EF7F0834 /* RSKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = CE84BAF378592FCDBBBE6A223C68147D /* RSKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC9FAE508B76E1CFD09E5D0DC614549B /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E91E1F32FD136A4D2C4428C141222543 /* rn-fetch-blob-dummy.m */; }; + BD1861ABD08E99DA48A4BE65C072437E /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 362B34AF06E4DD3B78721CA41E49802C /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD226B5FFD7A515527D472528F5E7555 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = 9007A3F44B14BA7EB90AA3B61B6EF21D /* 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 = CA3904BCD27523736FE542F13F3E9869 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD6DC23F7C3DF8D8DEF86073146F7E16 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F067734D13880C265E549D01BE5C90B /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD8944E7BE58503B26E9650876DF3A10 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0472AFFAD011F413CCDA441B58E96DA6 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD91ADF4A736023C776F039224DE9069 /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 73EE8E27AD9A38B22238BD2AE9CF4AD9 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; BDA73F2EE1C869F55AA9D921203DC75B /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 26BB5340327AF9EC3F93E6476F06DE96 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - BDC2D29C30B3E9A3EF34D55B80D54FE3 /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F55AD6390B75E42F55EECD90216C7D7A /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BDACF30D2C09E7903937EE57532B4CCD /* SDImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = CA631A6A406987E1F1B615C640440C9F /* SDImageWebPCoder.m */; }; BDF6D72BABBBD8B0C3C90BD616038D57 /* GDTReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A1BD9925249F7DA2EC6690AEB514594 /* GDTReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE0913DC51C23EAB2DC7964C76029B63 /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 03EEEBC9EB839984A4629156269A8950 /* EXAV-dummy.m */; }; - BE4F2F4EC40A2DE9C8542BDA0081019A /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = E2DA6439760D44D175E990AC419CB65F /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE993A685EECE3B11E0FF7841D65611D /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = D2AB9B67B0F639DA759FC1B0841BC6A9 /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE9DF936D83A02F4767B74219C15C402 /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 50A7F87FDF79F9678F851C843789F9A7 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEAAD2FF8C5C76F65BC62A458856F9DD /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = EFA115D40E68EFCB5E4110293EDC1A2C /* BSG_KSJSONCodec.c */; }; - BEAF20563158B572CCD0ABF34FB28117 /* RNFirebaseFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = 4598EEEFB1170675B8D9D20C3D4B35CE /* RNFirebaseFunctions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF00767729C44F61AB749B2437ECF00C /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A20055E540EEE13D829CC42EB55FA62 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF1D5170F7973D80FF67422D861904C3 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = E0375D1357B3ECDD85500A747C13496F /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BDFA7F65D8559361150F26D91DB04966 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B34E0FBA56BA048EA914504DF585133 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE0913DC51C23EAB2DC7964C76029B63 /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 75F263017750569A21246A8B421C3DE4 /* EXAV-dummy.m */; }; + BE43CA9847677066725416E42DC62AA2 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = F43910CB743F06F295966C913C58D465 /* SDWebImageIndicator.m */; }; + BE4F2F4EC40A2DE9C8542BDA0081019A /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 32BD0359DD585004F232BD4CDB009979 /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE8A4D47ACCF56722EDCACB3F75344EA /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = D6A298CEB203F72FFD7EEF4C03CEF0AA /* UIImage+Metadata.m */; }; + BEAAD2FF8C5C76F65BC62A458856F9DD /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 26573A4207CED9E4E90197F447B19B22 /* BSG_KSJSONCodec.c */; }; + BF0B999AD90767EC0F5911A1FCC0E249 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 112771E1E5793DBF74BBA1D3C35DBFBD /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF1D5170F7973D80FF67422D861904C3 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 654CD9BC492EBAE43E9EA12BDD165166 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF729FDC14286C669FBC8B838D63EAE0 /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7EEEF9E634653BAFEE012C9C06A8A90 /* QBAlbumCell.m */; }; + BF75905BF7E2950305718479E7F164DE /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 06E5464CE38D349D9F878E77068C3BDD /* REACondNode.m */; }; BFA4A4BB1C3EAD3C592403CE215F3BD7 /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 1382DC070FB19644170F810B1E8F05CB /* color_cache_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - BFB43903D388E2C5BAABDF63DDA29593 /* RNFirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = A4A62A49927979547591B04816443326 /* RNFirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFED0E108BCCB32ADC7B04527528CB87 /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ED880625DEE80D6532A5AA8CF663345 /* EXConstants.m */; }; - C0038DF8EB5666DEC259C37A978A8737 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = E25537F9C2DA789257326F6E34715758 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C03CA28B116045C383FF1990E5408F62 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 477E3945548B8EAC18BE1994BEB058F9 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0981B0267F4BCF2D6333CB15CED7096 /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B6299858AB4A4595747DF5F6A11601B /* REACallFuncNode.m */; }; - C09E6D962169E80BA183543F54F8B386 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 83C72B9176B50700B8070E2FD3F9B449 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0C722C84427618D9AC64660008F2CB0 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AA2C71CBE523653ED8626C586538CA3 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BFED0E108BCCB32ADC7B04527528CB87 /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C19F8522831D2F9EE9D4A1147119D41 /* EXConstants.m */; }; + C0038DF8EB5666DEC259C37A978A8737 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = F5837167B5F75D49720A052BB368408E /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C03CA28B116045C383FF1990E5408F62 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = A76A4D55D86753F3914F46B5D28F56DF /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C09E6D962169E80BA183543F54F8B386 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = DF5F4B608EFC5C937FEACB0CBC41C0EB /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0C722C84427618D9AC64660008F2CB0 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 45A19795EAC0B7536DE3AE5708DF3161 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; C0E2071C1ECA238C47C90E7041CEB933 /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 7F2AB94D41A0FC7FDD1AC7C9B2CE6A8F /* filters_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C109ED916C6937AC2D8340A1582B920B /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF9DF132F0646FEC46004571DFD9089 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C16235A0EEB806964287D284F7F2A003 /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F9D8FF19C26813ED813F62735D251D8 /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1876F13CBE14A33CE52A8E262B1AFA1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BC0B6D584331758E4EA2D39BBC7D6BFC /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C18D8E34DB1582FC5FDEF7E48C3EEB8B /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 39D600148B0622F57BF00226124D9863 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C18EF986E95F296B48B6DDE56AE93411 /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 67361392F0CC4167D473E425CF2608FC /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C198AB42A29594802AA8D6276A808FD3 /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C3932DDFF94712420C93082E6DF30EF /* EXFilePermissionModule.m */; }; - C1E124452174B7CF949C9548EF1B9FDA /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 94689D6A6B23AAEB03D438145268A39C /* 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 = E6B8BE17F389E0AE36CADB9F93E4AF06 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C204A79EE76C7899C25CEFECC0319A0D /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DA4A8DA48D85D2FA92152D838BCF910C /* QBAlbumsViewController.m */; }; - C2CE5817E5A3F269A0FD553CE3680CAD /* RCTNetInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C3F9FA7BE625120926C489171F50CD0 /* RCTNetInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C109ED916C6937AC2D8340A1582B920B /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 73D2E9B4F61167441A36D7C78C495831 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C16235A0EEB806964287D284F7F2A003 /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = E3C1EE15A8B761F2506CEEB138AB56FF /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C18D8E34DB1582FC5FDEF7E48C3EEB8B /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 849BAF286C430F04B7D2003F3CB677AB /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C18EF986E95F296B48B6DDE56AE93411 /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 55D743C038051CB87EE180BC8E60B8E8 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C198AB42A29594802AA8D6276A808FD3 /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = E6B75C132C07BC882F7FB5588848815D /* EXFilePermissionModule.m */; }; + C1E124452174B7CF949C9548EF1B9FDA /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E89467B79F5AEA684CCD03E2E26E8CD /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + C1E183CCF0FE5E7BA17519F7D8DBE714 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 336769B7563A1B1DCC963621A000BDB9 /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2006A5D2895FF6D8ABB1DF9BE4E1442 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BB8B5AFBC405617B0FE9B0EF60CFC4E /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C242CC955318D5219A87E0926CA4517E /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = C116E1E40DDEE7F544679616A954A8A1 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C24B361D2E53B6FC074295653682C2C4 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = FB89622D97EB5A6A0A93097D9C11E42B /* UIView+WebCache.m */; }; + C2B30862E5A04B45BB4CA5AF70899963 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 225C36ED67ED12EF2B47ABAEC5FAB890 /* en.lproj */; }; + C2CE5817E5A3F269A0FD553CE3680CAD /* RCTNetInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = A778999F163DF9687DA14B63BB982F2E /* RCTNetInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; C2DE26D47E707CAA4589E78A87278B68 /* FIRInstanceIDTokenInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ABCFE9547A5AE597F37A631616A9329 /* FIRInstanceIDTokenInfo.m */; }; - C304D7E30AA471BC7CD95868C479A6C2 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B868863514FA35A4413D35D5B762E59C /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3452B1D351D9AED0D75E763E3F0DE01 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E9082D939DBA35F1A504D1388788EE8 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C378199B2A1553A91F63D0B0EF654810 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 48704E60577AE17006594F5B1F082C1C /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C387AF6A6FCD4C3D2605DA9FB258ABA1 /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 139BE722B29BBCD0FD678A2A7ADA9DC2 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C304D7E30AA471BC7CD95868C479A6C2 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = B4200244D0E1FA1327DCBBEF6454A66E /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3452B1D351D9AED0D75E763E3F0DE01 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 320B535A141FFFD6BEF39B9029F0ACE4 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C378199B2A1553A91F63D0B0EF654810 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5284303ED4B1250943EE4429B2E83C86 /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3818C6FE9834032A85AD7B3A90CC64F /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 50A7F87FDF79F9678F851C843789F9A7 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C387AF6A6FCD4C3D2605DA9FB258ABA1 /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D45C6ADB8D3846C42DC09C2AEA8357D /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3A95DB9763C9376D012DEB5338A507C /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = E70AEED73E5DE6CF2AE2300263552226 /* ImageCropPicker.m */; }; C3AEEA83F261D9DFCD9F17A8D7B37534 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C997C0CEE444EEC9B8F029D7578EF0E8 /* 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"; }; }; - C405F2473286108E46E154DE389EF3AB /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = EF5526B1FDBD5CA54475C9028CA88C83 /* SDImageGIFCoder.m */; }; - C438B90BF3A2FED6B786A1275F9160A1 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C38F16A153640B3293D8F667A981FBB8 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4462F68BDE45F02AF989E67AF99231E /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 42F54E3960977E8751F7EED016BA5DE9 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C44D49051AD4551ED6C10C78CEB7F622 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = EC79979FA356F2FE9577C55BEFBCCEC9 /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C3B18638E36B914CED4C0B2A8633B019 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 17A3F710097376D90315825E107D5707 /* RNGestureHandlerEvents.m */; }; + C40FD81E5D11B4DA2C7D81B13481887C /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 19C03F4FCF4B3C14746C09479DC5EA10 /* SDWeakProxy.m */; }; + C438B90BF3A2FED6B786A1275F9160A1 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2331104210C979BABADA961D17D1043D /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4462F68BDE45F02AF989E67AF99231E /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F0E6F18BD52E0CF9769F64BBFEAE8487 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C44D49051AD4551ED6C10C78CEB7F622 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = D78CF1A78FD76E950A83F5B95A112877 /* 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 = 5919331AD8EB2FF4A5D182C439088392 /* filters_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; C49EDC286FDF8D55B5A4387356698054 /* ColdClass.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C05C779C87084783B793457477C3A6FE /* 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"; }; }; + C4B3103B8805E253238FE1D1A9924713 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 311DF445FE87CE1764573708E7F33CBE /* react-native-orientation-locker-dummy.m */; }; C4B8591049FA21E7FF731DF7A1B0EE1B /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 32CE682E91330200182757D64C7AF6D4 /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; C4BFF5390AA1FF9DB4B0D8707540AA47 /* vp8li_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A2039DBBE60C4912C8410E4A052B98B /* vp8li_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4C28EF8A33B5D66709A94473097642C /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C8D4183E909DA22A6147D6C60865F71 /* RCTAdditionAnimatedNode.m */; }; + C4C28EF8A33B5D66709A94473097642C /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CE79154F117485E04A02BF0BB2FBD4BA /* RCTAdditionAnimatedNode.m */; }; C500FB8AA7AB3E5D115E9589A148D829 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 47031BF79D2E1BF1C495D42F59F447F9 /* lossless_enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C519CB9EED743E56774BB65931169DC0 /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DBCAFB283FF9E3D7A34B8C67FE01E86 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5210B2C28473C93EA3F11B1DD9AC6B5 /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7475466DD3CCCE81279999095390ABFA /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5751E6D88E003B8D12DAF7011B41192 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = DA21331ADF7A5A9FCED79E5632563FF0 /* 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 = 1F15FF636DC92CB7A2ABAB6A21DF7854 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5DA6C22DDF2E76DCBB7FDD4099523AA /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C954E8150DF46DCEA657CC0B3718B112 /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6348ED361DC67FF6FFBD2ED2F9032BD /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = C6D1B50F412563947401411DF8DE4D34 /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6550E9C9F4EB89AAE698A5B7D403CFD /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F9419E43FA2DF31717C51E3A00273261 /* 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 = 24E74C5A6343AC38E3B80858DB0A032A /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C541CD171EC65FEA09C77EE0960A4117 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5757EA420E39BF342F4C1CE3E3F92003 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5751E6D88E003B8D12DAF7011B41192 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = C532BE23168A8EECAAEA83EC098617CE /* 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 = C5C8333BFD44196B4A0FFDB65E076AE5 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5D8C1855FA91D5A667298ED2500952B /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 82D3AFC1AB29B1706189ED814A87A1E2 /* Orientation.m */; }; + C6550E9C9F4EB89AAE698A5B7D403CFD /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C19C1705E6E1858A1FAB0C46E6D5D455 /* 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 = A6214712C3EB9E3D8B2A1BEA3CA123F8 /* demux.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C6A042C95745BB0B6DF16A0CBC9A3B70 /* UIColor+HexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 955801E9D59202815C2A1E31717E11ED /* UIColor+HexString.m */; }; - C6A39E866431ED3A78BA2F20114EFCBD /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 40D860B53369DCC44F2BE6C08233659B /* 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 = 8B0DD04958D6B485354D1EEB711BB131 /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + C676CCDB48EA3F533621A7DC149748EF /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = EF5762268C647C0466867833BCB4DA66 /* SDAsyncBlockOperation.m */; }; + C6A39E866431ED3A78BA2F20114EFCBD /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = A569B97BA410C7A58E9B388D00B34F34 /* 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 = A27244A05409F207F84EAB5D36DF078B /* 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 = 2F1CBD4F98D6441CCA71EF677581938E /* lossless_enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; C6C8F1AE93A24FCB0D5BDF66854A9BDF /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = C4601302469BE8B655C4CB0CEA21F8EB /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6E17A77127824F4100665659017DC8D /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 87FE4E820C2F27FD3534654C720D61E4 /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6E217026BE6CE05A87DFE1FF928532E /* RNFirebaseInstanceId.m in Sources */ = {isa = PBXBuildFile; fileRef = C9CF53D2295282EC9ACA6DB73EE9A9B2 /* RNFirebaseInstanceId.m */; }; C6F32154918997BC7F56754265E1C434 /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6B774D63B4F6E5F7EC56C9CCDD17B8E6 /* 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"; }; }; - C7212782077EA2A5E279D3BEFBEAFF8F /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ED7012EAD1D0469E3F0DAF90DBF4648 /* RNPinchHandler.m */; }; - C73D114FBB6B71DD449860DB08EDCB27 /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BD91263A6DA3AB3204590314944D3D6E /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C74C9D861A6CD067815C3EB190669A6B /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = 53169D4B4366A591F0286F4BF5AA334A /* EXAV.m */; }; - C758972A92A8F8BE8A116D87D7FA2B6C /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 239056C460BE84F42676DD046E24B3C9 /* UIImage+GIF.m */; }; - C794D0851E8B0D983AE793DF56C6AF67 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 97653D7DBD70A9B857F0DCA233B30BA4 /* BSG_KSCrashSentry_MachException.c */; }; - C79E3DAE37AD7FB3E0DF294C9165D627 /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = CCBDC94101D93E6A3DAC4082116D33C6 /* 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 = 848B4139DF08401E0A201D55731729EC /* BSG_KSSysCtl.c */; }; - C7EF92A4691697BE21EC4FDCB179DA55 /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 19C03F4FCF4B3C14746C09479DC5EA10 /* SDWeakProxy.m */; }; - C7F22AC94EBA4B3CC96FF9B0801C1A19 /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C0CC488EE9992AD9534F5B0BB17370A /* RCTInterpolationAnimatedNode.m */; }; - C80DD48A6CEBE5DD88FFB1CE9B33C668 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = A059C2FCECF5737C8FF99D680609FFC4 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8111CB0F89A9A47B2B3336FF875F0FD /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 730716A2707FA86CBF72EB1D19C6920E /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C83174A67DB582522A9251CABF784C55 /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = F0CB2B0148E25F3CF9305D76ACCBE55F /* REAModule.m */; }; - C845D45DF7C9C18E9F8AFD70CB2A3B2F /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C25CC0075AFA8B13569820533B29774 /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C84CCD82B9E0D241F48CB5DF44DB98CC /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AE604056FD8783FB9392D3D28296B1D /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C84F8ECB66D5B56F0FD4C2D26681A3AA /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = C116E1E40DDEE7F544679616A954A8A1 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8BC76DDC8042224F82FC3ECDD676BDF /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B057F5A8759F7DEDC2CCEFE9CAB5A01 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8CF47214D9370780DF282709233F2C1 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = A744A3A023AB3CEE93418334F39F4C2A /* SDImageIOCoder.m */; }; - C8D6E82888926F1333C7015C81E896B9 /* RCTWebSocketExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = F07CD52B556C0CA803284EA52CE51FB7 /* 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 = 7F036D0156AB01DEF40395A30C70D2E8 /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6FE9F098ADDCD0A85E2BB5765A561CD /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = EA56701034E43E1D4C2BA343E80A18EB /* RNRotationHandler.m */; }; + C70537C53C34538D2857F90F153A29A5 /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 16288A6D374DEF57B30DDCE361394DDD /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C721BD6A873D84D49CDD78FD37099BD5 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = E229AE471DE8CDDEEC7790DBECC166E2 /* SDAnimatedImage.m */; }; + C733BC88163BEF1A8F0C336871708485 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CF841B7F2C4FFE5C70AD8200D90F5E5 /* RNGestureHandlerModule.m */; }; + C73D114FBB6B71DD449860DB08EDCB27 /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D3245588DCAD4CF71DF8859685764FE8 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C74C9D861A6CD067815C3EB190669A6B /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = 70B9F2D6E6E268BD7EAFB3C8CB4365D1 /* EXAV.m */; }; + C75B97A18A335BD8F694E89D55AB022B /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B340C1A9DA24640121D255A2C50B247 /* react-native-webview-dummy.m */; }; + C794D0851E8B0D983AE793DF56C6AF67 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = BDA7BDED460EEFAAD058802B9AFF9917 /* BSG_KSCrashSentry_MachException.c */; }; + C79E3DAE37AD7FB3E0DF294C9165D627 /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 81B41AAAAED8392AA5AC9A581DA3B2A7 /* 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 = 6E9D69B7D050FED48575C2FDAB456FC0 /* BSG_KSSysCtl.c */; }; + C7F22AC94EBA4B3CC96FF9B0801C1A19 /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 44639F16D9241805FF9247D183D975FA /* RCTInterpolationAnimatedNode.m */; }; + C80DD48A6CEBE5DD88FFB1CE9B33C668 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 62E2FF06653AA04F58C3E3B1B8700E06 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C845D45DF7C9C18E9F8AFD70CB2A3B2F /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BD77FDB21D05219BDE06CA6527AD066C /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C84A07935DDDCA77CB8D1C0D8C0E7787 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F2CD426134D4E904003CC3897BC3E4CC /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C84CCD82B9E0D241F48CB5DF44DB98CC /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A86255F4E6C0462CF3200D4B4285015 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8BC76DDC8042224F82FC3ECDD676BDF /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E2B78E982AE24449641F5EC876DD0C5 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8D6E82888926F1333C7015C81E896B9 /* RCTWebSocketExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = E88864F2F461C52C9E0228247A522A1C /* 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 = 82AA097205FBBC44C4B707D0448061EC /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C937B1637142756FF666A7F4D311BD08 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2347462D47221E766C95EF43C86C5097 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C93D7B23ECA16F049F11E5D081E75E14 /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = F163EE2B01C6048029A8C258CCE35581 /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C94247E1CB50E0A227D8359DF2479715 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C9172E1FD4EC4C46CB01E67337BA2C4 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C948AE2B905BBFE432D9E4193E21E863 /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 97DBE660F21AC0B114EB6A66C5D55B69 /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C967FD26FE20D22557BF95585DF28333 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D113E9A40250929AA9E511B55189C3B /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C98D61FA61340EDDCBF9A317051EF5C9 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 731770A748AEAEC1DE4DC296EE81C262 /* es.lproj */; }; - C9B36A281AF292593D7AC552EF255DB2 /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = D8B3C5324F767E3D5D28D4349F972EF0 /* REAAllTransitions.m */; }; + C94247E1CB50E0A227D8359DF2479715 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = BE4D11DC428728370935140D16D3665C /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C967FD26FE20D22557BF95585DF28333 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = EC7B045962DCBDA2CAE57D022600ECFA /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; C9CCFC48ADF5F9E61EA0535ACFC2E4FC /* GDTEventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = D241BAF87527D9716051AA18E4DBF848 /* GDTEventDataObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9DCADD64BA0867C9E873C447738788B /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = AFD3DECBB494C2A51C307578CF48358E /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9EB3B7BD3C03FE53AD3B843B3B6B185 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = A2FDCDDE9F3874C99EC5AB35A582550A /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + C9DCADD64BA0867C9E873C447738788B /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 59F604DFA78880738E3AA81560E5CA53 /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9EB3B7BD3C03FE53AD3B843B3B6B185 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = D58829D210FBE20929D48359B702D2FA /* 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 = 7237D29A086F97FCF1812CA76E6A005B /* filters_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CA17CE2B9CCD3AB56E8F53E93DF87A75 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 16D652425529A0E5F7AF73A5B22C545C /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA2ACF096B925F393A307C974B5ED3E8 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BC3A41AAA162841935D4DA74981AE8C2 /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA6273CE848DD9203B83E8FEB56D6750 /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = AB28FF5B81D774E3D2A4823C4EEC7D89 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA17CE2B9CCD3AB56E8F53E93DF87A75 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = B8D6A01971F78DEFE0CD090570F95BAE /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA6273CE848DD9203B83E8FEB56D6750 /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = 5059A540B10068188B439D59A4DE311A /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA7077D134A2BEF1B76EFD8464D7170F /* NSBezierPath+RoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = C20B4C566C1CB5C6DCE02D4331AEDCA5 /* NSBezierPath+RoundedCorners.m */; }; CA9EF0BEB6DED07C10AC4FCB9AB9A6E4 /* Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 23945AE455FE8A652FE6BBDBC951C80A /* Folly-dummy.m */; }; - CAD2FEE94308EA6D6F66AA1E5BD2E372 /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 44B99207D6ADA144F33B606D026D6C61 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB2C38012174E108527B110642E6F83E /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 116CEA524A3351D8A5BF943C07325E1C /* react-native-background-timer-dummy.m */; }; + CABB9D0D3C317CE3ED463CCB991EF9B3 /* RNFirebaseDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B84B1680F89719975011E6416792F81 /* RNFirebaseDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CABCE5A528698C4994E71C5F739EC415 /* RNFirebaseNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CD45EBEA139064AED165C8728AD3B8F /* RNFirebaseNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CAD2FEE94308EA6D6F66AA1E5BD2E372 /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B8C46D38E4C93D5B3539F30546420B42 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB451FBD339977E44FF2FC313068B5EC /* GDTStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 42ABF06EFF98B586023CD5C1E535967A /* GDTStorage.m */; }; - CB74B1C066E5B01A33182A68A74B6808 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E46C842C2CCD6A4293D72E70864BCA7 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB9ABE8B1B52ED2580748DDBBB6CF552 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BCBB6D696BAB769CBBEF5A27053176F /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB6860CC7CCE1A8235426BB0D7A8C408 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 748E68FF8F0584C3062AE3DBE77FFA1E /* Pods-ShareRocketChatRN-dummy.m */; }; + CB9ABE8B1B52ED2580748DDBBB6CF552 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9312678C01E526ED0B774C6976B0256D /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB9B4086D0929208AA2BEC070F8FB687 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 65E0EBADB3266F14B8F9AA096F1C694C /* cost_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBB2DE25841E36F0C9FA55881DE5D2C5 /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A6A7E7A0C9DE85679B7A792CD356E79 /* RCTAnimationUtils.m */; }; - CBC8E6DC1EA72C467D818144735AB115 /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = D944D2C962AF7FFDEDE2EDBF81D15D80 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CBF5590FA2C49F571D496E7CB0A81829 /* RCTImageStoreManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C83F243A97A8963BC59CF8A6E58A55DC /* 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"; }; }; + CBB2DE25841E36F0C9FA55881DE5D2C5 /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = AA470EA710A5F74288B5F21FC07BCF6E /* RCTAnimationUtils.m */; }; + CBC8E6DC1EA72C467D818144735AB115 /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 31505D7E478C6717D9019F338B7D7376 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CC016D11CB0B903371D47E4C999262E7 /* UIColor+HexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 955801E9D59202815C2A1E31717E11ED /* UIColor+HexString.m */; }; CC136DC5A3C7ED75BD7DFEB71259EFB4 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 168A4C5601B9AD27D7DF994108D20189 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC2951479ECB3E208779F6F65C3044B4 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = 95161EF947B084DEDB1756CA7F8D39BA /* EXAVPlayerData.m */; }; + CC2951479ECB3E208779F6F65C3044B4 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = 20CC8B770E14F95BEAA6B4F19D4C8D1E /* EXAVPlayerData.m */; }; + CC4A7D31CE59889AC9FEF68BC9C0071E /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 473E13BA68BED6C6934E6BEA919A48BA /* FFFastImageSource.m */; }; + CC5557FB1662E0F790AE7202DDF44EDD /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = EDA35732043AF03C1D0A9D11AC79A10A /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC75D2243F7E6AFECF4997EF059D0223 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = FB7436D9950CD010952DD6E4419E0688 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; CC77D119CAD95C17FC96F9A40FDBB52E /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 46B8BB4AC2E8267C70BB5CDF6D7A7542 /* FIRVersion.m */; }; - CC98D8D476BA9CC47140550A6075FC8A /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 127F387056C0FAACF9FCC1377EB445FE /* RCTTextShadowView.m */; }; - CCA47F72CE8777C00306E5A9F9833A27 /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 558F3D67B18067D15E32C8088539027A /* RNRotationHandler.m */; }; - CD36A5AAB550D3BC1D6A3D332173F9D3 /* RCTLinkingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D51E4E0999A9EE8000CCA538CED6A950 /* RCTLinkingManager.m */; }; - CD40A57CE72E84CDB2F267E3FF7A79E5 /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = ACFDE15A0A495686930280A708A36700 /* RNNotificationParser.m */; }; - CD6152400D958AD525D4A40BE6762532 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = A4577D3139604BC45690324C3C8E79E6 /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC98D8D476BA9CC47140550A6075FC8A /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C11D9AD667508E1C876132F985D006E8 /* RCTTextShadowView.m */; }; + CD36A5AAB550D3BC1D6A3D332173F9D3 /* RCTLinkingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0820312A31421442ED09E1FB27E3C800 /* RCTLinkingManager.m */; }; + CD6152400D958AD525D4A40BE6762532 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = AD19AB2D04A4025DA68CFA7186527E2B /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; CD79008D1F8A28F701291D1C15A00AAD /* FIRInstanceIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 11545F6E5F7FD4878D93E1D04A3922B8 /* FIRInstanceIDStore.m */; }; - CD8537AECA54B05E645C65629306705D /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = C8C5CD2DE6191D4F0CFE7D02E8112BDF /* SDWebImageDownloaderOperation.m */; }; - CDA6C3FEF27D2E1EE78C69784F828575 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = AC0664B9365BE04B8AE775DB05D4AD51 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDA6C3FEF27D2E1EE78C69784F828575 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D3C577DE9EA19FAAD3F409D681829FD7 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE1AC1D3FB716EE5B282B086AA1EDE20 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 5EB17217088DD37350938B661FC2266F /* quant_levels_dec_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CE399A301E038CE8427A92FD187093C7 /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E1091C5BC6B2F7D90CD1F8CE023E3C6 /* EXReactNativeUserNotificationCenterProxy.m */; }; + CE399A301E038CE8427A92FD187093C7 /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 370690606EC6E87A207E7CB5BEA4E5EA /* EXReactNativeUserNotificationCenterProxy.m */; }; CE72EF385B8B27FF89B34D0E2D52513D /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 3ECA289CB3857AC397416A99A1A6D535 /* cost_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CE73FF87B3497B9C2E47CA1E1DFFD327 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 25AF770AB277B214C5369BD1B885C749 /* RCTTransformAnimatedNode.m */; }; - CE860D19234F4C89BC7BB3532BBFEB27 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D0FCBEA0B1685BD8A9EF2CE7D38F1DF /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE914509B01236ABB20E6682E2829DB7 /* EXAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = ADE1C95FE8B65275E010F0693DB4180A /* EXAppLoaderProvider.m */; }; - CE9D1C2B09383CAF44B7C8CFCF19E64A /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = D70B7A85E1799D72D9A6A6A957E9BA3D /* RNPushKitEventListener.m */; }; - CF0286A6E0CC7679CF99B308E04E4ADE /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 155D106665752614D277BBDC57B5F592 /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF0E67DAC4A754BBF45976C68070CCDA /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FE0297B571B6592112EC1A8C97A30E0 /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF16ECB74F58626866645AB470E27C36 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D3EBE18666C5144A0EE55684B19F3F6 /* KeyboardTrackingViewManager.m */; }; - CF1AB10E419D45F4EF401BC0323BFDE6 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E5C70BDCB86B9F70EB53A0C64E1FA59 /* React-RCTNetwork-dummy.m */; }; - CF2403AFE48D7CED68DA0B11EBFCC59F /* RNFirebaseAdMobNativeExpressManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A461CFD6D0A8C84868B8225D03330BE3 /* RNFirebaseAdMobNativeExpressManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF3EFBCDE534B6B24BF1E4599510A76C /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = AB79250AEDD2A4AF1BB903AEE67739D6 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF4B16E4DFFC133E1C0593C3B60694D4 /* RNFirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = 70301BB6EB1394A3690D2E7E05EAD20A /* RNFirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF5E5A5356BC791E25EF0A5E93306880 /* RCTImageEditingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27D91DEDD5BF35D3BA4F4D7F82909550 /* 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"; }; }; + CE73FF87B3497B9C2E47CA1E1DFFD327 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F12B5A886730CA701E2EBAE36994EC5 /* RCTTransformAnimatedNode.m */; }; + CE860D19234F4C89BC7BB3532BBFEB27 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B6D6243FE11718BAC28BE6A7C3E6C22 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE914509B01236ABB20E6682E2829DB7 /* EXAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 528773AFBCEA42047EB6F0E82F212864 /* EXAppLoaderProvider.m */; }; + CEA62BF927443E9C17E52A13E3AC36C1 /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 5208F48E163A362731821F358702E567 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF0286A6E0CC7679CF99B308E04E4ADE /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 67787BB26327FECAC3B79C20BA2A917E /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF0E67DAC4A754BBF45976C68070CCDA /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 2169C4F6CF62640E8A8C6746DE13EA26 /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF1AB10E419D45F4EF401BC0323BFDE6 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BA8EA011464D1B5C848FBEFC83CE3E39 /* React-RCTNetwork-dummy.m */; }; + CF3406D791E19891BB828FCE9638F000 /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 52E1132DF7C00A30BF68B69D98F050CC /* RNGestureHandler-dummy.m */; }; CF87AB953CDE4EE55C8901F12A14A823 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 334A031760F68DE8E2D86DC920B5F7D9 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF93E498CC6BAC3062EC7B41276187CA /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = D10EFDEF22B73A9DC0BB46C6D7C1AF51 /* BSG_KSSignalInfo.c */; }; + CF93E498CC6BAC3062EC7B41276187CA /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 7261F4174CD03563769037064F258351 /* BSG_KSSignalInfo.c */; }; CFAB74EAFB7B0A0A423B9306F3ACFFA4 /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = B1C9D8E7DFA59D6BEAA4A8614867F268 /* quant_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CFB15690A8AA7AEAA6089C995EE25A41 /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 81E747E544FE41D1FA1F40085A81E68B /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CFB205F189F2953E75114499C0BB7C3E /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B91BEAAFF4DCB95DA0D8DAEA4E232F30 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D029307FF7175CC7E798A53A5329044A /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = BBEC178A5E6B61715E5A41638BED6D14 /* UIImage+Resize.m */; }; - D059E0456AA975EBB02A49850923CD72 /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = CFF3B04503AFB5C9CBA1D54B1A9FB737 /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D090FB52E9942246C55C18C6053FD92F /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = D23F19BE79A6C5376A549BC4556DDEA3 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0A9CA55F68A2F9494660E78305F2EE0 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ECADD2C62E5FB5CA1D6D6CB22DF27EA /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D0DB08923A931DE8F4141F802AB703F8 /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E33732DA4B76A1F597BB43892E075E26 /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0EA3962EC9A57BA8A260983B63CEC0D /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 23A0EF3FD305CA0FC3112F329AB1A35E /* REAValueNode.m */; }; - D12BE20B8296A82DDB11C7787F9EEC6D /* RCTI18nManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F4FC66ABF94C27CD1801D82912A0ECE /* RCTI18nManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D12BF3D9EE5C8504A4E0A79361F462E0 /* RNFirebaseAdMobRewardedVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A4B70FC0876B33071969B459F1E573F /* RNFirebaseAdMobRewardedVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CFB205F189F2953E75114499C0BB7C3E /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B85A285352C374D520086FDCF7B0F8C /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D06DCB5DD3A58961A8E8AF6124156DCF /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AB5C07CB50B14C998285A22697FDAC0 /* SDImageCodersManager.m */; }; + D08C6F69F27666C4BA2E172D33C0DB5E /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 185432325FE3B0675502832919F97685 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D090FB52E9942246C55C18C6053FD92F /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F2E78275ADC02B7781684C3E99ADC46 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0A9CA55F68A2F9494660E78305F2EE0 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 87E66F6A0C7DDAF93995ACACE4BCAF0B /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D12BE20B8296A82DDB11C7787F9EEC6D /* RCTI18nManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EB4B1B4A9B45B1CE1D2C9A894199455 /* 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 = C63DEB6C4A8E1B3FF493E2FF4CEBFF6D /* ssim.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D135449B164D38311EC7CC87128FBDC1 /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3910C2EFA8A79FC82FCD760576FFAA54 /* RNForceTouchHandler.m */; }; - D1A32A5EB8B9D704912FEFA270B4A62E /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 88DD19586A0E4D0F851770D157E0A8B4 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1B10F4264708A8505127D347E0AAF69 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 03A852B75ED956E93AFBC2EAEA4BE635 /* RNJitsiMeetView.m */; }; - D1BD50A58983FB0A7E47454A87F91C15 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D3281F26BD110B14306F4A4C3B598EB /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D1A32A5EB8B9D704912FEFA270B4A62E /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = CE9E9ECC868228D37412CCD7DEA7CE22 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D1BD50A58983FB0A7E47454A87F91C15 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EDA5B0B693EC04E2E1A909067E02BE0 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; D1F4F693CF545CCC290595DF6EE686D6 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 09A1C6CCA9D9DBD22E97F8F734DC256A /* yuv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D202A39393002CDD09E58F652661FD4F /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9324718CF27D69D845A5D6D46FCE7135 /* 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 = E90406F2ED3779820587D3A9D975B17B /* 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 = 4A519B2E5792F950F4DF2818EE05EE72 /* BSG_KSCrashReportStore.m */; }; - D217C7E5B52C2C6702490ACB0DB34308 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E7AC849DB321BA7905B3592CFCD745C /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2209C0C3FCBCB80F35566F5D0E21B77 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = CE5B075784AEE1B096BE275D46997AAB /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D202A39393002CDD09E58F652661FD4F /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD713AAFED28AF583BD2D64FE89BC5D8 /* 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 = 794D9C91799055313BD7AD8652AE800B /* 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 = C3F6808A0964F33A10D3F334501ABD86 /* BSG_KSCrashReportStore.m */; }; + D217C7E5B52C2C6702490ACB0DB34308 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = DCF6C088310EEF30275C9C3B4DBC9F25 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2209C0C3FCBCB80F35566F5D0E21B77 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 0369E1124555667E8646DBBF07490844 /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; D254799F912BAF289D21E7D8B98F46F2 /* GDTLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = A676286CAB723B813821319E7F3DAD3F /* GDTLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D25FA9A9D5414F9A8060A8D6BAED0626 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 788CF0FB634A486F9472BB7ED573A382 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2DC7C33837CFABDD27C12D7800DF38F /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = DB8F16FFD59A9DBCD4C6C6E23270431E /* 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 = 0B259E547F8F4BB2DB47673E43EAFD93 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2DC7C33837CFABDD27C12D7800DF38F /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 9770701D00AD7BD0ED5458AFB97AFE61 /* 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 = F0A99024BB3B4EE55C6A3ED1CD817CBF /* pb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2EEBDA9BCA01102E3F6ABE6C3A97AE6 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 742A92EE848D74948FA6B9485B1C5403 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D31DAFDE1EBE7DE99C33F2B39B6D480E /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 178F700E78D034BBB707481B4F886DFA /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3322B079FE708200EDBACA185570B50 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A365A488B320F4811CB15565335096B /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D378A9786AB4E247E08941965BA8D894 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F7D1BC5637F5854846BA58FDB7D0369 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D37E2B15A6B1B4104E0549EBD94BC4C0 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 42F54E3960977E8751F7EED016BA5DE9 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2EEBDA9BCA01102E3F6ABE6C3A97AE6 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = B7500FFE33613A53567F24D90D17D351 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3204BCC8FC561DCA4B1C49092426FC3 /* RNFirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D3283319DCE73232B5789FE6261D8B0 /* RNFirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D378A9786AB4E247E08941965BA8D894 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 89167B14F836AA4BBAEEE438D34AF41E /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D37E2B15A6B1B4104E0549EBD94BC4C0 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F0E6F18BD52E0CF9769F64BBFEAE8487 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3D3950E865EED7F402B6FEC3CEFCC22 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C14B476AA97AC9B5965F8675044844F /* RNLocalize.m */; }; + D445888D4E4F09447067816A7EE107DC /* RNFirebaseFirestoreCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D2A8A4DB39D76CF60BB6EC3314F228C /* RNFirebaseFirestoreCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; D4459E62F87603773F4B27E19B2D780C /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = E9D092DBFCC5CB2234422DF2728F3722 /* FIRDependency.m */; }; - D45D4794468B8E9A5B5A517A6F312354 /* RCTSourceCode.m in Sources */ = {isa = PBXBuildFile; fileRef = 45C303BA7E70182BAB688513619BB69F /* RCTSourceCode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D45D4794468B8E9A5B5A517A6F312354 /* RCTSourceCode.m in Sources */ = {isa = PBXBuildFile; fileRef = 80F397D34E7300F8F00F22CAB82A16DC /* 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 = D8D0CA6E66E84D101882B52AA7A338A6 /* thread_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D4D31AC4B663B98BC3BDA691706B54F7 /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = F426FEE4424D23704CA948BDB5BEDB8C /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - D4ECBFB97245592DB4156EB77244A90F /* EXUserNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = FD80317ACFACC5709F63EC1CBEDA25BC /* EXUserNotificationRequester.m */; }; + D4ECBFB97245592DB4156EB77244A90F /* EXUserNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E339A238C5C19A933FB40E580AF7A78 /* EXUserNotificationRequester.m */; }; + D50517B878EA523C1179E31ABD24152C /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 73BE4E2BD8191FF1A806D5002828337D /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; D53F382A3D3DA2FD3C31DE200394F712 /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = A6BCAA732F3AD64A60113CD253E36D9A /* enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D5564204A7F5D87194DB1669E7DB1AFA /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = EACA7E6E24B3033A59D542F7EB8FDC62 /* BugsnagBreadcrumb.m */; }; - D5738A71F184742779E1DCA4C168C0D0 /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EC8FF78AEEA1889F14389379A988626 /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5564204A7F5D87194DB1669E7DB1AFA /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = 4049ADE92FECBC403667D3A0C2152CD6 /* BugsnagBreadcrumb.m */; }; + D5738A71F184742779E1DCA4C168C0D0 /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = F748C1911393D3A68ED133957A913FF9 /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; D5904C11D3F52C440DF5DCCCE833DE71 /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = CCFF7C53C3F65EAEFBB65DD3DBFD0080 /* FIRComponentContainer.m */; }; - D5984168E9066237F6EB8B51D45C4BB8 /* Bitfield.h in Headers */ = {isa = PBXBuildFile; fileRef = C60382D8D327473E4F9CE109EB1A133A /* Bitfield.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5A02C8F5068443894D6E5036DD791C6 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 44B4FDCD2AF7CCC1D861268702A52DB1 /* QBAssetCell.m */; }; - D5A1F0739FA2E7580ABB46D628B6566C /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7801A4930819C7EB29EE5304B3862021 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5ABC2CBB30B9BD0D41AAB8E417E6927 /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CFBF632115CDAFBCC595684733B6E22 /* QBImagePickerController.m */; }; - D5CDCC6CC59E312C8FF44F4CBE53DCA1 /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = AE735E75964CE24E03D2269158232098 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D5DB1807AEDB7D577CAE0EB8B4DE8D78 /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D8A124ABFB84572CBDF43F939BE7E61 /* ObservingInputAccessoryView.m */; }; - D5FBD20D854A8276A9E6B76B9E0223AC /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 75ADFC2BC5A34B409A399640907E2229 /* RCTAnimatedImage.m */; }; + D5984168E9066237F6EB8B51D45C4BB8 /* Bitfield.h in Headers */ = {isa = PBXBuildFile; fileRef = BD138F8E84C692E0B4161D3612F0BABE /* Bitfield.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5A1F0739FA2E7580ABB46D628B6566C /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BC8110D8F6EEF1C21845076F7100B10 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5CDCC6CC59E312C8FF44F4CBE53DCA1 /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = FF1CA10439430CC049CD5687B975EE75 /* 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 = D9320BE88E741DEC5491727C41EC8630 /* RCTAnimatedImage.m */; }; D602CA83D7A250B11256793383883037 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 01BBD07444D25289FF0B81B0B59ED73D /* dec_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D61BF091135FB8C7638C155386132BD7 /* UIView+FindUIViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 19F13015D6D229A32B55FA476C22D580 /* UIView+FindUIViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; D63E0FDC977B7D37E5E7B0FCCCDAA112 /* FIRInstanceIDTokenDeleteOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = E6C65C4BC155F8AE8FFD112237503535 /* FIRInstanceIDTokenDeleteOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6869B73F40E6FA4A63D140138EB7758 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = 815BA5A5C6DA9D26A66BF659DF72FBBC /* RCTProfileTrampoline-arm64.S */; }; - D6932A9841270C9656235F236EFF4D9C /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FC228DCB91A34659E2250BE767BB717 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6869B73F40E6FA4A63D140138EB7758 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = A87EA7E9759D4E10D3F233F2428356EF /* RCTProfileTrampoline-arm64.S */; }; + D6932A9841270C9656235F236EFF4D9C /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BB71B5697E561D8A2B1717AC483B5AB /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6A7D6407BD62DAE7B2747257F51E86F /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D5AF6B43CFA93DEBD14614EBFA674FE /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6F91C8EF14721DC18121C0A00F2C00D /* SDImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E12BE8126CFBA86063B52BE2F28A4BE /* SDImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7182C0FDCAE8B97CE1BCDC7866C69FE /* GDTEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = C321C88AD1064932674547B58CD6BC8D /* GDTEvent.m */; }; - D71B1565BA5D8F4829F30D0077517342 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 546B69D5A5BC0C979B0F87F1EFA9F63F /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D732EC744418E40B68FD9AA13FF0886B /* RNFirebaseAdMobNativeExpressManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 19D9E59F04BBE993E8B9D79841321317 /* RNFirebaseAdMobNativeExpressManager.m */; }; - D781309A5FBF63A5BEB15409A649F5A6 /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 82014CC10F27ED3801D1DFB374CAD1C0 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D71B1565BA5D8F4829F30D0077517342 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = DAFA46D343260CFCD8636C9260F0491C /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D7363537E5B2BE48278077E2AAB7DB45 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = D8849FF2FAA7B4ADE1401764D456AC4F /* RNSScreenStackHeaderConfig.m */; }; D79FFAE4EAC3A02B6B035E2C6F0E6004 /* GDTStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = CADAC6F2BA25DF61057FF0ACAA1F600E /* GDTStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7A3D6DECC6A88ACCF265FBFAAAE55B2 /* FIRInstanceID_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 61DD778AA260EFB0DA87E2250F978CB6 /* FIRInstanceID_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7D7A86887D107BC1353D15FF525A8B3 /* RCTStatusBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 38303E74A6B7985BFEADECF8C67FFE45 /* RCTStatusBarManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D7C72219BFF46D3BF6B9D3C56A382981 /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 45FB1312D81FEEB70794428B63278243 /* RNReanimated-dummy.m */; }; + D7D7A86887D107BC1353D15FF525A8B3 /* RCTStatusBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 79EC6F19D4A58C5FB85C74142CA592BD /* RCTStatusBarManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D7D7CD8789416D45E1DF082CE613AB6A /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D415352E3499FA04B015C1827EB89DF /* RNBridgeModule.m */; }; + D7EB87D0FB19A22450DFD9D023957035 /* RCTVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D666C4436EF461909F1FA890E75B227 /* RCTVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D7F108D103506455129DE40090117A9A /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = DA1E6F5DA1C5B7BE02C7F9FAA2E7D246 /* 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"; }; }; D823909993E47E39D171FB7EBE48A08D /* GDTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A258F7F2761793B8CDB477C0D07F762 /* GDTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D84224686031BF787820EE35F6F97E9C /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 176CD31DC31EC631510B1386AAF45DA4 /* UIImage+ForceDecode.m */; }; - D8860A4F7049B2901B2ACB3B52252245 /* RNFirebaseFirestore.m in Sources */ = {isa = PBXBuildFile; fileRef = A944652844C06AB56A89170B53F5FB51 /* RNFirebaseFirestore.m */; }; + D86C3B91E4E3C0C7AC7738F355805577 /* NativeExpressComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D97FFC28C9414B95D589399763961D4 /* NativeExpressComponent.m */; }; D931F1A1D54357CD2450DC7D8A6DBDEC /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 41A1F9DAC3DFA902B26DCF0B7DD354C5 /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D965178447273AEB9F1772E747F8BA48 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 9400C28E188F6DDB02251AD6D9D87DAB /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9866C49B1DCDD25140412F9A726EF29 /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EDC726C9B8A3F9099BDC1C62A1D9334 /* RNGestureHandlerRegistry.m */; }; - D989A45D67FA9456F6E6848A119C5D73 /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 07E7CF4FE7B30247F96279D21D93C880 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D99F6D603AF73E8B5E6D32234572F07A /* RCTGIFImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F5CB905660A84A9EDD11E2300CB1E40 /* RCTGIFImageDecoder.m */; }; + D965178447273AEB9F1772E747F8BA48 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 48C40A12532E5FF027E698CA648F6AE6 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D970D9CBA98D3E5730F5DB4753F5C6D8 /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = B67C0CBCF0E90DB1A7017C4FA305DE0F /* SDImageTransformer.m */; }; + D989A45D67FA9456F6E6848A119C5D73 /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E9CCFBD3A7AF692B506909FDA846C710 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9962F5C0C9C3EBE39511FC3B26AAC92 /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 730986CBED7A03B02DAAD3CB7CBFFB05 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D99F6D603AF73E8B5E6D32234572F07A /* RCTGIFImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 38FC85EF33B83764ACF58D59A2FF5A26 /* RCTGIFImageDecoder.m */; }; D9B8D3BEAB811A518074FF96EB5E2E8D /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 59BF1BFAFF7BD1B8B372FC1E31A781FB /* FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9DA78B1DF94979A023785485229B705 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 612237747AF33E12E29F29C686F0EF1D /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9FE7CF0C3725D75B1A126E981A19368 /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 09EE1AA69C215D80608133BC27BBB5D4 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA337624A33B97155CEE95E6FCFD1875 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 50FC66338483B11FEBFB342EC0BE5072 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9DA78B1DF94979A023785485229B705 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 78F9329624C946422F472DBDA7AB265A /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA337624A33B97155CEE95E6FCFD1875 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B1F435392ADE74924F22A15846C00814 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA4A515A46C261023212C348BD2B3CD3 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = DC3DF2419CD1889E2B7759D0212C1489 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA8C387EE4EF6B4384DD7468046C80FD /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 21F17E06C2BC683EA3844510D8BEB780 /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; DAB02821C84F2BA4426C6DD3AB7D22EF /* FIRInstanceIDVersionUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F1792F185C1EFF989F2C94A71008E24 /* FIRInstanceIDVersionUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAB9CFEB6D5A25D239801565F53AA55E /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = FBDF54AB36E916C0E7E342966515E1DF /* RCTSubtractionAnimatedNode.m */; }; - DAFADAA97E53638A213F13FF37F3897E /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = EA235917F29DD4D3EC56B5BB3E473AD1 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB62D7A4AC6477F0A47DC730E0E5D6D8 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 12A3C9211FEA4385AC3F91C59C4C9C7C /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB9C09502895B74039AD19E9CF4055BF /* RNFirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AA23DC79589894A9874B467B5CA0846 /* RNFirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBA674449470ED2F334F61914E16C3EF /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = EA72A3724480391C51D0E847207DD53E /* BugsnagCrashSentry.m */; }; + DAB9CFEB6D5A25D239801565F53AA55E /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CE98B91B77E42906684C87AB8E0800E8 /* RCTSubtractionAnimatedNode.m */; }; + DAFADAA97E53638A213F13FF37F3897E /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 1367958180570BB91AAC503D0DA52EA5 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB62D7A4AC6477F0A47DC730E0E5D6D8 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E29358304887AE9D591F76515AAAE12 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBA674449470ED2F334F61914E16C3EF /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = A5C0990F7808701C0C84DB9A1A691EFE /* BugsnagCrashSentry.m */; }; + DBFE9FF3F1580DA80CF64B2AD984D1E8 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BC1273027B89903D2FA02EED7206E7B2 /* RNVectorIconsManager.m */; }; DC1370F458358C5BE438A6A0ED227DA6 /* FIRInstanceIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 4976912BCBFCF8892B39B53A8E444D45 /* FIRInstanceIDTokenStore.m */; }; DC158CB98CECA6B43EC601E2B84B64FE /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2454F868C3BCD08C06BCF642E31EBC55 /* 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 = CBE49B902ED4AA80540702944BFB6633 /* GDTStoredEvent.m */; }; DCAC9CE673B917B1F1772C266A09DC72 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 5DD388E5DE9378827564BFDA3922FD5C /* lossless_enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DCBB73EBB05EB003A73D9DB460FBB176 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9EA3DA4711B4011719896ADA0BFA4961 /* 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 = 9FB3F23BD02D6D11603407607DD3FBD6 /* 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 = 64420DD31B4A41A4A95DF1B1DA00A93E /* 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 = A806CF553D1C88A35B4769741C4FE655 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDD9A7ADF40528228C8FB6ED7EB5CBB7 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 5556863B6CBE1867B6B4E36DDB0B841A /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DCBB73EBB05EB003A73D9DB460FBB176 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3C763F7A19E5C62201E3BFA66067DB8B /* 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 = 740AFC452E3C0DA7FE00D399D41B3C8C /* 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 = E0FE5E4F949A2D2D334FEB6417F012D5 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DD459A309FDE3AD6B6E0958684A9C991 /* RNFirebase.m in Sources */ = {isa = PBXBuildFile; fileRef = BDC6A8BB06D24B48DC4DC36CF9EC67D2 /* RNFirebase.m */; }; + DD8725C3B6985B7230D09C6699BAE658 /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D72A5086705F3BAFEB1269EBE778F566 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD930A4AA46CFF94437EB53FC9AD23A6 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 00BB468BBAD5B831C59D3100179CC4D1 /* UIImageView+WebCache.m */; }; + DDD9A7ADF40528228C8FB6ED7EB5CBB7 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = A4FA30C04F08AEB225F3EB7F744A92F7 /* 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 = D5E13D2F2560B38BE6E926B65D649D7C /* rescaler_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DE18DC12317A634A52985DEFDA7576D5 /* RCTNetworkTask.m in Sources */ = {isa = PBXBuildFile; fileRef = EBDA33B4DA1649A6BE9DCDF2629B533F /* RCTNetworkTask.m */; }; - DE6406EA03AC88187348881599BA0059 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = A99EEF13B1A98819112C6D773BE85105 /* BugsnagSessionTrackingPayload.m */; }; - DEB6004153AB4913A2E6B35EB1BEBD21 /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BD026613F6C368C6DDE23BF30525814 /* SDWebImageCacheKeyFilter.m */; }; - DF0872DD879C871B1A0027A72ED6F3C4 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 89EEE144AA5204E18491E0B0601AC14E /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF2B4FFD1056894F3C09D7E80C75D4AA /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D059AA26239CC92CEC17FC007519E15 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFC9626E44A3BB97940B5EB1ADD22F9E /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D0E1CCA8BB77C6B9E659C803537115C /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE18DC12317A634A52985DEFDA7576D5 /* RCTNetworkTask.m in Sources */ = {isa = PBXBuildFile; fileRef = A5A1C6C1D4F09382123FB6187EE8CF02 /* RCTNetworkTask.m */; }; + DE6406EA03AC88187348881599BA0059 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = EB44D8F303D45D242103CDB25BF48DBE /* BugsnagSessionTrackingPayload.m */; }; + DE727A9FF9D83EE77DD68BFF31C0B154 /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A60CAAA7F985AC2622D11572F1A620A /* RNNotificationParser.m */; }; + DEA6E00F5D99B6BA8F80C9B63103C86B /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 2867C037657646F9A287C781D9B5E438 /* RNLongPressHandler.m */; }; + DF0872DD879C871B1A0027A72ED6F3C4 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E760992B2650089B51F63143D7E9C3D /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF2B4FFD1056894F3C09D7E80C75D4AA /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = D4CE9E92E07ABF17FED46F4750B649E2 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFC9626E44A3BB97940B5EB1ADD22F9E /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 60C743CD5F6E78B0DFEAF3C1C92EF55E /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; DFDB9C30D67ABBEE3C6D103E6B4B373F /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = F88C750675C9707168976614308EE3A8 /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; DFF94299EBFD53A2C967D837D2E906E1 /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = E3D0280F0405F05E16163B124B4575DF /* histogram_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; E013C99C68F6C512DA43F88FED52DDFD /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 51EF53A19386A399A55A782B560B7CB0 /* webp_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E02A84DFE301C23D8C24C8E3CB035A75 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = BACF7CE86AA3834C40620D43ADB7DEA0 /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0492F32D95ECE78F57AF2F627EBB5A5 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = CD32ADA37A4032844E49367E51BC76D7 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E074C7DCF9FB91E42D39654684BF0A29 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 91E17CCC3C8911878CBBFDA09D77A55E /* NSData+ImageContentType.m */; }; + E027BB1783A267300840EC554FC08C90 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 535112F33FC1AAD3056ACC632C03B0A6 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E02A84DFE301C23D8C24C8E3CB035A75 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ECE54435AD5DB72830CE00AB61B4E70 /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E038A8B1A450AC9DA147B0189FD28E9D /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D6D5927AF267515C77C90FFAAA11F663 /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0564AB539B435E69120A1274D90EC4B /* RNFirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 27E75C50F92E130F88D4B6358253C445 /* RNFirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; E08D5ED498CB4DA17CBB17B92FE36331 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = 19336C598B620238AAF4F39C4762C445 /* common_sse2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0903EBC44926604586BC4965B53E08F /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B7911F9C6D6FCF75555C8B719694B744 /* RCTVirtualTextViewManager.m */; }; - E0B1464630BA7BAD3CB0EC15FA46DFFD /* RCTVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F8D11415C85564761C20FD0EDDA14A1 /* RCTVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0C8FDD5F991FAE4512A623DBBF0F9E2 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C5F92C196B3116E98C2C553D172CFB7 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0F71C5044C2C4686B10CBEC4B4575F6 /* RNFirebaseEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = CB3FD3DDA303CB0BB46A273621F0A894 /* RNFirebaseEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E126D849B2811DAB3717ADEC424D7657 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 69FD62B43890C1488F1CCC8BDB6A0331 /* EXDownloadDelegate.m */; }; - E14135FC1B928B179065F46E98AB35AE /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DD890BA80EB035A36FD6A5A786D84ED1 /* EXAudioSessionManager.m */; }; - E1646E6B6F9FA609E070CE29E2DCC9FC /* RNFirebaseUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 29749DC7DC277DE1ADE9926B431F8D38 /* RNFirebaseUtil.m */; }; - E192A63505460960A83D9B1CFADEE8AB /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FA4300DE49DD938544288CECFAEE3019 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E19F3619BB1917C37F480F1F1E850735 /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A8A11A28FFC137091F553BAED75EECB7 /* RNCommandsHandler.m */; }; - E1E935FCE6261A9AF8AF65236CE642D6 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C520C1A3BE63C99B34B7D0D41A02B5B /* RCTMultilineTextInputView.m */; }; - E2350E979678E34F41717CFBCAC1BD16 /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = DB6771F44EED20E2F205901766E3B2B4 /* BugsnagKSCrashSysInfoParser.m */; }; - E243839B7832562E47C7F92C1A0FBA11 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5FE8250F7846FF8F8518BCA5D983CEC9 /* 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"; }; }; + E0903EBC44926604586BC4965B53E08F /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FC79867D3EBAE9C8077300734E335FFD /* RCTVirtualTextViewManager.m */; }; + E0C8FDD5F991FAE4512A623DBBF0F9E2 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 37FAF41B1B290E8EAE555F939966E563 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E104345B26D010F0EF3271C1FD85097D /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3168B94989DF6941033689BD8D948B62 /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E126D849B2811DAB3717ADEC424D7657 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = FE7B0C7D5C08B338703C396DD3B57ED7 /* EXDownloadDelegate.m */; }; + E14135FC1B928B179065F46E98AB35AE /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BA31621FA1C8B1F40AC093EBA9775F25 /* EXAudioSessionManager.m */; }; + E1E935FCE6261A9AF8AF65236CE642D6 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = B06EA9ED33D7A432E1ACE38EA9409FF5 /* RCTMultilineTextInputView.m */; }; + E2350E979678E34F41717CFBCAC1BD16 /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = CC97112575841E4BF0BBEB424C56236E /* BugsnagKSCrashSysInfoParser.m */; }; + E24F9A620D46F9B6C5DB1889BBDB6ECA /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 144544B37718F5DFA20D7004986219FC /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; E2B7A1B54C0403C79E71E3DE34AD8B7A /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 7FC5F4A4B0F357892B3C1FB0277C118D /* lossless.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E2CD9D3A8917D6DD7B74E8BC8B2AB7F2 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C1A1E7F355F35A189DEBABF8A0156CCA /* 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 = 50EB0A752B427486F24A0491E810EE59 /* Bugsnag.m */; }; - E30727892AEF7B1ADFA78BAD69758821 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 319456CF7423767E37C738CDD3682CF3 /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E366F346297EEF488244AD806BD9610F /* RCTWebSocketModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 450A8BDD4F83B1059206640669FD50E3 /* RCTWebSocketModule.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E3DF79D928558E4A5FE4A376AD5F57FD /* RNFirebaseRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = A112A07C6625F98F1BA6C168EEA0A9F2 /* RNFirebaseRemoteConfig.m */; }; + E2CD9D3A8917D6DD7B74E8BC8B2AB7F2 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D84BF71B3FD7D916318D8AFA3EC8C5BA /* 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 = 39A938235B3F79C2932F1080A077DCEA /* Bugsnag.m */; }; + E30727892AEF7B1ADFA78BAD69758821 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BF2586A232E616FF99C351820C4FEAC /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E366F346297EEF488244AD806BD9610F /* RCTWebSocketModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FF7C85CADD71560CA8EF5F077926162 /* RCTWebSocketModule.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E39BDCD2741BFD90D1A0824A14908949 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = A5328265B65371E9D6B710194CAD7C06 /* DeviceUID.m */; }; E3E7193D979125C005FF9F15A1A135EB /* FIRInstanceIDKeyPairStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 4076DF0A469809876ED5AC70A29FBD75 /* FIRInstanceIDKeyPairStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E42E9A01A68A527BA80C78D9969D267B /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3DFB06F347C4F0EB3F206AA4081DC816 /* 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 = 52D049E2B11A707CB567C478AF370F11 /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E46411FEE5DFC4B164A1A35FF2A8ECFD /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5715F97119EF9358F9BEAB803F36F9E1 /* EXVideoView.m */; }; - E46A2B42C88A799049645529347F7402 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = ADA2C087A342C31E5A1102FCFFBB8D7D /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E42E9A01A68A527BA80C78D9969D267B /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1822EF5AE7B426E443FF51DA80C445C /* 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 = 4DF27DFEF0E55DE0F3985BBF40FDD829 /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E46411FEE5DFC4B164A1A35FF2A8ECFD /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A74365ADEC5F621E9ED8B92BA9D9B15 /* EXVideoView.m */; }; + E46A2B42C88A799049645529347F7402 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 68F01B7C0C00084BBB6DFEC5FF1F3D1B /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E497753603A03C75821AF582991D8F61 /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 08E14DC5CD5C28CA59A5678EE181FBFC /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; E4988068F00F7F1B67427233470219DC /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E72F0A2702F526EF198EF77E5D41D34 /* quant_levels_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E4A2384718D6430DBDC5945694FB389D /* RNFirebaseLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = 0924786BD027338C15D968073ECFFFD7 /* RNFirebaseLinks.m */; }; - E4AB22518922D98B2FEFB1CEA32411CA /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = C73BCC4D70C58C75B36F4C6446BA10A3 /* BSGOutOfMemoryWatchdog.m */; }; - E4B1A0B26FC926A4E8CE913C4A432BD6 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = D13C1A951BD80025F2D15E06D9B2DC4A /* 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 = 1D0FCBEA0B1685BD8A9EF2CE7D38F1DF /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4CE6086EA05A42D63F70A0174BD44B6 /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 679DCDE0317186020EA1B2CB9E3C5319 /* SDWebImageDownloaderConfig.m */; }; - E52C5698DC8436CF7DD989EB3C5AE320 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = B94EA1AEDECC277366A0D03E8D7EBF1C /* RNNotificationCenter.m */; }; - E55021EB9B2A6EDFB019D0D699C44DC5 /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7629B9BD7F572EAB472B8A8FE27CDAEB /* REAEventNode.m */; }; + E4AB22518922D98B2FEFB1CEA32411CA /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = C38027A5C41130D4A36A41863AFE03DE /* BSGOutOfMemoryWatchdog.m */; }; + E4B1A0B26FC926A4E8CE913C4A432BD6 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = 363E6F052C48D3F0193DFD739D5B2222 /* 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 = 7B6D6243FE11718BAC28BE6A7C3E6C22 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; E56A382EFCB1212FE0C79493D0A3A9E2 /* GDTClock.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CA862307DD6E020CD13E3A0E6861D2C /* GDTClock.m */; }; - E59F4AFC94DF72B95C8EF8136FC5C394 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8903713160BBADFA4ACAC276057D4B5C /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5A419C242215ADEA54A0D357C8894A1 /* RNFirebaseFirestoreCollectionReference.m in Sources */ = {isa = PBXBuildFile; fileRef = A429599A7FF6BAA15EF2832FEBA810A5 /* RNFirebaseFirestoreCollectionReference.m */; }; - E5A9CC432046CE42AF86D16145F197FC /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = CAEA9BC3766046E69CEFA2DBB6FAD110 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5ABD4952D52B981BDF0C6EA2D571A1E /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B179558C32472D04EF2F08B82B3DE3E9 /* 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 = FDA5B7A03641BA8B2DBE29A614E7770D /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5A9CC432046CE42AF86D16145F197FC /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 30198F89533E567DE6EDCC4C1D62CF34 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5ABD4952D52B981BDF0C6EA2D571A1E /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0672CC33362C8EA9E2EC7642931B289C /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E5D8C91086E97408A4280CE36D002303 /* FirebaseInstanceID-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6ECEF1925EAEB2CBA95247490A09FA6A /* FirebaseInstanceID-dummy.m */; }; - E5F255FF4F6E16C336F83E7BD03120A2 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 70516431F0EA0B5A48391BB400242461 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6317956C4C7AEFAEE35CEEF41FB1C75 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = FC9B5CEAD3C76F94F865FB7A5839F13F /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E677CFA6B6E2340D543A441673184C1D /* RNFirebaseCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E2B4037FB40EB12622E7E83F2F2A39D /* RNFirebaseCrashlytics.m */; }; - E6B5795FF7682CBDA63CCD59D0F77A97 /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B1DB18EB00950401534B150AD9AAB09 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6D1B1C16D945352963DBBC3AC35FFB6 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CE1695BC0770F905CDFD9EA38A4BFFB /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6E86F3404E7AAC2CF68668C3C426B94 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = AA34700AB371739A85D388B6BF6BC458 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E71EFEBCE16C30905CD1EDF4534D68B7 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B192281A2CE82C08FC1313DB2386338 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E71F59E0DA3F7D14E56DCE0EDA82EC8B /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = 77F9B01447E5C7DA50457BBFF08D392E /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7329071AF145A5BFB2DB92B8615ECAB /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5654D160A809BFDF0F9892CB56D901CE /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7432C3409D9D7C6284AEF1312B2554A /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = BF04A14120A396A0D894DC7059C9B783 /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E754433A855300E3471A960649F23ED3 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = A9F33D3DE3EB9CB3EE4F2E835C255478 /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7A7A41616537D8DAF37284B12EB6F86 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = D8E94CEB3923CB382D202DABF854A44C /* RCTImageBlurUtils.m */; }; + E5F255FF4F6E16C336F83E7BD03120A2 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CA10FB1E0DFFF0B0FD133DC021512D3F /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6317956C4C7AEFAEE35CEEF41FB1C75 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = B4D33198940256F0ACFB9163452F4A40 /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E634411D2ADEBE157C0B9F1CE5245BA7 /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E0A1BE111F61B60F675C339CF757757A /* REATransitionManager.m */; }; + E6B5795FF7682CBDA63CCD59D0F77A97 /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C1E4A406BD935C2DA57253C04A20DC4 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6D1B1C16D945352963DBBC3AC35FFB6 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FF84AB54A8F38ECC2DFB2FEDAEB68B0 /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6E86F3404E7AAC2CF68668C3C426B94 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = FBDF8189F61B9E0CAA944B2D73AC6FA7 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E71EFEBCE16C30905CD1EDF4534D68B7 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C66417A8A5758738388ED7AA58B30060 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E71F59E0DA3F7D14E56DCE0EDA82EC8B /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = 10DEDA49051F0A402D01324F03D9BC16 /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7329071AF145A5BFB2DB92B8615ECAB /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A8518561956A95E1342CFBCF21B6FC01 /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E754433A855300E3471A960649F23ED3 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D06BEE9895A2305CDB2C4ED3A1E97B /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7621D8D8EBCA46BE9FBC7B1DB679578 /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13E15D09E335BE6074D12F5BDB1A19EF /* 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"; }; }; + E7A7A41616537D8DAF37284B12EB6F86 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = B1E064D2E50907DD555F51A6E9449DF7 /* RCTImageBlurUtils.m */; }; E7C34B87DC7FCB383BC57216BEAD94B4 /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = D7840E936631EC0CDC218A200B993CCB /* mips_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7CA73D48928C3D6473047FF478B1256 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 395A5863E133BCA6099A6523C1014220 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7ECF1DC7FAF27B4F468120EA69FC3CB /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D8E41E332347521A9EFD65108E123861 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E81751718AB94E4E89871F0E3F767AA6 /* RNFirebaseNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 68414F480190A2CCC3F77FA8F625DBC6 /* RNFirebaseNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7CA73D48928C3D6473047FF478B1256 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 60BC42A9111822AFEAABCC60C8796759 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7ECF1DC7FAF27B4F468120EA69FC3CB /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C652809A4EF604F7132378D11C07B20 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E83F2B21A9BA6422B24618C9BB1584A3 /* react-native-video-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AD0BF147CDC3863A03E6AD4CDCD05EDD /* react-native-video-dummy.m */; }; E86169365D2CF36E06692F2CA8B48644 /* FIRInstanceIDCheckinStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 51EC25D6C6A162A67D36BEB029A41A95 /* FIRInstanceIDCheckinStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E870EE028585BED0FA91824824202524 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9312725E7E867FFD8E99F05D37FA9626 /* UMNativeModulesProxy.m */; }; - E89850E58EF9AC1E0B8B793A66B4E83D /* React-RCTActionSheet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A55D8D8D4B7FF06C22B7253007ACCD8 /* React-RCTActionSheet-dummy.m */; }; - E89874C356646DA984E25716857BD008 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 171720FB8E3A6800073AE237427C9B09 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8A20343B7709790456A9B7A97749D56 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 16D652425529A0E5F7AF73A5B22C545C /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E89850E58EF9AC1E0B8B793A66B4E83D /* React-RCTActionSheet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C1FD61059ED51E365EB8C98830DA1DDB /* React-RCTActionSheet-dummy.m */; }; + E8A20343B7709790456A9B7A97749D56 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = B8D6A01971F78DEFE0CD090570F95BAE /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; E8ADD9FF1D22894886D0DBD93EAB58F6 /* FIRCoreDiagnosticsDateFileStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = B529D6561C8E09398A4D6B2FD6D4356D /* FIRCoreDiagnosticsDateFileStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8D743770042CD9C6CF68FE5BD483250 /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 35820A009633ADC6BD8A782CD543A6DE /* 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 = CAB831E3C616717D719D35E55728038A /* RCTBaseTextInputShadowView.m */; }; - E92FA1E42FAFFC44FD5A8CD2ABF3610A /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = B86E2F27CA7CF17251DE1F6DF270A47C /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E97B898677F48FFC8AB1F0C889EC8266 /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = DBFEECACDCA958BC8BC56A193507F759 /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E97C98B7DAE1EE7AAE1B291B6610BC17 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = 865CEC3DED5252C3CDEA0479FBFC8F7F /* UIResponder+FirstResponder.m */; }; - E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C3AA110259054E16A7D2EEF2264B8253 /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9C4E0ADC34CE4CD1415EBACBA46190B /* RCTVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A588BC5F497161F1F6F0D5A68491578F /* RCTVideoManager.m */; }; - E9E1124F01D54146BCDBA6186131A250 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 58A97F9A18E11DE5F68B80C997206812 /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA29E2DA93184511120C2A9E7DF3752D /* RSKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = CE84BAF378592FCDBBBE6A223C68147D /* RSKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E8D743770042CD9C6CF68FE5BD483250 /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5564BEB590405246294DD1CBD8BFAE3 /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E8E90EE4CBF2FF2E51D99D1F64BBC0CF /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = B22C08575AEB62A243675DECFA9C489C /* RNFetchBlobProgress.m */; }; + E8F368D64FD92104A334BB047D78DC14 /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 343B4074993DCF17EBC2939439C15A10 /* RCTBaseTextInputShadowView.m */; }; + E90D89D913D23E6081C58A765F3DC2BF /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C6355702DBCA100421558425DCD6D8B /* RNUserDefaults.m */; }; + E93C93B563929FA6F35750D095DC6D42 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A9382F9E14149B5BF4108CDC945FC934 /* RNPinchHandler.m */; }; + E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B6947B19437ECB63258DC7F7074A020 /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9E1124F01D54146BCDBA6186131A250 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F01E326CCE406D2A49E4A10396547317 /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA4EA907999C368EFFB0D9B659A32B7D /* NSError+FIRInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 449F86CBC2774A4578C9500DDD652047 /* NSError+FIRInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA7AE374EEA24D06EBB84EBDC187CEF8 /* GDTCCTPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = B8BEB0A7E7B4336A14038F4285B9C119 /* GDTCCTPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA952E6CE62C2EFCC36A3105B19E5FA7 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 71C495265665A385D4EFE17A320EFB82 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA9550B4AE376CDAEDA13D1850367E6D /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1863D85A4D4546C80EE02DD43BC4A8D0 /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA987062FEAB0A5F32418E727A81CD12 /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 96CCC402794DFC3B872597624419885D /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EACFA3C20D634B4751CF36B41794752A /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 2850D08FC65AB2BFE6F11F31C82F4630 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EADAD1AB9B0255A369038C54B9D8B84C /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C109BC59AFAD5D765A50625B9B68A96 /* RNPushKitEventHandler.m */; }; - EB1CF03E2649714EEFFFC0310F7F0CA8 /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E296EE9D12A8D6AAFED566985277B963 /* React-RCTText-dummy.m */; }; + EA952E6CE62C2EFCC36A3105B19E5FA7 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = E5AB4A66A2FE5D8764C6EE9096C72518 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EA987062FEAB0A5F32418E727A81CD12 /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = F1EE90878DDB3B66274AE580B748C31A /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EACC0556D8730EE9B6A66DA5C669E1E1 /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5244DFCF5A940640FC0A13601331116B /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EACFA3C20D634B4751CF36B41794752A /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 1397DBF6218AA62653DBEE59059B323B /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB1CF03E2649714EEFFFC0310F7F0CA8 /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 95A6CF289CEB268659DF4520A94F2054 /* React-RCTText-dummy.m */; }; EB5EBE499F86CBEC104916F420C11BD4 /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3C0454A6AC4B050222DF1E587BA9562F /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - EB5FDE0900500D251E2A58D288202037 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E4A736C487BEBF33F1347F324B474E9 /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB5FDE0900500D251E2A58D288202037 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = F3A726284EFD20935D731C08A511D713 /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; EB84C96FCA76318795D1CCA9A7E47337 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = B7B56761649607E003E9AB43AFCAB488 /* cost.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - EB89A1D3EF25464F1B626707704E6C99 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 400B431DC7FE566443236C22A8C6D9E2 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB90F49572FBE7152331AD8FA01BCE2F /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DE3EB62C8C2BB26535E979EB5208D1E /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBA14ECF6325AE246FF34646A5D8CA77 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 62CEAF58CBA132903177BE4B6CD19787 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBB7D00E275E9B10ED1F60E8E267AC76 /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = E66589B0E33602D442277017EF0CA0B8 /* BSG_KSCrashSentry_CPPException.mm */; }; + EB89A1D3EF25464F1B626707704E6C99 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = EF64F723099DEC0EB5B0C9F5CEAB3B19 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB95D5462B66C8CF8FA836B71DC20022 /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 21C2FD82F3EF2E1D1385E4CF77E0EE21 /* RNFetchBlobNetwork.m */; }; + EBA14ECF6325AE246FF34646A5D8CA77 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 184A5FE6720285DD234352C0BE668DCE /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBB315C78D1F1D6E671461C723D0AEA6 /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 1617C6129814BD692F81CD11B543090D /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBB7D00E275E9B10ED1F60E8E267AC76 /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = AC11BC507A7E2C29D98632EB8C9197D2 /* BSG_KSCrashSentry_CPPException.mm */; }; EBDA10C96D8A27B909F8DB3B0A7C32F1 /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = A7DA224DDFAA6C4A9C02670A8B4CDEE3 /* pb_decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBDFC15B5E2A8280B3DBC83194407A70 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = C3156725A520FE984536BAC0B9B7EB41 /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; EBFDCBB17699B2B9EF9142B4B582D8BE /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = C1B84861B5F138BACEBDA0F0D992379E /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC0254F1806EB104DB3FB25F248DCE18 /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 05AB846422108AE505456E8446BEC367 /* 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 = C56A6CFD221C46D53C79646F05CD072B /* RCTImageShadowView.m */; }; - EC15CAE455E3FC4F59376DF02511FFD2 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51FB5172CB4BB836A939DA025689FF74 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - EC218F5531BF60384278FEC8209F932A /* RNCWKWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C503EFE1C0DD727D9DF9D30EB261433 /* RNCWKWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC32DAFDA84025DDCAE462C92724B3D3 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = CE184E2EA75C75D6E19C3620720A22B1 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC5E4034C85E4881E6BB75D8AFF68D6B /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9EA1E9E91BAD66A06A4C0486B14CC841 /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - ECD4964B93D20D97D23A2B65ABBCB01D /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7EEEF9E634653BAFEE012C9C06A8A90 /* QBAlbumCell.m */; }; - ECD778287219C1B53C42D368EB53AC16 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 11C50485C128CA353722F5F1B3C0F8B6 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECDAC834C27FE214D2F761520BE9C48F /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B2561CFEF2B1637A0987FDEB22430960 /* 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 = 7F9BF7FE819E8239B871BA41782D78F3 /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED2626790A458132F88E904C665E24A7 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B8BA5C69B1DA202F44473DCAAE9F672A /* 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 = FB45D77A30454E34289476D1B568340C /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED8457448E87C986B7B5F51C3DE39EE1 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = FFE241E2ECEC004643ECB1DB488B7D6B /* RCTHTTPRequestHandler.mm */; }; - EDF46B245B435882484D77489A7CAE91 /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = BF0B8E81463B3A3B98C032DC2E69420A /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC0254F1806EB104DB3FB25F248DCE18 /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7384F92614915774FE7D143644A6AAC9 /* 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 = EAB5F55088374969C34AC879E3F596C0 /* RCTImageShadowView.m */; }; + EC15CAE455E3FC4F59376DF02511FFD2 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07E594E877E1F9E3658BFC8FC4381506 /* 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 = 8ABF9E15E87F25B75581ED9825AB0A90 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC35B0A1FB34DA8646484C0D21C0DDC8 /* RNFirebaseAdMob.h in Headers */ = {isa = PBXBuildFile; fileRef = BD5288BA61AC1F0A50A3CB5E7F211A76 /* RNFirebaseAdMob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC5E4034C85E4881E6BB75D8AFF68D6B /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 270D91A8FE15937EE7AAE531B81CA808 /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + ECDAC834C27FE214D2F761520BE9C48F /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 76657910171C675682A5C4E4F4BDBEFD /* 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 = 3162609F6B6850B1DD8A9479CC18DD16 /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED2626790A458132F88E904C665E24A7 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D2425D4C3CEFC71CFF79A3F397658994 /* 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 = 341CFFF0DD947EE9C0719DB50875B42B /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED6133B6222E081FC679CBDE1EA4ADFB /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 585D998B4AFBFCCC1B052DF5DEAC44FF /* SDAnimatedImageView+WebCache.m */; }; + ED8457448E87C986B7B5F51C3DE39EE1 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = BA657D183021628BF32ED7BF4CCAB778 /* RCTHTTPRequestHandler.mm */; }; + EDF46B245B435882484D77489A7CAE91 /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 537635F4708B126906D062515A1BE3A1 /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; EE104EF6EF79C1AF1275B962BD8E1913 /* FirebaseInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 97D702FE70CFB27360A4CAEEE7801519 /* FirebaseInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE7C51FDCFC419BA93E71E670E223023 /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 17C243779CEE807D64BECE46965BA2B7 /* RNReanimated-dummy.m */; }; + EE3FAFD07B502D3D10E589EB1F49A62A /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 1286014EEAC46A520E1958F1CA19D658 /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; EED6B6003D213CAE58C690B80D6A447B /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = B3800256FEB699AAE2BD9C7A5D738A61 /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; EEE61B47ECF7B948D4ED9B19FED7245A /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = E27287031B8AAEE45985814B4EDF8D08 /* GULNetworkURLSession.m */; }; - EF057C036B7B732BC9F983413A29C1E0 /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 224F5FF78B05ECE192B7B466F3A262B2 /* EXFileSystem-dummy.m */; }; - EF1BE7F86C4AA723F0A681128BA913BC /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 13359B7D749158627464F494D9325FD2 /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF266A3FC5FBB4F66F020658F58489F1 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 62C301B2DF66A5F2B36EF82088C1F6B7 /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF33936FDE78675F7E18FB6B98582C9A /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DDAE8975226BBDF2C9A644C5729818F2 /* RNPanHandler.m */; }; - EF4EFCD48E8361B9CAFA578D4809D9B0 /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F59D5A722D96D7F9D808EB99D4B2E9B /* RNUserDefaults-dummy.m */; }; + EF057C036B7B732BC9F983413A29C1E0 /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5553B7B08BF84D52C10343090077F8C9 /* EXFileSystem-dummy.m */; }; + EF0E83F7909A2744CF3999F264F04D63 /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CFBF632115CDAFBCC595684733B6E22 /* QBImagePickerController.m */; }; EF8033FBE008CD4B0826A361DF15F3A2 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 00C3D0C02296D11958CFDD6C18DC5CC9 /* yuv_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - EFB4D1720D3D650A93EE3192A6015BE0 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4853BBAF2D3166382D188EA079598AC3 /* 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 = 851E845006C0DFF54AE5B7D501C95BB5 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFB4D1720D3D650A93EE3192A6015BE0 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3F127787122244C4AFE496D25DA31D4A /* 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 = 86147824685623C46CAC743FC1BC6364 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F019A4847E7D297D6E3E9638E55E3C37 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D801AF3D252F806D05976A03102E51A5 /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; F06CE2C5BB5EF02B82AAC45839664EF4 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = F69CF9A88B972BDA0B631489A51FA8C9 /* muxread.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F073B8D4B0C87FFF7C2BDDF26A139B69 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 17886E58A8D0B13B8B74D13F4FEE7F0B /* 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 = 581EBFF895B7F91F26D6A77D0822785A /* EXSystemBrightnessRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F096AA7B4567D9D99685C9CF3CAE2CF0 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D3281F26BD110B14306F4A4C3B598EB /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F073B8D4B0C87FFF7C2BDDF26A139B69 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 96243305842B41AB0C1D76426C6B7583 /* 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 = FCB72B65B0BEA4566579C1EB76647D3C /* EXSystemBrightnessRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F096AA7B4567D9D99685C9CF3CAE2CF0 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EDA5B0B693EC04E2E1A909067E02BE0 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0DC12692AA0EE5463A30FC644AE38AE /* RNFirebaseUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 80D2C1289FD39DC69D87397ABF0C0CC8 /* RNFirebaseUtil.m */; }; F11F15E67165DE77897C120245B43443 /* FIRInstanceIDLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 25219089ECD7A480B5DE42C670CF85A2 /* FIRInstanceIDLogger.m */; }; - F1424A1293EE0DCB96A18BD776B99419 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9BE8BABF0FBA1318115BEAFCD7CA8E6 /* 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 = 00C4153615A557D8864D07EF594B70EF /* BugsnagErrorReportApiClient.m */; }; - F15F7B4AA7787C38746E56B283519A11 /* RNFirebasePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = DB108326E3B7C7826F1866FE12076A6F /* RNFirebasePerformance.m */; }; - F195F37E1508FB25A159A19FCF996735 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 61B1B2524F66E2689235387020F56724 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1B17A175F7554DF8312DF9A5C732AED /* RSKImageCropper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E11ED6DD9DFBEB329CE7C94D5C2CE7C /* RSKImageCropper-dummy.m */; }; - F1E939EB07AF9ED79AABFA6CAB1F5300 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = B075B0791A439C952ADEB40E7D32A345 /* RCTUIImageViewAnimated.m */; }; - F1EA883FB1EB4A3E878D4CF627C09FA1 /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = A357969433D2169772F117DABC04E0F2 /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1424A1293EE0DCB96A18BD776B99419 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 50F0B6C3B6D69AD7902BDA15767E48CC /* 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 = 2C5607C6880FF5AC845BBA1B6B5C8278 /* BugsnagErrorReportApiClient.m */; }; + F152A6FF625ECBE6A0D4079810D9E1F2 /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = A68FBC3F5EF9C484CA4B97ED5D841169 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F18C6A42BBB20C687A600E94A3EE947F /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FD8919E809C87FE25026647AC644A90B /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F195F37E1508FB25A159A19FCF996735 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = CC91B809615D4E91E1703E046ECAD0C0 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1D070493E5656BE9FC5AB629099172B /* UIColor+HexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 161E6B4993A51A7567AA66F65067710A /* UIColor+HexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1E939EB07AF9ED79AABFA6CAB1F5300 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CBB6585A54119A963A82EE7A8977AF3 /* RCTUIImageViewAnimated.m */; }; + F1EA883FB1EB4A3E878D4CF627C09FA1 /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 83968FC1BA6EDD62503BFB82F0CF2238 /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; F1FD68E15FE818E00E17128C880C5E09 /* FIRInstanceIDAuthKeyChain.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F94067DA969D6F3842504F53A004124 /* FIRInstanceIDAuthKeyChain.h */; settings = {ATTRIBUTES = (Project, ); }; }; F214324939EEA0343308B64D185B9042 /* FIRInstanceIDCheckinPreferences+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AC93079540A2CF676920D653638C93A /* FIRInstanceIDCheckinPreferences+Internal.m */; }; - F2C0812928C5E01CCA9B976576980B8F /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7536D6C08D2EB2368F239F339E094B48 /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2C34A56A1C0700D6F445F3A974B6585 /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 29B0113170F79A734F6E256EF8E568BF /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F2A3087B710107E8CB64DAB0531FD50D /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FA3BE52D5B6B778A172B4ABEF91CDA5E /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2C34A56A1C0700D6F445F3A974B6585 /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = A32507C9D76151FE299DB8B28FD56011 /* 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 = 239FC6258A10F4BE3AE91C77A1843899 /* FIRInstanceIDAPNSInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2F6F02B1856ADC0493B59A86843B567 /* EXAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A046053DC23E314AC96EEE6A81A1C65 /* EXAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F310BE74BE413923D66180BC9D7DB03D /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = F91F3346033AF71D9C2DC38F22403556 /* RNDocumentPicker.m */; }; - F33AEBE3286997EAD09436A9DEF418C6 /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 213E768CA7D3BB1738D7E381E4E84C3F /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F342B7911E737C5F8954C3010F717BA9 /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 26BABC6A3ED1A81C0D4BBBD0C8E8ADA0 /* RNSScreenContainer.m */; }; + F2F6F02B1856ADC0493B59A86843B567 /* EXAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = BDE42650BC9F9DD8A115629E10981D07 /* EXAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F33AEBE3286997EAD09436A9DEF418C6 /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2601F820D5E847840E1912591E645E44 /* 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 = 63F1A29AC7DA5F298C4A90EC9EB83C60 /* format_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F35A872F3BA1F729B506C0713062EEFE /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = CAF1D5CB0ADEF95962020EC540962C5D /* SDImageCoderHelper.m */; }; F35AE33B0AF486D966DAAE3DF3D3AF16 /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = A47B9F50F1E6DBA2952451658BDF086F /* near_lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F3686FEE5D124CF27B2FF1ACA5473EFC /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 977DF1CD4D09DFCC3A19427CEFDE660B /* BSG_RFC3339DateTool.m */; }; - F39012C84F8349F0C9A57E2201A60363 /* RNFirebaseAdMobInterstitial.m in Sources */ = {isa = PBXBuildFile; fileRef = 517496BEF372A38C79DA1071A3A6DDD5 /* RNFirebaseAdMobInterstitial.m */; }; - F3C74C887E1D8A6B86440B5F8608A748 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FA4F8C4BE83F7A643D54A86C58895BC /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3E692ACBD207395831D2614DAFCA56E /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 85A2D2CDB198F6E1DC78A7F466446B78 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3686FEE5D124CF27B2FF1ACA5473EFC /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 0959F01729617BCA7738ED90704D2BDA /* BSG_RFC3339DateTool.m */; }; + F3C74C887E1D8A6B86440B5F8608A748 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = EFBAACF6D899685F64842CD8C4FBEC17 /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3E692ACBD207395831D2614DAFCA56E /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D2F39FBF9AB5EDA8A7A4EED2F29C886 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; F40206DB1B71EDAB31FE7A4A03B7CAEB /* NSError+FIRInstanceID.m in Sources */ = {isa = PBXBuildFile; fileRef = 27C1DA9B4716807323AE0A260B2DA23F /* NSError+FIRInstanceID.m */; }; - F40B5D035FE9D7A1AEEAD8B6F67E223F /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E6753D53BAE8459EFA98E4DEC670A9A5 /* RNNotificationEventHandler.m */; }; - F41BCF9545BC61123388E136032E0180 /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 09854C0B3D010768EA30AD0D570BF074 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F41E900084FA21592977FF007C82DE8A /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = A1BBB61619A989569CB8098616E4D31B /* Orientation.m */; }; + F41BCF9545BC61123388E136032E0180 /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E5FECC1F5F4E9A59CEE4D8563B9C00B /* 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 = E0145F79BA0A88C2B2E2AF8F48357CD5 /* GULMutableDictionary.m */; }; - F4374CFB8BAAC3F2966173A0480CC17C /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = E101C4D821571E73341FEA7624B607EA /* 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 = EE07FCC6342859FF992CFD4249BF0346 /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F484495CD0EFDFA73A14E885D93EDFAF /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B67CC88A271DE62796A777B6D1CFEE2 /* React-CoreModules-dummy.m */; }; - F4BA1534E3629487CF8727A4CFF6DE8C /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9FE9B7BED9A63306EDBB827E7D39D174 /* 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"; }; }; - F4C65C76BA74C87BFF6CE6ACFFEBBDD0 /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = 4591808A27E5293FF8B06A4C667F8757 /* NSImage+Compatibility.m */; }; + F4374CFB8BAAC3F2966173A0480CC17C /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = CEB737E34428B67F981BE7321E784390 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F461A6CD6DDA2A3B94B6A7DF3025FAC0 /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = FE11B451448C087FA000F8E536798238 /* RNFetchBlobConst.m */; }; + F46353E39D50C93AA76E18F52910B39E /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ECF4FB380846056FFCACC5105C7D2F4 /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F46B3BC4521420E067205659A1238907 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = D8948C8DEFDFA24AACADDEF258199A1B /* 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 = 6B7793B4F35FA95A3ABCB95271121067 /* 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 = 9472CE3E2730202F2CDECD98CDCE9805 /* GDTConsoleLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5189EFD458A62DEF72D7E2F6F7AA091 /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = B89DDFE00E22E3A3906EFC459918A226 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F55C44ED333331C73E6C7B38D8239110 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F78EDE334FDF15AAC3EA98A0098351E3 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - F582F487C0AB8EE44091B9F15FE3C63B /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 23725374A0A9C584DAF7EABEF8BF5926 /* RNSScreen.m */; }; - F5ADE4B6AF3645CB1D4258B4C06C731D /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 91FD49BDDDF74385D62455B48BCD74F5 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5E09ED5CEA69F68E6751F5FBC3FBF9E /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F00F179EFD0639C9B5A8ADEAF2AD4D0 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5F74B20906F0BC0F93FFC4945E39AC1 /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = D93050D6F9D827CAE6D7A7B952A30937 /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5FCC810114C5D2B6E6704E133FD45E6 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 9400C28E188F6DDB02251AD6D9D87DAB /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F612CA0953F06CDBD2EC4D8DA28F5A6E /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E446FE2AACF3592638FF62AD6690901 /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6265A1DCD2DC8052C15E0B479BD5457 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D287B82B0D4D075643FD1CD58D0BA8A /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F63E9D62AE46B52D476D9C19BD12384D /* SDImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = CA631A6A406987E1F1B615C640440C9F /* SDImageWebPCoder.m */; }; - F6F4AD4C3125E14FB7AB991CEEC44D2C /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FF3A426B2480328F013135198A59E96 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F72F84288FCC9A3127DFC8997D9E16F6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 5788C8695681651644ECEC0D51664E97 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F55C44ED333331C73E6C7B38D8239110 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B0E607CD388A6EF6F47C1056271F105D /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + F587C46ED76DCE6F8C5A2A6446F8C0C9 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 851E1E9DA148DF8D8D054D99847AE8EC /* RCTConvert+FFFastImage.m */; }; + F5ADE4B6AF3645CB1D4258B4C06C731D /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 76575E3B79BFD3AEA8E0A0C627421865 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5B0A1D10B21B41373A367AC3A1572AE /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = AB726F23F2EB8BFD8AF3422843E0CDB9 /* RNGestureHandlerButton.m */; }; + F5E09ED5CEA69F68E6751F5FBC3FBF9E /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = CEFF64BE17DA431B947FAF2F59C45554 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5FCC810114C5D2B6E6704E133FD45E6 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 48C40A12532E5FF027E698CA648F6AE6 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6265A1DCD2DC8052C15E0B479BD5457 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F59812770BCBECF98FF23E95AC4DC27 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6364C12D6C96C83555D89696DF2534F /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 81E747E544FE41D1FA1F40085A81E68B /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F64B035CC44755FC76B2E3A55B9E5A63 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 023E4339966E9E2E9FE67C2EB7C47D1C /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F66A36CBF9154237D67ADE57BF46077D /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F77856DAB02054287753021638745EEA /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6777677EA9EEFCC41327FB7A3A573DF /* RNCWKWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F69A49ED8D00ADA1F8ACFC1B2460DB0F /* RNCWKWebViewManager.m */; }; + F6DBAD3838DD63791170710A09C3DE1F /* RNCUIWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BEBF59797D0B7EC87BEB87BD2C61525 /* RNCUIWebViewManager.m */; }; + F73FA153F050570AE522EEF850B8D52F /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 1898123769B7B8FDC4A5CBD11FA809DE /* SDImageAPNGCoder.m */; }; F754EE115D83928D0C65BC06781D363D /* FIRInstanceIDTokenOperation+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 576722CD2AE567DB24DD7AAFD2E8E596 /* FIRInstanceIDTokenOperation+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F75A233D7D1082E856303D5F2A1ABB4B /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = 59DA515EE96F2A4DA4C0540FFE15C202 /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F77EB338B29D522697682ECE82D6B026 /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F403813AE91E14E70E2B256877F2CE5 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F7858445FD362785F6B82B2AA90D615A /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 0534975E0266B7039A5CAC7EBC33F077 /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7910EE39AB49C2F0C938CBBE12986C4 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0393521ADCCDC0312EFA14D90F70FD94 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F80AAF3FA3447E8E8438606490A61D63 /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = C7C5F0144054BF042A76CE92B837EE3C /* SDAnimatedImageRep.m */; }; - F81E2DFA7E076498AEFA487459C13FCF /* EXRemoteNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B9DEAD710C3522076B3E41FE1CD15F2 /* EXRemoteNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F75A233D7D1082E856303D5F2A1ABB4B /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = AB1BACD3937D40014ACF5DA3EB4AD9F1 /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F777CB36A3DB922C16D4E0DF9E869D02 /* RNAudio-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46AEC60604B39AF805BC6D5EB27D7555 /* RNAudio-dummy.m */; }; + F77EB338B29D522697682ECE82D6B026 /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DEFE7EF20F15D8C51FA1E7BE5ADF72C6 /* 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 = 469D5CECF9B14CB47C6628F2E5875A5E /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7C337F3A172D4076B531EDA90507B70 /* RNFirebase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C07C15B7F0C2D6C1ACE5FFD4AF40A5B /* RNFirebase-dummy.m */; }; + F81E2DFA7E076498AEFA487459C13FCF /* EXRemoteNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = E4F72F67AB9685C072917A0880F7FF11 /* EXRemoteNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; F820FC5D04E496FF37B057F3DFCF5012 /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 905B90F210D75C516DE403526B73DFDF /* iterator_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + F82697836D9AE99150F75C1B7B0774F0 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = BF868AF1CA3630C36493C0F530ECED27 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F85A019D0A3889F3461D4DDA9C44FFA4 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = B47472639633B31D60237D7C0887F1F9 /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; F85DD47AB63EE9B0EEF0D8DC0905C5F7 /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 10847032F4ED7BFB69E4BFFC3D7B2172 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; F864CE3C245F1BDF3E4A177FD9F45C2C /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 14AE3EBEE6F9577E4FEEBCFE6AAB9C0A /* huffman_encode_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; + F87A3BF95E7446B5B99766E9C302829A /* CGGeometry+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3704C27FD74B38E75C1781D6037E5CB8 /* CGGeometry+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; F8AE6C3A4F28C464C3E322BC0978D266 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = C8411FFB4C7500F1F655210A66B725EA /* dec_clip_tables.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F8FFCCEFBD562D855F3011CC6EAF469E /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = AA98C5F806487077902557FEF8BFC2B0 /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F94A277A7B2E54EB64472F6CCF63FE68 /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D04A56CA4CF3700F6D6F17A66F77CCB /* Color+Interpolation.m */; }; - F94EA358AECA340FB2FFEDF7DFC16D8E /* RNCWKWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C559DE1AA120AD0DCD2A8A8E0B8822F /* RNCWKWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9C2BB28591A076E36672FBD0442D3B7 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 28C8357764854C0A7FF8B56D8588E795 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FA6EABF83D3684185C6CC66FC2E335BE /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FBB336EA5883D01A2443577D41DAA67 /* 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"; }; }; + F8FB6EF79109094E20648C02C1AF70D5 /* RNFirebaseFirestore.m in Sources */ = {isa = PBXBuildFile; fileRef = EB6BD9F82161C104132984C6A19CCE8E /* RNFirebaseFirestore.m */; }; + F9C2BB28591A076E36672FBD0442D3B7 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BE4E913B523C487FD14DC53DB97C143B /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FA21263FE4761F60D9918267E1F4BF39 /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F190B64A2D63DAF1E694C5F3D806C8E5 /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA4FA85B9A88C0FD3FB359BC27F174EB /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DFC4812CE6BA6F03A4828EA600CD1D1E /* REATransformNode.m */; }; + FA6EABF83D3684185C6CC66FC2E335BE /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B20176F5FC22BE9655BFB17EC6839A9 /* 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 = 3E415B0B6A609C1AC519942407F98DE6 /* GDTRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FAA4F0FD5CBEB0112F0AC3F69EEF996C /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DCE7D5EC2F0598E04148FA4E8616207 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FAAA4A4381321DF8667536FFAD08EB9F /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 10D00697F79A0E2D3291732024F91CE6 /* BugsnagApiClient.m */; }; - FAB0EF3C18B74021B49828C6CDF8E712 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 968B64357D7E84B201F9354C7B41A488 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - FB7F0DF7CA2940F0A26C74AC93A7A1D5 /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9904D01AF3E57EBC4AA564DE0D14DEF6 /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBC1CF7007BBE748220B4ADF7BA8C6A3 /* RNCUIWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3276457071DF97D202177EBD051D0228 /* RNCUIWebViewManager.m */; }; - FBD6BEC2A103546647AA9823214F58CF /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = 1B32ECC49FF7D82EB5C43E47F75F4A5C /* BSG_KSFileUtils.c */; }; - FBE6C1B1483DEE5558F02CDC526F717D /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E5605663032EC5A319B9EBBC3A8F55F /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC1BC59CD18DF2F705CDC607AD5A9BC7 /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 63B989D6201A9C53182E84B30A1A6339 /* RNRootViewGestureRecognizer.m */; }; - FC1F7F5DBC47731A5750AEB5FE40CE1C /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = FD74E2AED3CF913CF907D91D641B8CC3 /* 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 = A2B377C31C7DFD69197E8BA70B441C7E /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FC894F99330026EE2760367CF100EC41 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 91CCA8DD71CCF17D77595CDBF2990F8D /* 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 = B59E19CC78621D2F32E9443F6F98BA0A /* BugsnagApiClient.m */; }; + FAB0EF3C18B74021B49828C6CDF8E712 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 718030F226E89CC6787EFA1EEAAB6B33 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + FADE2F045119FB3BFEF532BF3A9D0851 /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 249A16AFFF0ED3697855E03BDE93F40D /* UIImage+WebP.m */; }; + FB4AB320A3A091BA11CB74F37DDCDA88 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = D434EDB1CBB94586CAD133E0226092CC /* SDWebImageCompat.m */; }; + FBD6BEC2A103546647AA9823214F58CF /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = D0AE346535487551E03C418FEBE76792 /* BSG_KSFileUtils.c */; }; + FBFCA9621362CC0797EFDDCE64F1ADB6 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 04A453ADA31088DEF5A67519CD4860BF /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC1F7F5DBC47731A5750AEB5FE40CE1C /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 6227D6DE69C1C5ADCE8E7EDA51391EC0 /* 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 = B33784A2108D2D41D6C7D2A4F9F0FC8C /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FC37ED605930506D625B8462E7164877 /* RNFirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = E6E88CCF48AB30F6305AB96E4C0CB8C7 /* RNFirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC75E77295BBFB0847AD3C907CD14E86 /* RSKImageCropper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E11ED6DD9DFBEB329CE7C94D5C2CE7C /* RSKImageCropper-dummy.m */; }; + FC894F99330026EE2760367CF100EC41 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 87A1C13CA2D72E1522A40D2D74193401 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FCA47B40E63DE30AF3C21639CB9CB5B1 /* GDTTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7470E8F6FFFF70707D4DF7A7B03C5E33 /* GDTTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCAD8ED69DEBCEE3F037EE691D368C39 /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1880D9CB0F7A540D0451EB2E4F0EF65F /* REANodesManager.m */; }; - FCC887881586BEC4B9D0A24B7E3A2BB6 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F54DB78C60B0A0033B3B0A6975E1017 /* EXFileSystem.m */; }; - FCD8E3CFEB879A205C27DA21CFCAC974 /* RNFirebaseAdMob.h in Headers */ = {isa = PBXBuildFile; fileRef = CF15B0E81578CD4A65CC515D17F032C8 /* RNFirebaseAdMob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCC887881586BEC4B9D0A24B7E3A2BB6 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 42C2648C752E0C5DEDA31801002C062E /* EXFileSystem.m */; }; + FCD05FA1FD387EE214716C5DF6B22F15 /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = 4591808A27E5293FF8B06A4C667F8757 /* NSImage+Compatibility.m */; }; FCF21519D6B7BE358AF1AAACC5267EA6 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 866634DD47119D3C9D507F7F85E254C1 /* enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FD17116B52C64A0E9C5741A4F4635D79 /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CB562017B48AAFE9160824A33DE66FE /* REAStyleNode.m */; }; - FD5DFACE1B34CCB1615ED9AC00BAA554 /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EB4AA2B872DEE23920B4D97A73528B3 /* REAClockNodes.m */; }; - FD6E8017D52CB54BA1578D1CC0612004 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E269F92C3C3C4CEC5150A13C19005B0 /* RCTStyleAnimatedNode.m */; }; - FD9AA47DB216C372525255D4E02E0778 /* RCTVibration.m in Sources */ = {isa = PBXBuildFile; fileRef = D741452E5AD995173B4FB5224589A542 /* RCTVibration.m */; }; - FDDB016245FCDC35E87D4FED5CBB5B4A /* RNCWKWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = A8D65AD80416F65CE3983CA2C4536DA1 /* RNCWKWebView.m */; }; + FD58F98FE779F52A533CA57F4F2D3C0E /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 14C24448DD9483B8F20956A6E8111BC0 /* READebugNode.m */; }; + FD5F40B44072A8D3E767851006F32937 /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D39C219FA741DA0C29860635ACF28C4B /* UMReactFontManager.m */; }; + FD6E8017D52CB54BA1578D1CC0612004 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A331EFE5A7BA06B55320D28505DA8D62 /* RCTStyleAnimatedNode.m */; }; + FD9AA47DB216C372525255D4E02E0778 /* RCTVibration.m in Sources */ = {isa = PBXBuildFile; fileRef = F3931D28AA076A31C49BC2F3020B0733 /* RCTVibration.m */; }; FDEB2D8C64FF5A2579A04A4DB88BF327 /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F1997835F06943906610D891732B4B5 /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE1AA8BC0F81A48E58066F7B85D4E399 /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = ECB864743EC58A9D1903C657F8429652 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE3BC86A46AD7B4F0C59A5F38847E2FA /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = CD440779B1A0E00415FAA7DAA2DFB245 /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE460D353DA267534647F89E0ABB0C78 /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = D246168C9275EE7834A1179D99B68307 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE1AA8BC0F81A48E58066F7B85D4E399 /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = DFE5E733EDF5FEF87333D061419E89A6 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE2D0D5ECFB51090655892E854841D8C /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BC4F1D594338B8E5BF253CE26E5C888 /* RNPushKitEventHandler.m */; }; + FE3BC86A46AD7B4F0C59A5F38847E2FA /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DD947A0E27F8395DC1DA31CA86A8547 /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE460D353DA267534647F89E0ABB0C78 /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C86203125B00920102E9A9E6EF3DD532 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FED6001F88D8B73042B733F0C9EF741F /* RCTVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = E51D7F63B069E4994B4B8D5E4C1D0675 /* RCTVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEF302FD5C2E107B2D45A7A753291A49 /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ECF981BBE8D0EF0D17304F6D1925DF0 /* huffman_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF317F39F62DC42CF68D9F743EB5A84D /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 41F4EF1D59F1761C34131B6EF56212A4 /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF59005A1DD93925414CEEF74AE1A8E3 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F9DB61AEDE12B4187272F0B24E5B506 /* REACondNode.m */; }; - FF6407EABDABB2C54224A6FF6FA76999 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EFDE12C3C7223B26A416B790A70B846 /* RNGestureHandlerModule.m */; }; + FF14CF6139F33E3337BF5D772369F291 /* RNFirebaseAdMobRewardedVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 218D325ED6F9CF50D150F81EC9121080 /* RNFirebaseAdMobRewardedVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF317F39F62DC42CF68D9F743EB5A84D /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = B2D53B9F8BD8745AC674A2064EB8E986 /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF459DD785E30E0BB835B687FB7872C6 /* RNFirebaseDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 518B4BFAC8C86BA88D0C669147F14B2C /* RNFirebaseDatabaseReference.m */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 00BC223B3BFF18AD8A95DB2CC580D111 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 31642F9D9703DB0EE0ECE8EE477DE676; - remoteInfo = "rn-extensions-share"; - }; 013C8C712E31279FB89EBADB1C1A4BC4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1953,12 +1941,19 @@ remoteGlobalIDString = 7825F222F53EF434DE74A6C6FAF290E9; remoteInfo = UMFileSystemInterface; }; - 01753B6F63A1547E46BA3BED10955FD2 /* PBXContainerItemProxy */ = { + 01862C862AAF286773660368B0AAC8D1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; + remoteGlobalIDString = 354080E72782177DBAB3CCEC8A61DF26; + remoteInfo = "rn-fetch-blob"; + }; + 0370A90D17A9C60B7C6D4B9F3A8ACA07 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B81CA3A3A63C0085E4085060FE4DD9FF; + remoteInfo = "React-jsiexecutor"; }; 040622B4EF3FFAC25FCB8BED372F45F5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1967,33 +1962,19 @@ remoteGlobalIDString = 426398FA61DF648ECF7C6897DFAC6E8E; remoteInfo = FirebaseCoreDiagnostics; }; - 054E403D8846A9EC860775A6F8B6F766 /* PBXContainerItemProxy */ = { + 052419460B529A6F471129F5DA173ED8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6DE003F64B133830B9AB9321298DAAC2; - remoteInfo = ReactCommon; + remoteGlobalIDString = C044C5A98E3D4C78D88D46C8E6C24CE1; + remoteInfo = RNUserDefaults; }; - 05A6B3E889928B6B4415540E68607403 /* PBXContainerItemProxy */ = { + 05EA7E5DCAB06470F0196E84E9D8678F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 21B91730AA56171E7B635E8AFB2A7F3E; - remoteInfo = JitsiMeetSDK; - }; - 064073E0DEE5654DF011090C88331D45 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 303D154AC7C4E1DB362014D843A75377; - remoteInfo = "react-native-document-picker"; - }; - 0702956FF57CE00439DD82C571A6CE90 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BD7B2D8FF0ABCB89D01F6E21D5364678; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = C044C5A98E3D4C78D88D46C8E6C24CE1; + remoteInfo = RNUserDefaults; }; 0736F43E628DF211771775F69A163785 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2002,6 +1983,13 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; + 07ADAF0D644FBD9A61280BD647EE87F4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E90B06E472DDA9583C2227DCEBFF5145; + remoteInfo = SDWebImageWebPCoder; + }; 07B672E660093ADC2F1D1FA9D1271CF4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2016,6 +2004,13 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; + 0A821EFFBB6E988CA18AD2BF0F3B3711 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EB1AFC730F005065E951DE8E8F6826B4; + remoteInfo = SDWebImage; + }; 0AA48B35BA7148412EA836482D3727DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2023,33 +2018,19 @@ remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; remoteInfo = Folly; }; - 0B0A1D2C0C5A2E0D8595777CCE01AD5B /* PBXContainerItemProxy */ = { + 0D7B7AB8FD1FD4012E321B494F164B26 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2A99896D65A33A482D2D82FC436F823D; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; }; - 0B1E2FB6F4F1F60A29D62A4E1E2E7BFD /* PBXContainerItemProxy */ = { + 0E0B887A3FBB975E5F05AB1FD93372ED /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 427A5566E42596B2649019D00AA80F10; - remoteInfo = libwebp; - }; - 0D5374255D00D4F4C86936F13815D0A4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2805838904E98AA8807CBFDCC32F2AE0; - remoteInfo = "react-native-splash-screen"; - }; - 0D7F11315964CD691FC14BEBE4735783 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 00A1152257C714469E09BE277AC19E70; - remoteInfo = UMBarCodeScannerInterface; + remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; + remoteInfo = "React-Core"; }; 0ECB4C54EED84F5258E41AFD4657F11F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2065,6 +2046,20 @@ remoteGlobalIDString = C2F81329D3C42F2D872A4B80180545BC; remoteInfo = "React-RCTLinking"; }; + 1016518467B4BE718393C867F3C07544 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7236D5BFD42DBEDF2652D4E47992BD2; + remoteInfo = "React-jsi"; + }; + 10945DD5B2331770B1CE64A571F2DABF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; + remoteInfo = "boost-for-react-native"; + }; 10B32C2C31A516CD0A0578144E20FD18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2079,12 +2074,12 @@ remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; remoteInfo = UMCore; }; - 1144F98219283A58EFA7B0958F885D0E /* PBXContainerItemProxy */ = { + 1357E9C6E8464595CB3971FD55F7AAD8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F4A43BC5CC1CE68C79792AEBBCE9C138; - remoteInfo = RNReanimated; + remoteGlobalIDString = 232D00D8ED7797390FB38004DE01723B; + remoteInfo = FirebaseAnalytics; }; 13EF1229647EEDD20E086226A26C9EA6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2093,12 +2088,19 @@ remoteGlobalIDString = 6DE003F64B133830B9AB9321298DAAC2; remoteInfo = ReactCommon; }; - 154806E46BCAC13C4328C03CF0873402 /* PBXContainerItemProxy */ = { + 144C2BE4917AC98DD56450F812A849A1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; + remoteGlobalIDString = 0A839CF1E1DC111261AED3D86F9A04B0; + remoteInfo = "react-native-keyboard-tracking-view"; + }; + 14D357EFAD5116FB2654F159C9E5CBEE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 93C5B1FB74974DD045F6674ABFFDD408; + remoteInfo = "react-native-keyboard-input"; }; 163CBAEB4B1179F7E94CBFA9D9821391 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2107,6 +2109,20 @@ remoteGlobalIDString = 017AB91E1D5AB2B6096ADC666B072208; remoteInfo = "React-RCTImage"; }; + 16787D8E87DADB36F660A8A599E451E7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 426398FA61DF648ECF7C6897DFAC6E8E; + remoteInfo = FirebaseCoreDiagnostics; + }; + 169B93721A6A4AE650CB52E20B9EA0FE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; 16E39C41A1CBE1E8002EF54F741C1EB3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2121,19 +2137,33 @@ remoteGlobalIDString = 5C53A3A5621162049D9B4399173FAD68; remoteInfo = UMPermissionsInterface; }; - 1A4A05767045E556F0E284FEBD0F30F9 /* PBXContainerItemProxy */ = { + 17BD0C2B9D942DAFB9CBDE41E748798F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; - remoteInfo = Folly; + remoteGlobalIDString = AC9FFACDCABA4A7F5721FB719571B81A; + remoteInfo = RNReanimated; }; - 1B4A2424704077594FDDCFEE2D63C8F7 /* PBXContainerItemProxy */ = { + 1A045AAC4D970C589406DD45AFE7052D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B413ECF06F2CDCADFB85C45E9A5FEA2C; - remoteInfo = SDWebImage; + remoteGlobalIDString = BF663682387D1F23ADF217037A1593FD; + remoteInfo = RNLocalize; + }; + 1B05F669995A405DC14F41D9DA61DF36 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 21B91730AA56171E7B635E8AFB2A7F3E; + remoteInfo = JitsiMeetSDK; + }; + 1B8B9300C4E3FFA252539DEF7563C21B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 017AB91E1D5AB2B6096ADC666B072208; + remoteInfo = "React-RCTImage"; }; 1BA9FE8D4FA41AD95626F63DB8C9FBEA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2142,26 +2172,47 @@ remoteGlobalIDString = 9F219ED43F3AEA000562B9BCFD624DDD; remoteInfo = "React-cxxreact"; }; - 1C86A9B7AF45812CA2B5FCB5D2852E6C /* PBXContainerItemProxy */ = { + 1C4A5EEC8AE6091FEF31F46A5F54F298 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 726A1DAA8BA43A59037E6DD0759CCBCA; - remoteInfo = RNUserDefaults; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; }; - 1DAF27107B70BE374D629D58E63B656A /* PBXContainerItemProxy */ = { + 1C5E7A188F881ED278B51645347C18CE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 392A9C558B900FB520CA2EF39651DB54; - remoteInfo = UMFontInterface; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; }; - 200E857C6BBAE78BBAE7977CF0BB62A4 /* PBXContainerItemProxy */ = { + 1E18ED1B4A5349874A5F89CC347699EB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 01B53B6A43CBD6D4022A361BBFCCE665; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; + 1F78029557F008CAE1B4B1AA7047FA2C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2A99896D65A33A482D2D82FC436F823D; + remoteInfo = FBReactNativeSpec; + }; + 213AD7C7B7A3599FB3A851F2AF78BA8F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 115FC7605B6A0F6044A879F6EEB7DD99; + remoteInfo = "React-jsinspector"; + }; + 216C6BEA95AC084C7DE64252B7F0A35A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EB1AFC730F005065E951DE8E8F6826B4; + remoteInfo = SDWebImage; }; 219C53CD3A03703B87C5388DE52037A3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2170,19 +2221,19 @@ remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; remoteInfo = Folly; }; - 2386E3BCA6A02B48F5019688ACFF9FBB /* PBXContainerItemProxy */ = { + 223E81BC85EF569587F1ABD65F00AD79 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7825F222F53EF434DE74A6C6FAF290E9; - remoteInfo = UMFileSystemInterface; + remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; + remoteInfo = Crashlytics; }; - 2406FE57E26426A9B38C40EDDCF72F29 /* PBXContainerItemProxy */ = { + 233B46730B0B8D51E83160D1C111EAF1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 017AB91E1D5AB2B6096ADC666B072208; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = BF4AABB64D09DEB00ECF19B09D06CCD8; + remoteInfo = RNImageCropPicker; }; 243E1224598243CE0CCEE4E8D1F2D091 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2205,41 +2256,48 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; - 26F428DBAEB215670AACD4A4DBE689EB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 59D5FC9202D131CDFD2E08ABCE1C35AC; - remoteInfo = nanopb; - }; - 277ACD83DD3382419716B71D0C67E516 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9D255DD73ADD1E4565B5CCB665433053; - remoteInfo = RCTRequired; - }; - 283BE7DACCB5BB769525667E3CCF8B23 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 86D7BBC6168AFCB7AE1798FE9AD97E10; - remoteInfo = UMSensorsInterface; - }; - 289ED4ED15F1AF1FF9D14B45BAA76A52 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - 29C8B4A2E8C3B025AD8694B7ADE2D951 /* PBXContainerItemProxy */ = { + 2495FC42DB57AD3AF7AD1583BA7CC752 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 57B9E0A892EAB5C13D4AE7D4B1DE0C16; remoteInfo = GoogleAppMeasurement; }; + 2748CE6CF1C6A9B85A8C7BDA32033DB4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 98F57C9A3FB6F5E9C1D7242BBE675E8D; + remoteInfo = RNFastImage; + }; + 27FDAF160CAAA7095F61659954450855 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 017AB91E1D5AB2B6096ADC666B072208; + remoteInfo = "React-RCTImage"; + }; + 28142F0A3AA066A7268567128010D3E8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A486E5AB43C3327005F1C0B986A448C0; + remoteInfo = EXConstants; + }; + 2840D4A5F9645E09FFCA891F58E7DCBC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EB1AFC730F005065E951DE8E8F6826B4; + remoteInfo = SDWebImage; + }; + 2A21F55EB320DF9DE2030139D4236BEE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 64E78828D8355514B3B6BE78FAE7806E; + remoteInfo = "React-RCTSettings"; + }; 2A5330A27066B77F84440B5AAE0EB91C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2247,26 +2305,33 @@ remoteGlobalIDString = F7236D5BFD42DBEDF2652D4E47992BD2; remoteInfo = "React-jsi"; }; - 2B450C172AA0F350DBD77E070D8676C0 /* PBXContainerItemProxy */ = { + 2A7932490BF02B7C378EAD94363DE810 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 123D4D7AC3D41ABC0675B1DB3613066E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = E07EA1A35FBB3A986F484EB01CDD5527; + remoteInfo = EXPermissions; }; - 2B54957E15D0EDA71D58252B9918F876 /* PBXContainerItemProxy */ = { + 2A8749BBA8B9E5FC46965CD4DB6321C7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; + remoteGlobalIDString = 354080E72782177DBAB3CCEC8A61DF26; + remoteInfo = "rn-fetch-blob"; }; - 2C16ACE99BA4BEC6536A5484822AA1C8 /* PBXContainerItemProxy */ = { + 2B8FBC6AEBC73557360D4174B9DCE8EB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B413ECF06F2CDCADFB85C45E9A5FEA2C; - remoteInfo = SDWebImage; + remoteGlobalIDString = B84B55116AE8D2FC32258CFFF2972E1A; + remoteInfo = "rn-extensions-share"; + }; + 2BDFE095EEDC668564F76B8074F1201E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6DE003F64B133830B9AB9321298DAAC2; + remoteInfo = ReactCommon; }; 2C95DFFCB2EC326C56D43774DED19805 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2275,68 +2340,26 @@ remoteGlobalIDString = 9D255DD73ADD1E4565B5CCB665433053; remoteInfo = RCTRequired; }; - 2D2B87423D6815FA65966D7BC6AFAE0E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 115FC7605B6A0F6044A879F6EEB7DD99; - remoteInfo = "React-jsinspector"; - }; - 2DF1584774791DDCB393CF91AA431745 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E2ABA11C27993D4CDD5DA270C4B75F1; - remoteInfo = "React-RCTBlob"; - }; - 2E07CDED7E518D7201464E12EFCABB0C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 799B29F9D6DCE28B98CC259440382F20; - remoteInfo = Firebase; - }; - 307E2EFEE04182478F55D9EE22DE4612 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3C6A9BF574C3488966C92C6A9B93CA8C; - remoteInfo = FirebaseInstanceID; - }; - 30FAC5C1BE79417153740C55FC580FFE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9F219ED43F3AEA000562B9BCFD624DDD; - remoteInfo = "React-cxxreact"; - }; - 31BAF13362D888DD9295FE00120150E0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FEC7CEE99C30C1292EC32D7E006E4E85; - remoteInfo = Yoga; - }; - 31CCCAC0A8A8FA62EFAB8E223133DCBA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5670B9D7F60A308B44938F9FAB576F8E; - remoteInfo = "react-native-safe-area-context"; - }; - 3282290EDF382B60DA3F338D9D7018AE /* PBXContainerItemProxy */ = { + 2E0C862B9A9EE20025CBEF95F20FDFAB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; remoteInfo = React; }; - 33AD74CF20B152A430D4688994FD72CD /* PBXContainerItemProxy */ = { + 2F95A9444DF8D3D511E7C871C1A15022 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 799B29F9D6DCE28B98CC259440382F20; - remoteInfo = Firebase; + remoteGlobalIDString = EB1AFC730F005065E951DE8E8F6826B4; + remoteInfo = SDWebImage; + }; + 2FA294F60B6F656EC9D5EB8010A3F5F2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7236D5BFD42DBEDF2652D4E47992BD2; + remoteInfo = "React-jsi"; }; 33C3622012A6D55A8CCD64DE231CB8A0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2345,33 +2368,19 @@ remoteGlobalIDString = 115FC7605B6A0F6044A879F6EEB7DD99; remoteInfo = "React-jsinspector"; }; - 34010E47EAEB78CAC0EB090479EF4E8A /* PBXContainerItemProxy */ = { + 33CAD1B6035EB384AF96BF910CDF33C9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 59D7DEBEE2A5AFB4A70211E96873E983; - remoteInfo = "react-native-background-timer"; + remoteGlobalIDString = 123D4D7AC3D41ABC0675B1DB3613066E; + remoteInfo = RCTTypeSafety; }; - 353EFBDC69D88FB4AD779CC645DDE411 /* PBXContainerItemProxy */ = { + 38691D3DB41F50AFB05A8C2B2FF3C106 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5B1BA8B3E53682DD179F7BFF8F2C8B75; - remoteInfo = EXHaptics; - }; - 361306A42FF5D37D2E1B3C80F1908F09 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1F22396CB543506E7EA28A47A30E9727; - remoteInfo = GoogleDataTransport; - }; - 3848FCFE885F55496D9BDADC46284399 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 49A20CD2A4D337B7A85D4498997FD6ED; - remoteInfo = "react-native-video"; + remoteGlobalIDString = 5C53A3A5621162049D9B4399173FAD68; + remoteInfo = UMPermissionsInterface; }; 386C0EB352726BA92F7F015C2FB264EF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2380,6 +2389,13 @@ remoteGlobalIDString = 123D4D7AC3D41ABC0675B1DB3613066E; remoteInfo = RCTTypeSafety; }; + 38894F649DF1D5E7F110ECF10AA23480 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B81CA3A3A63C0085E4085060FE4DD9FF; + remoteInfo = "React-jsiexecutor"; + }; 3AFCC674053FAF5DC8E87833CC15D1F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2387,6 +2403,13 @@ remoteGlobalIDString = E49E330A27425F89DE89516B2F50AAE9; remoteInfo = "React-RCTText"; }; + 3BE17F46C2A69521BEDBDD00A0A50802 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; + remoteInfo = GoogleUtilities; + }; 3C63709D9A9E8BFEDDDB0EC6915A77BE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2394,12 +2417,12 @@ remoteGlobalIDString = 60F43D68BD7290E1B24C3BE7B3382AD3; remoteInfo = "React-RCTNetwork"; }; - 3CC87F5D070D7E60DC0041F9DDA9401C /* PBXContainerItemProxy */ = { + 3C644EF417E45B39EC00BFEBDBE7CD77 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; - remoteInfo = Fabric; + remoteGlobalIDString = 60F43D68BD7290E1B24C3BE7B3382AD3; + remoteInfo = "React-RCTNetwork"; }; 3CE12525FC73E81B8DC468274B077D13 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2422,6 +2445,20 @@ remoteGlobalIDString = 9F219ED43F3AEA000562B9BCFD624DDD; remoteInfo = "React-cxxreact"; }; + 3E4C1056740EB75C46BF5CF5369B4423 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E1B62D66A7097B06E8963437D5909DB; + remoteInfo = QBImagePickerController; + }; + 3E83939548612349E299EAF0C40F5146 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6DE003F64B133830B9AB9321298DAAC2; + remoteInfo = ReactCommon; + }; 3E9AE265557A98CB42FFD3D38570ED51 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2429,27 +2466,27 @@ remoteGlobalIDString = F7236D5BFD42DBEDF2652D4E47992BD2; remoteInfo = "React-jsi"; }; - 407448F7DA38C16B1116DDAD2B655180 /* PBXContainerItemProxy */ = { + 3EAE6DC73CF9A206E7E979992D502029 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 458293E00EF1C1F42778F9425AD34AA4; - remoteInfo = UMConstantsInterface; + remoteGlobalIDString = EE96A92842C7DB9F8DD7593EC0B8D0FE; + remoteInfo = RNGestureHandler; }; - 408DFC4708A4EDA17A90B7F9D075BAE5 /* PBXContainerItemProxy */ = { + 3FF190B87A75D66E8F5D28212DA06300 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; + remoteInfo = UMCore; + }; + 410E4B4A7CDC13067A4103256B2299B3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; remoteInfo = React; }; - 411E5BC9B0060579ACEE1C8B0C6CCD68 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6CAFCD3C8DDBA20EE5B4794529B7FDED; - remoteInfo = UMReactNativeAdapter; - }; 41C76CAFA02708C48FAD7EEDAF99436C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2457,6 +2494,20 @@ remoteGlobalIDString = BD7B2D8FF0ABCB89D01F6E21D5364678; remoteInfo = "React-RCTVibration"; }; + 431FC6FDAB7FD6F752DD2E8E3E2FECBF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = AC9FFACDCABA4A7F5721FB719571B81A; + remoteInfo = RNReanimated; + }; + 4440721E044DFDEECABC2439E378EC5E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E1B62D66A7097B06E8963437D5909DB; + remoteInfo = QBImagePickerController; + }; 455009ED9ED8F59E3D7880EA52A66B11 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2471,27 +2522,76 @@ remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; remoteInfo = GoogleUtilities; }; - 4647CA8FA84173C1B4A0D547DEC37782 /* PBXContainerItemProxy */ = { + 47070FFC006371B5FA29EF1D95019BC5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0D5E898FF62B3A40F7C391BA01E3A076; - remoteInfo = "react-native-webview"; + remoteGlobalIDString = 9F219ED43F3AEA000562B9BCFD624DDD; + remoteInfo = "React-cxxreact"; }; - 4A58969A0E2FABAF2DB272FD8952532A /* PBXContainerItemProxy */ = { + 47756DB874E4D60484417ADDBE8803E7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 01B53B6A43CBD6D4022A361BBFCCE665; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 6DE003F64B133830B9AB9321298DAAC2; + remoteInfo = ReactCommon; }; - 4AE8C69CE4711B8F8D2E8528D9E51F25 /* PBXContainerItemProxy */ = { + 48BF8622A61AE1F0AF0C8D53F5FA94CE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 232D00D8ED7797390FB38004DE01723B; remoteInfo = FirebaseAnalytics; }; + 4939F78CA095D63B1B1ABE6DF7F97361 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 586C843030CBA8901E569AB3D2F76867; + remoteInfo = "react-native-orientation-locker"; + }; + 49DBAF47EF3E1FF7076A2B59DF1AB54F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4ECE1108F140208A729A83BC94FAA150; + remoteInfo = EXAppLoaderProvider; + }; + 4A032BB66611274CFE0B8CEF80F4C9C7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; + remoteInfo = Fabric; + }; + 4AAD1C8AE540FD4896DE5C56848FC14E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; + 4ACCB8F6D435FF7050B8DBEDD7B16752 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; + remoteInfo = Folly; + }; + 4AEACCA9947B928CEE93E6504C63D1FB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; + remoteInfo = UMCore; + }; + 4B9F4A1566EF0ED66A077161D0D9138C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 01B53B6A43CBD6D4022A361BBFCCE665; + remoteInfo = FirebaseCore; + }; 4BBDCF74AAA6DEC7420E0CB6C398D3AF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2506,82 +2606,47 @@ remoteGlobalIDString = 60F43D68BD7290E1B24C3BE7B3382AD3; remoteInfo = "React-RCTNetwork"; }; - 4C57220799A0FB081EC79E103427B0FC /* PBXContainerItemProxy */ = { + 4D3D4F4745C58CC8BEF76F4C2205D18B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7135140B597489F3FE9D0A6D1FADD9C7; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = 82BA924F838C30601D2A813EA338492A; + remoteInfo = "React-CoreModules"; }; - 4D6F727054299FD0134627D3D5380A3B /* PBXContainerItemProxy */ = { + 4DC50D5AF3FEF5740E48AC61F1C4F18C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - 4DCED4269C4B954231BAE9946CE8306A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0D5E898FF62B3A40F7C391BA01E3A076; + remoteGlobalIDString = 52B496375B47BE24C88A169CA30D0DEA; remoteInfo = "react-native-webview"; }; - 4F1C3EF80BD2EF8ADBAB30E19B249D27 /* PBXContainerItemProxy */ = { + 4E24840961F145B083EECF294B491951 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 63CF4D4E74D1771681263724253E1E79; - remoteInfo = GoogleDataTransportCCTSupport; + remoteGlobalIDString = A3E6473348261FF8E0036D77598A7883; + remoteInfo = "react-native-splash-screen"; }; - 4F397DB02CCA61F9AA9679F28C8C24E2 /* PBXContainerItemProxy */ = { + 4F69783E7CBBB0B69D3EA72F000B8940 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; - remoteInfo = Folly; + remoteGlobalIDString = 4DDE5693A87611C05EBF117455A2FB9F; + remoteInfo = RSKImageCropper; }; - 522F322692ED0FC967B93E9037C1CFB4 /* PBXContainerItemProxy */ = { + 5263AD4A9DD368B4782778E412D8B21B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2A99896D65A33A482D2D82FC436F823D; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = FD0F4E74C14C4B5B552686BD9576466F; + remoteInfo = EXFileSystem; }; - 5254FC944977CAB59565A8ACDE28F7EB /* PBXContainerItemProxy */ = { + 53740FCB2D6D2D2D596BED15D7CCC4EC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6DE003F64B133830B9AB9321298DAAC2; - remoteInfo = ReactCommon; - }; - 526669C8CD3B119C384A23903EC1ED41 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 998EB74379168C52658B6543889D239F; - remoteInfo = RNGestureHandler; - }; - 527B042DAAFC0D9C39BF694BC10CE40F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7236D5BFD42DBEDF2652D4E47992BD2; - remoteInfo = "React-jsi"; - }; - 53377579DAD2BC2EBAE133A986F2F045 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - 538F1FA8B40A7FF624565FCFFBB615AA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 21B91730AA56171E7B635E8AFB2A7F3E; - remoteInfo = JitsiMeetSDK; + remoteGlobalIDString = 42BD655FCD2598C4D25D7B895932A77F; + remoteInfo = "react-native-background-timer"; }; 53E2A1BD19729C2293AB46582C686251 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2597,33 +2662,26 @@ remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; remoteInfo = GoogleUtilities; }; - 568BCCB36D67A73A5F4F80B42EDF5376 /* PBXContainerItemProxy */ = { + 56DE2F792AB886192CE63AD1A12083D1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7F28D4475D7DAD9903F7E6044DD921C1; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = 7825F222F53EF434DE74A6C6FAF290E9; + remoteInfo = UMFileSystemInterface; }; - 56CE97A9E5E7BB6762FA221A41C29716 /* PBXContainerItemProxy */ = { + 5764721824CD50AECC4E368F7D6967DC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 29853B24544C7926C2BFC70C42760675; - remoteInfo = QBImagePickerController; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; }; - 573863441BE026C444FB86F0B28C0B77 /* PBXContainerItemProxy */ = { + 586569852C0CDBDFDB3496DD458398BB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 48A082BED63E227E6247A0541D876B43; - remoteInfo = "rn-fetch-blob"; - }; - 577F691ED37101E439AE66A8A019C633 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E452F4CD4F8AB641BD2444C7AC91FA2B; - remoteInfo = BugsnagReactNative; + remoteGlobalIDString = E13B95041FFD639523C6719AAEF55D71; + remoteInfo = DoubleConversion; }; 586C9042939572C3633A6BECFDC2FFDF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2632,19 +2690,26 @@ remoteGlobalIDString = 7135140B597489F3FE9D0A6D1FADD9C7; remoteInfo = "React-RCTActionSheet"; }; - 598024E5B078B0C07B82450BCD18446A /* PBXContainerItemProxy */ = { + 58F611DDE7402248146B84EF5471EC60 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B413ECF06F2CDCADFB85C45E9A5FEA2C; - remoteInfo = SDWebImage; + remoteGlobalIDString = 1CCF1D06CCFE0D0AB787DF0923C94D79; + remoteInfo = FBLazyVector; }; - 59F367BD96F9CF7A2013C195A737050B /* PBXContainerItemProxy */ = { + 58F893A6A79E2CB875502153739DDD3E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A9B4B98188B0E2FD6E1A5661E21B6BEC; - remoteInfo = UMFaceDetectorInterface; + remoteGlobalIDString = BD7B2D8FF0ABCB89D01F6E21D5364678; + remoteInfo = "React-RCTVibration"; + }; + 590EE35A14CBE90B9E583131349DD49A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 52B496375B47BE24C88A169CA30D0DEA; + remoteInfo = "react-native-webview"; }; 5A01D7A983FEAB270273E554A7DA4480 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2653,27 +2718,6 @@ remoteGlobalIDString = 7CAB4058EBC116AE1A60D0CB0B1BFCC1; remoteInfo = glog; }; - 5A5B607C13D7A42146E2913254797F4E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E49E330A27425F89DE89516B2F50AAE9; - remoteInfo = "React-RCTText"; - }; - 5A7017F02B869360B3E3A91F7AC688FF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C2F81329D3C42F2D872A4B80180545BC; - remoteInfo = "React-RCTLinking"; - }; - 5BADF1A77DEE44D96912922B416AF12E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; - remoteInfo = Folly; - }; 5BE488B88EB1D7B8BFE4A63D278D4B18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2681,13 +2725,6 @@ remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; remoteInfo = GoogleUtilities; }; - 5C57A69987BFD032769D3DC7FD8BE175 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9F219ED43F3AEA000562B9BCFD624DDD; - remoteInfo = "React-cxxreact"; - }; 5C8A3E6AB1161E9CF7D5A8AC0368B080 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2695,13 +2732,6 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; - 5CA6AF3238D118C80E46C9EDD37586A8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5285479282A796511D8530E65EC983DF; - remoteInfo = RNImageCropPicker; - }; 5D5E2D283A970E01BA8A2BC60FE99815 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2709,19 +2739,33 @@ remoteGlobalIDString = 7CAB4058EBC116AE1A60D0CB0B1BFCC1; remoteInfo = glog; }; - 5D95918C7F7B6F28B2776D1339BDF574 /* PBXContainerItemProxy */ = { + 5DA2E1B829916F75D96CFA4566589951 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1CCF1D06CCFE0D0AB787DF0923C94D79; - remoteInfo = FBLazyVector; + remoteGlobalIDString = A3E6473348261FF8E0036D77598A7883; + remoteInfo = "react-native-splash-screen"; }; - 5EBF5014143DA760A29836CBEED11E26 /* PBXContainerItemProxy */ = { + 5E03C9744EE1148CA3B5F55FD8769233 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 880920CE33AF3DE5A35090F9234DE5C7; - remoteInfo = RNLocalize; + remoteGlobalIDString = 69A8731022935CD8A0051D815C1867A8; + remoteInfo = UMFontInterface; + }; + 5EA56BDF4FE88BD4B113A10114CCE696 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; + remoteInfo = Crashlytics; + }; + 5FA42D7B301BE8515DF82C0CC22A56DA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 42BD655FCD2598C4D25D7B895932A77F; + remoteInfo = "react-native-background-timer"; }; 5FDD7E408B08AF566972547CAF4A8B67 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2730,90 +2774,104 @@ remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; remoteInfo = UMCore; }; - 609FD6BE42D591AB8F7D753800463D32 /* PBXContainerItemProxy */ = { + 5FF7B488B609B255FFB33976CD27F18F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97F64487E3A3BD041F3D7CC6460EA688; + remoteInfo = UMReactNativeAdapter; + }; + 6026809C55A908A5D0E0DC91C727F216 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 18CEE6DA46F6A35B632E30ABDA5F0368; + remoteInfo = UMBarCodeScannerInterface; + }; + 6157EEAEA715BFDE031B60FA9580690A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; + 628202471300B7622015B43DEFD7C642 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 864F908B842632C53102364B908D850D; + remoteInfo = "react-native-video"; + }; + 62E29A3AFB2BA7FFB14A4A9576E17A35 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; + 63D36758604A826BDF289EFA87CE2F83 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 63CF4D4E74D1771681263724253E1E79; + remoteInfo = GoogleDataTransportCCTSupport; + }; + 64389A0E488F597F305C37CBE5BACEF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; remoteInfo = Fabric; }; - 60E144C08E62E149ACCDA7FE7CC3713A /* PBXContainerItemProxy */ = { + 65171C346B316FE83CE70E02D0526063 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 60F43D68BD7290E1B24C3BE7B3382AD3; + remoteInfo = "React-RCTNetwork"; + }; + 65A17445C11CF34293B33E1781E0FC41 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 576DA68F0B73651A1A5891E1E575843A; + remoteInfo = UMFaceDetectorInterface; + }; + 66B56979037679FAFB34EA5EE70B6DE3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7771CBBD8DE87850E7FDC2BAA331122F; + remoteInfo = "react-native-notifications"; + }; + 67ED359B2D4DD066EF468FF0C65BC7C6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 123D4D7AC3D41ABC0675B1DB3613066E; + remoteInfo = RCTTypeSafety; + }; + 694EF6F8A77E572BCB8132EE1A40F426 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5B9C887470B06C308DB225E189F87B0E; + remoteInfo = RNDeviceInfo; + }; + 698B8F91D5922A2E37F6DD1024D608F6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 7135140B597489F3FE9D0A6D1FADD9C7; remoteInfo = "React-RCTActionSheet"; }; - 63472110D76F8EABA8376978EEF3C0DE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 427A5566E42596B2649019D00AA80F10; - remoteInfo = libwebp; - }; - 650EADECE13A05F798586D7B42450DF4 /* PBXContainerItemProxy */ = { + 69AEC55E1734D2B9678767369A23C7B1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = E452F4CD4F8AB641BD2444C7AC91FA2B; remoteInfo = BugsnagReactNative; }; - 652731980497516C15D6BAA7B2EF3D9B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - 65C5110D0276AFD18E9033AFDF9266CB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B143863673452F4D5E000E2997B3651F; - remoteInfo = "react-native-notifications"; - }; - 66B43A11C08294E92BDC03B7AA6E78F3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B81CA3A3A63C0085E4085060FE4DD9FF; - remoteInfo = "React-jsiexecutor"; - }; - 66BC240DA920A04A46313DB7AB9C2237 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - 66FF5DA65E7C8B025F5A7BA5030CAA95 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - 6724EC8D58175259C49E254E4FF5094B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6EA8C542D237B6C3582C6CD2CF9DBA96; - remoteInfo = "react-native-jitsi-meet"; - }; - 6945B53A27BE9BA0B8A7C7A80B08DE93 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BC730040B89735D99427DBE0EDAA828E; - remoteInfo = RNScreens; - }; - 69BD20BEB053353801308AB077DA294E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A1DA7160DD40C2F4C7332F30DE279FC2; - remoteInfo = FirebaseCoreDiagnosticsInterop; - }; 6A307E7AA187B3493D468319584B81F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2821,6 +2879,13 @@ remoteGlobalIDString = 9D255DD73ADD1E4565B5CCB665433053; remoteInfo = RCTRequired; }; + 6A797037D5C82CA49C5802019331D5E4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FEC7CEE99C30C1292EC32D7E006E4E85; + remoteInfo = Yoga; + }; 6BD0984377EB6F1CDAF209D0EEAE7356 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2828,55 +2893,6 @@ remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; remoteInfo = "boost-for-react-native"; }; - 6D47D9569120DA0D2FBD214C2CC3826F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 64E78828D8355514B3B6BE78FAE7806E; - remoteInfo = "React-RCTSettings"; - }; - 6DC845E6A6B4FAE64897D6BA52979BD3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 541B734EAEC62BA761D4C886EF4FC968; - remoteInfo = "React-CoreModules"; - }; - 70ECBA486A165FDCA6384E6B103074B8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 462F2792E1383810DA255DC15CB8F942; - remoteInfo = RNFirebase; - }; - 71093A90EC7D99542E57C67A4B1049CC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B143863673452F4D5E000E2997B3651F; - remoteInfo = "react-native-notifications"; - }; - 713C9ED4CCBF854BCA4435D762875AF4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 880920CE33AF3DE5A35090F9234DE5C7; - remoteInfo = RNLocalize; - }; - 7168C73EE8AB396AA7C26F2A93CAF36C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B413ECF06F2CDCADFB85C45E9A5FEA2C; - remoteInfo = SDWebImage; - }; - 728E5B9465362ECC36E9A3258F622F58 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 49A20CD2A4D337B7A85D4498997FD6ED; - remoteInfo = "react-native-video"; - }; 729C920815C311E1D586861019E10612 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2884,12 +2900,26 @@ remoteGlobalIDString = A1DA7160DD40C2F4C7332F30DE279FC2; remoteInfo = FirebaseCoreDiagnosticsInterop; }; - 73367AB7321BF72F5B974588D1ADE69C /* PBXContainerItemProxy */ = { + 736DC0B9A1D2232975B1200884C4425E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 426398FA61DF648ECF7C6897DFAC6E8E; - remoteInfo = FirebaseCoreDiagnostics; + remoteGlobalIDString = BD7B2D8FF0ABCB89D01F6E21D5364678; + remoteInfo = "React-RCTVibration"; + }; + 74B1BB502B65344CCC7984C50FF888A0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7CAB4058EBC116AE1A60D0CB0B1BFCC1; + remoteInfo = glog; + }; + 75A73C0D34E5B4F48313043CD22B3D17 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 21B91730AA56171E7B635E8AFB2A7F3E; + remoteInfo = JitsiMeetSDK; }; 75A8D1D5089B0ACAF241DACEA0305423 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2898,12 +2928,12 @@ remoteGlobalIDString = E13B95041FFD639523C6719AAEF55D71; remoteInfo = DoubleConversion; }; - 7674559018B5424C59ED4C97EB555252 /* PBXContainerItemProxy */ = { + 767982899D470DF11FA512019A4E7B6E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 874E2550FB0B01C8D0337694A6A60B49; - remoteInfo = UMCameraInterface; + remoteGlobalIDString = 7F28D4475D7DAD9903F7E6044DD921C1; + remoteInfo = "React-RCTAnimation"; }; 76B0A5010EE1574433BB6DED35297BCE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2912,6 +2942,20 @@ remoteGlobalIDString = E13B95041FFD639523C6719AAEF55D71; remoteInfo = DoubleConversion; }; + 78513EFE2089F164CD5117B67A8B9615 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E13B95041FFD639523C6719AAEF55D71; + remoteInfo = DoubleConversion; + }; + 78589F10D26118F2FB39782281E200DE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5B9C887470B06C308DB225E189F87B0E; + remoteInfo = RNDeviceInfo; + }; 7886C00AD2D894DE9202D2ADC41E8DF5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2919,27 +2963,6 @@ remoteGlobalIDString = 7CAB4058EBC116AE1A60D0CB0B1BFCC1; remoteInfo = glog; }; - 78CF5ADC0E8B796ECA48CF128675D9A0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - 792BECADD2B2A46B5CE164A06DA9E7E8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 29853B24544C7926C2BFC70C42760675; - remoteInfo = QBImagePickerController; - }; - 79D2FF753EA36849FF4C1CB9AE5A4940 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; 7AEA5761B26CAEF1A0C0E82599059DA8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2947,6 +2970,13 @@ remoteGlobalIDString = 232D00D8ED7797390FB38004DE01723B; remoteInfo = FirebaseAnalytics; }; + 7C2BBB5EBEA48BFEAA6CBD24F4E9FA24 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E1B62D66A7097B06E8963437D5909DB; + remoteInfo = QBImagePickerController; + }; 7C53CB5C717DF2F107152E0C7B720455 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2954,6 +2984,27 @@ remoteGlobalIDString = 7CAB4058EBC116AE1A60D0CB0B1BFCC1; remoteInfo = glog; }; + 7EE17745C011BB1C7C5717C01B37473E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4DDE5693A87611C05EBF117455A2FB9F; + remoteInfo = RSKImageCropper; + }; + 7EFCFEA94A1863CE62030281846FB802 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; + 7F9603DE3CD05037592D96A53669C89A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 01B53B6A43CBD6D4022A361BBFCCE665; + remoteInfo = FirebaseCore; + }; 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2968,54 +3019,26 @@ remoteGlobalIDString = 9F219ED43F3AEA000562B9BCFD624DDD; remoteInfo = "React-cxxreact"; }; - 80C8A4D33E28356A64E8266B4E2D5C75 /* PBXContainerItemProxy */ = { + 81752EF8619B6A86AE5115D633EA4142 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8E266A85C21F3B00E0A4951D5F0E09DC; - remoteInfo = "react-native-keyboard-tracking-view"; + remoteGlobalIDString = C2F81329D3C42F2D872A4B80180545BC; + remoteInfo = "React-RCTLinking"; }; - 82F58A98AD8409DFC9B445DEFADF4841 /* PBXContainerItemProxy */ = { + 8864717D0077DE0FDBD4B057E8B52A4D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E49E330A27425F89DE89516B2F50AAE9; - remoteInfo = "React-RCTText"; + remoteGlobalIDString = A954214FEA55463925B6F6E3A27B6016; + remoteInfo = EXAV; }; - 85683356E926F4BA7D3EB6F333EAEE48 /* PBXContainerItemProxy */ = { + 8A748AC2634B888F13E2B5DE6C3C4B58 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 21B91730AA56171E7B635E8AFB2A7F3E; - remoteInfo = JitsiMeetSDK; - }; - 8622FCA6F2D6FA9B66CC6C7201FD0491 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 462F2792E1383810DA255DC15CB8F942; - remoteInfo = RNFirebase; - }; - 8650306CF479E44E1F57931A4E1AADAF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7F28D4475D7DAD9903F7E6044DD921C1; - remoteInfo = "React-RCTAnimation"; - }; - 87D599A0102C7E6E757F2C44DC19D1E3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 60F43D68BD7290E1B24C3BE7B3382AD3; - remoteInfo = "React-RCTNetwork"; - }; - 8AC0E42E705958BB550EDCD5C0F2570F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; + remoteInfo = Folly; }; 8CD598B3122E1B5D5E0411E9F8DFF385 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3024,33 +3047,26 @@ remoteGlobalIDString = 1F22396CB543506E7EA28A47A30E9727; remoteInfo = GoogleDataTransport; }; - 8D4F82768C2B29CADB33DB660F829D0C /* PBXContainerItemProxy */ = { + 8D0ED2B634E65F08A5658679BB2DF581 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C92C2B867A1BE634174A3C47980091BC; - remoteInfo = UMImageLoaderInterface; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; }; - 8D75C42D08F4804173B2019961A8D1E6 /* PBXContainerItemProxy */ = { + 8DBEEA318A53D972CD89D2DB71C760CE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2805838904E98AA8807CBFDCC32F2AE0; - remoteInfo = "react-native-splash-screen"; + remoteGlobalIDString = 427A5566E42596B2649019D00AA80F10; + remoteInfo = libwebp; }; - 8E04E32B43EF00E94635A2C7FB481BB9 /* PBXContainerItemProxy */ = { + 8DCFB011BDCDE94E72D180113C6BFC15 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2CBADBAF1891263102225816D0B97AA0; - remoteInfo = RNFastImage; - }; - 8E9080C9418E9464F9F540F8C8EB0F09 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1CCF1D06CCFE0D0AB787DF0923C94D79; - remoteInfo = FBLazyVector; + remoteGlobalIDString = B11E238094137347E8790BFEB1BEF01F; + remoteInfo = EXWebBrowser; }; 8F8D97FDA93DF806279F1C90D2E34F62 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3059,33 +3075,40 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; - 9241624634388F85A48FB19B3B5FAF24 /* PBXContainerItemProxy */ = { + 90880149A37A3DD2F8F4BF12FE1678BB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 63CF4D4E74D1771681263724253E1E79; - remoteInfo = GoogleDataTransportCCTSupport; + remoteGlobalIDString = E49E330A27425F89DE89516B2F50AAE9; + remoteInfo = "React-RCTText"; }; - 92FD61E91E1E3EED07CA3D2496AB0AE0 /* PBXContainerItemProxy */ = { + 929937B9F29A00834844F0C11F75A607 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5285479282A796511D8530E65EC983DF; - remoteInfo = RNImageCropPicker; + remoteGlobalIDString = 69A8731022935CD8A0051D815C1867A8; + remoteInfo = UMFontInterface; }; - 951B6E00EA2C2F077CF59C9CF2754EA2 /* PBXContainerItemProxy */ = { + 93AD4905EECC68DE4DA5BE905E86A72A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; - remoteInfo = "React-Core"; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; }; - 9538FB037AED6318BE3070E4C0C0D852 /* PBXContainerItemProxy */ = { + 944688FD34F85DE87DEA56A051431A65 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 232D00D8ED7797390FB38004DE01723B; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = 06DEC3D70695800506D48892FE4C06C4; + remoteInfo = "react-native-jitsi-meet"; + }; + 9489AC0AE11B0546607783B01BDFE5F8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 93C5B1FB74974DD045F6674ABFFDD408; + remoteInfo = "react-native-keyboard-input"; }; 95BD7607104E910918F88DD81F19B1C1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3094,13 +3117,6 @@ remoteGlobalIDString = E13B95041FFD639523C6719AAEF55D71; remoteInfo = DoubleConversion; }; - 95F3DA5B8BBDD0A09E86319A85CD41F3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B11E238094137347E8790BFEB1BEF01F; - remoteInfo = EXWebBrowser; - }; 96823A763E56B0CD36C81E000393C274 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3122,12 +3138,12 @@ remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; remoteInfo = Folly; }; - 99BDE318EC72039DFF8CA1723B8D209F /* PBXContainerItemProxy */ = { + 9812B12A035BCE8F08BE45937885C3A6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; + remoteGlobalIDString = 3C6A9BF574C3488966C92C6A9B93CA8C; + remoteInfo = FirebaseInstanceID; }; 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3136,26 +3152,33 @@ remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; remoteInfo = UMCore; }; - 9C3B5BE67731EB7C082D66B46D2BF5C6 /* PBXContainerItemProxy */ = { + 9AEE4E1C0374E0FB0D9DF0785F365141 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B81CA3A3A63C0085E4085060FE4DD9FF; - remoteInfo = "React-jsiexecutor"; + remoteGlobalIDString = 64E78828D8355514B3B6BE78FAE7806E; + remoteInfo = "React-RCTSettings"; }; - A0C1C1A73999DD9B9CE443E4CB1285B7 /* PBXContainerItemProxy */ = { + 9C4BFA9E72CCEEF9595F452470E6A046 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; + remoteGlobalIDString = 2A99896D65A33A482D2D82FC436F823D; + remoteInfo = FBReactNativeSpec; }; - A109F8CA3AC83272BF74DEAC17487D81 /* PBXContainerItemProxy */ = { + 9D7A46D590B788C61A8EDD48B6EA8FAA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6DE003F64B133830B9AB9321298DAAC2; - remoteInfo = ReactCommon; + remoteGlobalIDString = 427A5566E42596B2649019D00AA80F10; + remoteInfo = libwebp; + }; + 9F65BCC21955AC7FFB68B2DB6A11F1CE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; + remoteInfo = "React-Core"; }; A10B927F49CDB8E49094BFD1CA897343 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3164,19 +3187,12 @@ remoteGlobalIDString = 115FC7605B6A0F6044A879F6EEB7DD99; remoteInfo = "React-jsinspector"; }; - A3C460B0596E4B56AE0ED94D6E03DB1B /* PBXContainerItemProxy */ = { + A33100C4A04BDB87794B8ED54A8D1642 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 123D4D7AC3D41ABC0675B1DB3613066E; - remoteInfo = RCTTypeSafety; - }; - A3F0575480E589C849D00FD77E2D8018 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7971E9EDE82F3534DAC43ADF07514C4D; - remoteInfo = RNAudio; + remoteGlobalIDString = E9F5838E12E25D54BF4A88364E6D55AB; + remoteInfo = UMCameraInterface; }; A3F86DBAC5E1C8F0724C396F51BBECE7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3185,49 +3201,56 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; - A4506428B4FFF0802C539255D12A0B3B /* PBXContainerItemProxy */ = { + A468FB6336CAC3CDFF5577582211E735 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7CAB4058EBC116AE1A60D0CB0B1BFCC1; - remoteInfo = glog; + remoteGlobalIDString = 0E27C1D2919A1336E4EED2093FE67ADC; + remoteInfo = RNScreens; }; - A47ECBE7850B3996A07E25CD70A7D4DE /* PBXContainerItemProxy */ = { + A50E6E3A25BA1D442C220D15DE3DE048 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; - remoteInfo = "React-Core"; + remoteGlobalIDString = 1F22396CB543506E7EA28A47A30E9727; + remoteInfo = GoogleDataTransport; }; - A56A6635B247E3A3B8ECEADF8876B6E1 /* PBXContainerItemProxy */ = { + A5BD86184175BCF0BB16C151F3A07113 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6EA8C542D237B6C3582C6CD2CF9DBA96; - remoteInfo = "react-native-jitsi-meet"; + remoteGlobalIDString = C2F81329D3C42F2D872A4B80180545BC; + remoteInfo = "React-RCTLinking"; }; - A5DB139D460D5ED86BFD0FD6BA72FAC0 /* PBXContainerItemProxy */ = { + A5D0D2C1C46F84BDC3A3679F43E7252A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A954214FEA55463925B6F6E3A27B6016; - remoteInfo = EXAV; + remoteGlobalIDString = 1D8ED4A20867A7DBE943508D13C7FCB6; + remoteInfo = RNAudio; }; - A8568D7A3CCEFE6B3234872A607C5B4F /* PBXContainerItemProxy */ = { + A5F1E0C7DABD0667368287D7356C73A1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 60F43D68BD7290E1B24C3BE7B3382AD3; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = 72831AB9D90A45024AFD8489D0CEB6C3; + remoteInfo = RNFirebase; }; - A89AA0573D1BCC81A17717212DDCB15C /* PBXContainerItemProxy */ = { + A67B08993E6AC1C592DFD0FD79D48299 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3C6A9BF574C3488966C92C6A9B93CA8C; - remoteInfo = FirebaseInstanceID; + remoteGlobalIDString = 59D5FC9202D131CDFD2E08ABCE1C35AC; + remoteInfo = nanopb; }; - A8C8C9DACBB23572454856B29D7A60A2 /* PBXContainerItemProxy */ = { + A6B2904ED84996F0637F4C8905BEAF19 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 57B9E0A892EAB5C13D4AE7D4B1DE0C16; + remoteInfo = GoogleAppMeasurement; + }; + A88F648E8A510FEB26171A3A223F4F5F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; @@ -3241,13 +3264,6 @@ remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; remoteInfo = Folly; }; - AA659B6C97D72B9EC4B738370BC7714B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BC730040B89735D99427DBE0EDAA828E; - remoteInfo = RNScreens; - }; AAC869672B6119FA01B23690C77B30FC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3255,60 +3271,60 @@ remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; remoteInfo = Folly; }; - AAF14454A369FD9F7C492FB03D63268A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A486E5AB43C3327005F1C0B986A448C0; - remoteInfo = EXConstants; - }; - AB6818F318F577AF077DCF4E85355F00 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 123D4D7AC3D41ABC0675B1DB3613066E; - remoteInfo = RCTTypeSafety; - }; - ADEE9393724862F8E36B8E736A17D31E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4ECE1108F140208A729A83BC94FAA150; - remoteInfo = EXAppLoaderProvider; - }; - AEB22BD9061F2CF18A3FD6F653BF955F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F4A43BC5CC1CE68C79792AEBBCE9C138; - remoteInfo = RNReanimated; - }; - AF3191E5F6F6F75C5111FA4B1FEB3D14 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2A99896D65A33A482D2D82FC436F823D; - remoteInfo = FBReactNativeSpec; - }; - B000AEB41C5CA27A8C696054022901AA /* PBXContainerItemProxy */ = { + AC3205597E947BFE63BE5B9164F45F78 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; remoteInfo = React; }; - B0513E80C564067A3D162065B18BD7E5 /* PBXContainerItemProxy */ = { + AC5E5F007945A18BF3914FAD84246756 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9EEC085848ECAC465F5B376A4C29A4EC; - remoteInfo = UMTaskManagerInterface; + remoteGlobalIDString = 799B29F9D6DCE28B98CC259440382F20; + remoteInfo = Firebase; }; - B3000F0A14A037C9EE2905F34929B827 /* PBXContainerItemProxy */ = { + AF877D982FF178B47384D659FEDCB328 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 41B2EC6C9E2D84CDC87C341E2314557C; + remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; + remoteInfo = "React-Core"; + }; + AFA9DD6BC2F56B8271E1A6F415AB7E57 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 115FC7605B6A0F6044A879F6EEB7DD99; + remoteInfo = "React-jsinspector"; + }; + AFF8E3C7D02087E2F1C6BECB8F686F3C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E90B06E472DDA9583C2227DCEBFF5145; + remoteInfo = SDWebImageWebPCoder; + }; + B3C655E23C03EF30F03C012AA4A6B0A1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 743B4DEB68D23793521F266C0241382A; + remoteInfo = RNVectorIcons; + }; + B443719DF40CC0F7E5236AC2C97FE9F9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E2ABA11C27993D4CDD5DA270C4B75F1; + remoteInfo = "React-RCTBlob"; + }; + B476E9F3A18732262C855CCE16167C64 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4DDE5693A87611C05EBF117455A2FB9F; remoteInfo = RSKImageCropper; }; B4BACC19FD91FE9C750E2B7E26434F49 /* PBXContainerItemProxy */ = { @@ -3318,47 +3334,26 @@ remoteGlobalIDString = 7CAB4058EBC116AE1A60D0CB0B1BFCC1; remoteInfo = glog; }; - B50CEA9125E8DD5518E12F2950D35A67 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7971E9EDE82F3534DAC43ADF07514C4D; - remoteInfo = RNAudio; - }; - B58BADA6BC60E37B7D13B63C0AB68006 /* PBXContainerItemProxy */ = { + B4C46365696ED39B1098740600727BF3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 1F22396CB543506E7EA28A47A30E9727; remoteInfo = GoogleDataTransport; }; - B63A100A17154AAF1A70400619CEF4F8 /* PBXContainerItemProxy */ = { + B689961D4C8C1AB9D95DA3D67E856D0B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 48A082BED63E227E6247A0541D876B43; - remoteInfo = "rn-fetch-blob"; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; }; - B68EDAE1929F2491A8C3F3342802501C /* PBXContainerItemProxy */ = { + B856D7210504C431D707D99B6CEF274F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FEC7CEE99C30C1292EC32D7E006E4E85; - remoteInfo = Yoga; - }; - B6F0D249935644F00241A3351722B782 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 64E78828D8355514B3B6BE78FAE7806E; - remoteInfo = "React-RCTSettings"; - }; - B6F95B6DB6F7A9D43347C894CCC6B183 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E07EA1A35FBB3A986F484EB01CDD5527; - remoteInfo = EXPermissions; + remoteGlobalIDString = 9F219ED43F3AEA000562B9BCFD624DDD; + remoteInfo = "React-cxxreact"; }; B89102853C0AA8B4E4660B0A341C408A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3367,12 +3362,19 @@ remoteGlobalIDString = 64E78828D8355514B3B6BE78FAE7806E; remoteInfo = "React-RCTSettings"; }; - BA224E31A5210BD3B071F4C7266A1A28 /* PBXContainerItemProxy */ = { + B9ACF0A2F14038B570EE0B411FCAECAF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E0B018EB633DDF12D963E58CA1CDB18E; - remoteInfo = "react-native-orientation-locker"; + remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; + remoteInfo = "React-Core"; + }; + BA36E3481256BAF60D12F370B802A3D6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5B1BA8B3E53682DD179F7BFF8F2C8B75; + remoteInfo = EXHaptics; }; BA460C34E38D173750A1C69BCE0F2866 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3381,6 +3383,13 @@ remoteGlobalIDString = 60F43D68BD7290E1B24C3BE7B3382AD3; remoteInfo = "React-RCTNetwork"; }; + BB005470C278DCB0BE493392023215D9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7771CBBD8DE87850E7FDC2BAA331122F; + remoteInfo = "react-native-notifications"; + }; BB43E3440C83F8BC24E141BE6C01D507 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3395,12 +3404,26 @@ remoteGlobalIDString = 57B9E0A892EAB5C13D4AE7D4B1DE0C16; remoteInfo = GoogleAppMeasurement; }; - BD671032620645639B7C0923FD6C5743 /* PBXContainerItemProxy */ = { + BCCD5FE08120A497452E1CCEED33305C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; + remoteGlobalIDString = 864F908B842632C53102364B908D850D; + remoteInfo = "react-native-video"; + }; + BE9B4C25DC12D28269472810119717EA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 63CF4D4E74D1771681263724253E1E79; + remoteInfo = GoogleDataTransportCCTSupport; + }; + BF2E44FE5B5F2B44C86E3AEDA99F40FB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 458293E00EF1C1F42778F9425AD34AA4; + remoteInfo = UMConstantsInterface; }; BF32D407ED9D0F154DE76F25EEB923DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3409,6 +3432,20 @@ remoteGlobalIDString = 63CF4D4E74D1771681263724253E1E79; remoteInfo = GoogleDataTransportCCTSupport; }; + BF476CEE4FF0724590228DFAC12A0DC4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1CCF1D06CCFE0D0AB787DF0923C94D79; + remoteInfo = FBLazyVector; + }; + BF619C7E366B06683FFA9A0AF52E57A1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; + remoteInfo = Fabric; + }; BFD1349A73D002FF8BADA635DB23EA34 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3423,54 +3460,40 @@ remoteGlobalIDString = B81CA3A3A63C0085E4085060FE4DD9FF; remoteInfo = "React-jsiexecutor"; }; - C0F49C3C9F218D61FC7F6D7DCFE077A4 /* PBXContainerItemProxy */ = { + C0CE7C66CF11D9A1C746D92AE4E34DD7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 017AB91E1D5AB2B6096ADC666B072208; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = 7135140B597489F3FE9D0A6D1FADD9C7; + remoteInfo = "React-RCTActionSheet"; }; - C22C4C9E94B568255EE73CB0CD41A3A8 /* PBXContainerItemProxy */ = { + C17A50FCEF8A99FFD4A52426136DF4B2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; - remoteInfo = Crashlytics; + remoteGlobalIDString = 586C843030CBA8901E569AB3D2F76867; + remoteInfo = "react-native-orientation-locker"; }; - C3ED9FBC19EF0118D2A2BD674C8DC652 /* PBXContainerItemProxy */ = { + C1FDB4D927BD7D3F694A2CD945DCBA0E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 04C5C3D37D3EB282EFD1E2A2122B9429; - remoteInfo = "QBImagePickerController-QBImagePicker"; + remoteGlobalIDString = E49E330A27425F89DE89516B2F50AAE9; + remoteInfo = "React-RCTText"; }; - C57526C64355424458E296666BDDA0AE /* PBXContainerItemProxy */ = { + C448A5C24E99779C98D71DDE1D9FE8DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; + remoteGlobalIDString = 59D5FC9202D131CDFD2E08ABCE1C35AC; + remoteInfo = nanopb; }; - C58EC5D9FEE97FF4ED0B99DAF1175F9E /* PBXContainerItemProxy */ = { + C516917917E0AB9BD9E3AD7863A4FC86 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 96BC9B706EE73069F199C64E2D477638; - remoteInfo = RNDeviceInfo; - }; - C5AFFBD7AA17635F65921D4417E5405A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - C623896093A0C6619085024694ECA4E2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9D255DD73ADD1E4565B5CCB665433053; - remoteInfo = RCTRequired; + remoteGlobalIDString = E90B06E472DDA9583C2227DCEBFF5145; + remoteInfo = SDWebImageWebPCoder; }; C6318E60C9E68C5F678F7ADDF357AED8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3486,118 +3509,76 @@ remoteGlobalIDString = 3C6A9BF574C3488966C92C6A9B93CA8C; remoteInfo = FirebaseInstanceID; }; - C8215B63C9236A65221D7F13F45954D3 /* PBXContainerItemProxy */ = { + C743BC26F05F587AAE595504308DBE3D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 59D5FC9202D131CDFD2E08ABCE1C35AC; - remoteInfo = nanopb; + remoteGlobalIDString = 017AB91E1D5AB2B6096ADC666B072208; + remoteInfo = "React-RCTImage"; }; - C8559E7BDA177A0B95F329DB82853FA2 /* PBXContainerItemProxy */ = { + C899E28B81AB47B017BD54DCB0921091 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 41B2EC6C9E2D84CDC87C341E2314557C; - remoteInfo = RSKImageCropper; + remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; + remoteInfo = Crashlytics; }; - C8BF850D501EB337D8ABAC1BEF4A4887 /* PBXContainerItemProxy */ = { + CA5D8F6A3E7A1385F0FFD2AC8BE417FA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2423D1FB7F3F91E20CF12466E84D7586; + remoteInfo = "QBImagePickerController-QBImagePicker"; + }; + CADADA5ABF71FB9915267206456FED92 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; + remoteInfo = GoogleUtilities; + }; + CBA7F5CF6CC39427C197456D0FE06FD9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; remoteInfo = React; }; - C8EFE3E87617CC52C95777065C419BBB /* PBXContainerItemProxy */ = { + CD774BA10B8A8D2A87DE417586FBA1FF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 41B2EC6C9E2D84CDC87C341E2314557C; - remoteInfo = RSKImageCropper; + remoteGlobalIDString = 7F28D4475D7DAD9903F7E6044DD921C1; + remoteInfo = "React-RCTAnimation"; }; - C8F62D526E5B74392C94FBDC95D6E5C0 /* PBXContainerItemProxy */ = { + D07ABC7864592F457E6D56CAD9499D1B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A1DA7160DD40C2F4C7332F30DE279FC2; + remoteInfo = FirebaseCoreDiagnosticsInterop; + }; + D1567F6051D8F78DCC4E0969CAC09332 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; + D31A5A5C4A7301CADE8F8F4DDD419CA8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C539BA294CDADF056F9D91ECDAFC2FF6; + remoteInfo = UMImageLoaderInterface; + }; + D3DBCA13660A7CFE58C15924E7FA7AFB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 426398FA61DF648ECF7C6897DFAC6E8E; remoteInfo = FirebaseCoreDiagnostics; }; - CB013CC906EE8E79CB8F64A357594C4B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7236D5BFD42DBEDF2652D4E47992BD2; - remoteInfo = "React-jsi"; - }; - CC0E7B35AA46BB10FFEB2473308CC5D8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; - remoteInfo = UMCore; - }; - CD81C9B75830834609C011EFF68D32DB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; - remoteInfo = UMCore; - }; - CECD28DC4EA6E299DD569A3E32CAD413 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4205FEEC138F0BD3914F1371913BA87B; - remoteInfo = SDWebImageWebPCoder; - }; - CF9FEE422ECFFE4ECFA765E51C3158BB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FD0F4E74C14C4B5B552686BD9576466F; - remoteInfo = EXFileSystem; - }; - D013B880AF3FFB4C5CABE553061F822A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; - remoteInfo = "boost-for-react-native"; - }; - D09164994F5D181B71756DEA6C596700 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 392A9C558B900FB520CA2EF39651DB54; - remoteInfo = UMFontInterface; - }; - D273FE59687BB2842385F64FC4D840EF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 017AB91E1D5AB2B6096ADC666B072208; - remoteInfo = "React-RCTImage"; - }; - D41F4FE2121B03DD770D3ABCAA0DB990 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 017AB91E1D5AB2B6096ADC666B072208; - remoteInfo = "React-RCTImage"; - }; - D4492F3DE3BDF08330311A7F4099ED6E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 57B9E0A892EAB5C13D4AE7D4B1DE0C16; - remoteInfo = GoogleAppMeasurement; - }; - D4512F04533ACC081BF60532A8EFE481 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7CAB4058EBC116AE1A60D0CB0B1BFCC1; - remoteInfo = glog; - }; D465047540D12FD9D95291AE82A76DB9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3605,6 +3586,13 @@ remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; remoteInfo = Fabric; }; + D4E228806DE3388E0AE3C2A6EB3C9E06 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; D59A73644A58ECC04E1987DB3C8A1BC6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3612,35 +3600,21 @@ remoteGlobalIDString = F7236D5BFD42DBEDF2652D4E47992BD2; remoteInfo = "React-jsi"; }; - D5F03882116F71456CA72B53B309CDF8 /* PBXContainerItemProxy */ = { + D690E85019584ECF9E9362D24BC1A22A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 96BC9B706EE73069F199C64E2D477638; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = 9D255DD73ADD1E4565B5CCB665433053; + remoteInfo = RCTRequired; }; - D6CB9D4A41860B6E6F5772FFC62A8299 /* PBXContainerItemProxy */ = { + D737CCE0943BCE6439F16BEC1B33A42C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4205FEEC138F0BD3914F1371913BA87B; - remoteInfo = SDWebImageWebPCoder; + remoteGlobalIDString = FEC7CEE99C30C1292EC32D7E006E4E85; + remoteInfo = Yoga; }; - D7037A59DA44C117AC1403CF0E4CECE6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; - remoteInfo = GoogleUtilities; - }; - D7F64F2093A532E116A325754F47F381 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 29853B24544C7926C2BFC70C42760675; - remoteInfo = QBImagePickerController; - }; - D85278CD78814127D44A13B1D24EF9FF /* PBXContainerItemProxy */ = { + D8A30878C445362FEA608949DF911C10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; @@ -3654,13 +3628,6 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; - D9765DD68335A199982208AAB833FFA9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 998EB74379168C52658B6543889D239F; - remoteInfo = RNGestureHandler; - }; D9B0BDCA002FEBFE383DFE024728D2F6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3668,26 +3635,12 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; - DA1EB8D776D8B78F8DB975361AA25A6A /* PBXContainerItemProxy */ = { + DB3B9BA411F5E3BAD4C007A3D8D32630 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4205FEEC138F0BD3914F1371913BA87B; - remoteInfo = SDWebImageWebPCoder; - }; - DAD12546461B165E8EF6E9C9B9B337AD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 31642F9D9703DB0EE0ECE8EE477DE676; - remoteInfo = "rn-extensions-share"; - }; - DAE7C152EC9D2312AAE0D4FEC9C60594 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C2F81329D3C42F2D872A4B80180545BC; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; + remoteInfo = "boost-for-react-native"; }; DC1A792C62DBF10721FFE4308A29BA06 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3696,6 +3649,34 @@ remoteGlobalIDString = 7F28D4475D7DAD9903F7E6044DD921C1; remoteInfo = "React-RCTAnimation"; }; + DC3E26344CC0FE55CA47CA8F3E38389C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A1DA7160DD40C2F4C7332F30DE279FC2; + remoteInfo = FirebaseCoreDiagnosticsInterop; + }; + DC84FCA893C2476DF6B83DA1E8D719F4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 427A5566E42596B2649019D00AA80F10; + remoteInfo = libwebp; + }; + DE01E65BC79B2EB7D7EB82B68F3BB162 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 82BA924F838C30601D2A813EA338492A; + remoteInfo = "React-CoreModules"; + }; + DE5D991413DF357F142E6B3309F5DBA2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0E27C1D2919A1336E4EED2093FE67ADC; + remoteInfo = RNScreens; + }; DF12C5D7BB68C2724D2F39A531F2A52A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3703,55 +3684,20 @@ remoteGlobalIDString = 59D5FC9202D131CDFD2E08ABCE1C35AC; remoteInfo = nanopb; }; - E0933A16F41428D33A4E1BEEF689088C /* PBXContainerItemProxy */ = { + DF693325DF15D441878D5F6310EE6C5A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 427A5566E42596B2649019D00AA80F10; - remoteInfo = libwebp; + remoteGlobalIDString = 06DEC3D70695800506D48892FE4C06C4; + remoteInfo = "react-native-jitsi-meet"; }; - E10A425AB8D6EC889B75252705C6A646 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; - remoteInfo = Fabric; - }; - E19844E9D1783035F9606098C9F6D9B4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8E266A85C21F3B00E0A4951D5F0E09DC; - remoteInfo = "react-native-keyboard-tracking-view"; - }; - E29698D02AC946BB210AAB726BFE705D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 541B734EAEC62BA761D4C886EF4FC968; - remoteInfo = "React-CoreModules"; - }; - E30BB31B3B14FCE165A48A1D54FD88F9 /* PBXContainerItemProxy */ = { + E35677563961D74EB125C2ACCDCDCC3A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 799B29F9D6DCE28B98CC259440382F20; remoteInfo = Firebase; }; - E376D2F4100E504488F77CE8E6775677 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E0B018EB633DDF12D963E58CA1CDB18E; - remoteInfo = "react-native-orientation-locker"; - }; - E3D512B98FCC40DA9EC8AB9555E9BF22 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; - remoteInfo = "React-Core"; - }; E3DCB3D8F0A533B7BB46EB61E99CA3EE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3759,55 +3705,69 @@ remoteGlobalIDString = F7236D5BFD42DBEDF2652D4E47992BD2; remoteInfo = "React-jsi"; }; - E4AEBE828832DA771A294DAFA1FE3C59 /* PBXContainerItemProxy */ = { + E4AA7448F8A2A3D07DE7DFEE88DA3B66 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C9A8A893D5CFCE5F284C62E8BD0F139; - remoteInfo = "react-native-keyboard-input"; + remoteGlobalIDString = E452F4CD4F8AB641BD2444C7AC91FA2B; + remoteInfo = BugsnagReactNative; }; - E5D2DC342A84FF81B98873598DD55BC5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = CD87ED5DE5F49418BF7FB90FCF9C2713; - remoteInfo = RNVectorIcons; - }; - E696135B2BA8D8A20F27374A615F3A22 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2CBADBAF1891263102225816D0B97AA0; - remoteInfo = RNFastImage; - }; - E6E26B63C1F2BBE037610257DBAECF8A /* PBXContainerItemProxy */ = { + E4AE7D1E6B31A9E687D20B31085D1025 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; remoteInfo = React; }; - E97E14D7D57234733CF8331814552C96 /* PBXContainerItemProxy */ = { + E55337EEAC61383D303A51D0B981D95E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BF4AABB64D09DEB00ECF19B09D06CCD8; + remoteInfo = RNImageCropPicker; + }; + E5648F6F54F5B691ECBE7D5FCB89DC7E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D49B9B80A7B1F27C491DFA81E54E6CF7; + remoteInfo = "react-native-document-picker"; + }; + E6BF0A6ECA704035B42A4D075FDD04BD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B84B55116AE8D2FC32258CFFF2972E1A; + remoteInfo = "rn-extensions-share"; + }; + E9A073C277F7A35687064A5CBE73DA9C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EE96A92842C7DB9F8DD7593EC0B8D0FE; + remoteInfo = RNGestureHandler; + }; + EB2AFB2660500756764E5E27E54E713B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3C6A9BF574C3488966C92C6A9B93CA8C; + remoteInfo = FirebaseInstanceID; + }; + EC668F73411F9793F4F0B6DDF3065EA0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 98F57C9A3FB6F5E9C1D7242BBE675E8D; + remoteInfo = RNFastImage; + }; + ED8A1DEEABE59DE3C2480E42F65DBECE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2E2ABA11C27993D4CDD5DA270C4B75F1; remoteInfo = "React-RCTBlob"; }; - EA5B396F0D6FE6E1C0B920D73C77510A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; - }; - ECAC641DF8E1AC5AA5DE12C7EFD57189 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; - remoteInfo = Crashlytics; - }; EE4BC9CF9B64348CF6C23E39FF20BB64 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3829,6 +3789,13 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; + EF1AF9F27F7E384E7F339C101AC08EE7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BF663682387D1F23ADF217037A1593FD; + remoteInfo = RNLocalize; + }; EF35D916FEB5C7D4563D576974DC8374 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3836,33 +3803,12 @@ remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; remoteInfo = Folly; }; - EFFB7E985C3A70C463061C441AF6AD63 /* PBXContainerItemProxy */ = { + EF6054A778F5C174B7EC13DEB699997A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 115FC7605B6A0F6044A879F6EEB7DD99; - remoteInfo = "React-jsinspector"; - }; - F0D677CB0F9102D1BC8441D5CF558B1C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; - remoteInfo = "boost-for-react-native"; - }; - F0F94BB39A1E49C06A06363A14081341 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; - remoteInfo = Crashlytics; - }; - F123F4BEE4DB960FACDD46CC025D9192 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A1DA7160DD40C2F4C7332F30DE279FC2; - remoteInfo = FirebaseCoreDiagnosticsInterop; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; }; F142B4DF83D0AEA677D3ABE7D7E5BA0C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3871,6 +3817,20 @@ remoteGlobalIDString = BAB5A963634772BE02E3986698B0BEAC; remoteInfo = GoogleUtilities; }; + F2A63AC8C2B3C93682D6D35797C615D5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 21B91730AA56171E7B635E8AFB2A7F3E; + remoteInfo = JitsiMeetSDK; + }; + F2D959E6C4D3CA2ACBFA3C3BAA12AE05 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1D8ED4A20867A7DBE943508D13C7FCB6; + remoteInfo = RNAudio; + }; F2E57867E76DED400D1A4035EF3D8735 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3885,33 +3845,33 @@ remoteGlobalIDString = E13B95041FFD639523C6719AAEF55D71; remoteInfo = DoubleConversion; }; - F373E1385F92E965706A8C631D804E0F /* PBXContainerItemProxy */ = { + F3221A1E5337C342A225EE32D707BF14 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; - remoteInfo = "React-Core"; + remoteGlobalIDString = 123D4D7AC3D41ABC0675B1DB3613066E; + remoteInfo = RCTTypeSafety; }; - F3E3385E2E3CE8C2EED8CB0B1CE786AD /* PBXContainerItemProxy */ = { + F4DCF8FADCC932E93CAEC6F63BCBA40B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; + remoteGlobalIDString = 7CAB4058EBC116AE1A60D0CB0B1BFCC1; + remoteInfo = glog; }; - F5EC1F630165087F9F51E4D09EDECAE9 /* PBXContainerItemProxy */ = { + F572C3274FF0388DA026501513667F97 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 303D154AC7C4E1DB362014D843A75377; - remoteInfo = "react-native-document-picker"; + remoteGlobalIDString = 9D255DD73ADD1E4565B5CCB665433053; + remoteInfo = RCTRequired; }; - F653EFFE67848E75FADDAE5CB1CF6057 /* PBXContainerItemProxy */ = { + F61CF64E825634E3D611A8DF20AFBF95 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BD7B2D8FF0ABCB89D01F6E21D5364678; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = 0A839CF1E1DC111261AED3D86F9A04B0; + remoteInfo = "react-native-keyboard-tracking-view"; }; F6A14184DE3C02C257A7298719E4FD9B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3920,6 +3880,13 @@ remoteGlobalIDString = 01B53B6A43CBD6D4022A361BBFCCE665; remoteInfo = FirebaseCore; }; + F7891F20AAB51CD2305E72D9E6C79A72 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 72831AB9D90A45024AFD8489D0CEB6C3; + remoteInfo = RNFirebase; + }; F84AAAA2C19F25EDD3EC2AACB0E9E389 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3934,40 +3901,26 @@ remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; remoteInfo = "boost-for-react-native"; }; - F91FE778B1E530B20BC631F54B46B484 /* PBXContainerItemProxy */ = { + F8E98187D0C67D89C4A5555F2BB28635 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C53A3A5621162049D9B4399173FAD68; - remoteInfo = UMPermissionsInterface; + remoteGlobalIDString = 78321EAB31E9FCC75DFA950389835085; + remoteInfo = Folly; }; - F9DBC3934A374C51FCBDC2844ED0FADA /* PBXContainerItemProxy */ = { + FAA68C9925029F9DE945D590B68E2DBA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E13B95041FFD639523C6719AAEF55D71; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 2A99896D65A33A482D2D82FC436F823D; + remoteInfo = FBReactNativeSpec; }; - FB1582396EDB21F1071136C5FD377F4A /* PBXContainerItemProxy */ = { + FB9E4AF81BE1C7BFF2FBF6A93C6F7564 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C9A8A893D5CFCE5F284C62E8BD0F139; - remoteInfo = "react-native-keyboard-input"; - }; - FB925669C6AAA340A2115A148D8271BB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 726A1DAA8BA43A59037E6DD0759CCBCA; - remoteInfo = RNUserDefaults; - }; - FBAC14FB6B7CB31EC67218A13337EDA0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 59D7DEBEE2A5AFB4A70211E96873E983; - remoteInfo = "react-native-background-timer"; + remoteGlobalIDString = 017AB91E1D5AB2B6096ADC666B072208; + remoteInfo = "React-RCTImage"; }; FC21EA40C24BBDB20C2BE4568BC0017C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3976,6 +3929,13 @@ remoteGlobalIDString = 74FC3222E79B7B2A842D5F13AE03831A; remoteInfo = "React-Core"; }; + FC601CDF49A6294BFD0DB8365E38EE11 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; FC81A17B5C5AD48E1DC428B4EE37ABEC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3983,27 +3943,27 @@ remoteGlobalIDString = 2E2ABA11C27993D4CDD5DA270C4B75F1; remoteInfo = "React-RCTBlob"; }; - FCF7F314E2B8E449420B47EF6758456C /* PBXContainerItemProxy */ = { + FCC058D0CA4752A087FA77B7577DE877 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; - remoteInfo = React; + remoteGlobalIDString = 828EDF29E4284793D2B3360CBCFFD7A7; + remoteInfo = UMTaskManagerInterface; }; - FD1CAF4E4566CA857C6909CBEFC264FF /* PBXContainerItemProxy */ = { + FE30F3929A4B17DDAA9B2CD32B2D653D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CD87ED5DE5F49418BF7FB90FCF9C2713; + remoteGlobalIDString = 799B29F9D6DCE28B98CC259440382F20; + remoteInfo = Firebase; + }; + FE7461B61D27772DF5450F45A33D931C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 743B4DEB68D23793521F266C0241382A; remoteInfo = RNVectorIcons; }; - FDCC5A4F5A6F1684D71FA56CFBFD65C1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5670B9D7F60A308B44938F9FAB576F8E; - remoteInfo = "react-native-safe-area-context"; - }; FE8C7693079779C66A2B166BAD56A51E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4011,2121 +3971,2124 @@ remoteGlobalIDString = 01CBDBB3785FE2E9ED7E2986BE2102A6; remoteInfo = UMCore; }; - FF39C50CBA8245BCDA849CC5AD001DA4 /* PBXContainerItemProxy */ = { + FEE139BEDF00526E7827C38FFB4FBC85 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E13B95041FFD639523C6719AAEF55D71; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 2E01DDE6A1A8D7EE37042C7EA69F25FE; + remoteInfo = React; + }; + FF50C5CDDA5D52B67F62F50D7176F41E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D49B9B80A7B1F27C491DFA81E54E6CF7; + remoteInfo = "react-native-document-picker"; + }; + FF859218B17F01E97DC680D6507A2D35 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0F1510CA64D3BD5A32C5357D5CB788FD; + remoteInfo = UMSensorsInterface; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ + 000EE617F442AA338B46300173F67B79 /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; 003C643886A23AE5A8E8224D6C4A8C0D /* FIRInstanceIDCheckinPreferences+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceIDCheckinPreferences+Internal.h"; path = "Firebase/InstanceID/FIRInstanceIDCheckinPreferences+Internal.h"; sourceTree = ""; }; + 00538E6400D6DE497F2355C3CDA9468C /* libGoogleDataTransportCCTSupport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransportCCTSupport.a; path = libGoogleDataTransportCCTSupport.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 005BC469630F6F7D66610C867DC586BC /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; 006CEC4F93311B953E62A6EB723739C9 /* GoogleDataTransportCCTSupport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransportCCTSupport-dummy.m"; sourceTree = ""; }; + 007D8E799734FFD16BA16CC0493D23BB /* RNFirebaseLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseLinks.h; sourceTree = ""; }; 008220F7548BADDA4DC0EF2CC64FD05A /* vp8l_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_dec.c; path = src/dec/vp8l_dec.c; sourceTree = ""; }; 0094D08DC648CCF30D4F8C66575F20B7 /* Pods-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.debug.xcconfig"; sourceTree = ""; }; 00BB468BBAD5B831C59D3100179CC4D1 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; + 00BF4BD90992B195EF34E8231C77E6F5 /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; 00C3D0C02296D11958CFDD6C18DC5CC9 /* yuv_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips32.c; path = src/dsp/yuv_mips32.c; sourceTree = ""; }; - 00C4153615A557D8864D07EF594B70EF /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; - 00D13666115C44ED93A89482C8D18ACB /* libRNLocalize.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNLocalize.a; path = libRNLocalize.a; sourceTree = BUILT_PRODUCTS_DIR; }; 00FC835CDE9DFEFF1104EF4F7E9A0474 /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; 00FCAFABD8C04326617B681ECF1A75C4 /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; + 0110C6251B29DF2D5A7919AB676C8FBC /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; 012B8A4B73CD8B8CC9820DD9EEF631EF /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = Firebase/Core/Private/FIRErrors.h; sourceTree = ""; }; - 014FDB19903EB134E0AECA24E6BB5CCF /* RNFirebaseStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseStorage.h; sourceTree = ""; }; - 015E5200F4C3DA81D4F43021B2CD8E1E /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; - 0164E6F55CF755DCCDA5D301F61379F4 /* EXAppLoaderProvider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppLoaderProvider-prefix.pch"; sourceTree = ""; }; + 013DB95938B7728F34B16035C8FA1EEB /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; 017168337C9F45A4220F1033A3047C33 /* JitsiMeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JitsiMeet.framework; path = Frameworks/JitsiMeet.framework; sourceTree = ""; }; - 018756ECCADE640B4D5FAE732E732ECF /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; - 019752590BA28354EEDFA435DB050EAC /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; - 01ABF51D9235052EBB69E3ACB2EEBEB1 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; + 0182ABCB8A61B583B37098F2F4D3D3D3 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; 01BBD07444D25289FF0B81B0B59ED73D /* dec_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips_dsp_r2.c; path = src/dsp/dec_mips_dsp_r2.c; sourceTree = ""; }; - 01C6389F9925C66D3B6ED1AA58A3810D /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; + 01BFD6D0D50BEDF0F30E43CB8998CB4F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 01CA3635BAEFEBFFFA6086B82A4630AA /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedModule.m; sourceTree = ""; }; 01DE02F9F42C143CD38F32DEDA4223B3 /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; - 01FF74C48E54FBDFEC0080DDD34AD0AF /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; - 024A177C049377BFFBF85D955602ADC9 /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; - 024A7DA4C02ECDB852F8CBEB55DD8579 /* libReactCommon.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactCommon.a; path = libReactCommon.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 01F9CAFA7C785C370974E137539A7E94 /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; + 021223F4CB3D713C8F939055BC00D673 /* libReact-RCTSettings.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTSettings.a"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 022982682787D678778BD85E834CF01E /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; + 023E4339966E9E2E9FE67C2EB7C47D1C /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; 025D8E78DBAC11CB603533D28063F8F9 /* FIRInstanceIDCheckinPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinPreferences.h; path = Firebase/InstanceID/Private/FIRInstanceIDCheckinPreferences.h; sourceTree = ""; }; - 026242D775D0D1C6C5C2064BA17FBA1D /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; - 027E90B2E827C026B2F0237B4E501353 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; - 02EB98B0AADF3F35964113C1CF40B06C /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; - 03820841C6D9F58DB80408E8A2CBE1C5 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; - 03915CA7C6FA1417CC0D88F12E484E7F /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; - 0393521ADCCDC0312EFA14D90F70FD94 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; - 03A852B75ED956E93AFBC2EAEA4BE635 /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; + 027DEE4C1512F5E35E4ABBBC3D80CADE /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; + 02A0229394953FB8D15C30C1E490DAE9 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; + 02BB86289FF53E3C45D13C3A1B115EFA /* libRSKImageCropper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRSKImageCropper.a; path = libRSKImageCropper.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 02EFCB261C6AC928F019AEEEF5629A8A /* RNFirebasePerformance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebasePerformance.m; sourceTree = ""; }; + 02FBB5E3C8DE09C5BFFA96D906912258 /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; + 031092BE47CEE783A63FE732D8DCA106 /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; + 034BF2C44FD02FB17FF3F13F5D6A2AD0 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; + 0369E1124555667E8646DBBF07490844 /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; + 03793EA509CD256464C56FDB7BB6DBC4 /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNGestureHandler.a; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 037A48AE57AA6B3C75EFEAD196441BC8 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; + 03A3E4A4C9538148C7F7A8F9FA7A187B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 03A9A14382611EE57D1A3688AFD9488C /* vp8_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8_dec.c; path = src/dec/vp8_dec.c; sourceTree = ""; }; - 03D03E5D8E11BC46FA4CEDDA928F825B /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; - 03EEEBC9EB839984A4629156269A8950 /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; + 03DBC959BA24FFD4FC5267A7255E3E29 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; + 03DD5B64B3D8782049A64AAA2FE72F6A /* 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; }; 0428FAB1B198A263768D56F4A20DEEFD /* FIRInstanceIDTokenDeleteOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenDeleteOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenDeleteOperation.m; sourceTree = ""; }; 0430C8616696B00A7A0874374292EAD8 /* rescaler_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_sse2.c; path = src/dsp/rescaler_sse2.c; sourceTree = ""; }; - 043C8D27A22B10869854753572130400 /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; - 045DCC98B1EE1E332B6AA1BCC8D8767E /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; + 044393F552A853D58562756BD01C24F7 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; + 04455DB3BC054DF6D56C6BA001B5A7CE /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; + 045BDC76AABBB9A6173613CD6C96D9B9 /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; + 0472AFFAD011F413CCDA441B58E96DA6 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; + 049710458E0FDC4F8F221EC78FF070DA /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; + 04A453ADA31088DEF5A67519CD4860BF /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; 04AF094DBDE040DBE6A572678AE428C2 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; - 04B5998B8BADC42B642684D81AF70EB7 /* 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; }; - 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; }; - 04E93D198A1F9F729BCBECFD6D9DB95B /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; + 04E15B5964805DC5108565460F62DE8E /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; 04F1988726E9218835ED18B388A00F09 /* RSKImageCropViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropViewController.h; path = RSKImageCropper/RSKImageCropViewController.h; sourceTree = ""; }; 04FB336B843A7FF03BD6F065E8577F16 /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; - 04FEEC5DCB00A25787709575DFECCD40 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 0507E0063A965F60FBB63FCB8E0CAE63 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 052DE99DF3C947412D54ECF4268A6F03 /* GDTDataFuture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTDataFuture.m; path = GoogleDataTransport/GDTLibrary/GDTDataFuture.m; sourceTree = ""; }; - 0534975E0266B7039A5CAC7EBC33F077 /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; + 0534438AB319701CE76AD8A253D6A792 /* RCTVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoManager.m; path = ios/Video/RCTVideoManager.m; sourceTree = ""; }; + 053A5D01A585A827EDB74B9253950129 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; + 0543B08B8F5F46C1C4CB6D107B9EA1C1 /* FBLazyVector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.xcconfig; sourceTree = ""; }; + 05442FDE4805564614EA4952496C139C /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; 058C156343A4AC8BE485A77F1474F9B7 /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; 058E3220F0A9C0FB3573CA32B804EFD0 /* QBImagePickerController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = QBImagePickerController.xcconfig; sourceTree = ""; }; - 05AB846422108AE505456E8446BEC367 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; - 05D1F2BBC795ABC94E7CED693FE2A4C8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 05D2BDC1BB3CA0A49905FF67637CF66E /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; + 05928729358A05A5C29C585D4CFF8531 /* RNFirebaseEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseEvents.h; path = RNFirebase/RNFirebaseEvents.h; sourceTree = ""; }; + 05C4A9697C1CDEC26FD3D27810AAB2E8 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; 05E5EB9AE27C33ED8206D5EF0B639D99 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; 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; }; - 067D3D4C629219ED6193199D68B31DFF /* react-native-keyboard-tracking-view-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-tracking-view-prefix.pch"; sourceTree = ""; }; - 069E9AAC32DF981B33640FE83825701D /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 070CD7C7E67F485A1785D19E0F616BE1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 072A1D694D7F1B28134713C5AFEC530D /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 062AE6550F080AD30620845DBEB0FCB0 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; + 0635E482AFC3BFB5E1DAC723E4935367 /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; + 0672CC33362C8EA9E2EC7642931B289C /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; + 06BC30FFF1D885CC49CF016CB604B726 /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; + 06E5464CE38D349D9F878E77068C3BDD /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; + 06F110F71397F24159F56D7B2854524D /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; + 07233EDA1FC3BE41EB1F2313D8F020BB /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; 0732121C18F63D3E514C8AECC08ABB87 /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; - 073E8A3CD06AB6BBB7F2FEC7E54F5E94 /* EXCalendarRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCalendarRequester.h; path = EXPermissions/EXCalendarRequester.h; sourceTree = ""; }; - 07401BE7214B2F6F903AB170EA90425A /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; - 075663E9AA585DCC7CDDCEE64724C79A /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; - 07606EAE56E2BCC291F151955A1514E3 /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; - 0761E244B793FC335D2B8FA708497B59 /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; - 076356B50D29C4F9855F5DE0CBCEBB2E /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; - 078D9ED0FF01965099F47CB760602BB4 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; - 07D16A26681FF2E352792B64421ED0B6 /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; - 07E7CF4FE7B30247F96279D21D93C880 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; + 07577BE443FD96F28A10F0CEBA169AD3 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; + 07679B01ED7717BDB95924F0A1F4636F /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; + 07B6F5EC5086A316E48857EB51500206 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 07E594E877E1F9E3658BFC8FC4381506 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; + 07E7EC48E22A55A891407DDFFFC66381 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; 07F2FCDE8CF5AE5EED96CA8EA9AB1354 /* rescaler_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rescaler_utils.h; path = src/utils/rescaler_utils.h; sourceTree = ""; }; - 08049A44DC9E04D54FCD791584970ACE /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; - 0838D1F3E35AD3FED1142D265C028474 /* react-native-splash-screen-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-splash-screen-prefix.pch"; sourceTree = ""; }; - 08779C68E0908708293E36EE6EBED395 /* RNFastImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.xcconfig; sourceTree = ""; }; + 0820312A31421442ED09E1FB27E3C800 /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLinkingManager.m; sourceTree = ""; }; + 085A09056E1148316166F25EC7D79E0B /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; + 08841FEBCCCD7B53C2C5F5C132BD14AC /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; + 08C8CAC4FE84756EEAF76B2A238A7B92 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; + 08E14DC5CD5C28CA59A5678EE181FBFC /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = ""; }; + 08E1AD7FD4DC7B341AB680D19921759D /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; + 08EA89A726A317A7E4C39434BC66C2E1 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 08F2757358C92ECAD0E9B56A8B4C8F59 /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; 091AEB7EF14AB42579CF1D316C9206AF /* Fabric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fabric.h; path = iOS/Fabric.framework/Headers/Fabric.h; sourceTree = ""; }; - 0924786BD027338C15D968073ECFFFD7 /* RNFirebaseLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseLinks.m; sourceTree = ""; }; - 09854C0B3D010768EA30AD0D570BF074 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; + 091C9C23AE69F9B2BA8D31111118D209 /* EXRemindersRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemindersRequester.m; path = EXPermissions/EXRemindersRequester.m; sourceTree = ""; }; + 093A24227EABDA8622F866E729A0EB3D /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; + 0959F01729617BCA7738ED90704D2BDA /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; + 099698855A327030936F87CEC20A807E /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; 09A1C6CCA9D9DBD22E97F8F734DC256A /* yuv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = yuv.h; path = src/dsp/yuv.h; sourceTree = ""; }; - 09D8A137651A52A46AF870A7D9436A23 /* libRCTTypeSafety.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRCTTypeSafety.a; path = libRCTTypeSafety.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 09E3497F9523C8F5CB165879DCFA656C /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; - 09E8BDBF03C2CE0E0637E1E405CFBD21 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; - 09EE1AA69C215D80608133BC27BBB5D4 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.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; }; + 09AE6C4847EC41611B376E9BB177F772 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; + 09BC00953B7AD898175C78AAADBD317D /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; + 09C0F8525F18B02A95BA7CDBBD2BB865 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 0A0A418D0FCD4E42A69851E89B779D00 /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; + 0A0D8670A8F4F0002D6099952104E081 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; 0A26BEC640FBC7DD1CC203FD1899D261 /* syntax_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax_enc.c; path = src/enc/syntax_enc.c; sourceTree = ""; }; - 0A3E610139FCDF632FEE44977D779694 /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 0A45D44F0A4712BAB4EA2AA811B2D8B6 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; - 0A5A425A0ECFE22EDBB587C1412BF24B /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; + 0A3D10984774FF2D4A12FA7CC49BFFC3 /* RNCWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebView.h; path = ios/RNCWKWebView.h; sourceTree = ""; }; 0AC1EC82016B61852F34E2AD946A78FD /* enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips_dsp_r2.c; path = src/dsp/enc_mips_dsp_r2.c; sourceTree = ""; }; + 0B259E547F8F4BB2DB47673E43EAFD93 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; 0B34E0FBA56BA048EA914504DF585133 /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; 0B3C64D8E7C1BDC8E99A1ABF53D7CBDD /* GDTPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTPrioritizer.h; path = GoogleDataTransport/GDTLibrary/Public/GDTPrioritizer.h; sourceTree = ""; }; - 0B3D9F98247A67AB098FD041C45322B7 /* RNAudio-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNAudio-dummy.m"; sourceTree = ""; }; - 0B723E88641B9F8F46432CE58DE751BA /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; - 0BBF37AFD62522FA77A1FCA579A3062A /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + 0B6DF641E271B5C0C994E22FB503DDC0 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; + 0BA08CB7743F937D23C1A6C7D8FBC27B /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; 0BD4C9CAD9BE44BFF95439B8686BF644 /* FABAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FABAttributes.h; path = iOS/Fabric.framework/Headers/FABAttributes.h; sourceTree = ""; }; 0C074F0BB1DC75EFF07E654DBDA12A59 /* FIRInstanceIDBackupExcludedPlist.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDBackupExcludedPlist.m; path = Firebase/InstanceID/FIRInstanceIDBackupExcludedPlist.m; sourceTree = ""; }; 0C077CC137295840C2A89B6EB5FA0BAF /* 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 = ""; }; - 0C35FD0C65C553D569CB7C0EE24B2B45 /* 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; }; - 0C43B38F6CBCDC1EA3A4F892A80B0053 /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; - 0C503EFE1C0DD727D9DF9D30EB261433 /* RNCWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebView.h; path = ios/RNCWKWebView.h; sourceTree = ""; }; - 0C520C1A3BE63C99B34B7D0D41A02B5B /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; + 0C1845B037EBFB2AF0EBE8D51A83F789 /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 0C1A507BCEB82D132645DA32F46BAC87 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; + 0C3FEAA5996EBAB6C087D51EBE25F51B /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; + 0C530D77EB7818C7B66D52A0E2D32F9D /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; + 0C652809A4EF604F7132378D11C07B20 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; + 0C8700E7C2E5477D0948D22AE0D0346E /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; 0C996D0B1566BEF413BA3DA73BFD68DC /* filter_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_enc.c; path = src/enc/filter_enc.c; 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; }; - 0D3E744DEFEA33B275C22260573C7E3C /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; + 0CBB6585A54119A963A82EE7A8977AF3 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; + 0CC89BB934369B19B9F46D39A46AA58C /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; + 0CDC53720F88761FFEBBA22F25FB5359 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; + 0D3283319DCE73232B5789FE6261D8B0 /* RNFirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseCrashlytics.h; sourceTree = ""; }; + 0D43F8333E425C69C7EA7AF77DEF7F06 /* RNFirebasePerformance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebasePerformance.h; sourceTree = ""; }; 0D4A116FDCB5C0B181DD2B8AFC5501FA /* FIRCoreDiagnosticsConnector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsConnector.m; path = Firebase/Core/FIRCoreDiagnosticsConnector.m; sourceTree = ""; }; - 0D7418BDE4B19AB8A1C1B7FA663E4CD6 /* 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; }; + 0D84FDC058A1FD39DBDD29372DB782E3 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; 0D8A1C7060446B1512E55156C76E6934 /* QBImagePickerController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "QBImagePickerController-dummy.m"; sourceTree = ""; }; 0D8DB52AB8BC8D53A94F65B7B505F9B6 /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; - 0D982FF377AD4A1F8AD82E06DC8C7CAE /* libReact-jsiexecutor.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsiexecutor.a"; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 0DAE54E21F9919D9214332B4A4DF16DA /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; - 0DCE7D5EC2F0598E04148FA4E8616207 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; - 0DED51C857EF202EFAD1AD478D2DD146 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; - 0E0C1D54678946A9B5E6CFB6B4E7292E /* 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; }; + 0DE6FE52679701DA0162920EC37D06F5 /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; + 0E04AFC8B5440DD13FAF59D1180ABCD9 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; 0E4FCFDC62BB572738897A66AD584B1A /* animi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = animi.h; path = src/mux/animi.h; sourceTree = ""; }; + 0E4FF71DC060298C1BE098B79EBC07E3 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; 0E53343736419C5A995C15A45C838245 /* Pods-RocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RocketChatRN-acknowledgements.plist"; sourceTree = ""; }; - 0EE4B645C22834041013277CF3774631 /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; + 0E576EAA14F52DC065DAF31DEC11CAB3 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; + 0E5A68431CC08DEFE993FF0DE9CF6989 /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; + 0E8177E5B34A0B1FAB6FC745856B935A /* EXAppLoaderProvider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppLoaderProvider-dummy.m"; sourceTree = ""; }; + 0ED6BF721FE2D996FA29368D4CC4C8D9 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; + 0EE37BEFEC43603EA71DA17AD6DB6EC8 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; + 0F186F37C21F554742D1737B8D1F6269 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 0F1997835F06943906610D891732B4B5 /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = Firebase/Core/Public/FIRConfiguration.h; sourceTree = ""; }; - 0F54DB78C60B0A0033B3B0A6975E1017 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; - 0F66331B97BE93C730AC2A4F4CA82819 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; - 0F72656AB159F31BCB131BA3A378FCCB /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; - 0F8FBB91717BEF08A3C1FDF8D36D7ECB /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; - 0FA2F433E540C0073C0D9B4E0A2DFC54 /* React-CoreModules.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.xcconfig"; sourceTree = ""; }; - 0FB6260E5B1618C8A23D9F32B4677B0F /* EXRemindersRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemindersRequester.h; path = EXPermissions/EXRemindersRequester.h; sourceTree = ""; }; + 0F52746296A9DABDAD3FD8FDDC0DF9BD /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; + 0F86B5528C35E531863188CBC48E351B /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; 0FB899140A93A07307991F163CAB9FA8 /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; 0FBFB7E44F8612A1D992ECE31DE32523 /* FIRIMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRIMessageCode.h; path = Firebase/InstanceID/FIRIMessageCode.h; sourceTree = ""; }; 0FC4EA51D4334A74F17991DB1D8CCD57 /* FIRErrors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRErrors.m; path = Firebase/Core/FIRErrors.m; sourceTree = ""; }; - 0FF3A426B2480328F013135198A59E96 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; - 0FFBA410B7D98CB095EB075D9A0C16E2 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; + 0FD69AAD99CAD6A9F1FCCDF4C1B7FA7C /* EXCalendarRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCalendarRequester.h; path = EXPermissions/EXCalendarRequester.h; sourceTree = ""; }; + 0FFED4820CDB638B5ECA6DDB9D6E6944 /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; 1026922C2622230E82FD9EE8866BC4F1 /* 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 = ""; }; 1046F11C1EDB6077AF33DCB81D11A5DE /* lossless_enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse41.c; path = src/dsp/lossless_enc_sse41.c; sourceTree = ""; }; 1051CBA799A5CF2A8DAF5B1664BFAA50 /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = ""; }; - 10527EA069F37FB4FBAFB253864AC87F /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; 105510FA7F0B670B5EAC334893288FF2 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; 10847032F4ED7BFB69E4BFFC3D7B2172 /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = Firebase/Core/Private/FIRErrorCode.h; sourceTree = ""; }; - 10A95DB26B92F016CE67E8D83B04BBF1 /* RNFirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabase.h; sourceTree = ""; }; - 10BEF6E5B9A6714310B87334EB4AE56A /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; - 10D00697F79A0E2D3291732024F91CE6 /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; - 1119683640F1CBB5F4697C0D53575DD9 /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; + 10D27A7F00D229731BC7F62D6A8F461B /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; + 10DEDA49051F0A402D01324F03D9BC16 /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; + 10FF28A7F6F22A3B7399C451705D661E /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; + 112771E1E5793DBF74BBA1D3C35DBFBD /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; + 114C34D8834697823FC79812526E14AA /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; 11545F6E5F7FD4878D93E1D04A3922B8 /* FIRInstanceIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDStore.m; path = Firebase/InstanceID/FIRInstanceIDStore.m; sourceTree = ""; }; - 1156568F0753F0632630A318D6C17E6E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 116CEA524A3351D8A5BF943C07325E1C /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; 117AAB18B7B3325193933901589AFF72 /* ANSCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ANSCompatibility.h; path = iOS/Crashlytics.framework/Headers/ANSCompatibility.h; sourceTree = ""; }; - 11870B3F7707405FAA4B9E6832E6EB08 /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; - 118935DCA3E8FEBC0991A4ABC89AD6A8 /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; - 11BA5D3DEF054551B8DD75DD855E021A /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; - 11C06CDD52C8193A3542A4C2FAA632FA /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; + 1184C00DBE5F7A14064790275A9391F9 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; 11C50485C128CA353722F5F1B3C0F8B6 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = QBImagePicker/QBAssetCell.h; sourceTree = ""; }; - 11D176F5F5FCEDEA0630DB8ECF8AC635 /* BugsnagReactNative.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.xcconfig; sourceTree = ""; }; - 11EBDE56B15977B30148A1D56A61E072 /* ReactCommon.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.xcconfig; sourceTree = ""; }; + 11E4FD2442C70128644C7D019F1DCA17 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; 11F2E0CF5B468B005AB51ACC1491345E /* boost-for-react-native.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.xcconfig"; sourceTree = ""; }; - 1211D425FBEE9DCF93BEA6EB97E0F77F /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; - 1221BB61D6A94B5190923E67EC6BBD2D /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; - 127F387056C0FAACF9FCC1377EB445FE /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; + 1218312F176527661BAEBEB2855444F3 /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; + 122AAEB338DC8B736B63DB63AD613A00 /* libRNReanimated.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNReanimated.a; path = libRNReanimated.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 125140995B0A46D82FA3E4E85BE2664E /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; 1286014EEAC46A520E1958F1CA19D658 /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; - 129134F86E8966ADA3471E09FB592D00 /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; - 12A3C9211FEA4385AC3F91C59C4C9C7C /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; + 12DB2BF5A4BB79C25434C6447445D7D0 /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; + 12EE1EAAC2DA7A25BCB317A65363FB8E /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; 12F8DF71502293584E778A7A547B9C0C /* FIRInstanceID+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceID+Private.h"; path = "Firebase/InstanceID/Private/FIRInstanceID+Private.h"; sourceTree = ""; }; + 13295BC400A5F4F8C1621BF5ED23EA2D /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; 13359B7D749158627464F494D9325FD2 /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; - 13536C6E4C7F4304016BB076A7964256 /* RNFirebase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFirebase-dummy.m"; sourceTree = ""; }; + 1367958180570BB91AAC503D0DA52EA5 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; 1382DC070FB19644170F810B1E8F05CB /* color_cache_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = color_cache_utils.c; path = src/utils/color_cache_utils.c; sourceTree = ""; }; - 1387D56A39A6850461E4237DCADF1B3F /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; - 139BE722B29BBCD0FD678A2A7ADA9DC2 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; - 13ABA67BF592749CAF26F481FD160A49 /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; - 13C6F9E43F61D0753575DE405608E66E /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; + 1397DBF6218AA62653DBEE59059B323B /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; + 13AC280CB2D4B839693796D4804F301A /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; + 13AE3B54731D2D6128AC94B931D4028F /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; + 13E15D09E335BE6074D12F5BDB1A19EF /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; 13EF0DE8480A25A2F8C33871361144AF /* 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 = ""; }; - 13FDF849FA34B754C0BA8ABB5E85F6ED /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; - 140B2D0F51861EEAF82C5B9DE4181EEC /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; - 140C32167571C58047CBD46B6859A355 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; - 1414981020730D83047993FE695C4175 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 13F3EE543C8BA12CF095D9709376A681 /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = ""; }; + 13F848E82CBE206FF89F5A4D545E95DB /* RNFirebaseLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseLinks.m; sourceTree = ""; }; + 140F46D2D2F24F9DB2A92470ED32950C /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 1428E0C6D6E05B3D675BBA4B17AE77CE /* quant_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_dec.c; path = src/dec/quant_dec.c; sourceTree = ""; }; 142B61A43756AA5CBA27D8C315DCB48F /* CLSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSStackFrame.h; path = iOS/Crashlytics.framework/Headers/CLSStackFrame.h; sourceTree = ""; }; - 14583AF4E411CD44F77D06F9F5554F11 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; + 1432AC107EEC71614DBC990356D446B8 /* libRNFastImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFastImage.a; path = libRNFastImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 143530949B5565B2E4DBF2F0C672E989 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; + 144544B37718F5DFA20D7004986219FC /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; + 14725CAC155E8EDBB22A24BBCB965C25 /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; + 147617E44F9FF00DFBA646A5E61B5F6B /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; + 148980C89EFF8F652687014331586428 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; + 149234285FE52788DC286C2C1D089708 /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; + 14A3D6EBD5C32E4A32F6B92C713CB468 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; 14AE3EBEE6F9577E4FEEBCFE6AAB9C0A /* huffman_encode_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_encode_utils.c; path = src/utils/huffman_encode_utils.c; sourceTree = ""; }; - 14EF95A81351FA86BB81D0A1FE3A622D /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; - 151722630194C5B61305BEB330CD3991 /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; + 14C24448DD9483B8F20956A6E8111BC0 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; + 14C664965E856D444C32E6EFCBFBB314 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = React/CoreModules/RCTImageEditingManager.h; sourceTree = ""; }; + 15047356F0303DE5403805E4517E1120 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; + 150AD3BF6D6A700C099220CAE5027D05 /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; 152184A9ECC7559175B56605FDE9F997 /* FIRInstanceIDKeyPairUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPairUtilities.h; path = Firebase/InstanceID/FIRInstanceIDKeyPairUtilities.h; sourceTree = ""; }; - 1521F731A01FABC9EF521C6B13D29ABB /* RNFirebaseMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseMessaging.m; sourceTree = ""; }; 154797C6FA63B16E3DAB026FD0AA9562 /* neon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = neon.h; path = src/dsp/neon.h; sourceTree = ""; }; - 155D106665752614D277BBDC57B5F592 /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; - 15725AD47425DBA11176117DDA118070 /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; + 159C23316B64E79F2A8F063074242D3E /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; 15BE0F71ACE3238A9003A48B3FD9FE33 /* config_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_enc.c; path = src/enc/config_enc.c; sourceTree = ""; }; - 15C5E1C43335136229A04020666A12F1 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; - 15CCE0603210C9C4FBCEBADDC20538DF /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; - 16144FF63150234F56991AACAD7C2960 /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; + 15E35949C149563314A62BD6B45E5570 /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; + 15E3F338E2982D013E665FA5E6266A03 /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; + 15FCD29C178E73D03CACA2081D41AD4D /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1617C6129814BD692F81CD11B543090D /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; 161E6B4993A51A7567AA66F65067710A /* UIColor+HexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+HexString.h"; path = "SDWebImage/Private/UIColor+HexString.h"; sourceTree = ""; }; + 16288A6D374DEF57B30DDCE361394DDD /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; 162A20965F55A7F42EBF98FD66CF91C0 /* muxedit.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxedit.c; path = src/mux/muxedit.c; sourceTree = ""; }; - 164C790EF97865907EE39DC49E5DA344 /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; + 16730113239A4A5F7934D2D7C9DE36C3 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; + 167A459272622EAFCCF5329E8083961A /* RNFirebaseAdMobNativeExpressManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobNativeExpressManager.m; sourceTree = ""; }; 168A4C5601B9AD27D7DF994108D20189 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/utils/utils.h; sourceTree = ""; }; - 16D652425529A0E5F7AF73A5B22C545C /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; - 16F80F564F3A819704340879BCFD42D3 /* 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; }; + 16A4126BC78B4983AFCB3092432BE39E /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; + 16B9E7C7E39B38F721D1296C3C14BB49 /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; + 16F155C2E7E7876C921F3AF21AE8489E /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; + 170093C4AB07780A25C833E08EFE2CC0 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; 171720FB8E3A6800073AE237427C9B09 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; - 172EE6327F218D058C5AC5E5F8076ED2 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; 17301E3B0DEF204F7CEA173D05669137 /* GDTUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTUploadCoordinator.h; path = GoogleDataTransport/GDTLibrary/Private/GDTUploadCoordinator.h; sourceTree = ""; }; - 173619ADB7B2575BA37B739444CAD2DD /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; 1739F947D1831ED31EDD3E0E5BEDE95C /* RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropper.h; path = RSKImageCropper/RSKImageCropper.h; sourceTree = ""; }; + 17644A6B0E396AF4AD0662B27777DFF8 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; 176CD31DC31EC631510B1386AAF45DA4 /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; - 177F7E8D528169E7CCDB2AAF9E885D56 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; - 17886E58A8D0B13B8B74D13F4FEE7F0B /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; - 178F700E78D034BBB707481B4F886DFA /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; 17948BE2F77291A7E285DA9D70DE304F /* FirebaseCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.xcconfig; sourceTree = ""; }; - 17C243779CEE807D64BECE46965BA2B7 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; - 17F4CCF8F05692F3D41171089D39CA1D /* 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; }; - 18096BB955BB42F4DEB495AAC68FCE6C /* 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; }; + 17A3F710097376D90315825E107D5707 /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; + 17B5A3398542FBA69038FDE4DB3AF30E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 17BF2BE7CA5ED6426D6B0787EBBFABDF /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; 182E5CBFF1ADD6815DBC3A699C232952 /* mux_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux_types.h; path = src/webp/mux_types.h; sourceTree = ""; }; - 183AC678527C8A35A0FC978A9C3B077B /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; - 183E17793CC3E6929908ACF6BC97BA85 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 1863D85A4D4546C80EE02DD43BC4A8D0 /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; - 1880D9CB0F7A540D0451EB2E4F0EF65F /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; - 188C92AAE969C46B84D0CD680DD2685A /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; + 184A5FE6720285DD234352C0BE668DCE /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; + 184D7E85971E634B6D8916E6E07D8B29 /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; + 185432325FE3B0675502832919F97685 /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; 1898123769B7B8FDC4A5CBD11FA809DE /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; 189A3D8AD937A8E7324DDB7F335FCB40 /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = ""; }; - 189A9E75BC5BDDF1819E819734C9FE36 /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; - 18E5C34187C0E1AD4393C3077FD4913B /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = ""; }; - 19100DEB96768310FF4BBDB272FA0BB3 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; - 19204F31F35697F6B8D1ED03BAF14CDC /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; + 18B0F3793E3843628CE04C0BCDAC06F7 /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; + 18CE38BE2770B57EAA2A6566473E5D64 /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; 19336C598B620238AAF4F39C4762C445 /* common_sse2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse2.h; path = src/dsp/common_sse2.h; sourceTree = ""; }; - 195E4A5DBA8DED4A64D268AB05C74423 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; - 19A6BD92B96BAA625B041EBE7FFA6D23 /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = ""; }; + 1968EA8AC1899CE9211FFB0A9ADD1977 /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; + 196B0A88499EC4B56090AF686E8DD239 /* libEXAV.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAV.a; path = libEXAV.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 196B36500F41B8DEAD7E76153FF0F832 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; + 1997E7B52CDAEAE1B105E0692283DADA /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; + 19B762F877F3B152365AEC114E9BA027 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; 19C03F4FCF4B3C14746C09479DC5EA10 /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; - 19C5B26821BF422266D5AE10728E66DF /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 19D82EF8F906D6E8F50476034D2684A4 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; - 19D9E59F04BBE993E8B9D79841321317 /* RNFirebaseAdMobNativeExpressManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobNativeExpressManager.m; sourceTree = ""; }; - 19E2084D7B2F1388EFCC66087F27FFB9 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; - 19F13015D6D229A32B55FA476C22D580 /* UIView+FindUIViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+FindUIViewController.h"; path = "ios/Video/UIView+FindUIViewController.h"; sourceTree = ""; }; - 19F6F6BC5950405AB9FDAF7CBC9A37A5 /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; - 19FA048101B217FAEE16A806AF276316 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; + 19E19694EA799C446569FF0DAF10EF46 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 1A0667FB69F570464458FD6F11209756 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; - 1A20C907D6FD0AE8AFB94779E776E8E1 /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileRequestHandler.m; sourceTree = ""; }; - 1A34FDBE2C639412DD7763955BBF3D46 /* EXAppLoaderProvider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppLoaderProvider-dummy.m"; sourceTree = ""; }; - 1A416DA5D00BB3A84A22ACC7C7B8D0BF /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; - 1A9850902B2324332C3208692F49F11A /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; + 1A1F8B3A353F4A7504F87F7A7FA0A072 /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; + 1A48830713BEA1445448426EEF1F37BD /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; + 1A4E202763AF3FAE6CBFC04895E4DF1B /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; 1ABA183D6FFFA42C5E423362BC2BDEF7 /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; + 1ABEE2D4FC9698E68CA4C7FFD1151177 /* RNAudio.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNAudio.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 1AC93079540A2CF676920D653638C93A /* FIRInstanceIDCheckinPreferences+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstanceIDCheckinPreferences+Internal.m"; path = "Firebase/InstanceID/FIRInstanceIDCheckinPreferences+Internal.m"; sourceTree = ""; }; - 1AEC7BEF09E4F9775F9F6D4ECA2ECD20 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; - 1B0ED25D98142E212137CC0286881F80 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; 1B15F14FCD1BD1D9F4715F0A85828A79 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; - 1B160D5FCA55E533033FB42A5DA637A4 /* 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; }; - 1B32ECC49FF7D82EB5C43E47F75F4A5C /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; - 1B3C4F868F5F690AFCBC2923C8B31BC7 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; - 1B49501DF7904F9A8CD6E55BCD2EC1FD /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; - 1B5A80D6FF27D09397AC83F7FB106ACD /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; + 1B46C473A86E2ED7BF76C7AC7E5BB383 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; + 1B6589BE603FEA2993B00F22AA582653 /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; 1B79E1416EC80D9D1EC2010E21C56020 /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; + 1B84B1680F89719975011E6416792F81 /* RNFirebaseDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabaseReference.h; sourceTree = ""; }; 1BB87A95912BAC4342CAA4890CDDD056 /* io_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = io_dec.c; path = src/dec/io_dec.c; sourceTree = ""; }; - 1BBAA9DB7C7A19C747BF204E1AAE8DEB /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; - 1C046D3A111C990B22B244A5CEAF1235 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; - 1C0CC488EE9992AD9534F5B0BB17370A /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; - 1C25CC0075AFA8B13569820533B29774 /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; - 1C3F24269B77A0E8A47C499F3FD1763B /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; + 1BB8B5AFBC405617B0FE9B0EF60CFC4E /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; + 1BC4F1D594338B8E5BF253CE26E5C888 /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; + 1BC512E868EDC52D88DB5A2461800637 /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; + 1C172FCA6DEEE2C4CA566912D635CF84 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; + 1C247F512B6D089F48F0B57405F07C83 /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; 1C4CBA42441EAF3C431742FAEF9B224E /* GDTClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTClock.h; path = GoogleDataTransport/GDTLibrary/Public/GDTClock.h; sourceTree = ""; }; - 1C75A55326ABEDB240E0F2E77623075B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 1C7CBE8CD8B2BC02B9CC12FE21915785 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; - 1C874F643B7C3F88D72A2A4DF1CF2A46 /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; - 1C8C8A8A3DA023D85BB88C23E944DC4D /* 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; }; - 1CA3DF6BC7CAD857EDF9443C5A8E78B9 /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; - 1CC6648D3F2B43B57E14351AB326A7AB /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; - 1CE007DD64EEDCD841D50DB3C8FDCC67 /* libReact-RCTSettings.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTSettings.a"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 1CE38B3F7FA76E5D7E0901780BC22931 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; - 1CF29D424EB5C269C8B2EDE4AD4DDF57 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 1D0FCBEA0B1685BD8A9EF2CE7D38F1DF /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; - 1D1064EF067032F75AD07A6A10C7FA98 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; + 1C4EB2F545314F1957F530FB31F7A15D /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; + 1C5D7B960114F9BB1BCA58A7FA827695 /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; + 1CFF7D36BBFE7BA1BD9A53678FA8A3B1 /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; 1D385CBD7A2F9A9DFCA2BE01040EF91A /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULApplication.h; sourceTree = ""; }; 1D3C3C38EE9A9D054EF043CEAB28068C /* token_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = token_enc.c; path = src/enc/token_enc.c; sourceTree = ""; }; - 1D3C624B0D9F58207A0540006A13C458 /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; - 1D45DBAD6812425C48A926E0267DA496 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 1D46D1AF9480B8219F2793E475C533EC /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; 1D72A77C35315009550D2032B2AC4672 /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = ""; }; - 1D8C90D7E3B20AB3CEB25B83EFE04E86 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; 1DB5047C04D722877A25FBCE4FC3B746 /* yuv_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips_dsp_r2.c; path = src/dsp/yuv_mips_dsp_r2.c; sourceTree = ""; }; + 1DC26F9789EA7BEED081317924D62931 /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; + 1DC839280346F1C3CBB79D66A0473331 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; 1DED1CACAEB451C47EC522EB25E18197 /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; - 1E1091C5BC6B2F7D90CD1F8CE023E3C6 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; - 1E2C963E7D290C062846D206D6B56B10 /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; + 1E0343C36A0B74959C83D8D8EF00965B /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; + 1E0FA86414BFEB705C57670B3CB2C87C /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; + 1E1B04FB75B5395E6DD1C24EBF16BA92 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 1E320956FCADA646E2ABEE42F32A6DB3 /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = Firebase/Core/FIRConfiguration.m; sourceTree = ""; }; - 1E433CADC81F6FCC5C5F5BB95F73090C /* react-native-keyboard-input.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-input.xcconfig"; sourceTree = ""; }; - 1E697EBFC2737E291BF40BD6E0D7E8A7 /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; + 1E339A238C5C19A933FB40E580AF7A78 /* EXUserNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXUserNotificationRequester.m; path = EXPermissions/EXUserNotificationRequester.m; sourceTree = ""; }; + 1E93C236783610CBE74D685376947EF4 /* JSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSCallInvoker.h; path = jscallinvoker/ReactCommon/JSCallInvoker.h; sourceTree = ""; }; + 1EA1E4929834E80F9031A0E802E1E931 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; + 1EB62C1A0405F3AABCAA51A572E4481A /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; 1EB913031D891F3545DE175B7E2F52F2 /* FIRInstanceIDKeyPair.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeyPair.m; path = Firebase/InstanceID/FIRInstanceIDKeyPair.m; sourceTree = ""; }; - 1EDD8E143CC0969C713644ABB96EE776 /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = ""; }; - 1EFD8B407C4DD0EA6C5DFE03070884FC /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 1ECE1F925ECC0E51F74CE044F6D1AA39 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + 1ECF4FB380846056FFCACC5105C7D2F4 /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; + 1EDB4DD1370455027F415ADAF0FE206B /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; 1F0CBF29BAF39819E8063CD2CD648351 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; - 1F15FF636DC92CB7A2ABAB6A21DF7854 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; + 1F1A807662FDC7594F91714855F12EBD /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = ""; }; + 1F9EFCA7F769A8BC9D4D8F58E29BB442 /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; 1FBC8F6D697F44FFAC23C6F95B473C5C /* Crashlytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Crashlytics.xcconfig; sourceTree = ""; }; - 1FC228DCB91A34659E2250BE767BB717 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; 1FCC217CA7E7EEE126747B02BDF37C9B /* Fabric.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Fabric.framework; path = iOS/Fabric.framework; sourceTree = ""; }; 1FE77AE93F9828AAA4A0E04CC3C99B4B /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; 2006D9CEECF56A6E7407AE287B9ACBB5 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; - 203BEE5B7A3C76D9A28A062AB3122A0F /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; - 2072E5E02215B6D6FDC9547BA30AB058 /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 20C67792A66D004A09D448B9D690472C /* libReact-RCTAnimation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTAnimation.a"; path = "libReact-RCTAnimation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 2023A72C011E18F05C0BF471D42E29E2 /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; + 20ACEE4893BA7EFE878483DFF8097A22 /* 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; }; + 20C407A2DF0A8582F2F15FE345DF3003 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; + 20CC8B770E14F95BEAA6B4F19D4C8D1E /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; 20D25FEB72AB445059B03572C15C9B5C /* FIRAppAssociationRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppAssociationRegistration.h; path = Firebase/Core/Private/FIRAppAssociationRegistration.h; sourceTree = ""; }; - 20DEFB753ADDCD70AB2F9C5EA153424D /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; 20FAD53F1056C004E643B3770D456396 /* vp8_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8_dec.h; path = src/dec/vp8_dec.h; sourceTree = ""; }; - 210B7BD233F22F152F7CC032E98367D0 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; - 212FD633E04FF1BBE43235CC32F5013B /* RNFirebasePerformance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebasePerformance.h; sourceTree = ""; }; - 213E768CA7D3BB1738D7E381E4E84C3F /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; + 211F80634955535277F6E665B57F313B /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = ""; }; + 2169C4F6CF62640E8A8C6746DE13EA26 /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; + 2177633D2BA7B24159DF0F8D9895045C /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; + 21848CA295A5871520AB6B6D9165D3CD /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; + 218D325ED6F9CF50D150F81EC9121080 /* RNFirebaseAdMobRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobRewardedVideo.h; sourceTree = ""; }; + 2190F81AA03361ECA2D6C94FF2E95F90 /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; + 21ABA09EC95E05879F07F584E19B8541 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; 21AC8D494D1B3B82127CB52C30424F26 /* histogram_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_enc.h; path = src/enc/histogram_enc.h; sourceTree = ""; }; - 21C333073A806035B32E7EC3D796FED8 /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; + 21B13E29AD05E5FD4DA629E81458446B /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 21B9C25370E9E04BE35B22AB44B1C7EF /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; + 21C10B8C0533C1F8C901EE90FC88A762 /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = ""; }; + 21C2FD82F3EF2E1D1385E4CF77E0EE21 /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; 21D313B5438489B186AF71F622626DA9 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; - 21E6922AE42449CD824A1562B55942B8 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; + 21F17E06C2BC683EA3844510D8BEB780 /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; 222730D89A07F1BE4758382C6BEF2D7B /* FIRInstanceIDKeyPair.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPair.h; path = Firebase/InstanceID/FIRInstanceIDKeyPair.h; sourceTree = ""; }; + 223120526602CBA7ADF9D35AC98D8720 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; 223E336948E0C73F4B0ACB503052AE15 /* filters.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters.c; path = src/dsp/filters.c; sourceTree = ""; }; - 223F1CAEA7730CE785A1B025E94F379F /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; - 22494F499DD32CF3BF4B910D98AC1597 /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; - 224F5FF78B05ECE192B7B466F3A262B2 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; + 2240A04B699F4DF2CD4D46E9FE2DA557 /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; + 2249F9070C863D3CEC7124B2482FB873 /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 225C36ED67ED12EF2B47ABAEC5FAB890 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = QBImagePicker/en.lproj; sourceTree = ""; }; - 225D7F1E2FE322851F3388AEC03EC16B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 228ACBF4C61B3139FDBA24DCD0A952FB /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; 229809DDA12937FFE90714686E5E6758 /* alpha_processing_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse41.c; path = src/dsp/alpha_processing_sse41.c; sourceTree = ""; }; - 22E4174F7DCEABDADC2A643765351F34 /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActionSheetManager.m; sourceTree = ""; }; 22ED87F5E6F1366491F9C210B223CA59 /* upsampling_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_mips_dsp_r2.c; path = src/dsp/upsampling_mips_dsp_r2.c; sourceTree = ""; }; - 233FF4637F4469CF1895584EDEDBD214 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; 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; }; - 23725374A0A9C584DAF7EABEF8BF5926 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; + 22F17609A13F48A6EF6EC0D3BC5F9A3A /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; + 2321C7B2C6AAB9C7AFDCCB49C72AC1FF /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; + 2331104210C979BABADA961D17D1043D /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; + 2347462D47221E766C95EF43C86C5097 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = ios/RNCWKProcessPoolManager.h; sourceTree = ""; }; 239056C460BE84F42676DD046E24B3C9 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; 23945AE455FE8A652FE6BBDBC951C80A /* Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Folly-dummy.m"; sourceTree = ""; }; 239FC6258A10F4BE3AE91C77A1843899 /* FIRInstanceIDAPNSInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAPNSInfo.h; path = Firebase/InstanceID/FIRInstanceIDAPNSInfo.h; sourceTree = ""; }; - 23A0EF3FD305CA0FC3112F329AB1A35E /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; - 23B1BE278CD205D48A44F14DAC8A8AF7 /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; 23C6EC987CFD4938F654703C36C0C900 /* GoogleDataTransport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.xcconfig; sourceTree = ""; }; + 23CC7846BAAAD731E9F7FE1200BA32AA /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; + 23D97E3914D4BD4753EA2C6E3DF2F48F /* react-native-keyboard-input-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-input-prefix.pch"; sourceTree = ""; }; 23DCACE25ED518A4FE235A08301F8121 /* GDTTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTTargets.h; path = GoogleDataTransport/GDTLibrary/Public/GDTTargets.h; sourceTree = ""; }; - 2402DF4004A29006C095344FDBB5F8E1 /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; - 240CCE1E86C9C2BB3EBA19810C8DA0A2 /* libRNUserDefaults.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNUserDefaults.a; path = libRNUserDefaults.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 23EE2CE4FD8E5797BF49C3D61FCDA33A /* RNFirebase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFirebase.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 241A26CB996A14E5B7B7320C51998079 /* EXLocationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocationRequester.h; path = EXPermissions/EXLocationRequester.h; sourceTree = ""; }; + 242135F551E8566963FD257AC3087ECB /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; 243DA0557CFD54737FFAD26E98C63D90 /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; 2454F868C3BCD08C06BCF642E31EBC55 /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; 2456373DBD4124FCDFBB6593C35EDE94 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; - 247C6485F4BCA6190AED6989285BAA10 /* BridgeJSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeJSCallInvoker.h; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.h; sourceTree = ""; }; + 24724BCB576DF787119770C31B395EC3 /* react-native-keyboard-tracking-view-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-tracking-view-prefix.pch"; sourceTree = ""; }; + 248035685EB19D1B3F5667BF8645BED5 /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; + 2493FEB4824E177D1417D8421C1A2F3E /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; 249A16AFFF0ED3697855E03BDE93F40D /* UIImage+WebP.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+WebP.m"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.m"; sourceTree = ""; }; - 24BF1968F2602DC176FE42E42F6EB6B9 /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 2505A603353357EC3883B83BC0707463 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; + 24A642FBB58AA3F9D54B95906489B7B6 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; + 24E74C5A6343AC38E3B80858DB0A032A /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; + 24EDFDD6887102483489AFE14F32AB18 /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2515E476101B948AB81B6A35DC8BE1B5 /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; 25219089ECD7A480B5DE42C670CF85A2 /* FIRInstanceIDLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDLogger.m; path = Firebase/InstanceID/FIRInstanceIDLogger.m; sourceTree = ""; }; - 2527DB628E9DC404A797B079C37E4DF7 /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; + 254FD94E666E958F4AA767DBF3514C11 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 255F369A3756B80CD77447496371F192 /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; 256BB2AAF671BDAF194B89E664B8B1F8 /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.m"; sourceTree = ""; }; - 2585836CA536FE4318F3F764A00E0A90 /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; - 25AF770AB277B214C5369BD1B885C749 /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; - 25C4E47DFE0BF89127E6F9147FFD5E51 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; 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; }; + 25E04E81DF3771994D1AD16A26EDCF46 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; + 25E8D94BF8D71ED99315114105FB7E17 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; + 2601F820D5E847840E1912591E645E44 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; + 26037CD168CD5E3516B2582D8A023D4F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 2615554DFEFB88ABE2F6B4CA84F63873 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; + 261E698D5EF014930107BA2CEFCFCD49 /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageView.m; sourceTree = ""; }; 262DEA6395C5645E1DD66157F9034448 /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; - 2641C911F6D6E4D1F425009DAB0C1FD9 /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; + 26431739B59EAEE190A600D578E6D300 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 26573A4207CED9E4E90197F447B19B22 /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; 2660A4836DBFBDC3B9829B71F2C14FA8 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Private/GULNetworkURLSession.h; sourceTree = ""; }; - 26705C1AA9F866EE38E8F7CBCC3B8CA5 /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; 268BD99C64A6C861FED9E34CD3F6B278 /* analysis_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = analysis_enc.c; path = src/enc/analysis_enc.c; sourceTree = ""; }; - 26BABC6A3ED1A81C0D4BBBD0C8E8ADA0 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; 26BB5340327AF9EC3F93E6476F06DE96 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; - 26BF9F2222F478ECF2E8D83F8280F2B7 /* RNCSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewManager.h; path = ios/SafeAreaView/RNCSafeAreaViewManager.h; sourceTree = ""; }; - 2703C72F933F53025C828C107799FD10 /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; - 2711C01F7907BA82903E557C61359C28 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; + 26D28BA05D94E0E8DCFB49CD3794A884 /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; + 270967510F13979B1EB6F3574EEC77F1 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; + 270D91A8FE15937EE7AAE531B81CA808 /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; 27136D2D6F45008E8D66DE0E18B49BB3 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; + 2742C515451DD6FFE912AF6EA16CFB7E /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; + 27BB988E58B26A522972143B489F069A /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; 27C1DA9B4716807323AE0A260B2DA23F /* NSError+FIRInstanceID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSError+FIRInstanceID.m"; path = "Firebase/InstanceID/NSError+FIRInstanceID.m"; sourceTree = ""; }; - 27D91DEDD5BF35D3BA4F4D7F82909550 /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageEditingManager.m; sourceTree = ""; }; - 27E5B52707C0F3079D2F7E4D540F1B00 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; - 2850D08FC65AB2BFE6F11F31C82F4630 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; + 27E75C50F92E130F88D4B6358253C445 /* RNFirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestore.h; sourceTree = ""; }; + 27ED0005F17C8AD51E057BF21D5F0EC2 /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetInfo.m; sourceTree = ""; }; + 283DAE7E7C078A748285F6E5DDC6B489 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; + 283F9DBC19BC9C368189DBC095F85792 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; + 2867C037657646F9A287C781D9B5E438 /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; + 2884DD0912197AF891B45AC139D8C64E /* react-native-splash-screen.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-splash-screen.xcconfig"; sourceTree = ""; }; 2889DF8F05E40EE167FE8A782E1454EF /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; - 28C8357764854C0A7FF8B56D8588E795 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; - 28CBEA458246C5B01A0E0DE4701554E3 /* react-native-safe-area-context.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.xcconfig"; sourceTree = ""; }; + 291E5809BEED9259178A0FA957B359D9 /* RCTTypeSafety.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.xcconfig; sourceTree = ""; }; + 292E194053D8F2265C1B40218F834FBF /* RNFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebase.h; path = RNFirebase/RNFirebase.h; sourceTree = ""; }; 294B31C1BD032FB26D3B0CA142612940 /* RSKImageCropViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageCropViewController.m; path = RSKImageCropper/RSKImageCropViewController.m; sourceTree = ""; }; 2961CB18FE72FDA85F971B608BA91573 /* alpha_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_dec.c; path = src/dec/alpha_dec.c; sourceTree = ""; }; - 296459A2F0650D21EE05089829080E39 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; - 296A20E14601F3E7D22ABE1C5586BF9A /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = ""; }; - 296C7741FFDF6C5CFB206BB5119D280E /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; - 29749DC7DC277DE1ADE9926B431F8D38 /* RNFirebaseUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebaseUtil.m; path = RNFirebase/RNFirebaseUtil.m; sourceTree = ""; }; 297FB257FFE6A130856F3F4054BB64FC /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; - 29B0113170F79A734F6E256EF8E568BF /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; - 29C793BCF9A0265143913A9F379F5D98 /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; + 29D68C01B7BB771D070839C48F2C7780 /* libRCTTypeSafety.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRCTTypeSafety.a; path = libRCTTypeSafety.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 29E131BBE173EA23E9407F05606F398E /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; 29EF9976E1FCCE2A476ABB169855179D /* FIRInstanceIDConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDConstants.m; path = Firebase/InstanceID/FIRInstanceIDConstants.m; sourceTree = ""; }; 2A258F7F2761793B8CDB477C0D07F762 /* GDTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTUploader.h; path = GoogleDataTransport/GDTLibrary/Public/GDTUploader.h; sourceTree = ""; }; - 2A2FF97164F5996CF244965C8AEA2BFC /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; - 2A87192E3AA37F552786A1113C791230 /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; - 2A9136BB9773FE121610B6B24E0FCB2B /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; + 2A6BCBF8DFA9036607B10E1C54A7049E /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; + 2A7F743FD292127E00F2E9D5E75F7BB1 /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; 2A922BF86A0993A7E8561316569E94D3 /* FIRInstanceIDCheckinPreferences_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinPreferences_Private.h; path = Firebase/InstanceID/FIRInstanceIDCheckinPreferences_Private.h; sourceTree = ""; }; 2AA27D3D45E7947A6CB774F5D94FA3B0 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; 2ABCFE9547A5AE597F37A631616A9329 /* FIRInstanceIDTokenInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenInfo.m; path = Firebase/InstanceID/FIRInstanceIDTokenInfo.m; sourceTree = ""; }; 2ABF3796381DC71CDB24205E1EFBB78B /* cost_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_sse2.c; path = src/dsp/cost_sse2.c; sourceTree = ""; }; - 2AEB3E2C0B815875A8A54F9A4BCB269F /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; - 2B057CCEC1B0705DFEC4572AADF77972 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; - 2B30374D98D88FEFFA40BACB5AE902EC /* RNFirebaseFirestoreDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreDocumentReference.h; sourceTree = ""; }; - 2B435DF52AD873ADF9D8AE1CBA4931E5 /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; - 2B9CE216B0EE3BD236D45E158841D045 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 2BAA2F72DEB9C7595D3A84FCBBA90499 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; - 2BE4A52210C4A9853C5E764B2B1C9B1D /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; - 2BF19C73B2A4983AAD7C4E991A9FC988 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; - 2C109BC59AFAD5D765A50625B9B68A96 /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; + 2AC301BADE666E324EBD0FA7B6B7250D /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; + 2B237DD7886D1276B43D93DD6D6227AF /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; + 2B340C1A9DA24640121D255A2C50B247 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; + 2BA65DB4257C2024DDAB391A776ED76D /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; + 2BBD63C212911F5113769ED657A04A00 /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; + 2BC0D218879DC2E4C7EF682C9A6CC58F /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; + 2BC8110D8F6EEF1C21845076F7100B10 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; + 2BE5820639989CBF86497FADC01C51F3 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; + 2C14B476AA97AC9B5965F8675044844F /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; 2C32B052B44BFC07034F114E70AB7F1B /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; - 2C3B7059B68C5F008E579860896BF1AB /* RNFirebaseAdMobBannerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobBannerManager.m; sourceTree = ""; }; + 2C5607C6880FF5AC845BBA1B6B5C8278 /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; 2C7975AB85BAB4A3FEE13D5BB0F0F6C4 /* 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 = ""; }; - 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; }; + 2CA6A199D7F1D517194CD33AA24C0DAA /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; 2CA862307DD6E020CD13E3A0E6861D2C /* GDTClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTClock.m; path = GoogleDataTransport/GDTLibrary/GDTClock.m; sourceTree = ""; }; - 2CEC97C8B90A6F43F7FCCEAF8DB16D13 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; - 2CEE2F8B47E188524845DECF761EBBB3 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; - 2CF1712DD773F206AB908CD8E6CAC43B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 2CF6F54B785E9112BC6AE97E053D1290 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; 2CFBF632115CDAFBCC595684733B6E22 /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; - 2CFDA8042C6277DACD4AB16AC0CA4AC7 /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; - 2D04A56CA4CF3700F6D6F17A66F77CCB /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; - 2D442802319B1F8D0A4F9DA0DD9913D4 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; - 2D74DD88DE2748B2514AF73DF5658135 /* FBReactNativeSpec.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.xcconfig; sourceTree = ""; }; - 2D767267E6C3C9289E8D7F0FCE6A7EBA /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; - 2D76AE5198366EC5C840D39481EF7D0F /* react-native-keyboard-tracking-view-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-tracking-view-dummy.m"; sourceTree = ""; }; 2D82F1D2804E0B1108D45AADFEE32BF6 /* FIRInstanceIDUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDUtilities.h; path = Firebase/InstanceID/FIRInstanceIDUtilities.h; sourceTree = ""; }; 2DCC4B92A5289D7BAE0C5E6E84654009 /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; - 2DD7893B62BB82BF7CA2F2886F6B5A6B /* EXCameraPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraPermissionRequester.m; path = EXPermissions/EXCameraPermissionRequester.m; sourceTree = ""; }; - 2DEA556B9F91EFEBBDF517FFF7AAFA4F /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; + 2DDCF5DC5900ABC24A22BD88B27AB2CB /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; + 2DEDE8FDCFE7CB914F5537D5B619BE8D /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; 2E12BE8126CFBA86063B52BE2F28A4BE /* SDImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageWebPCoder.h; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.h; sourceTree = ""; }; - 2E18F368109515B0C907BB2AC768E68C /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; - 2E203022524F65016EBA5089F3467300 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; - 2E2727D828C1AEF7210CA6BFFE7FD6EF /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; - 2E468E891956098D77140209010E109C /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; - 2E4B8CB97B20EB18D9546E83F9869EEE /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; - 2E92666389D22761A623949728B7FFC3 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; + 2E4358AA31F04F7E98758851A3B23137 /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2E760992B2650089B51F63143D7E9C3D /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; 2EB41230ABED447B9043E714CFCCD86D /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; - 2F106E20FA9E15C3EC78264404AD0E84 /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; + 2EB8797110E4857929706711EA088B63 /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2ECB2C5504539A433653C059A976740E /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; + 2ECE54435AD5DB72830CE00AB61B4E70 /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; + 2EE1DA86EC3D99C00C25FD24C6220B89 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; 2F1CBD4F98D6441CCA71EF677581938E /* 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 = ""; }; - 2F247C6B74C425A67EF72C70425C689A /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; - 2F376571D3754BC58E0FD4601CE551E5 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; - 2F403813AE91E14E70E2B256877F2CE5 /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; 2F60D3D8296982940975BE9B7E1DD3CE /* GDTReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTReachability.h; path = GoogleDataTransport/GDTLibrary/Private/GDTReachability.h; sourceTree = ""; }; - 2FA4F8C4BE83F7A643D54A86C58895BC /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; + 2F9A53E729223A59791772D34C9FC202 /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; 2FCAF76084323F3656DC28B8A4A5F326 /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; 2FF098084549987D8E0446F16671D4E9 /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; - 30147B9307000E3029CAB6E9D5A16E06 /* EXCameraRollRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraRollRequester.h; path = EXPermissions/EXCameraRollRequester.h; sourceTree = ""; }; - 3029A4C8498438BB04B0630377E29DCE /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.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; }; - 3089DD250EDF54060C42681665272839 /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; - 30A630D95DA548AB8940009405D9726B /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; + 301567460D8660C931BC4A8ACB8330DB /* libSDWebImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImage.a; path = libSDWebImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 30198F89533E567DE6EDCC4C1D62CF34 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; + 3028864806728918A117E4058D8441C1 /* 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; }; + 30540B5CD8D8D67A88C3FBCFED33E27A /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; + 3091E2CFFC0B4A1C7BD3C4D9B28DF2E6 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; + 30B553459F4188715B5D1F719303295A /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; + 30B5540FB20E231DD0C1B3C19AEF6296 /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; 30BCAF63832753D77F69F7D14EC383BA /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; - 30DD2B54E8B83385D1E17E18ECEFEC9E /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = ""; }; - 30DF3F93C1A42AE7DA94BB70BEC67FB1 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; - 31084C1F8D220713ECB94D24C58F465B /* react-native-splash-screen.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-splash-screen.xcconfig"; sourceTree = ""; }; - 3143AC6BA7678E130BD420050FD89DDD /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; + 30D4989713F879DD1DB017EFC27AC2E5 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; + 311DF445FE87CE1764573708E7F33CBE /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; 31464DE3A10775862FD3837D89881621 /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; - 31554746BC6159F2CADBE263BFE17239 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; + 31505D7E478C6717D9019F338B7D7376 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; + 3162609F6B6850B1DD8A9479CC18DD16 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; + 3168B94989DF6941033689BD8D948B62 /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; 317F124D9FDC5A216174EF9257BC9A35 /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = Firebase/Core/FIRLogger.m; sourceTree = ""; }; - 3187260C25DF89EC205D9316352ECE78 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; 31903A482DC8C2235D99A585FA8FDECC /* tree_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_dec.c; path = src/dec/tree_dec.c; sourceTree = ""; }; - 319456CF7423767E37C738CDD3682CF3 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; - 3195505E0729B4614D60025ED7CAA2A6 /* EXContactsRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXContactsRequester.m; path = EXPermissions/EXContactsRequester.m; sourceTree = ""; }; - 319BA8E6EE102A4442F9C0B07E458DD7 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; 31D51E61D6546C558B473DDD56522073 /* FIRInstanceIDVersionUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDVersionUtilities.m; path = Firebase/InstanceID/FIRInstanceIDVersionUtilities.m; sourceTree = ""; }; - 3216F8147EDF38C0ECE3396AEA3F4635 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; - 32484BFF36488CC96783EF792DF22A50 /* libReact-jsi.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsi.a"; path = "libReact-jsi.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 324C8D7FF5265BEEB2F9AB9D71C806CE /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; - 3276457071DF97D202177EBD051D0228 /* RNCUIWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebViewManager.m; path = ios/RNCUIWebViewManager.m; sourceTree = ""; }; - 32A6EC2738B520FB1BE1FD70790DBFD1 /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; - 32B13DD5CC6DB74653E5F79A53392B57 /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; - 32C12603AD73CFBA479EBE94C1CDFFC0 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; - 32C40A6A5D1837835D6B90DC571D15A0 /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; + 320B535A141FFFD6BEF39B9029F0ACE4 /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; + 3221FE00A1602F823985FCD2723820CD /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; + 32336E7E9DC6F10F67D09C259843D0AF /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; + 323DD5C7D0964EA39BE403A831E9C6A5 /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = ""; }; + 325F9AD7D037B0E843A24E55F295E4CD /* 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; }; + 32ADA46C128202D313CE8C8980EDF07B /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; + 32BD0359DD585004F232BD4CDB009979 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; 32CE682E91330200182757D64C7AF6D4 /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; - 32D124440224981CAAE96235A81CE22D /* RNFirebaseAdMob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMob.m; sourceTree = ""; }; - 32D3A5FD177AE01A2EABD8740246262B /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; - 331D203E413583EC7B1137D6FFF0D3FE /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; - 333E66EDC8DB6E62AD52DD735C682B66 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; + 32CFF873DF3097D76C880151012A947C /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; + 32D139AE1030A1F5EC0E6E808CD2B05A /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; + 32D442C11B07C66C9018E78AF1F7D796 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; + 331D10B0B267D53EE1FD58E141855523 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 333ADA951A0BEE1FEAFF5ACE35B8ECF0 /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; 334A031760F68DE8E2D86DC920B5F7D9 /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; - 33E0FF5D0ACF793E0C3B6B89A16808E5 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; - 33EEF8A74FE15E3B8262554D8BFB7C5C /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; - 33FFD0CC413DFE6129F0333A2DA1E5DD /* 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; }; - 349B303B05BB20373D3EEB2EC8058087 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; - 34ECA820CADF5DC6E239E8E6A7EE7ED1 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; - 35044CF6B9C4D8ABC03E93C8C08B2B73 /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; - 35072EFDB0C5C95E680212953EF13E30 /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; - 3520A6863EFA9777DEAE6B7D7B21E5BE /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3579FDC1F171440E024A4D2C7C55955B /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; - 35820A009633ADC6BD8A782CD543A6DE /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; - 3583ED43A6647A32545A09879D94DDF5 /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; - 359B060557BFE9DFF9EC8C4570EB28FA /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; + 336769B7563A1B1DCC963621A000BDB9 /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; + 341CFFF0DD947EE9C0719DB50875B42B /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; + 3437AB5300C2642CD3E8E9DE45BE8593 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 343B4074993DCF17EBC2939439C15A10 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; + 34618B48335451A86FD63245F8B1A2CC /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; + 34CA70CFAAF734F9B413ED26AF9A565E /* RNFirebase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFirebase-prefix.pch"; sourceTree = ""; }; + 34F4B73A4F25B12976065C5DC4E93505 /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; + 3505D6FE5DDE3A48D66A447E8A218EF8 /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; + 3506099201F98E1F037CE96A460AAB96 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 352C6E90D068FB859B0ACAEC65A0F166 /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; + 356FE3E71CD3DEFCAC4909FF82DACCE4 /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 357C18207563DC20B8BEB0607FC45B0F /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; 35B10CD2AF0B7EF54D09EEDEDD29C454 /* RSKImageScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageScrollView.h; path = RSKImageCropper/RSKImageScrollView.h; sourceTree = ""; }; 35CE46312490F4C504F7DEAC11D569DA /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; 35DE0F9D7AF1B2613AB7CE594AA8BC4F /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; - 35E8E0CB837BAF6BB30DC2F2666F90CD /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; - 360844A61A12EF855608DEFB9E3D70FD /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; - 362240E24C515C4ED4C1719116E0BF49 /* 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; }; - 3675431A9DA90C3F94B56531D68D37CE /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; - 3676A972801F4861E5D0485DE7C09E39 /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; + 36080B7CB2AEFCBD257B089A4550153B /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; + 360A590D6E87D353A4EE548C36D5B73D /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; + 362B34AF06E4DD3B78721CA41E49802C /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; + 363E6F052C48D3F0193DFD739D5B2222 /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; 36BB7E4F3B4C59F2AF8FEA960B294326 /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; 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; }; - 37006D61CD175B673FEB9953C5756E90 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; + 36EA1DBC087523A55053723339039F73 /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; 3704C27FD74B38E75C1781D6037E5CB8 /* CGGeometry+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CGGeometry+RSKImageCropper.h"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.h"; sourceTree = ""; }; - 371E2EC0DA2C47B1F4722AF633AEEBB7 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; - 3725CB0D232F75861E7CF57C9FD51442 /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = ""; }; - 376232CCE51105BC9EBB6929EBBE965F /* 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; }; - 37770AF7C8631396D540CF9230FA65B0 /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 377DFB1666969358F520B20AB9E16E27 /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 37857B35D45B329975E2FC0CFDA871F3 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; + 370690606EC6E87A207E7CB5BEA4E5EA /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; + 372B94412F3E2A1C066996D0B590E620 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; + 3736B4D92E8195168EE3582062C4457E /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; + 3751ED84B089653927EE0C3BD844C300 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; + 375519D93ECF9CF39780B72B9BF6F8F9 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; 379B7B0654757D17D8631C931D444E9D /* enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse41.c; path = src/dsp/enc_sse41.c; sourceTree = ""; }; - 37B1D4AEDA3C3A8E5F33F282F1F987B0 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 37CF770FDF352A24EC3AB16FF2E96884 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; + 37A026A43479D39DF3888848ACC42BFE /* RNSplashScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSplashScreen.h; path = ios/RNSplashScreen.h; sourceTree = ""; }; 37E75F1AB38A5F35704552B1D2BFDB0C /* SDWebImageWebPCoder-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImageWebPCoder-dummy.m"; sourceTree = ""; }; 37F55AD87EDF0F0EB0097DC8502C8EDB /* rescaler.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler.c; path = src/dsp/rescaler.c; sourceTree = ""; }; 37F5F4EABC6487EF44A15062C2473B8E /* Pods-ShareRocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ShareRocketChatRN-acknowledgements.plist"; sourceTree = ""; }; + 37FAF41B1B290E8EAE555F939966E563 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; 381807F28CEC843BE35E44FB6440F1E4 /* FIRInstanceIDTokenFetchOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenFetchOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.m; sourceTree = ""; }; - 38303E74A6B7985BFEADECF8C67FFE45 /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; + 383CF765070D30DD46546B01374CB118 /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = ""; }; + 38457761BB95CA357F45DF5243F2B8D5 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 386FB65302D2E36C953455F29D0F5D7D /* RSKImageCropper.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RSKImageCropper.xcconfig; sourceTree = ""; }; - 38A7C07FB150C20816E901B787BF37EA /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; - 38EDF111D900EB94F79EED6C99B39A14 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 38FA1894BB2223603F9F12CEBA9A0951 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; + 38CDD663F2229741EFDE605F49D55F74 /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; + 38EE2AEE5664ED9EFAAB1C91EB51082E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 38FC85EF33B83764ACF58D59A2FF5A26 /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTGIFImageDecoder.m; sourceTree = ""; }; 390BCA19F868BD4F10CC42800D2F720B /* tree_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_enc.c; path = src/enc/tree_enc.c; sourceTree = ""; }; - 3910C2EFA8A79FC82FCD760576FFAA54 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; - 39166A3ACDF4227152116AD503BF645B /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; - 395A5863E133BCA6099A6523C1014220 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; + 3930DF44CA320210AFCD00EDF24C3008 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; + 3936896BBD2065045E090C1DCACCC95E /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 39714F1130FE6E7C69D6BCDC08FD2CC2 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; - 398785D588862DA343BE481C045AC431 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; - 398CD556F8B631C62A717D5FBAD01522 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; - 3993F566E0DC59835A29E87AC2D5B5FC /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; 39A3EFF6C0E63A4D349B6FD2C9549075 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; 39A85E3493CFAD508B9032DBD949EF72 /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; - 39C6A49C433EF04A3829B2494825F524 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; - 39D600148B0622F57BF00226124D9863 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; + 39A938235B3F79C2932F1080A077DCEA /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; + 39D0F9ED2E4BC0E3916B780CA5C9D622 /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; 39F1D6B5BBF0205EE9E40237497EF704 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; 39F46987EE108790392E35560A64BAFD /* nanopb.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.xcconfig; sourceTree = ""; }; + 3A03AEFCB40A7E79C41C1EEED1327D7C /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3A04E2393782BA1C44DD03CD92C6AE13 /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; 3A156C681A4FFC5D81747B83E8C04D30 /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; - 3A20055E540EEE13D829CC42EB55FA62 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; - 3A4861BBAB43CDAB8683670C6BC93839 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; + 3A2F76867CD64DF89F23D6837328260E /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; + 3A3FA7E5BA0595C9DB539264B6DCFA7F /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; + 3A5B59423CA8D381C4BBD432AE6AD75F /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; + 3A60CAAA7F985AC2622D11572F1A620A /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; + 3A74365ADEC5F621E9ED8B92BA9D9B15 /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; 3A7C1893545DE6FC1C76C8BE35DCAA1D /* GDTCCTPrioritizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTPrioritizer.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTPrioritizer.m; sourceTree = ""; }; 3ACAD788D95A67AD3BA519FA28D368C1 /* GDTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTAssert.h; path = GoogleDataTransport/GDTLibrary/Public/GDTAssert.h; sourceTree = ""; }; - 3B0FD580475D1EB5A921C9AA90FE0C0A /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; - 3B638966B546BA1004E64E67CF3EBB70 /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; - 3BBEC13B79F27D6ED869EBC9DE30FDFE /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; - 3BC3FF44FD0DECA39B6AE17973A40385 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; - 3BD7C0EC7ED516058E0818918C6E44CC /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; + 3BB71B5697E561D8A2B1717AC483B5AB /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; 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; }; + 3BD0143DF5E499DCA1B23DAD0EDDC0E2 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; 3BE0E93404D70915C180DA8F252FF117 /* GoogleUtilities-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-prefix.pch"; sourceTree = ""; }; - 3C01242E93742811C8DCF88449812EBA /* RNCWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebViewManager.m; path = ios/RNCWKWebViewManager.m; sourceTree = ""; }; + 3BEBF59797D0B7EC87BEB87BD2C61525 /* RNCUIWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebViewManager.m; path = ios/RNCUIWebViewManager.m; sourceTree = ""; }; 3C0454A6AC4B050222DF1E587BA9562F /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; - 3C4BE4A9A9C3C44051964E22C886DAD8 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; - 3D315AA9686FAF4563ADF890F04514B9 /* 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; }; - 3D3281F26BD110B14306F4A4C3B598EB /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; - 3D3E1A3EDFA4B5FA204815C239797E8B /* libFirebaseCoreDiagnostics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCoreDiagnostics.a; path = libFirebaseCoreDiagnostics.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 3C288B263BD39751170813CFC05BB879 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; + 3C549DDF856BB422636E3D7C42F96AD1 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3C763F7A19E5C62201E3BFA66067DB8B /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; + 3C7C5D42DD5948AB3DD0AEEBFA0DBCF9 /* libFBReactNativeSpec.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFBReactNativeSpec.a; path = libFBReactNativeSpec.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 3C8967EB8943C362A949D858A7313623 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; + 3C90957C7667D5B970F4C8D60145A5B3 /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; + 3CC08CCF71EA063D7C9F49DC76FA7477 /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3D0BAD9FC243B9AF0FE127E76E95F46F /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; 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; }; + 3D2A8A4DB39D76CF60BB6EC3314F228C /* RNFirebaseFirestoreCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreCollectionReference.h; sourceTree = ""; }; + 3D2C41FEE2EDC3E7D873BD1F314CE151 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3D52DC6400A4CBBEB06A90984AF56712 /* RNFirebaseMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseMessaging.m; sourceTree = ""; }; + 3D63A93F7ADBFA07F80E9681BCDDB72E /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXPermissions/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; 3D69B72CBC306DA96F67BEBB2E852631 /* utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = utils.c; path = src/utils/utils.c; sourceTree = ""; }; - 3DA052739501902A223DC53E296907BF /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; - 3DB6EFE5277CCD8A54FB4610A1FE0D3E /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; - 3DD07EC973B3DFD29548A6F12F925AF2 /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3DF9DF132F0646FEC46004571DFD9089 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; - 3DFB06F347C4F0EB3F206AA4081DC816 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; - 3E35F3DADF37A2F465F6F78D52CC948F /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; + 3D9DC6BE085A571CDB18E44DBDFF0070 /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; + 3DC693D103150FEFF9C68DEB994CBE35 /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; + 3DDA5211D6D3A7556B833E5BE41C6FED /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; + 3E0D53AE22348ACA5019E711B052F91D /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; + 3E4074968980EA96D38F2AEB9B16FAE6 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; 3E415B0B6A609C1AC519942407F98DE6 /* GDTRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTRegistrar.h; path = GoogleDataTransport/GDTLibrary/Public/GDTRegistrar.h; sourceTree = ""; }; - 3E49FEDDDD4417AC7155DBD9401C4C9A /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; + 3E54DF39BF0279AECDF1DCDC0FCC927A /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; 3E5E58FCCEBA49B80A23B5C666A867C0 /* picture_csp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_csp_enc.c; path = src/enc/picture_csp_enc.c; sourceTree = ""; }; - 3E9082D939DBA35F1A504D1388788EE8 /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; - 3E9C9D017230441E72524C75A4DE8368 /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.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; }; - 3EA74D7266C0527969FAEC582E34B849 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 3EC051CD4EE0FF49306A398ECB396CDE /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; - 3EC179BB2DA882432C4069F95F687466 /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.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; }; 3ECA289CB3857AC397416A99A1A6D535 /* cost_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips_dsp_r2.c; path = src/dsp/cost_mips_dsp_r2.c; sourceTree = ""; }; - 3EF4B27E17C63D7CBEAD59D73BC014D2 /* RCTDevMenu.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevMenu.m; sourceTree = ""; }; - 3EFDE12C3C7223B26A416B790A70B846 /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; + 3ECA891608B867CCA5696895C4EC818E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 3F127787122244C4AFE496D25DA31D4A /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; 3F18239004FC50F44B326951F19B3DB8 /* buffer_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer_dec.c; path = src/dec/buffer_dec.c; sourceTree = ""; }; - 3F2837544E174A1A515B0B38FE98EFDD /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; - 3F59D5A722D96D7F9D808EB99D4B2E9B /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = ""; }; - 3F9D8FF19C26813ED813F62735D251D8 /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; + 3F2E4423240E0F98D08353BC08A7D0AB /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; + 3F3C7244EB44D0B5F967C8330B9AD181 /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; + 3F60A75B29A400815365320E53E9EAFD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 3F718A89C12CD95005EB2064AF63B331 /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLocalAssetImageLoader.m; sourceTree = ""; }; + 3F832139EA227D044E2A897B5F71A8A6 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; + 3FB6B0D132877CF3361A6436313E5619 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; + 3FDCC8ABD7A67A253A07EF146FF0B6D1 /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; 3FE7DDE360A8F7B4372072070F1C53A0 /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; - 3FF341EBB2130B6E8A91926D3CA35683 /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; - 400B431DC7FE566443236C22A8C6D9E2 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; - 4012680413DA1D865421D65EC764BC7D /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; + 3FE86DB74A1BC11D0141924ED352515C /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; 40327D76B5CC7390AFCF86048D3C9213 /* lossless_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_msa.c; path = src/dsp/lossless_msa.c; sourceTree = ""; }; - 40367BDBD46DAAF558641D898E746F44 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; + 4049ADE92FECBC403667D3A0C2152CD6 /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; + 40650C3157A19EA6BCDB1E0DCB8C8B8C /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; + 406F0A8AFBB83E44E858A26C5A72FB5A /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; 40741D638131EE00D291EE5ED5ED0EE2 /* GDTEvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTEvent_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTEvent_Private.h; sourceTree = ""; }; 4076DF0A469809876ED5AC70A29FBD75 /* FIRInstanceIDKeyPairStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPairStore.h; path = Firebase/InstanceID/FIRInstanceIDKeyPairStore.h; sourceTree = ""; }; - 4079980CF0CE484D8AF2C6718D9D390C /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; + 4085B6FA8C44FE634A2DB999BF874CC0 /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; 409028F4E885DF3E61D8883334A193A0 /* common_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_dec.h; path = src/dec/common_dec.h; sourceTree = ""; }; - 40AEE707C2D2034774762F300868A896 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; - 40D860B53369DCC44F2BE6C08233659B /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; + 409FF0807B37ED4A9D2CCEF42F1D0F74 /* libReact-cxxreact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-cxxreact.a"; path = "libReact-cxxreact.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 40FEE1DB8E538F394A0D1D2D409109B6 /* lossless_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless_common.h; path = src/dsp/lossless_common.h; sourceTree = ""; }; - 414172DE1E7F113E65EBDE98BE04A466 /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageView.m; sourceTree = ""; }; - 41491B4CFEE4E88898218256C9B31149 /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; - 417D87CE168CA4EC2CF9A1914C4B2170 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 41974D60AC17C8FF4A2F80135E90F0C7 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; - 41989E69C1F9E62D9367BA76E343ADD1 /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; + 4108B6722686B91AF785A162ED70BE71 /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; + 4147EAC2416ADC20941A5E597DA0D2E6 /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; + 415C3BA01E823C90D60BC65AEB69F185 /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; + 41678AE01C98DEFDEC7EA8306AA69CD8 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; + 417DE957EC105186A344ACDA4E41ED2F /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; 41A1F9DAC3DFA902B26DCF0B7DD354C5 /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = ""; }; - 41BD29A4D64B15AA9C08CDAB6A72748F /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.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; }; 41CEA2774D13A3D4D4064F609BB31534 /* GoogleDataTransportCCTSupport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransportCCTSupport.xcconfig; sourceTree = ""; }; - 41D4F2C9315C3ADE1A02BC0AE1FDA016 /* 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; }; - 41E9E7440237953B48726A156EFB657E /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = ""; }; 41EA49FA427B1026577C7259B70565BA /* 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 = ""; }; - 41F4EF1D59F1761C34131B6EF56212A4 /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; - 422EC0A9C834E03CE373FE805701DEB5 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; - 4255A70D1E5472010E7123FA03A17B7F /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; - 428844487F23597C747AD12CAD9D1440 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; + 420BAB1491BAE6EF3DAB7AD4DCAD83C2 /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; + 42476F7A64AA7BA8FFB35920F1FE9AFA /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; + 424A556EC446FE4350191468301D19A8 /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; + 426C1C903F357DC2DE898B6998D0DD5D /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; 42ABF06EFF98B586023CD5C1E535967A /* GDTStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTStorage.m; path = GoogleDataTransport/GDTLibrary/GDTStorage.m; sourceTree = ""; }; - 42BCEE5E040F3D638C0792F449ABDA87 /* EXRemindersRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemindersRequester.m; path = EXPermissions/EXRemindersRequester.m; sourceTree = ""; }; - 42C974B2040AE33AA5A4C9842333E515 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; - 42F54E3960977E8751F7EED016BA5DE9 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; + 42B16FE63D75FB40E4A435DE61E1D82B /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; + 42C2648C752E0C5DEDA31801002C062E /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; + 42D27314E2CE64DC6C50A5B4E368AC25 /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; 43041710CE45CB1D44DCD54827A736EA /* lossless_enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips32.c; path = src/dsp/lossless_enc_mips32.c; sourceTree = ""; }; - 430460805DAF79AB9221E24E244100CB /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; - 43104A491C9DF0BD0AEB9715B949B9A8 /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; - 43133926B9CE9A5AB1D5AF4BD6A29544 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; - 4339CC5EDBE21248B57B43142C78FDA4 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; + 430CA544C5F5E7E8812FDA2B74015881 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; + 432015892798064D127AD8AF53FF3923 /* react-native-video-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-video-prefix.pch"; sourceTree = ""; }; + 433EE80BFBA84B632B975E242C138631 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; + 4341046B557301C8C52B4235329D3B0F /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; + 4347897D8EE6D5B5D4E83AF48D5B0D01 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 435810AA44D25F78E402E260306A966E /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; + 438610B152172E5A494F3D6DAA4E51A1 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; + 43904D676F711B84D0363DF0430E85AC /* FBReactNativeSpec.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.xcconfig; sourceTree = ""; }; 439E3B1335B2E9CCEC4C49687CB5BABB /* GDTEventTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTEventTransformer.h; path = GoogleDataTransport/GDTLibrary/Public/GDTEventTransformer.h; sourceTree = ""; }; - 43FE608151DDA2E629BA5C12D0DBC0D4 /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; - 441E04426149FF8BC87FC8C229F638A2 /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; - 442036AA59EF836C1752B8F1C8F08671 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; - 445AC29FAF9E4FBCA3A1FD7ADB84CDCC /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; - 447EF1EA74117D6E0BB07725CCC9DC21 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; + 445640C4E059EF5BD5ECBBD9FF01EC39 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; + 44639F16D9241805FF9247D183D975FA /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; 4495468D6608A6D5DEB3E37481C38D69 /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; - 44987E59C8ACE5202ED4B50FA7F04112 /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; 449F86CBC2774A4578C9500DDD652047 /* NSError+FIRInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSError+FIRInstanceID.h"; path = "Firebase/InstanceID/NSError+FIRInstanceID.h"; sourceTree = ""; }; - 44ABBEBEE6E8977D6CF1226A4CB6A441 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; 44B4FDCD2AF7CCC1D861268702A52DB1 /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = QBImagePicker/QBAssetCell.m; sourceTree = ""; }; - 44B99207D6ADA144F33B606D026D6C61 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; - 450A8BDD4F83B1059206640669FD50E3 /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; - 453634152B0E90E73925F836134076EB /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; + 44F9738EAD6E7B2FDBDFCBA059106659 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; + 44FBEF46DA69AE67CB7C4EAB355665B8 /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; + 450F873C9449D773F8A6A196FF5DACFE /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 455A6FB5786B77E5E2668ECE0C9A178C /* react-native-jitsi-meet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.xcconfig"; sourceTree = ""; }; 4591808A27E5293FF8B06A4C667F8757 /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; - 4598EEEFB1170675B8D9D20C3D4B35CE /* RNFirebaseFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFunctions.h; sourceTree = ""; }; - 45C303BA7E70182BAB688513619BB69F /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; - 45E750B8327A9113F0AA0E653A2774F9 /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = ""; }; - 45E9009661F7642265BA2B62788B039B /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; + 45A19795EAC0B7536DE3AE5708DF3161 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; + 45A41C6C7105C7C090FEA14850032BBE /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; + 45B386987E971282C4135DE079AA4C5A /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; + 45C508BDB58C3C22D4B094C0BF786B3C /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; + 45FB1312D81FEEB70794428B63278243 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; + 460991AC1BE5B75FEBBA47638A4138A1 /* libEXAppLoaderProvider.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAppLoaderProvider.a; path = libEXAppLoaderProvider.a; sourceTree = BUILT_PRODUCTS_DIR; }; 461232C9D409A6E228D4F1D5505329E9 /* CLSAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSAttributes.h; path = iOS/Crashlytics.framework/Headers/CLSAttributes.h; sourceTree = ""; }; + 462314FC5F61237B1DC57433E4DCB4D3 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; 462345ACB484DD62DE15B2FB497705A3 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = Firebase/Core/Private/FIRLibrary.h; sourceTree = ""; }; - 466316A4A5986D7A4C8A0FDC507893C1 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; + 46646C0B2CC8006C439A95FBAF852B52 /* 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; }; 467333A9ACE774CF8AA2FB7428A96541 /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; + 467DBAD1636C5C358F12CA4A0E3CFBA6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 469D5CECF9B14CB47C6628F2E5875A5E /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; 46A54367025ACCCB32096FA0B124098C /* Pods-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.release.xcconfig"; sourceTree = ""; }; + 46AEC60604B39AF805BC6D5EB27D7555 /* RNAudio-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNAudio-dummy.m"; sourceTree = ""; }; + 46B34CEA1C31953580CE189C9956C539 /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; 46B8BB4AC2E8267C70BB5CDF6D7A7542 /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = Firebase/Core/FIRVersion.m; sourceTree = ""; }; - 46D7F4DAB618D4CAE271758C3510F085 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; + 46C1A629706A7A7377A90F7FF05E92BC /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; + 46C34CAB6AAC0E0EB79854BDD52EA02A /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = React/CoreModules/RCTImageStoreManager.h; sourceTree = ""; }; + 46D44A32F0EB4AF27997E7A836AF2409 /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; + 4700497CB6F7892DEBC975C55A151D91 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; 47031BF79D2E1BF1C495D42F59F447F9 /* lossless_enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_msa.c; path = src/dsp/lossless_enc_msa.c; sourceTree = ""; }; - 472B6517DC791653B82EA7988B300BBA /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; - 474095ADE4BB1B597F9A4608E751BEBF /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; - 4771E4531524CF9305A27CCEA4CE52A0 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; - 477E3945548B8EAC18BE1994BEB058F9 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; - 47B68665153ACE22A9D0E631F264BFE4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 481C18E01A760B3F249339764020F262 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; - 482058D245DD69C4C3A6E87A0A57D953 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; - 482F5F5913C7CE680229B17501F62F19 /* RCTConvert+UIBackgroundFetchResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+UIBackgroundFetchResult.m"; sourceTree = ""; }; - 4853BBAF2D3166382D188EA079598AC3 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + 47155E3446D20E771443CE350B3B2C19 /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; + 473E13BA68BED6C6934E6BEA919A48BA /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; + 4755005ADAFB0BAE54A7380DB5497844 /* 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; }; + 476900FE80EACAEF08215CC16E6D35F7 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; + 47B0AFF0D32D5B238B0338E82F823051 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; 48702D847F7EC6147DB79EF8462AC9F4 /* RSKImageCropViewController+Protected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RSKImageCropViewController+Protected.h"; path = "RSKImageCropper/RSKImageCropViewController+Protected.h"; sourceTree = ""; }; - 48704E60577AE17006594F5B1F082C1C /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; - 48727D1578959491ADDFE69C45A48ADA /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4896EA5817A5BEF19F56C3D7F82A206C /* EXRemoteNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemoteNotificationRequester.m; path = EXPermissions/EXRemoteNotificationRequester.m; sourceTree = ""; }; + 48C40A12532E5FF027E698CA648F6AE6 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; 48CD830F7E24DD3BD7BF4A528CBACE50 /* Pods-RocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RocketChatRN-dummy.m"; sourceTree = ""; }; - 48FFBF121F31AEA781C280C41AEA8A8D /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; - 49070D4C872602F6290CC0C6719D9003 /* RNFirebaseDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabaseReference.m; sourceTree = ""; }; + 48DBCDD7F88D72B627752289B841685E /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; + 49088C0902F6B970C7555A3B4255F85C /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; 492B962160A927B213CF7B01D9381AC3 /* frame_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_dec.c; path = src/dec/frame_dec.c; sourceTree = ""; }; - 492BAD8924B2A031BEE748D08EF182F2 /* RNFirebaseAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAnalytics.m; sourceTree = ""; }; - 495E0C732876CA1F3142152FAF076FEB /* JSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSCallInvoker.h; path = jscallinvoker/ReactCommon/JSCallInvoker.h; sourceTree = ""; }; - 496F4557E7A4D54E268368278710F825 /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; + 4967F3875B9AFACFD314B94A3352D8DA /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; 4976912BCBFCF8892B39B53A8E444D45 /* FIRInstanceIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenStore.m; path = Firebase/InstanceID/FIRInstanceIDTokenStore.m; sourceTree = ""; }; - 49CF3A11E5181DA8ABE51009D71CDB6B /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; - 49FA8818599D445027EB04C586A2A6A2 /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; + 499C5CA01A8F491E9ED436E6171BB50D /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; + 49B53B91A0A095795C5B103601EC9091 /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; + 49EC7C3EFAC13533502ABAE3EF8E95F9 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; 4A1BD9925249F7DA2EC6690AEB514594 /* GDTReachability_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTReachability_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTReachability_Private.h; sourceTree = ""; }; 4A2039DBBE60C4912C8410E4A052B98B /* vp8li_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_enc.h; path = src/enc/vp8li_enc.h; sourceTree = ""; }; 4A2AB4ECA4F6C281EA87D59F9CF92CDD /* FIRCoreDiagnosticsDateFileStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsDateFileStorage.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnosticsDateFileStorage.m; sourceTree = ""; }; - 4A4B70FC0876B33071969B459F1E573F /* RNFirebaseAdMobRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobRewardedVideo.h; sourceTree = ""; }; - 4A519B2E5792F950F4DF2818EE05EE72 /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; - 4A55D8D8D4B7FF06C22B7253007ACCD8 /* React-RCTActionSheet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTActionSheet-dummy.m"; sourceTree = ""; }; - 4AADD0595A7995C25B6508F95D287B69 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; + 4A40F56B2854F60A4752CF1C9494C1B9 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; + 4AA6D5CB12274E3E0BAA73FEA0B758A7 /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; 4AB5C07CB50B14C998285A22697FDAC0 /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; - 4B1DB18EB00950401534B150AD9AAB09 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; - 4B67CC88A271DE62796A777B6D1CFEE2 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; - 4B68A1F97B6A2DF2AD5398B70C161CF5 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; - 4B6B2C02BEC0919D088E3152A8B5A160 /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; + 4ADD59F006F86CBA814C6ADCD4DDFBBE /* RCTDevMenu.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevMenu.m; sourceTree = ""; }; + 4B089478EB44035FB3C7975EBD74DFE4 /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; + 4B6947B19437ECB63258DC7F7074A020 /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; + 4BAAECC0BEF15D82E3962E2DDBC261B8 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; 4BBF59A238D1A17DFAF14F72B2CF2E34 /* FirebaseAnalytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.xcconfig; sourceTree = ""; }; - 4BE12B775FA858722C656B6CB23E0FC8 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; - 4C086AD28B3624797C21A2EF1D15B1AB /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; - 4C11EFAB38A2FE5303419DE4FC410768 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; + 4BD815B0A50F75539647B5A987D130B1 /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; + 4C0F6D6814201054F7BC694B6F77F313 /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 4C18327C4BF0B80E96442BDF0377F682 /* FirebaseCoreDiagnostics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.xcconfig; sourceTree = ""; }; - 4C2671E96FBDB6EB09DF61C9345F9024 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; + 4C19F8522831D2F9EE9D4A1147119D41 /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; 4C2FC63F50BF9DACEBFF72D70B396802 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = src/webp/encode.h; sourceTree = ""; }; + 4C39F535F3E98652F5FD689A78B73185 /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; 4C3A48CECA6512C7D3DDE4E567D13169 /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; - 4C4D965126B9D67D008EBA4BA083FDF3 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; - 4C4DE418E6C4007E2836C1CBA0AB7829 /* RNFirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAuth.h; sourceTree = ""; }; + 4C3AA4CB7AC17CEF05DFB7A28CADC8AF /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; 4C664245E83B7E6B08825366B395D2E9 /* demux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demux.h; path = src/webp/demux.h; sourceTree = ""; }; + 4C6F14FE5674A24CE56D53EDBD32640F /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; + 4C7E2C6308D8C8DD2F1341FB8F321FD4 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; + 4C994142F48C355AF473A71D1DDCC1DC /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; 4CC0A3C6582874CB0EA2947C5DE21FC3 /* SDImageAPNGCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoderInternal.h; path = SDWebImage/Private/SDImageAPNGCoderInternal.h; sourceTree = ""; }; - 4CD8FC8ACBD058D65E3A2E2E8E1663A7 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; - 4CE1695BC0770F905CDFD9EA38A4BFFB /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; - 4CF514CEBEB7B53040F577141FD44EC5 /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; - 4D761807A2FECF60EDB424C5ACC8B538 /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; - 4DAAB6E2406A0687205959EDE8917E3C /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; - 4DD5E20D88209E65E9BEBDDA476BF54F /* RCTTypeSafety.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.xcconfig; sourceTree = ""; }; + 4CE10571F7D1FF9ADB910D24E22F88FD /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; + 4CE9E319DBD115CBABDF32645507EC8C /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; + 4D00044A78AF2C669000B43E09D48157 /* RNFirebaseFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFunctions.m; sourceTree = ""; }; + 4D0EC6831411EEB8A8213C4238F8CA1D /* EXAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppLoaderProvider.h; path = EXAppLoaderProvider/EXAppLoaderProvider.h; sourceTree = ""; }; + 4D2F39FBF9AB5EDA8A7A4EED2F29C886 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; + 4D3BB9A691B6348607528B84A81C4278 /* react-native-keyboard-input-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-input-dummy.m"; sourceTree = ""; }; + 4D402CA1FF2E44253F8C2FFE4C71CC15 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; + 4DB92CB13D90E6A63C9449EB4A3D5FB0 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; + 4DF27DFEF0E55DE0F3985BBF40FDD829 /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; + 4E00F05CCF734A12CFC85CCF4150FA8D /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; 4E072FC1D45DEC37BA7E55FAB5771A23 /* JitsiMeetSDK.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JitsiMeetSDK.xcconfig; sourceTree = ""; }; - 4E129ED0E4C41D48F63CAF12143A13DC /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; - 4E1C13D39704C9B2F50E2AE49B721C79 /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; + 4E2B78E982AE24449641F5EC876DD0C5 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; + 4E3073268F3560B063D070EF55DA0D9B /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4E43B51F469B0AEE34BC4041C20C5BC0 /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4E54A85CB4B798EF35CB5F1903DDFB5A /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; + 4E5FECC1F5F4E9A59CEE4D8563B9C00B /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; 4E6F4ABB26BEC546C406085DFA89BAB2 /* FIRInstanceIDCheckinService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinService.m; path = Firebase/InstanceID/FIRInstanceIDCheckinService.m; sourceTree = ""; }; 4E72F0A2702F526EF198EF77E5D41D34 /* quant_levels_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_utils.c; path = src/utils/quant_levels_utils.c; sourceTree = ""; }; - 4E7AC849DB321BA7905B3592CFCD745C /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; + 4E805B6A93E2DDE62578C56D49A0CC4E /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; + 4EC4205FABEABCC72C0DBFBB1CB885A9 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; 4EC49E6D8EC9A413644DDAE2B305BC4F /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; - 4ECADD2C62E5FB5CA1D6D6CB22DF27EA /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; - 4ED7012EAD1D0469E3F0DAF90DBF4648 /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; - 4FB223FB9D881BDA048E658A0886DBC2 /* react-native-keyboard-input-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-input-prefix.pch"; sourceTree = ""; }; - 4FFE75388EEE8D910347DAB00BFB827F /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; - 506859CED17C25CD4D15CC68573AC710 /* RNFirebaseAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAuth.m; sourceTree = ""; }; + 4EDA5B0B693EC04E2E1A909067E02BE0 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; + 4F0C01DFBB5346F4FE6D03839E067D94 /* NativeExpressComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeExpressComponent.h; sourceTree = ""; }; + 4F2E0C3D4F7F3E5B307FBEFD9725F1EF /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; + 4F47E31FF51A1B94473D5BF45014F06A /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; + 4FDDC07BDB2D69B8364DA6810AD90E5F /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; + 502D139D75DB561ABA2CA2FA7B4C8FEE /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; + 5059A540B10068188B439D59A4DE311A /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; 5076924655933D192AA6FCDD3500393D /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.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; }; 50A7F87FDF79F9678F851C843789F9A7 /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; - 50DFFAE8BD2E6DE0104D66EF05C40FE7 /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; - 50EB0A752B427486F24A0491E810EE59 /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; - 50FC66338483B11FEBFB342EC0BE5072 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; - 5125ADFD04847C63A5920859FD5FAAB2 /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; - 51568D362701B6B81C0139744164CA4D /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; - 517496BEF372A38C79DA1071A3A6DDD5 /* RNFirebaseAdMobInterstitial.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobInterstitial.m; sourceTree = ""; }; - 51E24A1E3414E653C968569C8F000692 /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; + 50DBDC3B06FB28E4840470D3EA068F97 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; + 50EDF2247D0E2B94B1E4D798890BFC72 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; + 50F0B6C3B6D69AD7902BDA15767E48CC /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; + 512147BD01A00A9A399A9F21DF93F432 /* AudioRecorderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AudioRecorderManager.m; path = ios/AudioRecorderManager.m; sourceTree = ""; }; + 514E0D016C1BE2F8E682DF87C7BB3240 /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; + 51602A8B0FF2DBD9D031FBEEBE346B11 /* 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; }; + 518B4BFAC8C86BA88D0C669147F14B2C /* RNFirebaseDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabaseReference.m; sourceTree = ""; }; + 51AC96BADB4666318F48A67EE9D1E934 /* libYoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYoga.a; path = libYoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 51BB6D545F8287FFECC34C9C10362B37 /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; 51EC25D6C6A162A67D36BEB029A41A95 /* FIRInstanceIDCheckinStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinStore.h; path = Firebase/InstanceID/FIRInstanceIDCheckinStore.h; sourceTree = ""; }; 51EF53A19386A399A55A782B560B7CB0 /* webp_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_dec.c; path = src/dec/webp_dec.c; sourceTree = ""; }; - 51F5AE97EBC08D9324A6F718CFC8C22C /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; - 51FB5172CB4BB836A939DA025689FF74 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; - 520578A5F116585B434402D0843DFE42 /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; + 5204A27C7572AECD142E1A0DE5595F9A /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; + 5208F48E163A362731821F358702E567 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; + 52097CBB2533B170B1D68EFC658DEEFE /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; 520BD2BFDF3E2EAC4DCCF3B609AB1ECC /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = Firebase/Core/Private/FIRComponent.h; sourceTree = ""; }; - 524690C6149DF048A91A107B8A1E2891 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; - 524D7B4F89D6A468AB8F84089F026E1F /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; 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; }; - 526D73D1C26AD170D94A15BE249533F2 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; - 5276D62636EBCD436F969A4BC46EA48C /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; - 52D049E2B11A707CB567C478AF370F11 /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; + 523700F193E295798F5EC922B95231DC /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; + 5244DFCF5A940640FC0A13601331116B /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; + 5280BB5B3FE17AD8B5CF1928ACA583F6 /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; + 5284303ED4B1250943EE4429B2E83C86 /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; + 528773AFBCEA42047EB6F0E82F212864 /* EXAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppLoaderProvider.m; path = EXAppLoaderProvider/EXAppLoaderProvider.m; sourceTree = ""; }; + 52CBD8A933AC48227993F3E6E086E2D9 /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; + 52E1132DF7C00A30BF68B69D98F050CC /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; + 52EB945050F8273FCC2AA02B3FF3D450 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; + 52F5CC037E0AA5117AD5590A3986C8AE /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = ""; }; 5301CA37CA62E448D5058C24D6839E4A /* backward_references_cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_cost_enc.c; path = src/enc/backward_references_cost_enc.c; sourceTree = ""; }; - 53169D4B4366A591F0286F4BF5AA334A /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; 5326072DE8CDCC4347853332BC707607 /* GDTLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTLifecycle.m; path = GoogleDataTransport/GDTLibrary/GDTLifecycle.m; sourceTree = ""; }; - 53631A21AA7DE7C3CB9F063A6499C3F1 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; - 53637AACE7B69880126FF29ED486EBC4 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; - 537BCF82C764E02CEEA8BACB4A571B39 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; - 5386540EC5258D7E7F849C9E8E1DAAFC /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; + 534D7E0FB2F0EFD8D7A082573E2E647D /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; + 535112F33FC1AAD3056ACC632C03B0A6 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; + 537635F4708B126906D062515A1BE3A1 /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; + 538E1380F02205A6F58F796C494CF55D /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; + 53CBDB3E54E4634C4C8AA572F23DEA95 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; + 53CCF119E6E87F4352F1C3330BC95C59 /* BannerComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BannerComponent.h; sourceTree = ""; }; + 53D69DCFC390F696D399C4B414606A91 /* RNFirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseMessaging.h; sourceTree = ""; }; 53F0AB7F33A2D3E8953623BA09BD091D /* FIRInstanceIDTokenInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenInfo.h; path = Firebase/InstanceID/FIRInstanceIDTokenInfo.h; sourceTree = ""; }; - 545145E75CC7F87054F8129F9D6AA8EE /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; - 546B69D5A5BC0C979B0F87F1EFA9F63F /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; + 541665DE9513D4D514E370DAAF58ECC0 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; + 54419E0AFE78B1C1E3F0E33F8DCCB0D4 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; + 548EB0ABCA789B0DE2235B7CFE4C86CB /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; 54A0E591B6628275C03D2CCD8991BFED /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = Firebase/Core/Public/FirebaseCore.h; sourceTree = ""; }; - 54A1458A360C37A48571E2FD0299910F /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; - 54A46897422039769E26E67F5A71BDEA /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; - 54C982C90AF5EFE8A833693625838E0A /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = ""; }; - 54E082E90CAF371FF97974E78DB15502 /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; + 54A593EA50F7A021692CC53552CF29AB /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; 54E8D3E5278A83053F6DE13F1F6FAEBC /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; - 551161D0CA7AB2BDF2AE469AFB69F33E /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 5516973A0EC1C04480B65F7E92BC41F6 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; - 5528E6A2F3ACD862E83084EB2126D020 /* RNFirebaseAdMobRewardedVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobRewardedVideo.m; sourceTree = ""; }; - 554416244A08CCECBC8C85B538B91F55 /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; - 5556863B6CBE1867B6B4E36DDB0B841A /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; - 5569BDCA2E37EEDFE27DECBA17377386 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; + 5530D2A085E6E2236FD3D98780EBA47B /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; + 5553B7B08BF84D52C10343090077F8C9 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; + 555B4366F2A241A2A3387D5C99717498 /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; + 5566964AFCE43B80771F95B85FA4C68C /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; + 55719E74D72294EE0D554332A69D065B /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; 55777AADCAB36748790FAED06062D2F0 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = Firebase/Core/FIRAnalyticsConfiguration.m; sourceTree = ""; }; - 558F3D67B18067D15E32C8088539027A /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; - 55B8D0791E36572BFC240003E1474397 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; - 55D89B433C776C791AB49FF99A50B87B /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; + 55D743C038051CB87EE180BC8E60B8E8 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; 55EFBC31BDC682BDE52319F571FC8B49 /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; - 561D5A5555B1FEF4E603AA0DB67A0CA9 /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; - 5654D160A809BFDF0F9892CB56D901CE /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + 55FEA42274B43F7959F933B6E7D0768C /* EXCameraPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraPermissionRequester.h; path = EXPermissions/EXCameraPermissionRequester.h; sourceTree = ""; }; + 564EB237CE936A1ADC69025192568E74 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; + 56505B21ABD3B3E95EB5A96E9FBC65C9 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; + 56669636ECF6C60B7CFB58F98AD71D66 /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; 5666FEC476C5C8C126B29D8F691C31AB /* rescaler_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_neon.c; path = src/dsp/rescaler_neon.c; sourceTree = ""; }; - 568323E31B4DC8CE5019B9C73AD200D2 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; - 56D35F0536D35E7A3FDD8DB7502F98AF /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; + 566AD3507F551CF6CC8AE84B4EBFD196 /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; + 56C81757F4727E41BA011562A6C6E56A /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; + 56CB55815CDD2D9C3A5E0E2D4B73E037 /* RCTConvert+UIBackgroundFetchResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+UIBackgroundFetchResult.h"; sourceTree = ""; }; 56D5545D816557E486B76508E8813003 /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Private/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; + 56F18861E692F6A345A9D6CE9475B5C0 /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; 5704BABAC31F1A4B03A97215E0566CDF /* huffman_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_utils.c; path = src/utils/huffman_utils.c; sourceTree = ""; }; - 5715F97119EF9358F9BEAB803F36F9E1 /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; - 572093FC9BC0E35B3E1CC421E7805037 /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; - 57253803800CB211417297335CCD0419 /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; - 57503E4B94E8B26EEFA730102E290966 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; + 570C0007299E9E1EA2C8D258775A0AFE /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; + 5717E626E8E008514CB4C16907E75FBB /* RNAudio-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNAudio-prefix.pch"; sourceTree = ""; }; + 573C44DE67D54268AB03CF5F639F152C /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; 5757EA420E39BF342F4C1CE3E3F92003 /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; 576722CD2AE567DB24DD7AAFD2E8E596 /* FIRInstanceIDTokenOperation+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceIDTokenOperation+Private.h"; path = "Firebase/InstanceID/FIRInstanceIDTokenOperation+Private.h"; sourceTree = ""; }; - 57800479DF81CC4341AF8C74CAA41B87 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; - 5788C8695681651644ECEC0D51664E97 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; - 578BA57E573FD4A55295FA5E25CC58DD /* libBugsnagReactNative.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libBugsnagReactNative.a; path = libBugsnagReactNative.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 57AA80394B12EA09B73F02C901B209C9 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; - 57B0A8531F71C28BCCC339BA5F7F1274 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 580465200257C884071DF12A9217E91A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 581EBFF895B7F91F26D6A77D0822785A /* EXSystemBrightnessRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXSystemBrightnessRequester.h; path = EXPermissions/EXSystemBrightnessRequester.h; sourceTree = ""; }; + 5767849105DF5DF08A153E973779C2F7 /* libQBImagePickerController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libQBImagePickerController.a; path = libQBImagePickerController.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 5779614F1165F296705D5FD393E39B60 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; + 5790CED5B5C3ABB8747E23A56375F84F /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; + 57ADC6FB12218BC5F731E66581C6A9F0 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; + 5803F4041283462B899282457DE9535F /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; + 58076B1CBB4B83F6FC127CB8A4EF4CF4 /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; + 580BC6FD478957654C4352DA4270E025 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; + 581AA7F4B16067D071241054CB86FA75 /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = ""; }; + 5843D5D3667FB0238E3EAE2D7449E82E /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; 5854841CAB4CD463DE3F4F1DFBE088B8 /* Pods-ShareRocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ShareRocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; 585D998B4AFBFCCC1B052DF5DEAC44FF /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; - 588F369317ECF1964C0CFCE956709B2C /* 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; }; - 589C954C35817DBE715C6D291EB31948 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; - 58A97F9A18E11DE5F68B80C997206812 /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; - 58AB84DD227C477EB8A881EA6A119BB8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 58A2541978A1B839254E0ACB3701F3FA /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; + 58CFBB54CF6999643E129EA34CBB47AC /* BridgeJSCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BridgeJSCallInvoker.cpp; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.cpp; sourceTree = ""; }; 58F01E0DA9B45DED9D4F770B19A26A32 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; - 5903B33A3AF28AB28A797A95DED2BF7F /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; + 58FFE1B9B4806FB71C38CBBC6739CF31 /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; + 590AA17A070B587502226ADCCCE7B101 /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; + 5915A0EB82E56482E0488E47E312FCBB /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; 5919331AD8EB2FF4A5D182C439088392 /* filters_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_sse2.c; path = src/dsp/filters_sse2.c; sourceTree = ""; }; - 59211F6BDE83CD47BDC7A101632B218E /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageViewManager.m; sourceTree = ""; }; - 5946F82A8BBC25FEA190FDC93656ECC1 /* react-native-jitsi-meet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.xcconfig"; sourceTree = ""; }; + 595D13ED373FA716AADBEC9D7FB0B688 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 5979A6DCA021FC4DB90375F8BEAE9D2A /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; 59BF1BFAFF7BD1B8B372FC1E31A781FB /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = Firebase/Core/Public/FIROptions.h; sourceTree = ""; }; 59C46475F8DC2FF79F16B0C5AD2F49D5 /* random_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = random_utils.c; path = src/utils/random_utils.c; sourceTree = ""; }; - 59C6272923411E4BE89A82E5040D98FC /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; 59C9B544BB234F46215C3B5CD6D35C0E /* alphai_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alphai_dec.h; path = src/dec/alphai_dec.h; sourceTree = ""; }; - 59DA515EE96F2A4DA4C0540FFE15C202 /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; - 59FED6E9132BB6475FEED44436FB6735 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 5A104C0DAFA12BF428B64E6F4163D775 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 5A4F408BE58736D8D222BAEC35D49649 /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; - 5A6A7E7A0C9DE85679B7A792CD356E79 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; + 59F604DFA78880738E3AA81560E5CA53 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; + 5A1314D1DC895111A69435BB4CBD9E5B /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; + 5A24236E658EEA9359CEE578A05ABCC5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 5A54E8710802BFE7EB7AD8BD1B5E1104 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 5A7DDBB14A033959C0F800DF5E0E006B /* alpha_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_enc.c; path = src/enc/alpha_enc.c; sourceTree = ""; }; - 5A7E8556F46D9086773FC65E65945D02 /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 5AA1B288D30B68B1C154F01667BDFECE /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; - 5AE46C4D8BE44CFD170DB603316B972B /* libSDWebImageWebPCoder.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImageWebPCoder.a; path = libSDWebImageWebPCoder.a; sourceTree = BUILT_PRODUCTS_DIR; }; 5AED658B9BBE1DA1AD0B2B7A7E2D5BA2 /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; 5B0F39B93057CE24A18A54F67CDAF722 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; - 5B21EC36F06A84517421137EFA200EFB /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; - 5B3B0C5C702B82139A82E06DDF038422 /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; 5B3BC69DB1E1F0AE4CDA5D9513932AE8 /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; 5B504985165E0E100AACC1C8170B53D9 /* FIRInstanceIDURLQueryItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDURLQueryItem.h; path = Firebase/InstanceID/FIRInstanceIDURLQueryItem.h; sourceTree = ""; }; - 5B8A74C2F27E73CCF0884BF48A7C358B /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; - 5BA8583A3574AD249C5FD90D7D769E62 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; + 5B67A2E90035830F4704E9B2100EFBD8 /* EXLocationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocationRequester.m; path = EXPermissions/EXLocationRequester.m; sourceTree = ""; }; + 5B85A285352C374D520086FDCF7B0F8C /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; + 5BB6875849373E94B58E7EEE3A2B059C /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; + 5BBAA0EE9770537A594E3A5E9A121C80 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 5BD026613F6C368C6DDE23BF30525814 /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; - 5BE0B46BDE7B2B716210F16FE77CB5FC /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; - 5BE5ADA48556BAE6A528B69D5DA29258 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; - 5C09DE05756B527F34066B000593BE8D /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; - 5C3F9FA7BE625120926C489171F50CD0 /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; - 5CB2EFDE4F32232132E630716E718B0A /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; - 5D059AA26239CC92CEC17FC007519E15 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; - 5D287B82B0D4D075643FD1CD58D0BA8A /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; + 5C1E4A406BD935C2DA57253C04A20DC4 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; + 5C3F1D97844E88437D05D57D6CD71824 /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; + 5C6355702DBCA100421558425DCD6D8B /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = ""; }; + 5CF3EC69826025014E5DEAD9152E01A0 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; 5D308F92D63F5310C32C3FA527FC5D30 /* FIRInstanceIDURLQueryItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDURLQueryItem.m; path = Firebase/InstanceID/FIRInstanceIDURLQueryItem.m; sourceTree = ""; }; - 5D3EBE18666C5144A0EE55684B19F3F6 /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; - 5D8A124ABFB84572CBDF43F939BE7E61 /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; + 5D45C6ADB8D3846C42DC09C2AEA8357D /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; + 5D7C64A9E80DF537ABA85966CF90017B /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; 5DC84424F7C7384C711B6162C8CA2ED3 /* GDTReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTReachability.m; path = GoogleDataTransport/GDTLibrary/GDTReachability.m; sourceTree = ""; }; 5DD388E5DE9378827564BFDA3922FD5C /* lossless_enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse2.c; path = src/dsp/lossless_enc_sse2.c; sourceTree = ""; }; - 5DE3EB62C8C2BB26535E979EB5208D1E /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; - 5E0391B0F3D71D64CF68DB134DBA70F7 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; + 5E07BF8060268F6B80602BEEB58F34AE /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; 5E11ED6DD9DFBEB329CE7C94D5C2CE7C /* RSKImageCropper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RSKImageCropper-dummy.m"; sourceTree = ""; }; - 5E625706D264318EE4B3D85897654253 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; - 5E7ED6B57037EB52B49820D4A514E644 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; + 5E89467B79F5AEA684CCD03E2E26E8CD /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; 5EB17217088DD37350938B661FC2266F /* quant_levels_dec_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_dec_utils.c; path = src/utils/quant_levels_dec_utils.c; sourceTree = ""; }; - 5EB4AA2B872DEE23920B4D97A73528B3 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; + 5EB4B1B4A9B45B1CE1D2C9A894199455 /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; 5EC56145CCB711911DA3B5DF3880C2DE /* yuv_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse41.c; path = src/dsp/yuv_sse41.c; sourceTree = ""; }; 5ECF981BBE8D0EF0D17304F6D1925DF0 /* huffman_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_utils.h; path = src/utils/huffman_utils.h; sourceTree = ""; }; + 5EDE5499A2030945932C276366A4F22D /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; 5EDED53243248196546C86782F7406B2 /* Answers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Answers.h; path = iOS/Crashlytics.framework/Headers/Answers.h; sourceTree = ""; }; - 5F1CB8C264374D0EB1FE93936D93E179 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; - 5F4870412EFD472EE8964494A24A22A4 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; - 5F5B77C064B8778CAB3C2D3942D31337 /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; - 5F5CB905660A84A9EDD11E2300CB1E40 /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTGIFImageDecoder.m; sourceTree = ""; }; - 5F86DAA21566953F371995177BF826DC /* libRNFastImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFastImage.a; path = libRNFastImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 5F9D125D122E0C9558F71F9175DD5D28 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; - 5FA1B97082959A71FC1CDC378E1EF54A /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; - 5FE8250F7846FF8F8518BCA5D983CEC9 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; - 5FEB57653B2E587681925D19E36B603F /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; + 5EE21B14A271019C8E9B98428993A404 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; + 5F22E75E01B9F9D96BEF96A42085CB21 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 5F837651F5D08E18CB65FEA245D52D31 /* UIView+FindUIViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+FindUIViewController.m"; path = "ios/Video/UIView+FindUIViewController.m"; sourceTree = ""; }; + 5FBF7783362F2FAABF6B7F8AD2FAFD62 /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; + 5FC66961EA27E6026AA4E22CBDE039D0 /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; 5FEF4CD89A0D3A38ABDB59E2DA0A6050 /* GDTTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTTransport_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTTransport_Private.h; sourceTree = ""; }; - 608833E6861B4E4F8275CC22B3FB5F81 /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; - 60BAB8900EAF8747BAE604479CCA6F1C /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; + 60307B4AFB07C7D8EE7B8A6C85039606 /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; + 605635D6DB4B1BDBFEF5762CF7A64D54 /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; + 607049354624AEE8FCDC45ADA3B250E3 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = ios/RNCWKProcessPoolManager.m; sourceTree = ""; }; + 60A29590279765D116F9A5A784729A4D /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; + 60BC42A9111822AFEAABCC60C8796759 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; 60C5C0D606ED67278A6E886F85F26294 /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = Firebase/Core/Public/FIRApp.h; sourceTree = ""; }; - 60EEF2C7C62A445988B325B0912042FE /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; + 60C743CD5F6E78B0DFEAF3C1C92EF55E /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; 61080DC39F2EA410E9C6C0EE6B8BF540 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; 6109B9D8AD14CDB313D56E43185E21F9 /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = Firebase/Core/Private/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - 612237747AF33E12E29F29C686F0EF1D /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; + 6131DCBD0941A1053295C68236B7F087 /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; 614EE224B841DAED3A4E58F0593361FE /* predictor_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = predictor_enc.c; path = src/enc/predictor_enc.c; sourceTree = ""; }; - 6169139BECDBAD5C231CA4500A251CB1 /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; + 6156004C6392EA98C2A26FF9DA3CD6C5 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; 618ADB85BC1D3C280EDFF3F4C77496B3 /* FIRInstanceIDStringEncoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDStringEncoding.m; path = Firebase/InstanceID/FIRInstanceIDStringEncoding.m; sourceTree = ""; }; + 6194FD1CEA962047434F7CD0840F0B3F /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; 619582124D825EFD58499AE14122B7BA /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Private/GULSwizzler.h; sourceTree = ""; }; - 61AA63660E6916B04FDE912FA8A5B429 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; - 61B1B2524F66E2689235387020F56724 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; - 61C26C33269AE6F46FEB6103DFBA781F /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; + 61976DA468A2E5DB64CD0A3450FBEE31 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; + 61AA363888A6630CBFBBB0BFB0F9D7D4 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; 61DD778AA260EFB0DA87E2250F978CB6 /* FIRInstanceID_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceID_Private.h; path = Firebase/InstanceID/Private/FIRInstanceID_Private.h; sourceTree = ""; }; - 61F14494D2E24572CEDFEFE66EFF61CA /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; - 61F47A738145109F37BC5439CA43A250 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; - 61F76F2B12CA5ED98EC7DE96FD36B393 /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; - 6210EDE02A96E7ED3A46A4019479BD8F /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; - 623B59E59094EDB6125C09CF7DD3B0D0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 6249CB308C9D6E64F30262E644AF980B /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; - 6254A40C26AF0383611550FFE646BC03 /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; - 628181E1739F0336CE736D10C1D1DE9E /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSettingsManager.m; sourceTree = ""; }; - 62C301B2DF66A5F2B36EF82088C1F6B7 /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; - 62CEAF58CBA132903177BE4B6CD19787 /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; + 61FF33B74344249CC59D55F54F4D3652 /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; + 6207FF278A70770958D7291B4E8519D2 /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; + 621E16A73348549B7BE9353D22D6702D /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; + 6227D6DE69C1C5ADCE8E7EDA51391EC0 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; + 622F4B1F83CB4C45EE4282F4ED21DAD6 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; + 624EB0EC80205CE1C8038C4BD5935FD0 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; + 6262EB2DC13516A6F27E6AE25484ED7D /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; + 62823C0EE64253C9C2D22C7DC7268CF8 /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; + 629BBD764161A3DE7E9C7942F38EA4EE /* EXAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppLoaderInterface.h; sourceTree = ""; }; + 62ACAC5E7A06BE7F1B445F549B65DF73 /* libRNAudio.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNAudio.a; path = libRNAudio.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 62BDA27416F0DA8CF8FFA27D15F81424 /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; + 62E2FF06653AA04F58C3E3B1B8700E06 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; + 62EA1C1E10E897A9DBD203F76B2C0B6D /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + 6313539CA2D05F8AABEBB90D128EE17D /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6318E4099A584F4D43F9DAC3EE1F943B /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; + 635B30421D1D064749AABA2E40F9BF36 /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; + 638CCE0BC7029CD374CA72DED5D873D9 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; 639F86C0ED902A3A8D4354820CCE4C5F /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Private/GULNetworkMessageCode.h; sourceTree = ""; }; - 63B989D6201A9C53182E84B30A1A6339 /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; - 63F0D11A6DCF0D1983AA0B7E1338E5C4 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; + 63A12B83F95FB9BF03317F5F506861BF /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; + 63A9BE97ECA80E9C5D89BD55205F5CB9 /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; + 63CEF54D086C669043F6D5744672DBE9 /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; + 63E21425C37E960C1E29E2D3EF3300F4 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; 63F1A29AC7DA5F298C4A90EC9EB83C60 /* format_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_constants.h; path = src/webp/format_constants.h; sourceTree = ""; }; - 6415D47E5E5FB17066FCD67569076652 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; - 64225901D9BC184AE5F93A69092D299A /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; - 64420DD31B4A41A4A95DF1B1DA00A93E /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; - 649046F7FAAD5795A341A92920037616 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; - 64990AD3A57F040DC0043489B2F27B7A /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; - 64EABEC938C8AA96DE5E65F520038E76 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; - 6520D5F39B4FCC1EEE251141F081ED40 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; - 6534BAA3AB8D0B453F3B86BE5CAD4908 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; - 65409E739D1C700B86402E3851A8586F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 6588502A14DCCDF5A37D2A2DDFA3AE4E /* RNCSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaView.m; path = ios/SafeAreaView/RNCSafeAreaView.m; sourceTree = ""; }; - 6597EF9A31A7DF713E5E5B3E73B1FF05 /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; - 659A269762C07BCCCD06B381625F24C2 /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 64522F0752F5FF19C6EF78D53B7594D6 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; + 646BC1E0E6C82CE13BF3FC32B4E99B03 /* EXCameraPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraPermissionRequester.m; path = EXPermissions/EXCameraPermissionRequester.m; sourceTree = ""; }; + 64C97CACB57042717A809EDB0DF68C63 /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; + 64E6C4A8ABD387FEDF28A3365C932D51 /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; + 6501672F142BDD3D0892B1547EB5A495 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; + 650DB6B819DC30A7C6D51DFCAA3EB7F8 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; + 6517738E0F6018535C3900F4EB5D0228 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; + 654CD9BC492EBAE43E9EA12BDD165166 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; + 654E140137C15F968944867C04CC2522 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; 65BC96FA2845738773136791804903A1 /* dec_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse41.c; path = src/dsp/dec_sse41.c; sourceTree = ""; }; - 65C8151212F9D1D2BA11A3857AF8DB7B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 65D6BAECB13B97CC1CF3A596399BA248 /* liblibwebp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = liblibwebp.a; path = liblibwebp.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 65CBB5815C2C8E2699BCAD8FC3191639 /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; 65E0EBADB3266F14B8F9AA096F1C694C /* cost_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cost_enc.h; path = src/enc/cost_enc.h; sourceTree = ""; }; + 661F03944A7D3C41BEACEE82E89C53AD /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; + 6667C3035E82ECC130BEF6F3F8C575A9 /* 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; }; + 667562C93CE0E35859560D81A9D4C366 /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; + 66811F873C66A7948D2771AFCF65C980 /* RNFirebaseUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseUtil.h; path = RNFirebase/RNFirebaseUtil.h; sourceTree = ""; }; 6687C4365A4AD7F30B423DE9083B9ABF /* FIRInstanceIDTokenOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenOperation.h; sourceTree = ""; }; - 66EA181440FC595A2FC5D18B52C65B9A /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; + 66C291D4A674C6356B137CA62D173818 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; + 66D06BEE9895A2305CDB2C4ED3A1E97B /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; 66FAD49AB06A44C20B124AE7FB48ADD8 /* FIRInstanceIDCombinedHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCombinedHandler.h; path = Firebase/InstanceID/FIRInstanceIDCombinedHandler.h; sourceTree = ""; }; - 6704E04CB726E9EB832844B5491E00FB /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; - 67361392F0CC4167D473E425CF2608FC /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; - 673D46BD840DF16FDDB190F621BE76D7 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; - 675F7DBC39E6FB01A58FDD54F812019A /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; - 67990EEF473097800E970FF9A56943FC /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; + 670899587CDF9673DCCDFAD2A1E5407A /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; + 6759327F1828D6B0EB2AEB250153BEBB /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; + 675E5D49D53D73187019A27801C41869 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; + 67787BB26327FECAC3B79C20BA2A917E /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; 679DCDE0317186020EA1B2CB9E3C5319 /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; - 67B31535CD50D93E43613FCA0AAD0E71 /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; - 67CF8F37C4B72033AA6E2DE612F55F2C /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; + 67BD77AEC4CDF83989C9357B81F0DB81 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; 67D0F8DB39EE904B29BBE0B7C76166C3 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Private/GULMutableDictionary.h; sourceTree = ""; }; - 67F0BD21A792353FDE8EDD3064FDDDD6 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; - 68039FD9D0B1AEB7435763A7082221C2 /* BannerComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BannerComponent.h; sourceTree = ""; }; + 67E1C6993CD58D6C27C7696155B6B0A2 /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; 6810D3F090D3F566BDDB46637FC1BF36 /* FIRDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDiagnosticsData.h; path = Firebase/Core/Private/FIRDiagnosticsData.h; sourceTree = ""; }; 6825336D6AD10203C5BD9D6A22227590 /* GDTRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTRegistrar_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTRegistrar_Private.h; sourceTree = ""; }; - 68343C788E89DA448E407E7A946A020A /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; - 68370F336693D0F5941100A5A2B76984 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; - 683F7B0626624F23FAEF3328C288C85C /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; - 68414F480190A2CCC3F77FA8F625DBC6 /* RNFirebaseNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseNotifications.h; sourceTree = ""; }; - 685E1CFEA16F021B2FE0A1E5BA66A85B /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; + 68293502B264E8E1FD86B607C8D0D6ED /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; + 683059112877707E522BC088D2CF1657 /* RNFirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabase.h; sourceTree = ""; }; + 685F76DE22F8EBD774E3CB935D8B507E /* RNFirebaseAdMobBannerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobBannerManager.h; sourceTree = ""; }; 686BCB212BE0B5A111429F866D9C6411 /* random_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_utils.h; path = src/utils/random_utils.h; sourceTree = ""; }; 68791E815815FE6D2E8622B75D8197FE /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; - 689DE2E62C2A64BAF2D9EA01E6D8EA4B /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; + 688CA9964A0D2EB7CEC203851F00E7C3 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; 68BAFB9E39C43F2EEEFC0BE5F3B9F6B9 /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; 68C53D78F5C0E4A6985095AC54E666E7 /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; - 69299A2553489034C01AB719F2BC7E87 /* BannerComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BannerComponent.m; sourceTree = ""; }; + 68C80B33AE1B6879EB74CF8842CB14CE /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; + 68E28EC045760162DF91A5E765362213 /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; + 68F01B7C0C00084BBB6DFEC5FF1F3D1B /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; + 691CBA7AE1D192756DFB1300FC78BB72 /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; 69430BB7ABF514D7AF976308D4C4280C /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; 694F7D3AE7294FE7C0CB4A0BB574213D /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Private/GULNetworkConstants.h; sourceTree = ""; }; 6953E0D0C66FF0C141348A0A0DF4D67A /* Fabric.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Fabric.xcconfig; sourceTree = ""; }; 697914FE8988F30092D9412B40462E07 /* GDTEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTEvent.h; path = GoogleDataTransport/GDTLibrary/Public/GDTEvent.h; sourceTree = ""; }; 69812BC4C62D9842A1B2B369C701EE07 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = Firebase/Core/Private/FIRComponentContainer.h; sourceTree = ""; }; - 6998C004A025E96CBF652588574B1BFB /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; - 69A8EB204DA42F54E697DAD17D3E757C /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; - 69B5B379DABF557413A9AB24CFE67860 /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; - 69C063FB557367E499E02F74DF220F34 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; - 69FD62B43890C1488F1CCC8BDB6A0331 /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; + 699BB416915EB4AE3895CE56D70ED1AC /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; + 69C07DFADC33ADB0F48C471F4D398D37 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; + 69EA2982D27D95080CAD783E0DC509E6 /* RNCUIWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebView.h; path = ios/RNCUIWebView.h; sourceTree = ""; }; + 6A2D3908B9858F2CCF886405E3FF5E1F /* RNFirebaseAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAnalytics.h; sourceTree = ""; }; + 6A329B8D6B5AC096B1CF8F3EAB76D814 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; + 6A32AE1FB919DCA6398458A35DEBF369 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; 6A365A488B320F4811CB15565335096B /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; - 6A5C4B567C8EA3495097F9A24613F6FF /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; - 6A6AE536523343218452C303A428CE25 /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = ""; }; - 6A930245709E661D2CDD24B81677B480 /* RNFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebase.m; path = RNFirebase/RNFirebase.m; sourceTree = ""; }; - 6ACEC37385065D7204FBBF2FA7301D38 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; + 6A4EE097A0C337F137E5092EEFD7EB51 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; + 6A5D8BAC63D29824374C381C0A96C727 /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; + 6A873229028D1DCC282AA0FA849579CA /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; + 6A95733BC6CAA935AAFFEAA102274897 /* 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; }; 6AD89A1C3DBBC4280EFD32224E52CFF4 /* Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Folly-prefix.pch"; sourceTree = ""; }; - 6AE604056FD8783FB9392D3D28296B1D /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; - 6B10B3067584B8DE82EFD03A553B952C /* RCTConvert+UIBackgroundFetchResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+UIBackgroundFetchResult.h"; sourceTree = ""; }; - 6B2761FB0E93085DA33560A83C598CE8 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; - 6B72BBBD460676E45ED8FD674F815B8F /* libRNReanimated.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNReanimated.a; path = libRNReanimated.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6B6AB3485E97258DA51BC6AC13968E3D /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; + 6B715AADBE26668243592D882F5FD78C /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 6B774D63B4F6E5F7EC56C9CCDD17B8E6 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; + 6B7793B4F35FA95A3ABCB95271121067 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; 6B981FCD55F6C462368D3B10E2A0858F /* FIRInstanceIDDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDDefines.h; path = Firebase/InstanceID/FIRInstanceIDDefines.h; sourceTree = ""; }; - 6B9DEAD710C3522076B3E41FE1CD15F2 /* EXRemoteNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemoteNotificationRequester.h; path = EXPermissions/EXRemoteNotificationRequester.h; sourceTree = ""; }; - 6BD3113B8C20E70AF080D54D141380AF /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; - 6BE1942CF4FEF0EEA46ABD2079E5F6FA /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; - 6C319FD812618932C7E0D99F364D9D14 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; - 6C3932DDFF94712420C93082E6DF30EF /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; - 6C559DE1AA120AD0DCD2A8A8E0B8822F /* RNCWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebViewManager.h; path = ios/RNCWKWebViewManager.h; sourceTree = ""; }; - 6C5DB5852C6DBBFDD90861989FCF5E7A /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; - 6C6BF8DEAE5F41DF41EDFDEEBB7C56C2 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; - 6C8671A0DC50529C47D3FFB143FF3AFE /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6C07C15B7F0C2D6C1ACE5FFD4AF40A5B /* RNFirebase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFirebase-dummy.m"; sourceTree = ""; }; + 6C20BAEA9855B28809BD0DC67FFBCFA4 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; + 6C33E60E4947C96317C4255B8D508168 /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; + 6C5F2693223E3FE7E2AC98ABBF24DF2B /* 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; }; 6CB18EB7E4432BFEA63A9D306E03CEAF /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Private/GULReachabilityChecker.h; sourceTree = ""; }; - 6CF34DD4E1C82E28AAD3C1E0E36F046D /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6D0E1CCA8BB77C6B9E659C803537115C /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; - 6DEA9914C54EB495C743EE6B7123C5FC /* libEXAV.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAV.a; path = libEXAV.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6DFB945AB1F5ACE153825C3C27E609B5 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; - 6E05E07DB306A19A19C8EC64818DC828 /* libSDWebImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImage.a; path = libSDWebImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6E09133F69B207B7ED5F79BF8F9E0913 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; - 6E1FC64DBD40A75618ECCEF5B4A53B54 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; - 6E2E19D13B3B7244CD0569D5CF87118F /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; - 6E446FE2AACF3592638FF62AD6690901 /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; - 6E45909F5C1E58DA49BB0DE38600D556 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; - 6E46C842C2CCD6A4293D72E70864BCA7 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; - 6E4A736C487BEBF33F1347F324B474E9 /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; - 6E719086B586CDE0755B188BD6779394 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; - 6E7E7CF1B0AD8D1B8EAB8BEE8E681C40 /* RNAudio.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNAudio.xcconfig; sourceTree = ""; }; - 6E84A2B5CBF4936A0B8979077C0CFFF4 /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; - 6EA436B94C51F83AD10E5B728C1A50DC /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; - 6EA4B3EEA28EB324134F5FE931B43522 /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; + 6CD0229375DE1D2D8DEA21B80ECA6388 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; + 6D415352E3499FA04B015C1827EB89DF /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; + 6D4612EC95007C01427A34C2518E174B /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; + 6D52E3D6629D7DCDF7C2E633BDDFB3CA /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; + 6D666C4436EF461909F1FA890E75B227 /* RCTVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewControllerDelegate.h; path = ios/Video/RCTVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; + 6D8E9C2ED083EC43BBDEA2F6E817A463 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; + 6D94FBC1079F7E257483B299E7C8C892 /* RNFirebaseDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabase.m; sourceTree = ""; }; + 6DD79C048F2F9C16126AC0E71B625506 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; + 6E77E134D22C67293A6E91F68E12908E /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; + 6E85BF10F7547DE92410EA03C468AFA8 /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; + 6E9D69B7D050FED48575C2FDAB456FC0 /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; + 6E9EC060AED3BF6D73D4CAE2EA0E4653 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; 6EA819122B8F26A2B33A282E42FDB70B /* enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc.c; path = src/dsp/enc.c; sourceTree = ""; }; - 6EA871D60B58303220351B196981986B /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; 6EB0D3E0EBAD4857DC375821F6C639B7 /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = Firebase/Core/FIRComponentType.m; sourceTree = ""; }; 6ECEF1925EAEB2CBA95247490A09FA6A /* FirebaseInstanceID-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstanceID-dummy.m"; sourceTree = ""; }; - 6EDC726C9B8A3F9099BDC1C62A1D9334 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; - 6EEC77A7FD0F5A87EE3BBE7B3CE0A543 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; - 6EEFE603F9091830102EAD978B0A9EDE /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; + 6EE294603FDA5FE8E479D40E580BFCD5 /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; + 6EE49F2E42B57ABFF7A9DC176D440F76 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; 6EF817AE61E87869DECD2007DCE20018 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; - 6F033B27EB27123B6CCC7A7C7DE01E96 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; - 6F2500AEED7F5B9F3DE2400DC92BF592 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; - 6F529AC9C377C59FCF42F947791B492E /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = ""; }; - 6F799420D931BF01E22BC2B37A32CB07 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + 6F067734D13880C265E549D01BE5C90B /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; + 6F33DCE3027BC6BC8AC0D769DA5F846D /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; + 6F36D6D016BD397C4302C86665A64170 /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; + 6F6FF11949142094AFB32F29FFAFCF03 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 6F8051770408493416D6F46068E61D36 /* upsampling_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse2.c; path = src/dsp/upsampling_sse2.c; sourceTree = ""; }; - 6F8DE0EB9FAB472116E359796DF26409 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; - 6FEB1C239B3B874EAB1FDFAF2AA954C6 /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNGestureHandler.a; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6F852CEDE307141D58790A6953B2FECB /* EXRemindersRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemindersRequester.h; path = EXPermissions/EXRemindersRequester.h; sourceTree = ""; }; + 6FE5F5E7D3A709FEE7272B876262C3FA /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; + 7005E4DA7F55B511559E8246168FE76A /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; 70060452D67BD5EB97DD07492D5C0009 /* filters_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_neon.c; path = src/dsp/filters_neon.c; sourceTree = ""; }; - 702E41E9C86930621F0D95ED8DE3A2EF /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; - 70301BB6EB1394A3690D2E7E05EAD20A /* RNFirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseMessaging.h; sourceTree = ""; }; - 704C0EF5CF8F036B06D71B8404F082B4 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; - 70516431F0EA0B5A48391BB400242461 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.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; }; + 70308215C1175325A3EBB9B449C9828C /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; 707423AFCBDC0B47C1E6ACB5C2DFD98C /* vp8i_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_dec.h; path = src/dec/vp8i_dec.h; sourceTree = ""; }; 707555184D304EC85645A35CF7314FA3 /* GDTUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTUploadCoordinator.m; path = GoogleDataTransport/GDTLibrary/GDTUploadCoordinator.m; sourceTree = ""; }; - 709637C0A06FBBA95BC900A5496139BE /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; - 70AD8BF98FA5C5F329C2F6FE663514D5 /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = ""; }; + 709BFF4EAF2CDF772CFC20DDC685AB63 /* libReact-Core.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-Core.a"; path = "libReact-Core.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 70B9F2D6E6E268BD7EAFB3C8CB4365D1 /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; 70CC6D385F847CB566E86D0FB0277B36 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; - 70E0E6A82E05308737F98EC583DED5A4 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; - 70E33AB9563FBAD2433281005D1DAB6E /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 70F6042289E94BD0FBC6386B894E1564 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; + 7109CEA655580ED91B75F927D0F3982E /* libFirebaseInstanceID.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstanceID.a; path = libFirebaseInstanceID.a; sourceTree = BUILT_PRODUCTS_DIR; }; 712548F92EBC20A12D4C2D0D6D76BF4E /* RSKImageCropperStrings.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = RSKImageCropperStrings.bundle; path = RSKImageCropper/RSKImageCropperStrings.bundle; sourceTree = ""; }; - 71571D4590C4ED3F2C600D66264D03E4 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; - 71646FA54589C424BE94B79C0BEFDCC2 /* RNFirebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFirebase.xcconfig; sourceTree = ""; }; + 71515DD6775D4126C0A7D4B06909FDED /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; + 71541F399B2685CEB9C5D006A9B20DE7 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; 717BA94CCF48448A9C6B6C053DD5682A /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; - 717EAE690E17417ACDE59E0F29B45D6D /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; - 71C495265665A385D4EFE17A320EFB82 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; - 71E6C930EB56FE5AAC7EDC2DC1A9450C /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; - 7206D69E698E689460E8C5A477C1CB6B /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; - 72200B1658FE8CF05230B9E6A9695C27 /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 72282327F95F8822756EDF024E482C3A /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; + 718030F226E89CC6787EFA1EEAAB6B33 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; + 71906CFCF94F1E983897EA95BC9AF648 /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = ""; }; + 72173F0326F3F2CF6249B84E3909FFF8 /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; + 72260382C11F2957645F698766C838C2 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; 7237D29A086F97FCF1812CA76E6A005B /* filters_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_msa.c; path = src/dsp/filters_msa.c; sourceTree = ""; }; - 727D71946298C0D81E3E63197B42D07D /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; - 727E407A3322087D134F715297692411 /* EXContactsRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXContactsRequester.h; path = EXPermissions/EXContactsRequester.h; sourceTree = ""; }; - 730716A2707FA86CBF72EB1D19C6920E /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; + 723EF007185A97D35DC8BD4F52C1F87F /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; + 7261F4174CD03563769037064F258351 /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; + 72EBE5488967F0F01EF6647918780E5D /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; 73080467AF2B68971A5486C79946626B /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.h; sourceTree = ""; }; + 730986CBED7A03B02DAAD3CB7CBFFB05 /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; 731770A748AEAEC1DE4DC296EE81C262 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = QBImagePicker/es.lproj; sourceTree = ""; }; 733430E897231501B7AC1A5824D74C21 /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; 733E09C1AB500D3C978991AD3B73AD68 /* anim_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_decode.c; path = src/demux/anim_decode.c; sourceTree = ""; }; - 737B3C595CA63B535BC4EB3165BAD4B5 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; + 733FEDD8017B2DDE7BCA6BBDF2D8B241 /* UIView+FindUIViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+FindUIViewController.h"; path = "ios/Video/UIView+FindUIViewController.h"; sourceTree = ""; }; + 734C761D4996E224062F7055DCD5AFE0 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; + 7384F92614915774FE7D143644A6AAC9 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; + 7393CF7A333E2F3F4502DDA8465306CC /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; 739E0508F5A2D5CD2A1CFCF34938CF78 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; - 739F27F9A95BB7B105543AB18FD7C4C2 /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; + 73BE4E2BD8191FF1A806D5002828337D /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; + 73D2E9B4F61167441A36D7C78C495831 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; 73D8BF6F101EF44148652F03AAACE03D /* FIRInstanceIDKeyPairUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeyPairUtilities.m; path = Firebase/InstanceID/FIRInstanceIDKeyPairUtilities.m; sourceTree = ""; }; - 73D906826174E00E73212B5936EE0CA2 /* RNFirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseCrashlytics.h; sourceTree = ""; }; - 73ED565837EECFE6EBB94B19BC12A6BF /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; - 741B5CC254878F89BB3DFAB9E49B4C07 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; - 742A92EE848D74948FA6B9485B1C5403 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; - 742AD48E6C5612CF0796FEAC2E2629CE /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; - 744A8E9E8392FEC342780386C7F654ED /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; - 745027EDA644231242815F2669A3EB26 /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; + 73EE8E27AD9A38B22238BD2AE9CF4AD9 /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; + 740AFC452E3C0DA7FE00D399D41B3C8C /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; + 741A2BD2AD319967AC58422919B1D19C /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; 7470E8F6FFFF70707D4DF7A7B03C5E33 /* GDTTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTTransformer.h; path = GoogleDataTransport/GDTLibrary/Private/GDTTransformer.h; sourceTree = ""; }; 7475466DD3CCCE81279999095390ABFA /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; 747CAA38A4149C7741B7E1AD452C5C63 /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; 748E68FF8F0584C3062AE3DBE77FFA1E /* Pods-ShareRocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ShareRocketChatRN-dummy.m"; sourceTree = ""; }; + 74ABABBA392724CE895FBCE6CBFC9966 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; 74D2F161988458D19412B60282B754FB /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = src/webp/decode.h; sourceTree = ""; }; 74D4650E4F3520024D7273E68F8EA369 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; - 74D69112E4D6401A96119500674C49D6 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; - 74ECC7932DE9C106D17C9EFFD7124001 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7529CCA7472FB72A593D6657998C2972 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; 753222B99C242663283588B2503502CE /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; - 7536D6C08D2EB2368F239F339E094B48 /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; - 757934FE95DADAA21806311FF273FF0E /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; - 75ADFC2BC5A34B409A399640907E2229 /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; 75CAA2DCEDC2FA87231E1A6876ADE9DE /* FIRInstanceIDAuthService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAuthService.h; path = Firebase/InstanceID/FIRInstanceIDAuthService.h; sourceTree = ""; }; - 75FF54E5B0DC14BA16D8322F7B9C21CE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 7629B9BD7F572EAB472B8A8FE27CDAEB /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; - 762D3E835B02D4B020A9DB1C12E37615 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; - 763804BFF9B43FAC3F6E0962685F2230 /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; - 76B1A4CCF35779C9E2ACC3E5D807D236 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; - 76EDC43AE837446CA118C6F033D1446C /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; + 75F263017750569A21246A8B421C3DE4 /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; + 76575E3B79BFD3AEA8E0A0C627421865 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; + 76657910171C675682A5C4E4F4BDBEFD /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; + 76A738794D31D885B111B85A18CA1CF8 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; + 7705E0CFEE2AB3EE339F6CC6E4E18281 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; 77134938C96318C3C12BE76FAF9D228F /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = Firebase/Core/Private/FIRAnalyticsConfiguration.h; sourceTree = ""; }; - 771486F1326B18E61A4C88B609EC7B9C /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; - 772388BC62373501BCBD91AE57706DFE /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; - 774D3BC7734E6A2EAAA21E4B11D5A811 /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 7767AAE46DE9FC6C676FFAEF7734AF52 /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "QBImagePickerController-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; - 7784FF227D491030A468168FD275B896 /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; - 77D3515313915883A91B4D382D37D81D /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 77F9B01447E5C7DA50457BBFF08D392E /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; - 77FA0CB1441C59B7A21C7AD303488977 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; - 7801A4930819C7EB29EE5304B3862021 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; - 78404CE996B5D2B6621B283AFDF50EA4 /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = ""; }; - 7881AB572723816FECF3BBB4611C82D6 /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; - 788CF0FB634A486F9472BB7ED573A382 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; - 788DEE98E3CA1A812D1798E35B6DFED0 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; - 78AE52F0BCA0532AAEA774CBD36EDBB9 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; - 78C3881A9847D8F7C438ABDF1A993A46 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; - 7917CDFEA845901ECC20B88651896DA3 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; - 793FE83E57B1545E7FA1AA3649EF1854 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; - 797AB64E8456717E70370CEDBA49D4A9 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; - 79AA3B240C55FD24638F7CFBA077148B /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; - 79AD1B7BEDC376AC0B1B91340D051D24 /* RNFirebaseDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabaseReference.h; sourceTree = ""; }; - 79B2A01E1584553354A533A8EBCA3E4E /* 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; }; - 79C60F5059736B2C4690D774D98E0F4D /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; - 79D4D8D7052E54820CAAFD9128B6E656 /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; + 77563CBBC295652F09A0B06AA30606C5 /* 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; }; + 777307D855D4921B8B3DA30B4BFB6043 /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; + 777557749740C00BBFF089B62E1ED923 /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; + 77892E1E84595471F5AC0F2C036E5F15 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; + 7799616C7D51CD10922AEC96A99941C9 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; + 77D6BC9496CBB29DC41F919B1A14940B /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileReaderModule.m; sourceTree = ""; }; + 77D98E1479E96A1B403182C9C22AD207 /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 77EB216CA8013141E8A00A4CFB2BCDA3 /* BannerComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BannerComponent.m; sourceTree = ""; }; + 77F5609B4B12EA9B0EDC2CF48E5572F3 /* rn-fetch-blob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.xcconfig"; sourceTree = ""; }; + 783D3A6D2930F4F2E252E0843414B1EC /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; + 784032A5322B124C5B6599C68C0F8947 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; + 785E5FE77EF92CC9C6E38F9463296C8F /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; + 78F219EA8DF004BD76593FE3558A3FC0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 78F9329624C946422F472DBDA7AB265A /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; + 7918836174A9A268DF3E61CB96E07382 /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; + 7927368F0CB7A2A76765B5111B9FD877 /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; + 794D9C91799055313BD7AD8652AE800B /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; 79D674AF3635BF8CD90DB77AD3BD7AE1 /* FIRInstanceIDAPNSInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAPNSInfo.m; path = Firebase/InstanceID/FIRInstanceIDAPNSInfo.m; sourceTree = ""; }; - 79ED5DC08CCB102BC60B009FF3AD4AEF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 79DA7C793A6EC92ED4DC9668657C2B27 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; + 79EC6F19D4A58C5FB85C74142CA592BD /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; 79FD5725524C14751C72BA890FCFE408 /* ResourceBundle-QBImagePicker-QBImagePickerController-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-QBImagePickerController-Info.plist"; sourceTree = ""; }; - 7A046053DC23E314AC96EEE6A81A1C65 /* EXAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppRecordInterface.h; sourceTree = ""; }; - 7A54BE3B7E806D34C37EA1D6A686B30C /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; - 7A69CAD3BDA83AE301555B162C333302 /* libReact-RCTVibration.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTVibration.a"; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 7A64BF1C1F98F81E2863BDFF51C90B71 /* EXAppLoaderProvider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppLoaderProvider-prefix.pch"; sourceTree = ""; }; + 7A7A515834AE7AD2E49E9BF5C650DB63 /* RNCUIWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebView.m; path = ios/RNCUIWebView.m; sourceTree = ""; }; + 7A7F70906ABA2A6F5B30D5A3EB40CE4A /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; 7A95AAF7D65C72B05E14FDB3A23BB779 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; 7AA70902F993F49F584014B81ECF7583 /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; 7AA8EBFC6653280BE650D85406DE1BF8 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = QBImagePicker/ja.lproj; sourceTree = ""; }; - 7ACEC18CCEFDDABB1BEA6AE895BA54D1 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; - 7AE43E178764E6BE3CB3F6DC3AECD227 /* react-native-safe-area-context-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-safe-area-context-prefix.pch"; sourceTree = ""; }; - 7B057F5A8759F7DEDC2CCEFE9CAB5A01 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; + 7AB55ECDCC1B343952FDF3AFD1C899C7 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; 7B19ADD5978A26E9F7AF6C3706F00ACA /* GDTTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTTransformer_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTTransformer_Private.h; sourceTree = ""; }; 7B19B55600A8123A16887CADB6BCA677 /* filters_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_mips_dsp_r2.c; path = src/dsp/filters_mips_dsp_r2.c; sourceTree = ""; }; - 7B23FD9B97F21045C669537FEAE2E29D /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; - 7B6012DB79AFA1266D36F6C2183709EF /* RNFirebaseAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAnalytics.h; sourceTree = ""; }; - 7B6CDD48A341E8E2C87916637FA5A221 /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; - 7B7888BB7BE85EE8D527C592F2CEFD8C /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; - 7BB52BC5A6D5E146C1BDDD5573557478 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; - 7C0F9C2B70B66E383889AD66C2E4E0A9 /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; + 7B20176F5FC22BE9655BFB17EC6839A9 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; + 7B528786017D9DAE80E38746B599AF7A /* 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; }; + 7B6D6243FE11718BAC28BE6A7C3E6C22 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; + 7BA993BA85D5B32B217BF12413874098 /* RNFirebaseFirestoreDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreDocumentReference.h; sourceTree = ""; }; + 7BDC91519F1ED4F6AEDAADB17C5A4FDE /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; + 7C292364A20E94A203C3C11FD7B564F2 /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "QBImagePickerController-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; 7C4674C2EA2CC570B332217582E8F8A5 /* cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_enc.c; path = src/enc/cost_enc.c; sourceTree = ""; }; - 7C5F92C196B3116E98C2C553D172CFB7 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; - 7C60FF237535414A616C6E5BF992C375 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; - 7C6E3D06B7C3A6C90040B328AD7C469F /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; + 7C6EE9F84C091C7D9933B6592258344C /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; 7C9368F4CE40D3062B324045B4952F2A /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = Firebase/Core/Private/FIRComponentContainerInternal.h; sourceTree = ""; }; - 7CA3D3FBB9C732E53BDAD62F66B1EA24 /* EXUserNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXUserNotificationRequester.h; path = EXPermissions/EXUserNotificationRequester.h; sourceTree = ""; }; - 7CB562017B48AAFE9160824A33DE66FE /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; - 7D01979664B40391BB52275159EBAB7E /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; - 7D13984EFFDC4EE40E38B864C1DBE2B0 /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; - 7D192754C4D84F904302BC57EFAAA132 /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; + 7CF841B7F2C4FFE5C70AD8200D90F5E5 /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; 7D1F224EF68955C993387C63EDC7FF83 /* mux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux.h; path = src/webp/mux.h; sourceTree = ""; }; - 7D21CB99F0986FDAC89D2A7B5769D187 /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; + 7D3E0310CCA25F3CD5B84308609151A1 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; 7D43C8A38081ADC40A9B7B7E25641967 /* lossless_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_mips_dsp_r2.c; path = src/dsp/lossless_mips_dsp_r2.c; sourceTree = ""; }; - 7D55A5C0BD6C285941B1635A7BBEF6C6 /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; - 7D8AA8D0D1F634E75FE154E4E4F894C8 /* RNFirebaseDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabase.m; sourceTree = ""; }; - 7DBCAFB283FF9E3D7A34B8C67FE01E86 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; - 7E0062B09494B55074D1C5906D3AF2C0 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; - 7E2B4037FB40EB12622E7E83F2F2A39D /* RNFirebaseCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseCrashlytics.m; sourceTree = ""; }; - 7E40BD796D6425D1338F0CF354097344 /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; - 7E5605663032EC5A319B9EBBC3A8F55F /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; - 7E5C70BDCB86B9F70EB53A0C64E1FA59 /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; - 7E5FA3CB30EB592869B083947201A5EA /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; + 7D86609CE01BC1D95D8904835F6234A5 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; + 7DB0BF3ABAA1B33B4E2A1F4166755A2D /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; 7EB58AE1CC945754330A82381F521F82 /* FIRInstanceIDLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDLogger.h; path = Firebase/InstanceID/FIRInstanceIDLogger.h; sourceTree = ""; }; - 7EC8FF78AEEA1889F14389379A988626 /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; + 7EBF1B168B6A290113FB57AB45EB4870 /* react-native-splash-screen-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-splash-screen-prefix.pch"; sourceTree = ""; }; + 7ECB420536ADF69CE9843B14210A5ADE /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; 7ED0D3E39F0A929770109E720D860469 /* GoogleUtilities.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.xcconfig; sourceTree = ""; }; - 7ED880625DEE80D6532A5AA8CF663345 /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; - 7EF3D0E8CDB2DA70814AD22E36F97678 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; - 7F00F179EFD0639C9B5A8ADEAF2AD4D0 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; - 7F036D0156AB01DEF40395A30C70D2E8 /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; 7F2AB94D41A0FC7FDD1AC7C9B2CE6A8F /* filters_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_utils.c; path = src/utils/filters_utils.c; sourceTree = ""; }; - 7F3E0A3E9EA744F62A7C5F61819FDD96 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; - 7F42C7C230CB17846A7CB1AD43CC67A2 /* RNCSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaView.h; path = ios/SafeAreaView/RNCSafeAreaView.h; sourceTree = ""; }; - 7F5C213C57D2CB3E33C59E8CCA4D7CF2 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; - 7F8D11415C85564761C20FD0EDDA14A1 /* RCTVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewControllerDelegate.h; path = ios/Video/RCTVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; - 7F9BF7FE819E8239B871BA41782D78F3 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; + 7F2E78275ADC02B7781684C3E99ADC46 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; + 7F3169BDD19657EB912EB0AFCBC7E40E /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; + 7F55E551A8CB8A46CB7B81200E70D4C7 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; + 7F684B0B3F92BA579D74956F3636C84A /* RNSplashScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSplashScreen.m; path = ios/RNSplashScreen.m; sourceTree = ""; }; + 7FA11A77806199EF2A7B33609893BBBB /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; 7FC5F4A4B0F357892B3C1FB0277C118D /* lossless.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless.c; path = src/dsp/lossless.c; sourceTree = ""; }; - 7FE0297B571B6592112EC1A8C97A30E0 /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; - 805B0964D9A92F156020FE607DC679BE /* EXAppLoaderProvider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppLoaderProvider.xcconfig; sourceTree = ""; }; - 80C4A2E4D76203670EC68AECB8D26B36 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; - 80CED4C0002F52CEF317D0150DA0CE51 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 814D86E28D60E9243E49771E1B17000D /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; - 815BA5A5C6DA9D26A66BF659DF72FBBC /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; + 7FF7C85CADD71560CA8EF5F077926162 /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; + 7FF84AB54A8F38ECC2DFB2FEDAEB68B0 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; + 808E8AF2269D05C21D3D9C6352A7F413 /* liblibwebp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = liblibwebp.a; path = liblibwebp.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 80A15382E98BDAF0193A36F6DF062EAE /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; + 80ACCD9CC0EFD9D9FAB24D64D400BEB6 /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; + 80B50683D60D36788668321D41A4F905 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 80D2C1289FD39DC69D87397ABF0C0CC8 /* RNFirebaseUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebaseUtil.m; path = RNFirebase/RNFirebaseUtil.m; sourceTree = ""; }; + 80D474772031EDA1D872FCD359AE130A /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 80F397D34E7300F8F00F22CAB82A16DC /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; + 81029198431B4FFAE34236943BB9E65B /* 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; }; + 810F63F23555A8505AEA8B76EDB18D76 /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; + 8129C9C241D72DBCD91B3FF571A91FE8 /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; + 812EB72D39D58EC67F1D198219C875DE /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; 8172C981402923AECD81EDC63F98F260 /* Pods-ShareRocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.release.xcconfig"; sourceTree = ""; }; 81838BAEDB803D84068CB99C819B76B8 /* cpu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu.c; path = src/dsp/cpu.c; sourceTree = ""; }; 818C1CF8DB2C1051B3F456E59957FCC9 /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; 81AE13227654D5A004659D815B53ED32 /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; - 81DBBBFE40F94A479F78329C83F89993 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; + 81B41AAAAED8392AA5AC9A581DA3B2A7 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; + 81C2532EF3342F72E6FD0A53291AD89A /* react-native-splash-screen-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-splash-screen-dummy.m"; sourceTree = ""; }; + 81E495DC27F8820E0F7C1E39F2D71739 /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; 81E747E544FE41D1FA1F40085A81E68B /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; - 82014CC10F27ED3801D1DFB374CAD1C0 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; - 825C0199C9B5A3ACAE901CFECD6DAD79 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; - 8263ED3D75AB0213BE2E35DA4D2CA5EB /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; - 82818FC3C2A6B81FAA4419BB2DEC88B3 /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; + 81F5A0318ABFB4FDB7846C1DDCADF532 /* RCTVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideo.h; path = ios/Video/RCTVideo.h; sourceTree = ""; }; + 82055F34960F45D2A53AF2E6478EE6D7 /* RNFirebaseStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseStorage.m; sourceTree = ""; }; + 820EEE156D19F1273871393F2850D75B /* libFirebaseCoreDiagnostics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCoreDiagnostics.a; path = libFirebaseCoreDiagnostics.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 824BCC9DC38620055EC071518322EFE8 /* react-native-keyboard-input.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-input.xcconfig"; sourceTree = ""; }; 828D100FC563955FC0662EF5B712FBA9 /* Pods-RocketChatRN-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-frameworks.sh"; sourceTree = ""; }; 82A45093CB9A7521E5D4DFDE161F0934 /* upsampling_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_neon.c; path = src/dsp/upsampling_neon.c; sourceTree = ""; }; + 82AA097205FBBC44C4B707D0448061EC /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; 82C8F9A5A7C2C2F1B6DA5E7EFA6321C9 /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; - 82D07583C91EC8C527B7562AEC6F0968 /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileReaderModule.m; sourceTree = ""; }; + 82D3AFC1AB29B1706189ED814A87A1E2 /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; 831A0F10A4C41270F2BF95014C327852 /* GDTStorage_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTStorage_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTStorage_Private.h; sourceTree = ""; }; - 831F2DDCB51B3780CE7D6A9D4F430D89 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; 833C08ABA0B47B2F2829C8A2CC4C0F4E /* anim_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_encode.c; path = src/mux/anim_encode.c; sourceTree = ""; }; - 83560E525838057FB10C426721B4F304 /* 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; }; - 83605A4F3CAC4DEA96570C8C7181B6F9 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; + 835373FDECFAC8B72C5C6F5AEFC7A42E /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; 836757EFF6A9263DB050940C8CE8D733 /* Folly.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Folly.xcconfig; sourceTree = ""; }; - 83891139F79BF847C56CEFBF6C3713F8 /* EXCameraPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraPermissionRequester.h; path = EXPermissions/EXCameraPermissionRequester.h; sourceTree = ""; }; - 8394F1B20A5A1FEFBE8E5E5E5294F8F9 /* Yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.xcconfig; sourceTree = ""; }; + 8375F69358B3F33DAE5652BAB8B7FCA5 /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; 83959825E21EFF1BBB15737C72C4CD9A /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; - 839FF9FB3C504A04C732B44C2B167713 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; + 83968FC1BA6EDD62503BFB82F0CF2238 /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; 83BEF60974E73B609D1859BD42FAE6EA /* Crashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Crashlytics.framework; path = iOS/Crashlytics.framework; sourceTree = ""; }; 83BF54DDED3A170953CABED79380A53F /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; - 83C72B9176B50700B8070E2FD3F9B449 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; 83D0792CC802F2EB67375BC013C65B35 /* CLSReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSReport.h; path = iOS/Crashlytics.framework/Headers/CLSReport.h; sourceTree = ""; }; - 83E3400853693E65BAAB9E182487BA2A /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; 840FA7F9C9DC617CC47EAA918C0EE0A4 /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; - 8436F77BAD643A5138290011692C0F83 /* libRNAudio.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNAudio.a; path = libRNAudio.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 84774535DD78C27289E17B098E91A3A6 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; - 848B4139DF08401E0A201D55731729EC /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; - 84AD0A79A867A56D1EF82E7EC909728D /* 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; }; - 84E7DF79F373307C82C81D47441FFF44 /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; - 84F69C57B313D77512C38C51B2F40A2B /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; - 84F96C5D37C786149D06D1E661EB6FCE /* react-native-safe-area-context-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-safe-area-context-dummy.m"; sourceTree = ""; }; - 8507E4A52C119318C2F77073321AF237 /* react-native-splash-screen-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-splash-screen-dummy.m"; sourceTree = ""; }; - 851E845006C0DFF54AE5B7D501C95BB5 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.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; }; + 846F375D1458E294C907D63EBB6CDE87 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; + 848E2B83890BA8EE18D6FBCE6A0C144C /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; + 849BAF286C430F04B7D2003F3CB677AB /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; + 84B93183B0BF0D16902A3D146735FF9F /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; + 84CD02D1ED29A744F8574417D01384C7 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; + 84E1B2FAA5D3B051039B96F0883057AF /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; + 851E1E9DA148DF8D8D054D99847AE8EC /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; 85227EA5A42BB65ACAB99065DC56CDEA /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/FirebaseAnalytics.framework; sourceTree = ""; }; - 8522D1311D8A8EEB05EB5FF97D616AD3 /* libGoogleDataTransport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransport.a; path = libGoogleDataTransport.a; sourceTree = BUILT_PRODUCTS_DIR; }; 856FD527FC55C36E11BDE85F2818B484 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; - 857A18203467E0E53B167530BEB153F4 /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; - 85A23C75CB4400E90E923E0CC075A75E /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; - 85A2D2CDB198F6E1DC78A7F466446B78 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; + 858402B1090257CEEDC1F5183B06EC41 /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; + 85A07CA7ED436F78F9DB5DB894080D46 /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = ""; }; 85B2582FA56AA12026692189D9184C1D /* GDTConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTConsoleLogger.m; path = GoogleDataTransport/GDTLibrary/GDTConsoleLogger.m; sourceTree = ""; }; + 86006669CAEC9F6B941A80CC032DC0CF /* libRNFirebase.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFirebase.a; path = libRNFirebase.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8612CD6D1972BAED1FB3DDC784637F7C /* yuv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv.c; path = src/dsp/yuv.c; sourceTree = ""; }; - 865CEC3DED5252C3CDEA0479FBFC8F7F /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; + 86147824685623C46CAC743FC1BC6364 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; 866634DD47119D3C9D507F7F85E254C1 /* enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse2.c; path = src/dsp/enc_sse2.c; sourceTree = ""; }; - 8669FB1052435F4308947465F5A45369 /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; - 86CD21A2EF51923225C679934ABD125F /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; - 86D29600DA05F6F9D33340723303D6F5 /* RNFirebaseNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseNotifications.m; sourceTree = ""; }; - 874D318D103104E57D797A8A07BC6432 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 87545F89DFF41A6193D0E86E57D4A8B4 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; - 8775FB3EC2DF584EA64AF8186EA7D218 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; - 878D8917F48CA59D3D095AE301DAE5C3 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 86B2636F998D062D4D3FB9C112E7C761 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; + 86DD38D171735C60E25CF6FA5142E9B3 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; + 878E2F0E69F6B0AA8E2E788FC082B4BF /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; + 87A1C13CA2D72E1522A40D2D74193401 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; 87A1F176888430BC1AB311F2BC345FD8 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = Firebase/Core/Private/FIRAppInternal.h; sourceTree = ""; }; - 87FE4E820C2F27FD3534654C720D61E4 /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; - 88166403512FC6CD0F60F045A97FCEA2 /* RNCUIWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebViewManager.h; path = ios/RNCUIWebViewManager.h; sourceTree = ""; }; - 881F3F80A1FE603DF970448C24658675 /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; - 88393E8369B47087272393526F8E3BD8 /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; - 8864621570BFF62599C10D372B017976 /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; - 88CBF104300986618FEB745D95C32C89 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; + 87BAE6CE5D53DA4379063B118627926B /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; + 87BBEB4BD130A28B3141A669894FAB1F /* 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; }; + 87E66F6A0C7DDAF93995ACACE4BCAF0B /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; + 87FF5199DB4EA632F3780A6BF236F2EC /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + 882D4B170328E113857BE5DFEE6EB7FB /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; + 883C9E38BB217029ADF8022B1D274DB6 /* RNFastImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.xcconfig; sourceTree = ""; }; + 8846EF73C9F5348EFE23C6E90629DC3E /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; + 884DDCF8ABAE6E290FFBEE88290F6038 /* libRNUserDefaults.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNUserDefaults.a; path = libRNUserDefaults.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8884711445A12C0B14C2DF437F3EEFD4 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; + 88B164D86751AE69B80EA5FBC5EBCE96 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; + 88CC76C7B3F3D5DD730A169F26DF8B7C /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; 88CDCFE1C23D3551F83EDE1AB76CD3B7 /* lossless.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless.h; path = src/dsp/lossless.h; sourceTree = ""; }; - 88DD19586A0E4D0F851770D157E0A8B4 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; - 8903713160BBADFA4ACAC276057D4B5C /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; - 892703501C089AB73F2DAE334C2FBFB5 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; - 897C090F907DEBF41227E3CCEF14BC37 /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; + 88D32AEAF24B72B853AD03FC0774B285 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + 89167B14F836AA4BBAEEE438D34AF41E /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; + 891CFF73D9F0694CA8DCBB9731EB8986 /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; + 897103098BBBD0BC1C556F51F19325F6 /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; + 898A64B1A8A41E76DB7072DB08974FD3 /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; 89E6FC9046CF63FA2BDD5D4FE972D3F8 /* rescaler_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_utils.c; path = src/utils/rescaler_utils.c; sourceTree = ""; }; - 89EEE144AA5204E18491E0B0601AC14E /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; - 8A0950220244BF61D612736CA0B8AC13 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXPermissions/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; - 8A14B7055460F8920E63DD6CB22866D5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 8A2A219731CE5324848BD7A1A83A7819 /* RCTVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoPlayerViewController.m; path = ios/Video/RCTVideoPlayerViewController.m; sourceTree = ""; }; - 8A433F730AAD8F31114DDB79F01CDBD3 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; - 8A465236DFA5D2FD0A21D4D53F8A328D /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; - 8A7CE4F72855B7F5E9577317F3DF8F11 /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; + 8A320BC213025221920BC95CF58F90A0 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; + 8A86255F4E6C0462CF3200D4B4285015 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; 8A92011A0EE4C2AA939C19D776A9A3FA /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; - 8AA23DC79589894A9874B467B5CA0846 /* RNFirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestore.h; sourceTree = ""; }; - 8AB1C40644764F574F897C3A600C0F67 /* rn-extensions-share.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.xcconfig"; sourceTree = ""; }; - 8B0DD04958D6B485354D1EEB711BB131 /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; - 8B192281A2CE82C08FC1313DB2386338 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; - 8B3E8BD7A38381DE8BB1B47EC5CB08C8 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.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; }; - 8B6299858AB4A4595747DF5F6A11601B /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; - 8BA0333FD3440ED1605E44D752777D73 /* RNUserDefaults.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.xcconfig; sourceTree = ""; }; - 8BBB780A9F12CF3E77B2EA8A84406625 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; + 8A9CF187EF6A44402D284557F5084EB8 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; + 8AB56EB9AB0FCD6B15E62D038FE0A714 /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; + 8ABF9E15E87F25B75581ED9825AB0A90 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; + 8B045D0E4243730481AAA1CB77990DEF /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; 8BC54C930D11E0AF92F2D42C45DB403C /* SDWebImageWebPCoder-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImageWebPCoder-prefix.pch"; sourceTree = ""; }; - 8BCBB6D696BAB769CBBEF5A27053176F /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; 8BDF8F94BE21E75B347EB965B23CB0DB /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = ""; }; - 8C43A1B22E483D71551C541EB00BE23B /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; - 8C4F70662866A6074C00FF398B7C03D3 /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; - 8C62901F4640CD3B115C26B6F444BF1C /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = ios/RNCWKProcessPoolManager.m; sourceTree = ""; }; - 8C834B11C1A3D7F67378AFE97180F7AD /* react-native-keyboard-tracking-view.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-tracking-view.xcconfig"; sourceTree = ""; }; - 8C8D4183E909DA22A6147D6C60865F71 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; - 8C9172E1FD4EC4C46CB01E67337BA2C4 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; - 8CAFFF01AF4E0AC88F4E736BDC29C459 /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; - 8CC511B16EF948EAAE9EF314FD8D5FED /* RCTVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideo.m; path = ios/Video/RCTVideo.m; sourceTree = ""; }; - 8D113E9A40250929AA9E511B55189C3B /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; - 8D2A63C0C9D59F9A73D4FE3B19FD022C /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; + 8BF2586A232E616FF99C351820C4FEAC /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; + 8C171DAA5581762934238E562AB7204F /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; + 8CBB5C5BAC37CA780E3117B6AB1CAB47 /* React-CoreModules.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.xcconfig"; sourceTree = ""; }; + 8CC5F8E745AEB03DC3B1204CC12B3F0E /* react-native-notifications.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.xcconfig"; sourceTree = ""; }; + 8CD0EBF3FB910053833A2A196972DD26 /* 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; }; + 8CD43246F366DCE35A65E6E4924E18A5 /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; + 8CD45EBEA139064AED165C8728AD3B8F /* RNFirebaseNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseNotifications.h; sourceTree = ""; }; + 8D0AC2D50D7D2C791B08AD60C6B17CA5 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + 8D3111EE7181EC6A88D9C468462900B4 /* libReact-jsiexecutor.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsiexecutor.a"; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 8D4B6FB15B01DC3C783B0006A9433CB1 /* vp8l_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_enc.c; path = src/enc/vp8l_enc.c; sourceTree = ""; }; - 8D531A107BA8083E3C88DC361F833CA4 /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; - 8DBA332EB76301F1CFB21413BAF07EE8 /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; - 8DC68E1A9E62D4213A29A7882F030267 /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; - 8DCA3A28B84869B2FA14D5E2E834B97F /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; - 8E29CF50A9C67BCA3AB95BBF936D6020 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; - 8E3CE7326FFD21C3F5435AFE0A1ACC0F /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; - 8E5D5A56442BC1A2D76A733018CFDB67 /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; + 8DC2FD8AE0197E4115A8D2A9B5EDB31A /* RNFirebaseRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseRemoteConfig.m; sourceTree = ""; }; + 8DD947A0E27F8395DC1DA31CA86A8547 /* RCTBlobCollector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobCollector.h; sourceTree = ""; }; + 8E06226E65F20929C45682417875E4A0 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; 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; }; + 8E29358304887AE9D591F76515AAAE12 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; 8E5D78BCDC74B623E9DD98FEBDE55424 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = Firebase/Core/Private/FIRDependency.h; sourceTree = ""; }; - 8E75B9E466529351EF714E9AE96D5FC9 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; - 8E9548AC9F45E0BF904B4434099635A2 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; 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; }; 8ED632F7A0BA00A16F1DDFE661F91ECD /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = ""; }; - 8ED7131BD769F675631C0F8458FF6562 /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; - 8EEF4CE097F577CFB6E7CE9A4BF0881A /* RNFirebaseStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseStorage.m; sourceTree = ""; }; + 8F11F570308CDC853BABBEC38D47572C /* RNFirebaseAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAuth.m; sourceTree = ""; }; 8F796D76C61E14B0B17E5CA9360538F1 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = Firebase/Core/Private/FIRComponentType.h; sourceTree = ""; }; - 8F9DB61AEDE12B4187272F0B24E5B506 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; 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; }; - 8FDFCD8BE393E9584DF412AF2DF73EE6 /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; + 8FD0B65F93BBF3D29E1F13C7E482877E /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; + 8FD4960E636E1EF34354A4B03380DB08 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; + 8FD65F49243D49B3364CE4617C039811 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 8FDFD9A8764EA0B559ACB03F2109D8E9 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8FE974BADF79553E4722E9189E9AE63F /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; 8FECD953A0CAF0032027F99D1658210B /* Crashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Crashlytics.h; path = iOS/Crashlytics.framework/Headers/Crashlytics.h; sourceTree = ""; }; - 901456400438C05BA7A0A511AB22E059 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; + 90064060BB25376D466498BB22259FBC /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; + 9007A3F44B14BA7EB90AA3B61B6EF21D /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; 903F529DD0B5A860A261EF800674CC7F /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Private/GULLogger.h; sourceTree = ""; }; - 904EBBB159EFB89B34BAF27D0B10237C /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; + 9052C091A13022FF93718EE33BD00E74 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; 905B90F210D75C516DE403526B73DFDF /* iterator_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator_enc.c; path = src/enc/iterator_enc.c; sourceTree = ""; }; + 909A3B046942A94D6876AE056EA198D4 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; 90C141CADBBAF70D872331E10985D3F6 /* GDTPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTPlatform.m; path = GoogleDataTransport/GDTLibrary/GDTPlatform.m; sourceTree = ""; }; 90DDCE0CF917557ADDE4F00557E21824 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = ""; }; 90E0F815BB889EF23EECA55DD1FD0BFA /* dsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsp.h; path = src/dsp/dsp.h; sourceTree = ""; }; - 9104D6E90869CF4DD9F81824D2415D5F /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 91470931CE2F4D5F2F6D7F4DE87E4A11 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; + 90EF3CC92E1A8E488C018136E9006A28 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; + 9128B0A6BBC4FA4FC3C0558E586FE4F5 /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; + 915233203EE7BF13D1BE60EB4BA67D61 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; 916FECB97E3156220902918176505F1E /* muxinternal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxinternal.c; path = src/mux/muxinternal.c; sourceTree = ""; }; 917E01F8BA3B049AA099103C8BB3A17C /* dec_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips32.c; path = src/dsp/dec_mips32.c; sourceTree = ""; }; - 91CCA8DD71CCF17D77595CDBF2990F8D /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; - 91D6F5754639B6F94FF0134463F2C36B /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; - 91DAEEAA913712230E2663F4CDD7C877 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; + 918FAA25B981FC2328B54C5EC159E438 /* libReact-CoreModules.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-CoreModules.a"; path = "libReact-CoreModules.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 91E17CCC3C8911878CBBFDA09D77A55E /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; - 91EB93590129044FB30A60CBC3599486 /* AudioRecorderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AudioRecorderManager.m; path = ios/AudioRecorderManager.m; sourceTree = ""; }; - 91FD49BDDDF74385D62455B48BCD74F5 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; + 91EA25725FFF249D140E775D023F0228 /* libReact-jsi.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsi.a"; path = "libReact-jsi.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 921AC7722F2C134D66F18F51A88B5E37 /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; - 925A92D967E9433955AF48E86676E589 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; - 9270D6D283F867C991ABB9ECAA39C63B /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; + 922A83677E2F464EB9F8239786B60738 /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; + 924720F5C2D4A799CF215C9F992670E3 /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; + 92896B4FE27A8B9CD1DA76E16BDFB022 /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; + 929C056E8BC298F78C48EBD94A41B0AD /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; 92D68BA31F7A8316C65DAF12030D2E88 /* FIRInstanceIDTokenManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenManager.h; path = Firebase/InstanceID/FIRInstanceIDTokenManager.h; sourceTree = ""; }; - 9312725E7E867FFD8E99F05D37FA9626 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; - 9321E90B5F9E0A7912E3BF222C768819 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; - 9324718CF27D69D845A5D6D46FCE7135 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; 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; }; - 93C28E4D3968AF460FD01926C80CB924 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; - 93D6DD2520799898170B60DFA41188CB /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; - 9400C28E188F6DDB02251AD6D9D87DAB /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; - 9403DAE180262FDB327C26226C15441E /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; - 943969C427D0DD2507BFD435F6B1657D /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; - 94689D6A6B23AAEB03D438145268A39C /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; + 92FC18EC6AD15E95D5C55E9E231A2178 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; + 9304735A76A1F46043D22855E7BDABD8 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; + 930864A3E4EB771995396A54BF432BB2 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; + 9312678C01E526ED0B774C6976B0256D /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; + 9343DE1F1989A99BD17DAC745D790480 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 935271ED504C7B694762B790EAA3118E /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; + 93752AC35B4BF873CFC039AC4029065E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 942CE26A8AA3D8D3B39ED7DA35A07AA3 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; + 943A32BC82DD9F90B690F521C2F3BF01 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; 9472CE3E2730202F2CDECD98CDCE9805 /* GDTConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTConsoleLogger.h; path = GoogleDataTransport/GDTLibrary/Public/GDTConsoleLogger.h; sourceTree = ""; }; - 95161EF947B084DEDB1756CA7F8D39BA /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; - 952089D780267A2D11750B51F49F2F25 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; - 95217485AA603FCE669BEBFD132B611F /* 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; }; - 95321D22E8C964DCE9A3AC29C4ABED29 /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; - 953D86414D1C162F750E54AC5F01BF20 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; + 9477D376E691798B42431F5D088414E8 /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = ""; }; + 94D6D30F732919276E067AADAB490563 /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; 955801E9D59202815C2A1E31717E11ED /* UIColor+HexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+HexString.m"; path = "SDWebImage/Private/UIColor+HexString.m"; sourceTree = ""; }; - 95A02C7143CE61537E1CF6BAE7424263 /* FBLazyVector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.xcconfig; sourceTree = ""; }; - 95E2CA4F1266539E8D8FC4772351858D /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; + 955D7DFC004CCBDCA460799CA05F6C04 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; + 959E4F2F20DD331569989D41276051E1 /* EXContactsRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXContactsRequester.m; path = EXPermissions/EXContactsRequester.m; sourceTree = ""; }; + 95A6CF289CEB268659DF4520A94F2054 /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; + 95AA6E8D48E806E9A46EFB3DF6644B7B /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; + 95BC1336B0F1DF0B8B9A4478EF9E6918 /* RNFirebaseFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFunctions.h; sourceTree = ""; }; + 95C99A3FFB6500F1978BD60C43BDD8BD /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; + 9617D5B43225127539083D8CD392617E /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; 9620F486A797F74612F033C661AAB532 /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = Firebase/Core/FIRBundleUtil.m; sourceTree = ""; }; - 96416B1B39BF76921AEC20D59B06D88A /* RNFirebaseUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseUtil.h; path = RNFirebase/RNFirebaseUtil.h; sourceTree = ""; }; - 96828A154291EE6E5258DC48A5F4B966 /* RNFirebaseAdMobInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobInterstitial.h; sourceTree = ""; }; - 9684911C233FAF0E0748FA1664366AE1 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 968B64357D7E84B201F9354C7B41A488 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; + 96243305842B41AB0C1D76426C6B7583 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; 969DB18DF135A3C5DF7F98551D9F1DC8 /* dec_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse2.c; path = src/dsp/dec_sse2.c; sourceTree = ""; }; - 96AAFEA40C907D7186049F7947993ECF /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; - 96CCC402794DFC3B872597624419885D /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; - 970E9341B80BB1944BAFD6EEF7D872A9 /* 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; }; - 970FAFB8D3A01336713C77A466828192 /* 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; }; + 96CC4B1D880FB45289AC5D787DA25711 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 96F530C4CBF8BAADC5076ADD050B5A0E /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; 9727CD897DFC665EB18524FC2FC165E1 /* Pods-RocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; - 9739CE6ECC687D2B8093376DDE5D89D0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 97653D7DBD70A9B857F0DCA233B30BA4 /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; - 97772715F1946476C81AF067F80DBDC5 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; - 977DF1CD4D09DFCC3A19427CEFDE660B /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; - 97C894F63FAF425D5FFBC892F57E9FF2 /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; + 9770701D00AD7BD0ED5458AFB97AFE61 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.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; }; + 97D3928D38A1480CB81397CE9AF06E29 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; 97D702FE70CFB27360A4CAEEE7801519 /* FirebaseInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstanceID.h; path = Firebase/InstanceID/Public/FirebaseInstanceID.h; sourceTree = ""; }; - 97DBE660F21AC0B114EB6A66C5D55B69 /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; - 97E4179597FC9EFD71EAC38BB8422710 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; - 97FD81BBA20148E68B95E54C61AD992F /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; - 97FDB2800D0C06FD55EDEBC84EA60C4F /* 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; }; 98365AF226B34BED76B8944130B05D00 /* upsampling_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse41.c; path = src/dsp/upsampling_sse41.c; sourceTree = ""; }; - 987A01F7D1CB6D6C6357094D937438FA /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; - 98A5BCE524F6789D52CAD863DFAEC38D /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; - 9904D01AF3E57EBC4AA564DE0D14DEF6 /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; - 99AFC47914AF5BE7231ADE45485EB81B /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; - 99C3168D41B9FC41720825F052172573 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; - 99CDE548697338314717AE0E6134FCB2 /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; - 9A03947CE2339B9152C4A4C8F7F2FE73 /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 9A83D9D6DD50C1693BC7A222C68F355F /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; - 9A9B3A64BE258CD7BE76B7E6C3B93DF6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 9AA2C71CBE523653ED8626C586538CA3 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; - 9AACFBC61EBC020ADA57FD6477F41622 /* RNFirebaseFirestoreDocumentReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreDocumentReference.m; sourceTree = ""; }; - 9AB527CFE893AF9A8B2D3374C93D998E /* react-native-video.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-video.xcconfig"; sourceTree = ""; }; + 9856F95AC8C1232A931036A55559BC99 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; + 986B2273FF3D42F53FA6563FB449EDE2 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; + 98738FC7EF9E6C189DFCD03F8F0586F9 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; + 9874A1ACDC0B0D75CA7A7E561B7C821D /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; + 989EC3095E4875E3B1D9DBE132132CD9 /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActionSheetManager.m; sourceTree = ""; }; + 995B813E0C15D4D7E4DD92A81956264E /* BugsnagReactNative.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.xcconfig; sourceTree = ""; }; + 9990343D83C89804B084FE4F87C99DF2 /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; + 999620C379E51B2D5151B5D70F40E7AE /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 99FCAAA12DAD18758896A64F4FEE3AB8 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; + 9A31001672A2F92EBFE5A9DEB5FC1A7C /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; + 9A400EAD23CF7F01C37961AE6ED25820 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; + 9AA5C9FC8CE7F44EFEAB0BD125AAE8CE /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; 9AB597237ED03CB3C5B0791C3310AF6F /* lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc.c; path = src/dsp/lossless_enc.c; sourceTree = ""; }; - 9ACDE621D52DEC10F88955005141CAD0 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; - 9B2689AF3C6A5C24499AC4698427F4C8 /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; - 9B4F6322F4E053E02A6998B5B12A0261 /* BridgeJSCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BridgeJSCallInvoker.cpp; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.cpp; sourceTree = ""; }; + 9B6C8B68076FD1E21202C5BCD2F3EF78 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; 9B738E1F77AFDA1E5F4F8A5FCBF073A8 /* FIRAppAssociationRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAppAssociationRegistration.m; path = Firebase/Core/FIRAppAssociationRegistration.m; sourceTree = ""; }; 9B7A559B4DD56A2C54D401167202A9DF /* FIRInstanceIDAuthService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAuthService.m; path = Firebase/InstanceID/FIRInstanceIDAuthService.m; sourceTree = ""; }; - 9BA338194C90961253A3D4E0A70D7A57 /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; - 9BC23BB7A8DE345C7FD96BA090F09B73 /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; - 9C4BB7264829288DBFB4A14AD8AC1991 /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; - 9C742DC1E28F4023A8291B9C6D48422E /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; - 9CD5BDE2BC7D38A713D9334E31C56E76 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; + 9B93D14FE376C2D5027B5831039438CF /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; + 9BE194BCBF94E09172E4340DD7686E24 /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; + 9C09086111353589A5DAC90B3E9F80E4 /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = ""; }; + 9C3850FE6ED692788F89481C551A0BD6 /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; + 9CBE4EAC0CAF4536219D4D9A0BD73FF0 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9CEFD3DCD0332BD62EBE8135EF52B900 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; 9CF7967DC82F7EC57B857DB11F4FA8AE /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; 9D0D4E61E12A0F0835A7F11BBBAE4590 /* GDTUploadPackage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTUploadPackage.h; path = GoogleDataTransport/GDTLibrary/Public/GDTUploadPackage.h; sourceTree = ""; }; - 9D104CD0F8A300278ED678D2409246A0 /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; - 9D41565ECF50A645AFB1FFD05C35005E /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; + 9D5AF6B43CFA93DEBD14614EBFA674FE /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; + 9D7B7CB894CCA3FD5F353EB7F1B02EAD /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; 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; }; - 9DA314410DCCCF798F8D1245B85E59FA /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; - 9DCC67EB103D9A1897E64556350F2D76 /* EXLocationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocationRequester.h; path = EXPermissions/EXLocationRequester.h; sourceTree = ""; }; - 9DD1443F82FFBF7298B7D3C8979D89CD /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; - 9DD37EB2D399B9468794E988FD7C0C89 /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; - 9DD3A2FA9383510D024474E196ABD6A8 /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; - 9E099219D7E60FCFC87D5C1933412D80 /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; - 9E269F92C3C3C4CEC5150A13C19005B0 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; + 9D97FFC28C9414B95D589399763961D4 /* NativeExpressComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = NativeExpressComponent.m; sourceTree = ""; }; + 9DB010F05ED85B59E18461127BDA2011 /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; + 9DF61CB46D3614F3C454032356336A37 /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; 9E3F08E8D85F621758B574642044F950 /* filters_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filters_utils.h; path = src/utils/filters_utils.h; sourceTree = ""; }; - 9E64A074C8DC78A75EAAA6DA1FA9A0D9 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; - 9E862B35CABD5266D4B4CB2F777312B7 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; - 9EA1E9E91BAD66A06A4C0486B14CC841 /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; - 9EA3DA4711B4011719896ADA0BFA4961 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; + 9E4995825BF1CC7B1272BA7374915B4E /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9E60ECE7BBB4802FC81C5E70D6943F0A /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; + 9E84953AFE58B0FC4F1D4094F3814DFE /* RNFirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseRemoteConfig.h; sourceTree = ""; }; 9EAE60BDB931F4F21378EB2E3AAAC3FD /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = ""; }; - 9ECC6C54EEDEA7CD3D108213818E0EE3 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9EBA5025778E228CC965FAECB1A78CBA /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; + 9EDBD3BEDF444E97BA7E052508D06878 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; + 9EDCBD529E4082C773FE0393618BE743 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; 9EDDE346EC979FCEF409700FA05BA63E /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; + 9F12B5A886730CA701E2EBAE36994EC5 /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; 9F1792F185C1EFF989F2C94A71008E24 /* FIRInstanceIDVersionUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDVersionUtilities.h; path = Firebase/InstanceID/FIRInstanceIDVersionUtilities.h; sourceTree = ""; }; + 9F3320F558C62ECF22D6E07B490B492B /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = ""; }; 9F4A71BC7352BE4FFA255657EF331872 /* picture_rescale_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_rescale_enc.c; path = src/enc/picture_rescale_enc.c; sourceTree = ""; }; - 9F4FC66ABF94C27CD1801D82912A0ECE /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; - 9F5246E19B60DB8DA4D689C4C881A28E /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; + 9F50D7622E84F5FA8AA25A055A69540B /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; 9F54AB51FA0DD69A7F9B1556521124DB /* dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec.c; path = src/dsp/dec.c; sourceTree = ""; }; + 9F59812770BCBECF98FF23E95AC4DC27 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; 9F6E24F27F4CBC46B8534057CD3E6A99 /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleAppMeasurement.framework; path = Frameworks/GoogleAppMeasurement.framework; sourceTree = ""; }; - 9F7D1BC5637F5854846BA58FDB7D0369 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; + 9F70832FAF8D00BECAEBBAEEF9757BF4 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; 9F94067DA969D6F3842504F53A004124 /* FIRInstanceIDAuthKeyChain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAuthKeyChain.h; path = Firebase/InstanceID/FIRInstanceIDAuthKeyChain.h; sourceTree = ""; }; - 9F957A58E8FE652DD1F3DE28B8CE50D5 /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; - 9F96C2D034FC4DC21D29895AC31A4BAB /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDataRequestHandler.m; sourceTree = ""; }; 9F990AC97A7898A949B63BA279F0E400 /* GDTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTPlatform.h; path = GoogleDataTransport/GDTLibrary/Public/GDTPlatform.h; sourceTree = ""; }; - 9F99786D6E0D484A69F4566BFCD289C2 /* EXCameraRollRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraRollRequester.m; path = EXPermissions/EXCameraRollRequester.m; sourceTree = ""; }; + 9FA51DC1EB4858AA16A2A500FD76C664 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; 9FAB6B1FBC8FDE76931F66FFD83C17F5 /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; 9FACD71042E4D857E776DAC66755DD07 /* thread_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_utils.h; path = src/utils/thread_utils.h; sourceTree = ""; }; - 9FB3F23BD02D6D11603407607DD3FBD6 /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; - 9FBB336EA5883D01A2443577D41DAA67 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; - 9FCB77363FB6017B71C511D63680640A /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; - 9FD51D143FD71CBFA5350EB8CFB8E60D /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; - 9FE9B7BED9A63306EDBB827E7D39D174 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; - A042E9934070323AF37FF873CBE05BAF /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; - A0462C15B6BC705D0E86F7957176B303 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; - A059C2FCECF5737C8FF99D680609FFC4 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; + A00442AA0B1FADE223DA97EBAB3D838B /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; + A00C194F97F81C3428B538B51E2A782F /* AudioRecorderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AudioRecorderManager.h; path = ios/AudioRecorderManager.h; sourceTree = ""; }; A06FEF1A2DBF9E95C094C365454C6605 /* RSKImageCropper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RSKImageCropper-prefix.pch"; sourceTree = ""; }; - A0922BADB5750DB26C098CF437AA2490 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; - A0A6C0C98A5E837EFE58CDC4B7EECACD /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; A0C318184648BBC609663DBC9B2A73DD /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; - A0D1E2E71A5DEE6AFA783575E6E4F9A8 /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; - A0FF8480437167FF0A6C777C559AAF3C /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; - A1126C3C4D6F98638C77C21862E71991 /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; - A112A07C6625F98F1BA6C168EEA0A9F2 /* RNFirebaseRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseRemoteConfig.m; sourceTree = ""; }; - A14180910E915E983B9C77BB7D5E0431 /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; + A0C6606D2DA7EEA34B069ADD6667E0B0 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; + A0CB64F4C7708EEA1503FD11E213386E /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; + A110CE3C880FAC45F8BB586761603C09 /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; + A13DD808F30EFECEB6F8ABA4D0EA7474 /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; + A159C5095F4FAE2AA8E5AEA2CBEC07D0 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; A1608DCB703A1DAA8318175F1BD6D540 /* FIRInstanceIDTokenFetchOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenFetchOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.h; sourceTree = ""; }; - A1BBB61619A989569CB8098616E4D31B /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; - A1CCE2109756CD298A0C4476235693A6 /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; - A2145EC1475F7A3766093EAA79881B40 /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; + A1BD812E27EEB4BD980432A00715B0E1 /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; + A22A14F0FBD25D1D6ED85AAF2766126B /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; A23122D4E795CA1CF0BBDC0CF4BFD67E /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GULLoggerLevel.h; sourceTree = ""; }; + A24B4C31CCB2B7ADF144611FECCFA52F /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; + A27244A05409F207F84EAB5D36DF078B /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; A29119C8C6D95E3F37AF1DF85889B7F9 /* alpha_processing_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_neon.c; path = src/dsp/alpha_processing_neon.c; sourceTree = ""; }; - A2A7BB45B73D0CDF7F6AA6C39F0519E7 /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; - A2B2916F4B2700499DCA14A4F53CABDF /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; - A2B377C31C7DFD69197E8BA70B441C7E /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; - A2EAF7A7CEEAFAD16DDC5D843197C7FB /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; - A2FDCDDE9F3874C99EC5AB35A582550A /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; - A311691C89E4304C35006AF6725D790A /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; - A3239E0A81A39A78BDA04A680434F993 /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = ""; }; - A35307FC9A62F53AE1127FD976357FA1 /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; - A357969433D2169772F117DABC04E0F2 /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; - A3673B3F2C07B82F7F7466343F0A1290 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; + A2A09B04F81EF2E3056B41E1DA8CE523 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; + A2AB7A8A247219B30EBEDAB3E29FA7F9 /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; + A2B4AA84FFEAB4694F7306618ED0D5A0 /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; + A302DCC4C64D912E6521BDAC89150910 /* RNFirebaseFirestoreCollectionReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreCollectionReference.m; sourceTree = ""; }; + A32507C9D76151FE299DB8B28FD56011 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; + A331EFE5A7BA06B55320D28505DA8D62 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; + A352EE81C4436FBC31BAC8A8587F313B /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; A3A07008413FB1170DDEE62B18A5EC2B /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = Firebase/Core/Public/FIRLoggerLevel.h; sourceTree = ""; }; A3A876813DB06919D844190B333A92C7 /* bit_reader_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_reader_utils.c; path = src/utils/bit_reader_utils.c; sourceTree = ""; }; A3CE88F6F24B9C3D2A67337E6C9E73B6 /* GDTDataFuture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTDataFuture.h; path = GoogleDataTransport/GDTLibrary/Public/GDTDataFuture.h; sourceTree = ""; }; + A3CF386E760B431AF279467E1DCCF2FF /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; + A3D2972F5BB21FFEEF73983D51644494 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; A3DF66B8813204A50D7529342588A70C /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; - A3E18E5BE7BAA4745020688185C4BFBB /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; - A429599A7FF6BAA15EF2832FEBA810A5 /* RNFirebaseFirestoreCollectionReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreCollectionReference.m; sourceTree = ""; }; - A443AC435CE4A4AEA1064FDEF406CB77 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; - A4577D3139604BC45690324C3C8E79E6 /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; - A461CFD6D0A8C84868B8225D03330BE3 /* RNFirebaseAdMobNativeExpressManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobNativeExpressManager.h; sourceTree = ""; }; - A465DA7391C36452293BE5B609F5C83A /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; + A404097E148F1819281A337650A82A85 /* libGoogleDataTransport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransport.a; path = libGoogleDataTransport.a; sourceTree = BUILT_PRODUCTS_DIR; }; + A43B34C48897A6C0958D0D49568F9AB2 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; + A43BA5B3060A78F4C17C697796E5B8EF /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; A47B9F50F1E6DBA2952451658BDF086F /* near_lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = near_lossless_enc.c; path = src/enc/near_lossless_enc.c; sourceTree = ""; }; - A487618198501583855DB337FF43EEAD /* 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; }; - A4A62A49927979547591B04816443326 /* RNFirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseRemoteConfig.h; sourceTree = ""; }; - A4ABF332561FA35E98F71A29903E78A1 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A51A983258F0D553ACDCFC3621672FD5 /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; - A588BC5F497161F1F6F0D5A68491578F /* RCTVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoManager.m; path = ios/Video/RCTVideoManager.m; sourceTree = ""; }; - A5950D78481A135EEE8D46816F77759F /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; - A59C91EF26C663EEAC72D9CFD60575EF /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; - A5C5ADDEC5949E17C0C7CA5BB0EB911F /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; - A5EE0E2BAF40FC2979AB4D85F3609396 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; + A494A9A1F1AC056C5AE2EFBD23136692 /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; + A49FD196C40396CE87F5E587717F312C /* rn-extensions-share.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.xcconfig"; sourceTree = ""; }; + A4C3A30D388BAB3491B25D05E1B0A71B /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; + A4FA30C04F08AEB225F3EB7F744A92F7 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; + A5306B67950A6E590FF79ACF340E2A72 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; + A5328265B65371E9D6B710194CAD7C06 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; + A54FEC97C189CB11606A4308B2AE22A7 /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A5564BEB590405246294DD1CBD8BFAE3 /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; + A55E7EC91AD0B1AFCC10A42D8D106577 /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; + A569B97BA410C7A58E9B388D00B34F34 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; + A5A1C6C1D4F09382123FB6187EE8CF02 /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetworkTask.m; sourceTree = ""; }; + A5ABBF17FD206FBD0911CA8C83D9500F /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; + A5C0990F7808701C0C84DB9A1A691EFE /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; + A60CE7222FA178C7A80B5DDE6B86BDA4 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; + A610DFF0E0BE7C475685FA8DE3DBCF0C /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; A6120CE8B30F6445F609BBCFEA429081 /* msa_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msa_macro.h; path = src/dsp/msa_macro.h; sourceTree = ""; }; + A61B378236FC887757731EE2203BA845 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A6214712C3EB9E3D8B2A1BEA3CA123F8 /* demux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = demux.c; path = src/demux/demux.c; sourceTree = ""; }; - A65940BB455BB0B0FEC9FD931DB65BC1 /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; - A671A890EF7D563E9B424DE0D4ABEB1F /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; - A672EAB82A86B0F23AF82F0F78F972C0 /* libRSKImageCropper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRSKImageCropper.a; path = libRSKImageCropper.a; sourceTree = BUILT_PRODUCTS_DIR; }; + A64C30AF935C0A5558AB286730AF3C24 /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; A676286CAB723B813821319E7F3DAD3F /* GDTLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTLifecycle.h; path = GoogleDataTransport/GDTLibrary/Public/GDTLifecycle.h; sourceTree = ""; }; + A68FBC3F5EF9C484CA4B97ED5D841169 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; A69A0648D33E93EB9C57D9A2A5473B63 /* upsampling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling.c; path = src/dsp/upsampling.c; sourceTree = ""; }; + A6B3905E0090D04E72761DFE3FA13965 /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; A6B606BFDE50C43337BC6D7B158FAD3C /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; A6BCAA732F3AD64A60113CD253E36D9A /* enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips32.c; path = src/dsp/enc_mips32.c; sourceTree = ""; }; + A6CD2C98D5C802B074C47D5E2F5A1918 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; + A70694F5A4C5B5EF87E255F6DA6125A9 /* RNFirebaseAdMob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMob.m; sourceTree = ""; }; + A70E22ECB6B15884C8F7C9741D14A63F /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; + A731CFCEDA268A9E7D5B827BCA3528E8 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; + A73627628EFEE6D6322ECC3295712643 /* RNFirebaseAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAnalytics.m; sourceTree = ""; }; A744A3A023AB3CEE93418334F39F4C2A /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; - A75A85102C13352816AD523CACFA9AD7 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; - A763DF3AB18E74C80668090681ADFFC6 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = React/CoreModules/RCTImageStoreManager.h; sourceTree = ""; }; - A78772CB1D68C46340815D48D6820E90 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; + A76A4D55D86753F3914F46B5D28F56DF /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; + A778999F163DF9687DA14B63BB982F2E /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; A789BCB1B19C7F2CDE89F3BFAA434C8C /* common_sse41.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse41.h; path = src/dsp/common_sse41.h; sourceTree = ""; }; - A7A153864847690E9E1EA47F14A4E9B6 /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; - A7A856045AA9746C6CE18B9C4D1A5880 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; - A7BB785FB65867995104BFDE8A4147C4 /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = ""; }; A7DA224DDFAA6C4A9C02670A8B4CDEE3 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; - A806CF553D1C88A35B4769741C4FE655 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; - A809A23E9EF95C498E5964553A87330E /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; - A80CF8468E9049C56C9EA16A82061CC3 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; A82AEC2C6DA49C46050B64D384E790B9 /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = ""; }; - A875C01527B1824FF82F97580829CF92 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; - A8A11A28FFC137091F553BAED75EECB7 /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; - A8D65AD80416F65CE3983CA2C4536DA1 /* RNCWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebView.m; path = ios/RNCWKWebView.m; sourceTree = ""; }; - A8F75DE0CDA238306BFC8DF0E2DC9F75 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; - A913C19CF60D9CF747C88410F3753B03 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; - A944652844C06AB56A89170B53F5FB51 /* RNFirebaseFirestore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestore.m; sourceTree = ""; }; - A95A7AA02C7E77097114D2271065F69A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - A963A9A6EE380D60965CA3EF8EA10F39 /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; - A965D48D828ED54D8B34A82BBD763A56 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; + A832916A078966CF057416B5074A3D43 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; + A8518561956A95E1342CFBCF21B6FC01 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + A85BBF1BB8607EBB7E6BA89D2278165C /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; + A86B86337D02147402852F004802F71A /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; + A87AC62844575266891A5467856DA092 /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; + A87EA7E9759D4E10D3F233F2428356EF /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; + A88578045E339347233A1BCBF9F4C3B7 /* react-native-keyboard-tracking-view.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-tracking-view.xcconfig"; sourceTree = ""; }; + A88D44D3DDCF8BB3222BF681C0B7D646 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; + A8B11446203E849D229A546628455865 /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; + A9174224765725AFB31BB9B842F12008 /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = ""; }; + A9382F9E14149B5BF4108CDC945FC934 /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; + A9622D55AEFAE02CED2DFFB85F78F9E8 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; A9826242AC190D52FE58337BBE37A4C4 /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; - A98D42D2F791FD55BA9CE579DCFBBB6F /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; - A9954286FE2B8FFC4E7BDD00D99B662C /* react-native-video-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-video-dummy.m"; sourceTree = ""; }; - A99EEF13B1A98819112C6D773BE85105 /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; - A9CD10625108D8835EB0E8078968A067 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; - A9D228BB93A3C1F8DABA176C396E4FBB /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; + A99F20EBCE64A1EEA830814C13F18F99 /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; + A9C9398573E80F194501E6D5C00F72CA /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; + A9D22AA00BB4016F84DAE57CFD038334 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A9DB44425458313D2961C90D623E2F07 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; - A9F33D3DE3EB9CB3EE4F2E835C255478 /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; AA2FE9A64387B0D50B6D9D4F7B45F847 /* GDTTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTTransport.m; path = GoogleDataTransport/GDTLibrary/GDTTransport.m; sourceTree = ""; }; - AA34700AB371739A85D388B6BF6BC458 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; - AA5C70B18FC97DECBD76DE4EE9592567 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - AA6220A557BF114DB76A15F129AF8E27 /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; - AA65C22B9756E0B3F3715C18C629DD73 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; + AA470EA710A5F74288B5F21FC07BCF6E /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; + AA5207268C70A330051FE675E3CC119C /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; AA740C812735472DC038E14F6EB9D27D /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; - AA98C5F806487077902557FEF8BFC2B0 /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; - AAEC0DED46F2DC556FC856F06BDF71EA /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; - AB28FF5B81D774E3D2A4823C4EEC7D89 /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; + AAA8325D11CF3749C94DEAE5C5085E3A /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; + AB1BACD3937D40014ACF5DA3EB4AD9F1 /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; + AB2489B797C034EA15440E2359F3B894 /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; AB30708B801882F0388B037ECF55C75A /* picture_psnr_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_psnr_enc.c; path = src/enc/picture_psnr_enc.c; sourceTree = ""; }; - AB3A76E3BD356B755BE10C4F27A944F1 /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; - AB79250AEDD2A4AF1BB903AEE67739D6 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; + AB46787E2D8E38B23B6E70FFB59547A4 /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; + AB726F23F2EB8BFD8AF3422843E0CDB9 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; AB7BC8B336978A727D8B9798D3960BD6 /* GDTUploadPackage_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTUploadPackage_Private.h; path = GoogleDataTransport/GDTLibrary/Private/GDTUploadPackage_Private.h; sourceTree = ""; }; - ABBA1006B691BDDC97E06F44EFE93FBB /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; - AC0664B9365BE04B8AE775DB05D4AD51 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; + AC11BC507A7E2C29D98632EB8C9197D2 /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; + AC5AEA724649D3D8BE10F6B7E3704C36 /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; AC8F43EDEFC379EB58457C0B6156322E /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; - ACAB9FBCCBB1201C7E29D2295BFE1B8A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - ACBE06FF89BA2DD1572CF560E88FDAE9 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; - ACDA1DE1654B36F054675ACB4E873B75 /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; - ACFDE15A0A495686930280A708A36700 /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; AD00E7094C0DE81613A44BC3728ECF29 /* UIImage+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+RSKImageCropper.h"; path = "RSKImageCropper/UIImage+RSKImageCropper.h"; sourceTree = ""; }; - AD0B75F82B79F1D06A10DCD5E95555B9 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; + AD0BF147CDC3863A03E6AD4CDCD05EDD /* react-native-video-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-video-dummy.m"; sourceTree = ""; }; + AD19AB2D04A4025DA68CFA7186527E2B /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; AD1DEBFAEE718A9D87E9A80E15EDB2C2 /* GoogleAppMeasurement.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.xcconfig; sourceTree = ""; }; - AD246E5AD9E80917275152C3151879E1 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; - AD3B41E0B2649E3F42467961621D0F96 /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; - AD3CB0088255A383F6D2038A4547A916 /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; - AD49A1E00BE112B46CD42FFDC5FE9DF6 /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetInfo.m; sourceTree = ""; }; - ADA2C087A342C31E5A1102FCFFBB8D7D /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; - ADD7C166914EF86D693121CA1797EA64 /* EXAppLoaderProvider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppLoaderProvider.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - ADE1C95FE8B65275E010F0693DB4180A /* EXAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppLoaderProvider.m; path = EXAppLoaderProvider/EXAppLoaderProvider.m; sourceTree = ""; }; + AD713AAFED28AF583BD2D64FE89BC5D8 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; + ADACD95D8F6382B1FD9712DE89344E08 /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; + ADD9F6420889E1B436C90B5D1917C8BC /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; ADE6D0B386951C4D3956BE297073C70A /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Private/GULNetworkLoggerProtocol.h; sourceTree = ""; }; - AE54F2C86D4013737C652A8E18F3055E /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.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; }; + ADEA8E9FE8D76BCE22028D8E4F20EA29 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; + AE42EF954CD85BF69907E5C1DC217CCC /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; AE6E322B12E1BDF5ACF57A39698E97C6 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; - AE735E75964CE24E03D2269158232098 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + AE6E96DF9C6FDEC503DEC3366EC4D7AB /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; + AE6EC439C25D0A82CA82156AD5EEE148 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; AE882515169016DBF6C94EB428CEACF8 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; + AE94B7C81FB439C90658524538A54B96 /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; + AEAF91E2DB5B6A939D80226C6461B2ED /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; AEE25EDFF0C6211BCEC52D37DA1703EB /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = Firebase/Core/FIROptions.m; sourceTree = ""; }; - AEFF4754C447AA9CC5EE5F70AEB7F8CB /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; - AF39CC6979579912E7139AF8C456083D /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; + AEE3DD005F902CB0572F5B9E859A7D7B /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; + AF29E10D6D7FEC4BAE560AF2B8758531 /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; + AF4EA25442F8EC569DBAE79C2136E8F7 /* EXRemoteNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemoteNotificationRequester.m; path = EXPermissions/EXRemoteNotificationRequester.m; sourceTree = ""; }; + AF5B943A302C58530D06308B3737FD7A /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; + AF76970552CBF5D498B4B5ABE92861A3 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; AF829146A913FDC2D938895DFD18930E /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; AF8A60EF2B6557E8474FC01E9AE5A5DB /* FirebaseCoreDiagnostics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreDiagnostics-dummy.m"; sourceTree = ""; }; - AFD3DECBB494C2A51C307578CF48358E /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; + AF8A9CBAEEECA935A9171CA8E13DAC11 /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; + AFB872DDD998C244AC1FF5DEF2A6CF00 /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; AFD44A12524FAD7F225DC2368126A3C4 /* yuv_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_neon.c; path = src/dsp/yuv_neon.c; sourceTree = ""; }; AFEFDB824E01E0DD552C963341636A78 /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; - AFFE0298F47225860ECA486FDB8262AB /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; - B031CE3E700D70F7BCA195DFB9127D53 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; - B04C828EDBBF50DD4110D46B7CCCC49E /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; - B075B0791A439C952ADEB40E7D32A345 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; - B0DF55260CB83C973816C8C7BE667241 /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; - B0FC520C69B49EF35100FF143549E415 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; - B122FC4EA0744A09698D6C39F3BC9CD9 /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; - B139E20F8DED281005CCC3C604099501 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; + B03DACD4D293CA5E131B244DF380A361 /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; + B06EA9ED33D7A432E1ACE38EA9409FF5 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; + B072D8D73FB9454A1DF60D01B1086581 /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; + B073A051EB57DF54349C9150A67DAF60 /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; + B0CCA01C1EDB41C92C17E739DF8C675C /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; + B0DF74789020BB03508CE510AED7AA99 /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; + B0E607CD388A6EF6F47C1056271F105D /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; B14E94AA3FDD62E6CFC30B229F0C23B8 /* backward_references_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_enc.c; path = src/enc/backward_references_enc.c; sourceTree = ""; }; - B16C5F556A4FC739F9F59F08A82A4CC2 /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; - B179558C32472D04EF2F08B82B3DE3E9 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; - B194B571DE62CC8A6C06351641F9EA45 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; - B196CDA4EB6FD3838DAE6A83724ED8F9 /* RNFirebaseInstanceId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseInstanceId.h; sourceTree = ""; }; + B1822EF5AE7B426E443FF51DA80C445C /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; B1C9D8E7DFA59D6BEAA4A8614867F268 /* quant_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_enc.c; path = src/enc/quant_enc.c; sourceTree = ""; }; - B1D73A503CFA0C4F313E4D1EA235247C /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; - B1D8132BC5A265598A040A7D9AA383BC /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; - B2000FC668084E1BB47312BB65BA59B8 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; - B2003958EC394E36B16B2E029E0D631E /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevMenu.h; sourceTree = ""; }; + B1DB83D9D53946D698A41481D8841122 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; + B1E064D2E50907DD555F51A6E9449DF7 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; + B1F435392ADE74924F22A15846C00814 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; B2044019C1BEB77F7FACCD294C68D1F5 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; + B22C08575AEB62A243675DECFA9C489C /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; B22E5237A551120F5B084752758535DD /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; B2312F8F4116173F59E62F4CA2EE1800 /* RSKTouchView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKTouchView.h; path = RSKImageCropper/RSKTouchView.h; sourceTree = ""; }; - B2561CFEF2B1637A0987FDEB22430960 /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; - B26E4A4A95BF24EA28B2C025232D2257 /* RCTVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewController.h; path = ios/Video/RCTVideoPlayerViewController.h; sourceTree = ""; }; - B272F25F326C7915BB95A8ED6A6AA68E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - B2C61A33AC980929E1343F953D5E3EF7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - B2E03329E07FE66EE35EDB38E2B6C066 /* React-RCTActionSheet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTActionSheet-prefix.pch"; sourceTree = ""; }; + B2B9B966CF0670022DA229F644227B1B /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; + B2C3C50842C99465084B59724BB1F888 /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; + B2D53B9F8BD8745AC674A2064EB8E986 /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; B2FBAEFB40E64FD069B21BE4C67A4573 /* cost_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips32.c; path = src/dsp/cost_mips32.c; sourceTree = ""; }; - B3389700D11046964CE7368501A915C4 /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; - B33AF048A3C96E6607B05C7D4ABD1905 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - B33FEFD08F37A550E2C635EF0D79B7F5 /* RNFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebase.h; path = RNFirebase/RNFirebase.h; sourceTree = ""; }; - B3427F3B243F0244BD72CAB4E3F7AF19 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = ios/RNCWKProcessPoolManager.h; sourceTree = ""; }; + B33784A2108D2D41D6C7D2A4F9F0FC8C /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; + B35119F4088DD54E10619963A15ACA97 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; B36C118383F797CE788925AD6AA6D585 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; + B37A90398BCCDCC233D0E07016024232 /* EXCalendarRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCalendarRequester.m; path = EXPermissions/EXCalendarRequester.m; sourceTree = ""; }; B3800256FEB699AAE2BD9C7A5D738A61 /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; - B40741E4D0355C3E8580FB4615BF911F /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; + B3EFAC78F103E51CEA11AC34D1ECF0CB /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageEditingManager.m; sourceTree = ""; }; + B40D423A829C4CAE468061B860B9F55D /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; + B40E4EF58D07B711871FFFF02676D5B7 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; B41F4F764DC26EBAE2BC6EAF72039F73 /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; + B4200244D0E1FA1327DCBBEF6454A66E /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; + B42FE18F19C04AC6DEDBEA85C745980A /* EXContactsRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXContactsRequester.h; path = EXPermissions/EXContactsRequester.h; sourceTree = ""; }; + B453937127F6A3D264A97AB9C73C0ADC /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; B47472639633B31D60237D7C0887F1F9 /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; - B483868AB8CA5F529A41ABE3A2712850 /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; + B477AFBD91242BCC0812FC76FDF2F269 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; B491B310B1291337B82E8AD3644659E5 /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; - B4A2DA4C50EB3E93FC75D09645928547 /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; - B4BBD3F4DCBF4684D97C369EE4AE97AC /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B4D19DA2A1F53C7EF3F756A1A34DF4CC /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; + B4D33198940256F0ACFB9163452F4A40 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; B505E3E20E9E415F54A53A88DD9B0464 /* GDTRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTRegistrar.m; path = GoogleDataTransport/GDTLibrary/GDTRegistrar.m; sourceTree = ""; }; + B518BC9BD482C1913CE4D88CDFD9421C /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; + B51A7B88A4C808780209A9EB402F05C1 /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; B529D6561C8E09398A4D6B2FD6D4356D /* FIRCoreDiagnosticsDateFileStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsDateFileStorage.h; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnosticsDateFileStorage.h; sourceTree = ""; }; + B53FAAD75C0C6369D832431E85667CCE /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; B5406371BCFF4F1D5701E5CDC1DFA89E /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; - B55A6CEA0E968AC4F361EB86E611560C /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; B59077709DB9D2023380C4765FD70B0A /* libwebp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libwebp-prefix.pch"; sourceTree = ""; }; + B59E19CC78621D2F32E9443F6F98BA0A /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; B59EF3CA58F8B1D0A9B97CBF8626C28E /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; - B5B3F647F1139CB1C2D5B90DC2CE7107 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; - B5BE24CF227352207ED74841C688D105 /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; - B5D0A8289520971F31150FBCDD47E178 /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B5DE79C6CB8DF7C24C892F8B504CA59C /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - B608EFB5273C2182D5612A4706E53FB8 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.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; }; + B5A9173B90D3C3ACB383BCCCE244771D /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; + B5C5214D438E6FAA8D6D4D0BA99046C8 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; + B5D0403AE234D3440422D93C4C145063 /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; + B61E37A19DD34A941B2637D427A7F9C0 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; + B62748FCB8AA588EF4146A7A670BEA5B /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; + B63CD15FD6ACF9EE75F164C21D5CCB46 /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; + B643A16AD5CB2A5D046C31C69211A8A8 /* 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; }; B649F5CAB443A7201C306A7708BE67E0 /* 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 = ""; }; - B66A14EEA57D04353FC41FCCE22BDABF /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; B67C0CBCF0E90DB1A7017C4FA305DE0F /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; - B6F03C8E53D47EB052A1CC5FA5F2614C /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; + B6B57818D5BE1B8294828964AFE6A2CC /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = ""; }; B7113A458284B87A443CFA72AEF1159D /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; + B7500FFE33613A53567F24D90D17D351 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; + B755EBF064CC633CD0FB942E32ADFA78 /* EXUserNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXUserNotificationRequester.h; path = EXPermissions/EXUserNotificationRequester.h; sourceTree = ""; }; B76A6BAAFDF07809B2715060E43EB92D /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; - B7911F9C6D6FCF75555C8B719694B744 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; + B76D10F3EE89D60E6C52C27971C78A43 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; B7B56761649607E003E9AB43AFCAB488 /* cost.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost.c; path = src/dsp/cost.c; sourceTree = ""; }; + B7C45FCE2881D036B56473739FCDDBFE /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; + B7CD90ABFA5CAD203DECF9778DF221F5 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = React/CoreModules/RCTImageLoader.h; sourceTree = ""; }; + B7D880AD3344988E75DB2D19B5008257 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; B7DEDDFABCB0CE6A9C82FF73C5D61D42 /* yuv_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse2.c; path = src/dsp/yuv_sse2.c; sourceTree = ""; }; - B7FCBB8705698B4C5C2F47EF0ECFA778 /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; B8004FBFD4A41E8A292CCE60BA84510D /* FIRInstanceIDCheckinStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinStore.m; path = Firebase/InstanceID/FIRInstanceIDCheckinStore.m; sourceTree = ""; }; - B8208665A653F01D54059A73295FDE93 /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; - B868863514FA35A4413D35D5B762E59C /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; - B86E2F27CA7CF17251DE1F6DF270A47C /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; + B828E567307694BEA54DFA798D446AEB /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; + B8493A937517A7BD1D737EC6BD9A7C5F /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; B892F16336DEB00631BC8CD1318C62FF /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; B89DDFE00E22E3A3906EFC459918A226 /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; - B89EFEF1BE4BD2ABC7FE00951A366EE8 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; B8AF819B6D1CA91471061BCB3DCA3399 /* FirebaseCoreDiagnosticsInterop.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnosticsInterop.xcconfig; sourceTree = ""; }; - B8B2A7D89EFF4BDAF2F211220E380E10 /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; B8B868FABDDDED888EB3F265D4C82CD6 /* dec_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_neon.c; path = src/dsp/dec_neon.c; sourceTree = ""; }; - B8BA5C69B1DA202F44473DCAAE9F672A /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; + B8B967F67A9A47EAE957BE83BF7A08F9 /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; B8BEB0A7E7B4336A14038F4285B9C119 /* GDTCCTPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTPrioritizer.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTPrioritizer.h; sourceTree = ""; }; + B8C46D38E4C93D5B3539F30546420B42 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; + B8D5C7E974E0DA0C96BAA4040B03F3E7 /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = ""; }; + B8D5E9FDB2234F0FAF6B2E0983778CD6 /* RNFirebaseAdMobNativeExpressManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobNativeExpressManager.h; sourceTree = ""; }; + B8D6A01971F78DEFE0CD090570F95BAE /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; B90A57421BD2FE43008358E7B97960FD /* CLSLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSLogging.h; path = iOS/Crashlytics.framework/Headers/CLSLogging.h; sourceTree = ""; }; - B91331C48536659680EE5EAA9EE02C9D /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; - B91BEAAFF4DCB95DA0D8DAEA4E232F30 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; - B91DAC059E0C38268C5BE5EE56C5D5F3 /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; - B921268D193BCB0A43F7C215758D0B44 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; - B9295502C8E57344C28AE10125A0D9E3 /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; - B94EA1AEDECC277366A0D03E8D7EBF1C /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; - B95400480330F81F79600264A3A7A3EF /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; - B956EAEAF96020807601F79575F4301E /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; + B920945C9CA21605C5876FFBA385F645 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; B9992A0460441B3092B6F393EF92483D /* libwebp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libwebp-dummy.m"; sourceTree = ""; }; B99DB16193C464C8F88E3209E3808DA5 /* frame_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_enc.c; path = src/enc/frame_enc.c; sourceTree = ""; }; B9D027B630B02D7D423D5976C3AA1D8E /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; - B9DAFA142346219493C216D081E348EF /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; - B9E8E55C5402DE1D13F2A2FA127DF2BB /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; - B9F64D87ABFA34CCA549E3A416E0072A /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; - BA0501686230C169300BEAC0CFDF99EF /* libFirebaseInstanceID.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstanceID.a; path = libFirebaseInstanceID.a; sourceTree = BUILT_PRODUCTS_DIR; }; + B9F668C38D2AC42B82699C84A7F586C8 /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; BA0AD95D9B63C03558D2620776EB94CF /* rescaler_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips_dsp_r2.c; path = src/dsp/rescaler_mips_dsp_r2.c; sourceTree = ""; }; - BA2DEA4A7585625DC467AD048303D374 /* EXAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppLoaderProvider.h; path = EXAppLoaderProvider/EXAppLoaderProvider.h; sourceTree = ""; }; + BA1A41E19C1DFD7E97E6D3A55723A0E3 /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; + BA1FDDA89F369E09845E91BEE4980D7F /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; + BA31621FA1C8B1F40AC093EBA9775F25 /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; + BA389489AD3F66E8E1CB1FE46F32744C /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; + BA42074E9801DCCF7FCD4BF7D2249405 /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSettingsManager.m; sourceTree = ""; }; + BA4D92333397EC8D722390CF6007C9D0 /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; BA4E478BE1D462DDEE6877421281D92C /* 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 = ""; }; - BA76D51CB685A8D3D845F08992BF57C8 /* libPods-ShareRocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-ShareRocketChatRN.a"; path = "libPods-ShareRocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - BA809AF0EF74364F699C474DD8A703B3 /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; - BA8C1095D4A9AC8719FE42E57A6BB304 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; + BA657D183021628BF32ED7BF4CCAB778 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; + BA692097DDF46B1E925F3A62F09565D3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + BA6E072D1A8B997D42A8ABA653B90133 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; + BA8EA011464D1B5C848FBEFC83CE3E39 /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; + BA98B31EA1738E56ED3968B7D41292D7 /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; BAAD5D2CCF9D8C098D404B8ED9F844B3 /* idec_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = idec_dec.c; path = src/dec/idec_dec.c; sourceTree = ""; }; - BACF7CE86AA3834C40620D43ADB7DEA0 /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; - BB04788BC17619581A61722D7A606E0B /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - BB3282EF4DBE9CD99DAD283ABA8C670E /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; - BB624FB849FAEC4569CE5CFD011073F2 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; - BB63E0BB432F268B4E29A03A7876011E /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; + BAF475FBE73DECDA301043F705C1DA1D /* RCTVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideo.m; path = ios/Video/RCTVideo.m; sourceTree = ""; }; + BB32D49DA0AECFC80F73D73ECAB81A6F /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; + BB4F98F9A79C65BE96594A6A62ACA28D /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; BB6E5175A62D1B1B6A4AE686F54D742A /* Firebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.xcconfig; sourceTree = ""; }; - BB8F6B18CBDC44962CE58B2D4142C48D /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; - BB9CAD04ADD8404E21061E072AD9F60A /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; - BBEC178A5E6B61715E5A41638BED6D14 /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; + BB73A2FA7AABFB68521C902D59683FD5 /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageStoreManager.m; sourceTree = ""; }; + BB95A42F1DB412AC51C240029BF888A0 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; + BB998A709396C02BF7801229F04600EE /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; BBF36F839AFA87F8CEA19E8669A7D4DE /* picture_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_enc.c; path = src/enc/picture_enc.c; sourceTree = ""; }; - BC0B6D584331758E4EA2D39BBC7D6BFC /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; + BC1273027B89903D2FA02EED7206E7B2 /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; BC24DDADEAFBD94E4143A49973415FC5 /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.h"; sourceTree = ""; }; - BC3A41AAA162841935D4DA74981AE8C2 /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; BC5E566CC46B70BDC9A5B9B3461FEBAE /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; 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; }; + BC6F2325D9C8B0EABE4B94C09D8CE138 /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; + BC80D47C6CDBD7086E7E728EB1717A10 /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; BC8C08C0024359A1D4F82150428F2530 /* SDWebImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.xcconfig; sourceTree = ""; }; BC9E7EEC35ACAA2457D991913A17F23F /* FIRInstanceIDCombinedHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCombinedHandler.m; path = Firebase/InstanceID/FIRInstanceIDCombinedHandler.m; sourceTree = ""; }; BCA311510FA24986BC3AF19E0BE6D0E5 /* FIRInstanceIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenStore.h; path = Firebase/InstanceID/FIRInstanceIDTokenStore.h; sourceTree = ""; }; - BD0501497EB1D2525E810D765BE138CB /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; + BCF4BB39AA9D972D4FAFEA6BC6B8EEBC /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + BD138F8E84C692E0B4161D3612F0BABE /* Bitfield.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bitfield.h; path = yoga/Bitfield.h; sourceTree = ""; }; BD1DB32E582E29C18BF49D87015CBEE4 /* 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 = ""; }; - BD26490FA2CAB15D99BD6281A1B1B835 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; - BD71DD467C6026268F307A4BC8F4A69E /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; - BD756CCC8A6F288479927B7A468F5DC4 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; - BD91263A6DA3AB3204590314944D3D6E /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; - BDBF74E8AE5B9F337FB2345862BC53EF /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; - BDCEEAF03AA049CA8C0D2299EF483459 /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = ""; }; - BDDB896AE0C815BC2E6CFC74B852BDA6 /* RNCUIWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebView.h; path = ios/RNCUIWebView.h; sourceTree = ""; }; - BDED2E830FB9FD86EFDA019F3798D24C /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; - BE61E209BFADEC5159E0E8E7E4A3FD4F /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; - BEC8DE5627FD24B5F94CF1CEDD4EFEED /* EXCalendarRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCalendarRequester.m; path = EXPermissions/EXCalendarRequester.m; sourceTree = ""; }; - BED3B6FED796457A557A1E562F9FDFF8 /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; - BEE28714BD2DE0A16928AD736CF24ECC /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = ""; }; - BEEC1B87BE6AB4B746CED63C3CFACC6E /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; - BF04A14120A396A0D894DC7059C9B783 /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; - BF0B8E81463B3A3B98C032DC2E69420A /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; - BF27CC5643F100FD1EFA42E96E23860C /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; - BF4A954F5F1AEB45D11A42BA42FD62FB /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; + BD28E838ADCCC65E5CCD3E96ED69CA63 /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; + BD4C8BC633E2A9B5A5D3435478D22C3B /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; + BD5288BA61AC1F0A50A3CB5E7F211A76 /* RNFirebaseAdMob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMob.h; sourceTree = ""; }; + BD77FDB21D05219BDE06CA6527AD066C /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; + BD8F473C3E4A3FE6CA53CE1F5D981D40 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; + BD96DC68DA0234D68DF41799B3EF2E50 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; + BDA7BDED460EEFAAD058802B9AFF9917 /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; + BDC6A8BB06D24B48DC4DC36CF9EC67D2 /* RNFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebase.m; path = RNFirebase/RNFirebase.m; sourceTree = ""; }; + BDDBD2943A9B87E4E890E45468BD30D4 /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; + BDE42650BC9F9DD8A115629E10981D07 /* EXAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppRecordInterface.h; sourceTree = ""; }; + BDE6E262234A5B14E7A484374795580D /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; + BDFB51ADA6468FC5D7E77E0A83765BBE /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; + BE1D0D6043DBC36E460388414B674120 /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; + BE25945B2546B4E805BC0E01903CC69E /* RCTConvert+UIBackgroundFetchResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+UIBackgroundFetchResult.m"; sourceTree = ""; }; + BE305D50A851A552CAE374BCF1D4F77C /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; + BE4D11DC428728370935140D16D3665C /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; + BE4E913B523C487FD14DC53DB97C143B /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; + BE862BF36C8861440009B6D78B4F44C5 /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; + BF668DD35F7117FEFE217B1BEC930535 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; + BF7C8D82374ED918C8F4EC3C2D81AC16 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; BF868AF1CA3630C36493C0F530ECED27 /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; BFA247F5974A6677929F9A981DE7CEDD /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; - BFED9260DC0EB5D2C025BBDA287443AB /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; - BFF97AB6432CF984C8F68AAEC8F70608 /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; - C04E7CB35881421CC7C4DE9AE2276BD9 /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; + C006DA03186A2DFF16C749637E83030E /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; + C00F6ABD26FA24AC01558D1555972C93 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; + C0142ED749AF000C530635CF83DF425A /* EXSystemBrightnessRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXSystemBrightnessRequester.m; path = EXPermissions/EXSystemBrightnessRequester.m; sourceTree = ""; }; + C039A0959DCC08B8A1F8215F71F2816F /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; + C04ADF14DB99C7990B47F00AE3C4E79E /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; C05C779C87084783B793457477C3A6FE /* ColdClass.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ColdClass.cpp; path = folly/lang/ColdClass.cpp; sourceTree = ""; }; - C0811DAC6D552FB356D7575AF4844BE5 /* RCTVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoManager.h; path = ios/Video/RCTVideoManager.h; sourceTree = ""; }; C086608DBE5E51714F538B940CCC6CB0 /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = Firebase/Core/Private/FIRVersion.h; sourceTree = ""; }; - C0AC944A756460B48773C16C85ABEE38 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; + C08A7BDC21357A2133C2B6BFC04AC9CE /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; + C0AF8A51E28DC0FEEA5B45A6E27A28C6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + C10ACEEBA7982577556E26F349C4699F /* 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; }; C116E1E40DDEE7F544679616A954A8A1 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; - C14746BB36E23B5AF083D4E4977C3BD1 /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; + C11B859C9B678D377691DAB7053CABB5 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; + C11D9AD667508E1C876132F985D006E8 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; + C1329548FB5474AD5B664F1F97BCCC78 /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; C14EB949A4D519FD9658B9141C98A497 /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; - C1556487DA90D957A1139D2EC8565676 /* EXLocationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocationRequester.m; path = EXPermissions/EXLocationRequester.m; sourceTree = ""; }; - C16058E82410D17A43BC355CCA4ED3C6 /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; - C1A1E7F355F35A189DEBABF8A0156CCA /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + C17A7BC9744C2846DB65A6B7FC5AC80B /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; + C19C1705E6E1858A1FAB0C46E6D5D455 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; C1B012452C7833FDA989026BAA5BB17E /* FIRInstanceIDKeychain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeychain.h; path = Firebase/InstanceID/FIRInstanceIDKeychain.h; sourceTree = ""; }; C1B84861B5F138BACEBDA0F0D992379E /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; - C1DA022416709A5A4586EAF553193626 /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; - C1E857CC0E1D0A33B399E29BE252B855 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; + C1C9D0C8BFC7D88D5A31B398B7A85378 /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 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; }; + C1FD61059ED51E365EB8C98830DA1DDB /* React-RCTActionSheet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTActionSheet-dummy.m"; sourceTree = ""; }; + C20A11A46DA88C93478EB17745182247 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNVectorIcons.a; path = libRNVectorIcons.a; sourceTree = BUILT_PRODUCTS_DIR; }; C20B4C566C1CB5C6DCE02D4331AEDCA5 /* NSBezierPath+RoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+RoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+RoundedCorners.m"; sourceTree = ""; }; + C238953E538AED81F3041EF99B90B69C /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; C243618E51AB390562FEE55114C657DE /* FIRInstanceIDUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDUtilities.m; path = Firebase/InstanceID/FIRInstanceIDUtilities.m; sourceTree = ""; }; - C24CE90AFA2D409DDCB67D3FAE01BCE0 /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; + C24F2D232EB58787DEA2CA30758659D6 /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; C24F40A63FE451294206B6301FB2605F /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; - C252CB3D7FF8496BA69D28B1D6067380 /* RNFirebaseFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFunctions.m; sourceTree = ""; }; - C2593EAEA3167BA5619CD29EA9D93D13 /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; C283455D40EFD0387D66378077728A45 /* FIRInstanceIDKeychain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeychain.m; path = Firebase/InstanceID/FIRInstanceIDKeychain.m; sourceTree = ""; }; - C2867E7076F2AF989B9B71B50B8CCA64 /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; - C2AAE71AF8006AA30A64CF4504D526EE /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; - C2CB9B684BA15EBE98EA0A7EE838582C /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; - C2E92934A9BD986B50061D4763E2D459 /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; - C3115194C5ED76B59575EB1D379B0C7A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + C2AC88F8D973034AFBF86A3FB6B7E0B0 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; + C2B92333BB5845F760C448E223DD5AA8 /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; C3156725A520FE984536BAC0B9B7EB41 /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = ""; }; C321C88AD1064932674547B58CD6BC8D /* GDTEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTEvent.m; path = GoogleDataTransport/GDTLibrary/GDTEvent.m; sourceTree = ""; }; - C32D9BF00B81642F8B3EA21697B0DC90 /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; - C34B5AA51CAC6FAA9921B2868B36E167 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; C37392C07364A92131316CE0CA864C43 /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; - C38F16A153640B3293D8F667A981FBB8 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; - C3AA110259054E16A7D2EEF2264B8253 /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; + C38027A5C41130D4A36A41863AFE03DE /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; + C39665AF94FBA346085767D7916412E6 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; + C396D78F38FBE9F34D8848FC3FC43AE6 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; C3AF44932E73D7712C931B302DAB1F93 /* FIRCoreDiagnostics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnostics.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m; sourceTree = ""; }; - C3CBAFF43E73228346B47BCF6BBCD62C /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; + C3C11881E2F336517CFF4E6B6DDE7FCB /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; + C3DEBDBD5F087F4D3F139931C71B7FA6 /* RNFirebaseNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseNotifications.m; sourceTree = ""; }; C3ED87CC99B7D13CD7CEFCF9E532F865 /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; + C3F6808A0964F33A10D3F334501ABD86 /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; + C402D82EE3109C9B95D9482EB7EC83A1 /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; + C444E8C4FFBDF6017C84D102EF653A10 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; C4601302469BE8B655C4CB0CEA21F8EB /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; C4A2C3812B9FECA4EB67508A4A3716DD /* QBImagePickerController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "QBImagePickerController-prefix.pch"; sourceTree = ""; }; - C4AAAAB99D75A904E920EA4479EA2B27 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; C4ABEED1209A2F9E1A8AF5F5560F17A7 /* FIRInstanceIDKeyPairStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeyPairStore.m; path = Firebase/InstanceID/FIRInstanceIDKeyPairStore.m; sourceTree = ""; }; - C4B1A1B5BDFA05E2CEE27999A2C8EE27 /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; - C4BD169CE289BAE4445841400DB80F38 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; + C4BBC310691D1955EABB6CCD8E2335E2 /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; C4F53A4FC2A26375B835ECC53525A2B1 /* enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_msa.c; path = src/dsp/enc_msa.c; sourceTree = ""; }; + C532BE23168A8EECAAEA83EC098617CE /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; C5387831650F9DCBA998365899E6B032 /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = ""; }; - C56A6CFD221C46D53C79646F05CD072B /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; + C56082C206BF8B76E902D42B784C1DD9 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; + C568FD833DF9A59790247E4132B6D124 /* 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; }; C56BBE4016E34220AA76571A0BB89A39 /* ssim_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim_sse2.c; path = src/dsp/ssim_sse2.c; sourceTree = ""; }; - C58DAA4203EAEE32D62CFF20E6A02AE9 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; + C579CA51C3922D215446012D3F26D0D4 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; C5963C328E7C3559A3F4E49F6284D75D /* UIApplication+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+RSKImageCropper.m"; path = "RSKImageCropper/UIApplication+RSKImageCropper.m"; sourceTree = ""; }; - C5B75E96BED458352201FA06AE45A026 /* 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; }; + C59BAEC2A7827C2B428990AD6BB07A31 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; + C5C21E43A2EA60995ED257C9872F617F /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; + C5C8333BFD44196B4A0FFDB65E076AE5 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; C5E0474C43CB4DC755D7FD8CF4B490A9 /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; - C5E1FE199F096E6F7DC9E1FDDB0C346D /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; - C60382D8D327473E4F9CE109EB1A133A /* Bitfield.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bitfield.h; path = yoga/Bitfield.h; sourceTree = ""; }; + C5E6C401811F8E8E72A347413A20E31D /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; + C5EBB0DCF4F22FD00FB15638ABC292DE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; C60C7CD3A7A4ABE97A9B002D3D67323C /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; - C639040A1D67515F2D55E631E08D192A /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; + C61BF98CD40D21619BD6FFB97EE88B3C /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; + C62974E05057B212D7CA11B18B225453 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; + C6322163B7128CD797844F1CEBB989F3 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; + C635370BF7182A2F524F98FA6D49C2EE /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; C63DEB6C4A8E1B3FF493E2FF4CEBFF6D /* ssim.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim.c; path = src/dsp/ssim.c; sourceTree = ""; }; - C641CFC2B167B82C543D9CFC19FB102D /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; - C673143192CDBADE000A4B54E42ECCDC /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; - C6C96D047BC4D058744676DDC4EDC5E0 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; + C6587216CEB798C1574D2D1E737805CB /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; + C66417A8A5758738388ED7AA58B30060 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; + C6BBF10D0568EACF7D5A2AAB7D8F18C3 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.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; }; C6D1B50F412563947401411DF8DE4D34 /* UIImage+WebP.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+WebP.h"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.h"; sourceTree = ""; }; C6F52C73A69547A8F79B0ADD6616B8E2 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; - C72C1AD2A046915E567F543A12890B11 /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; - C73BCC4D70C58C75B36F4C6446BA10A3 /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; + C7082E79F2AAB8C5DFA3C141991F6634 /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; + C70A672855707370603108A8BB354B3D /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; + C73A6840F412A81A8DB9E48578EABA3F /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; + C78FC1440F0A278101EA115E5D9AA22A /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; C7B6461DDADD7F645B46FFC393866F9E /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; + C7C222BF7D9472BE80CE933B394805B8 /* react-native-video.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-video.xcconfig"; sourceTree = ""; }; C7C5F0144054BF042A76CE92B837EE3C /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; - C807FECCF102D19262B8F17694D029D8 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; - C809FF26F15281FB86EB559F471601F9 /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; - C825CB7BFB6E74922A33A3A1B0652F6B /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; - C831AD93D1E9564ECE14E70441D6FBFD /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; - C83F243A97A8963BC59CF8A6E58A55DC /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageStoreManager.m; sourceTree = ""; }; + C7D9D34DC43886A53207BF9E80D3BF3A /* EXCameraRollRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraRollRequester.h; path = EXPermissions/EXCameraRollRequester.h; sourceTree = ""; }; + C82027183D5FAE25C74A7F14B79D1AA9 /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; C8411FFB4C7500F1F655210A66B725EA /* dec_clip_tables.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_clip_tables.c; path = src/dsp/dec_clip_tables.c; sourceTree = ""; }; - C8917E400B130A86B473571407C82E28 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; - C89FF0810BD4F04063F625B87CD9043E /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; + C86203125B00920102E9A9E6EF3DD532 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; + C8C29DF21EC6F9850ADF4FC2EBA9AEF1 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; C8C5CD2DE6191D4F0CFE7D02E8112BDF /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; - C8E67417E99A03C5E1CB973129A8A8E3 /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; C90497D51FA05FB28EEA809E24218800 /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cct.nanopb.c; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = ""; }; - C954E8150DF46DCEA657CC0B3718B112 /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; - C967157D298B7BACB2B943C8DB8CFC5F /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; - C969D899668D9AD51A4D693232EFE593 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; + C92DE7A07F2E756DF5DFA76B0D7364C4 /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; + C95F7F0BB59E03EF5CBC816D28B51A8F /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C96A5AC4864557B5EC8617A856C2886E /* libReact-RCTActionSheet.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTActionSheet.a"; path = "libReact-RCTActionSheet.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + C97BD572963C9686094E01478F35B7F1 /* RNUserDefaults.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.xcconfig; sourceTree = ""; }; C997C0CEE444EEC9B8F029D7578EF0E8 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; - C9B0CD9BF00D66ABC8476B8206A847D7 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - C9CB52510C7D90A4BC4CF734E58B1883 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; + C999CBF0CDCCF9350B0C0A8215830F1C /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXPermissions/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; C9CBACF7C7861F9B9DF318E9580D1FA9 /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; + C9CF53D2295282EC9ACA6DB73EE9A9B2 /* RNFirebaseInstanceId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseInstanceId.m; sourceTree = ""; }; C9D3CE9E910139A9E291604E0D688B9F /* lossless_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_neon.c; path = src/dsp/lossless_neon.c; sourceTree = ""; }; - C9D511B84C427CC29548E68483C6B16E /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; + C9E713F50EF0A4980AF38416D683468D /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; + C9FCCD691B58ACED82B04848C9B9B860 /* react-native-keyboard-tracking-view-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-tracking-view-dummy.m"; sourceTree = ""; }; + CA10FB1E0DFFF0B0FD133DC021512D3F /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; + CA123E117105CCD6B185D40422D7DC30 /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; + CA1F092C65DA8E6C48C6F21690506982 /* RNCWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebView.m; path = ios/RNCWKWebView.m; sourceTree = ""; }; + CA28D65097E457C8F388D75083A9111F /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; + CA3904BCD27523736FE542F13F3E9869 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; CA47AC809E1A327630C1C1C635D41B55 /* alpha_processing_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse2.c; path = src/dsp/alpha_processing_sse2.c; sourceTree = ""; }; + CA59BBE9E3A2CD7230971CE0ABA9D965 /* RNFirebaseStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseStorage.h; sourceTree = ""; }; CA631A6A406987E1F1B615C640440C9F /* SDImageWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageWebPCoder.m; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.m; sourceTree = ""; }; - CAB831E3C616717D719D35E55728038A /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; - CAD73DC9C17FE6AC5CF8C596197A6F2F /* UIView+FindUIViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+FindUIViewController.m"; path = "ios/Video/UIView+FindUIViewController.m"; sourceTree = ""; }; + CA7FE353B17B9F6411D1B8CC4F38E112 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; + CA8CD0CACBEE0102D390A826D6A512AB /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; + CA94976BBB1A2EF6CDDEA7C1D01F25D3 /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; CADAC6F2BA25DF61057FF0ACAA1F600E /* GDTStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTStorage.h; path = GoogleDataTransport/GDTLibrary/Private/GDTStorage.h; sourceTree = ""; }; - CAE0ACF9C9C3F738A9F297AE3BDACC72 /* libQBImagePickerController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libQBImagePickerController.a; path = libQBImagePickerController.a; sourceTree = BUILT_PRODUCTS_DIR; }; - CAEA9BC3766046E69CEFA2DBB6FAD110 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; + CAE7752D029A98D84435AAB9B13C6C3C /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; CAF1D5CB0ADEF95962020EC540962C5D /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; - CB3FD3DDA303CB0BB46A273621F0A894 /* RNFirebaseEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseEvents.h; path = RNFirebase/RNFirebaseEvents.h; sourceTree = ""; }; + CB24821F8D92E1785823CD7E825ABA72 /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; + CB44A58EFD3D043C620F7C7CBD9A3E54 /* RCTRequired.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.xcconfig; sourceTree = ""; }; CB5AFFF5AA989115573980515B16C98F /* webp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_enc.c; path = src/enc/webp_enc.c; sourceTree = ""; }; CB5B3DD0CB25806244B3A979B3155F4C /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; - CB616159D52ED6A8BE29F63774540732 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; - CB71FB953386F4844FC134EAEB38AC56 /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; + CB72724311908317E86E7679E0EB38B0 /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; CB80C73A069C4CD8C0ABD0122B0CECC0 /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.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; }; CBAA112A0946E2A10349054B42CCFAFD /* alpha_processing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing.c; path = src/dsp/alpha_processing.c; sourceTree = ""; }; - CBAC4A58CACE4D055CAD511ECFF72574 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; - CBCD8EB01BC31B1ECEED391EEB3E7088 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; - CBD5488259C5761A140A5F80A6469C35 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; CBE49B902ED4AA80540702944BFB6633 /* GDTStoredEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTStoredEvent.m; path = GoogleDataTransport/GDTLibrary/GDTStoredEvent.m; sourceTree = ""; }; - CBF682EEE52E0BFF5D740021D12EB670 /* libGoogleDataTransportCCTSupport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransportCCTSupport.a; path = libGoogleDataTransportCCTSupport.a; sourceTree = BUILT_PRODUCTS_DIR; }; - CC191D45EDDC88508CBD0A193A27FFF7 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = React/CoreModules/RCTImageLoader.h; sourceTree = ""; }; - CC7DA785F2379D5642EA43D528611C39 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; - CCBDC94101D93E6A3DAC4082116D33C6 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; - CCC35CAF48E84E321DC0A754C14D4155 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; - CCCA8C22CFF4E0CE7E180BE244CBE1CE /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; - CCD3EC953CE3B6A1C8E5ED1E0D31F6C8 /* NativeExpressComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = NativeExpressComponent.m; sourceTree = ""; }; - CCFC50593E8A77E6FC49557494D69F29 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + CC175D849FF5E17E87CAA2E1FA679940 /* React-RCTActionSheet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTActionSheet-prefix.pch"; sourceTree = ""; }; + CC5DE05F0AFDA59DEC6A3F5271D6E24B /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; + CC74A6BA09B50FC84C6B08F70CC9B206 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + CC91B809615D4E91E1703E046ECAD0C0 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + CC97112575841E4BF0BBEB424C56236E /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; + CCA72E64A0F57F58993904DBB63B6CF7 /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileRequestHandler.m; sourceTree = ""; }; + CCBCD1ECB8F92058FCF51464F3E09844 /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = ""; }; CCFF7C53C3F65EAEFBB65DD3DBFD0080 /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = Firebase/Core/FIRComponentContainer.m; sourceTree = ""; }; - CD32ADA37A4032844E49367E51BC76D7 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; - CD440779B1A0E00415FAA7DAA2DFB245 /* RCTBlobCollector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobCollector.h; sourceTree = ""; }; - CD4E0F5A984C13FE07AE59684229B9D9 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = React/CoreModules/RCTImageEditingManager.h; sourceTree = ""; }; - CD6358ECF478DF14FE6E68A4D9842235 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; + CD04E51D86BB4E5F81EE41DDE5BA4063 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; + CD297B797ED674D2A6DF814ED0D84459 /* Yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.xcconfig; sourceTree = ""; }; + CD662CEDBFD96BFA0736A129B582B0AB /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; CD66EEAD4E79983350DCD51A38F9617C /* firebasecore.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = firebasecore.nanopb.c; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c; sourceTree = ""; }; - CDC60B19EC6EC55E064F928C2AD605E5 /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = ""; }; - CDD1C880EA4AA2B057D5D718DE4E0F6D /* EXAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppLoaderInterface.h; sourceTree = ""; }; + CDCE878B34213960A39C86D72769BD67 /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; + CDD45AA3C601E1A3A45A712E8A9DFD90 /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageViewManager.m; sourceTree = ""; }; CDE2E14DEF8ED843D0CF8135FEB889A2 /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; - CDF5162864A25597045E77E8CF6847AF /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - CE184E2EA75C75D6E19C3620720A22B1 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; - CE53AB3C1008082211D1514B0956C381 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; - CE5B075784AEE1B096BE275D46997AAB /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; + CE243AAD7E2688A6F06CD4B9E4124DCC /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; + CE32FD9AAE872F96034704AEF28E8F62 /* libReact-RCTText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTText.a"; path = "libReact-RCTText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + CE5496E6F7A3AE3054CCDBA23677DF90 /* BridgeJSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeJSCallInvoker.h; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.h; sourceTree = ""; }; CE6262D56D601609A89D3D28DE908AF9 /* GDTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTAssert.m; path = GoogleDataTransport/GDTLibrary/GDTAssert.m; sourceTree = ""; }; - CE6A5EAE2D00F96C4034EEE29B3B48A8 /* RNCUIWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebView.m; path = ios/RNCUIWebView.m; sourceTree = ""; }; + CE745798B9CD3C17B8AE5DB7C87F66D9 /* 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; }; + CE79154F117485E04A02BF0BB2FBD4BA /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; CE84BAF378592FCDBBBE6A223C68147D /* RSKInternalUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKInternalUtility.h; path = RSKImageCropper/RSKInternalUtility.h; sourceTree = ""; }; CE94ECF312F6A0B42B6BE768C75B7482 /* upsampling_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_msa.c; path = src/dsp/upsampling_msa.c; sourceTree = ""; }; + CE98B91B77E42906684C87AB8E0800E8 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; CE9DD018769C9C2FCA491ADC228A0851 /* RSKImageScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageScrollView.m; path = RSKImageCropper/RSKImageScrollView.m; sourceTree = ""; }; - CED89ECA78AFB932B7320D7D5667B82B /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; - CF091148045C9BE0A1F7DB31B12A171D /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; - CF0AD6EBF14D3F52DF8F7A94928B4D97 /* RCTVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideo.h; path = ios/Video/RCTVideo.h; sourceTree = ""; }; - CF15B0E81578CD4A65CC515D17F032C8 /* RNFirebaseAdMob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMob.h; sourceTree = ""; }; - CFEC11A91A614DDE0F8761B5EB73A90E /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; - CFF3B04503AFB5C9CBA1D54B1A9FB737 /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; + CE9E9ECC868228D37412CCD7DEA7CE22 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; + CEA26965AD99DE602B0FBF3060FD7E1B /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; + CEB737E34428B67F981BE7321E784390 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; + CED7B95E4A78B2AD74DB8526ADD32676 /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; + CEFF64BE17DA431B947FAF2F59C45554 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; + CF4562602F7A58F59F5BCCEEBFE71FC7 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; + CF67E5C4B0A7AB4861DF8E845B259ED3 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; + CFA757F4A01E5EE1C0D49E13B09169AC /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + CFDAA17195D4BBD9B343F6A16B797EC4 /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; + CFDCAEAB682B98ADF0EAA9C335C0131F /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; + CFEB170D65147AE6B399CAEAB51CDD83 /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; + D0280C22D66CA99355BCC526A3BA164F /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; D02A7A1FD348673DF58087A42715BAC1 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/Private/GULReachabilityMessageCode.h; sourceTree = ""; }; - D037B36024DED1C435D210E5E67A1150 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; + D02ECCE46323D1937AF1BD582D5AFEB5 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; D03EBE6D3E591C28B345A65B16360526 /* SDWebImageWebPCoder.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.xcconfig; sourceTree = ""; }; + D0453667D24E7F60CE58700765778DD9 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; D04FDD6B4AC745C08223B4D304F993AA /* Pods-ShareRocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.debug.xcconfig"; sourceTree = ""; }; D06DA09FF14C0C4880409B9CCF4AD1E4 /* FIRInstanceID+Private.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstanceID+Private.m"; path = "Firebase/InstanceID/FIRInstanceID+Private.m"; sourceTree = ""; }; - D075654742F028D83F37352D3F3FC755 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; - D0A9025FF4604B47ACC9C18CC3C62938 /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; - D10EFDEF22B73A9DC0BB46C6D7C1AF51 /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; + D0AE346535487551E03C418FEBE76792 /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; + D0D4EB434E2A7084401400859BE709FC /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; + D0E211E286336B914A2B19295E3B9225 /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; + D0EA0D0D64A4CC345586C1291CA087A6 /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; D135D13B9F1E5B7D35C088287A29344C /* GDTTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTTransport.h; path = GoogleDataTransport/GDTLibrary/Public/GDTTransport.h; sourceTree = ""; }; - D13C1A951BD80025F2D15E06D9B2DC4A /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; D14790922BEA06A54EC252F69D7A7774 /* FIRInstanceIDBackupExcludedPlist.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDBackupExcludedPlist.h; path = Firebase/InstanceID/FIRInstanceIDBackupExcludedPlist.h; sourceTree = ""; }; + D18FF1C7D96E0D3AAE070E96C680B5FE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; D1B4AB45A9F69AA7CFC94AF05D8DCFF0 /* picture_tools_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_tools_enc.c; path = src/enc/picture_tools_enc.c; sourceTree = ""; }; D1C56BE80AF1FE8CE01A1E6B7B9F51FE /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; - D1DF776A8CFD4EA62F1B7106C11682BC /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; + D1CC13168FC8DBB7DDF9AB78DCD3FBCE /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; D230EE1096F3D6F19088E6D44B8AD1AE /* cost_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_neon.c; path = src/dsp/cost_neon.c; sourceTree = ""; }; - D23F19BE79A6C5376A549BC4556DDEA3 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; D241BAF87527D9716051AA18E4DBF848 /* GDTEventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTEventDataObject.h; path = GoogleDataTransport/GDTLibrary/Public/GDTEventDataObject.h; sourceTree = ""; }; + D2425D4C3CEFC71CFF79A3F397658994 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; D242D9E89804010D15F96FEECDDC22FB /* RSKTouchView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKTouchView.m; path = RSKImageCropper/RSKTouchView.m; sourceTree = ""; }; - D246168C9275EE7834A1179D99B68307 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; - D24821990A889E6EA12453C3284F5C2D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - D2636EF8E148C627BDF9737E2572C5CB /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + D253F0093B088DDC3E1FAF79F9E53D45 /* RNFirebaseAdMobInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobInterstitial.h; sourceTree = ""; }; + D25FF2A1A7108DACA8AE84999769A5AD /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; + D2623C93B9C015E9A8F1571FD31B16E6 /* libReact-RCTAnimation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTAnimation.a"; path = "libReact-RCTAnimation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; D26DCA8456FCC2D29FBD25DB58BA91F1 /* bit_writer_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_writer_utils.c; path = src/utils/bit_writer_utils.c; sourceTree = ""; }; - D2753FB4B7CFA9E756A41628B99BBA9C /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; - D285D652FCDE706776F874DCED406C5A /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; - D29FAC4AB3DAA712FC48194E75DE9B86 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; + D2A08675E7AE166CE5245BAB36CD6FC5 /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; D2AB9B67B0F639DA759FC1B0841BC6A9 /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; D2D458AB4BED0D5249B67CC59E72E84D /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULAppDelegateSwizzler.h; sourceTree = ""; }; - D2FAFDD2278AD0DB7E73BC0FB553E1C6 /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; - D2FE14F9627496A030104ADCC9D2A5B1 /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLocalAssetImageLoader.m; sourceTree = ""; }; + D2EF1493FE19EF6E9A7C6F8A066868DC /* 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; }; D30D5B4250FE25C0D94E0FD37FCF9A12 /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; + D3245588DCAD4CF71DF8859685764FE8 /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; D326E96219DBD79E0321A7440F88A33A /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; - D3E1FF370DE1C55EB660BD7C86F8DCD3 /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; - D407CAF1CE5A3A9A358FDDBBE99BA539 /* EXAV.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.xcconfig; sourceTree = ""; }; - D411C6E983EA5D486B179BEF94DE3729 /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; - D41DDAD789714C293FC2E18862CDC8A5 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; + D39C219FA741DA0C29860635ACF28C4B /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; + D3BA9D50CE03C2E15E321FF935241AD7 /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; + D3BEA212F612722EEDFAD978C0BB39D8 /* EXAV.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.xcconfig; sourceTree = ""; }; + D3C3F2AB2E31399ED485A9653BC34AF2 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; + D3C577DE9EA19FAAD3F409D681829FD7 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; + D409D02ECC9D15E6DD381481625E516A /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; D434EDB1CBB94586CAD133E0226092CC /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; + D441D8AF46EAB4DEC84B6D1DF54A222E /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; D44B1D1C9573C46A21A7539427E60A74 /* FIRInstanceIDAuthKeyChain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAuthKeyChain.m; path = Firebase/InstanceID/FIRInstanceIDAuthKeyChain.m; sourceTree = ""; }; - D47D7BFB7566E8A7C3476E0370D0BE27 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; D4802F7230B9434BDE45E05E615EC1E7 /* DoubleConversion.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.xcconfig; sourceTree = ""; }; D488F72CE205F7975B1AFBD3F1D1A201 /* SDWebImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageWebPCoder.h; path = SDWebImageWebPCoder/Module/SDWebImageWebPCoder.h; sourceTree = ""; }; - D499B4F692DAC8B5F904AEB64CA1397F /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; - D49F9ED1D4CB45DE93625BA200435AC5 /* RNSplashScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSplashScreen.h; path = ios/RNSplashScreen.h; sourceTree = ""; }; - D4B411DFA781143F4EFDA63B4BE25ED6 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; - D4C2FEABDB84EEA3D5D959A81F784F46 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; + D4A56D810B8EC11BFEA5D4C20EFF3AEE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + D4A7792216784BB7402BC5B2693927B3 /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; + D4CE9E92E07ABF17FED46F4750B649E2 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; + D4D6A0329CD649D0C075E993F930BFBA /* libReact-RCTNetwork.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTNetwork.a"; path = "libReact-RCTNetwork.a"; sourceTree = BUILT_PRODUCTS_DIR; }; D4D89B195649657510780B4B9E5BF4A9 /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = CoreOnly/Sources/Firebase.h; sourceTree = ""; }; - D4E212EFA993BE1ABD93E72D1F998AFD /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; - D4F2B316FCEE4100AAD8DDD9D79489FC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - D51E4E0999A9EE8000CCA538CED6A950 /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLinkingManager.m; sourceTree = ""; }; + D5050F9FA6EF770BDC0BA85B547449F2 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; + D5065EADC6A4E0E4BD0D987857BA04DC /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; + D52F8088FD47E4E052367ED557DC9D38 /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; + D58829D210FBE20929D48359B702D2FA /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; D5B72979CC82624B5FF3546982CAB762 /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; - D5DBFEDFA3C0C3C493B8260D15BB5DDA /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; D5E13D2F2560B38BE6E926B65D649D7C /* rescaler_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_msa.c; path = src/dsp/rescaler_msa.c; sourceTree = ""; }; - D5EC93F587CEDA8EF6C9365F76039DC8 /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; D624A4AC905CEE30FA3E4438A36E08D2 /* GDTUploadPackage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTUploadPackage.m; path = GoogleDataTransport/GDTLibrary/GDTUploadPackage.m; sourceTree = ""; }; - D644D4D368E497F4AD756C4766676B55 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; - D648BCD4E994941382EE954821EC72CB /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; - D6676CECE89CEB3E98A9AFCB004866B9 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; + D6415C4D17B283E12255572B27EA49A2 /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; + D66A5ABDC175A4C8569498B8AFCB1B5C /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; D682A46134B9317FB89052EDDBF2A659 /* SDImageGIFCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoderInternal.h; path = SDWebImage/Private/SDImageGIFCoderInternal.h; sourceTree = ""; }; - D6863EBF92CFD00404CABBBFAA83E752 /* RNAudio-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNAudio-prefix.pch"; sourceTree = ""; }; - D6938FD59A2A273E2C6B63F1BC024D35 /* libYoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYoga.a; path = libYoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; D6A298CEB203F72FFD7EEF4C03CEF0AA /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; + D6BF450B1CF01327AAEFF3843EB2693E /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; + D6D5927AF267515C77C90FFAAA11F663 /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; D6DCAEB56D8DA54613340766690167C0 /* vp8i_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_enc.h; path = src/enc/vp8i_enc.h; sourceTree = ""; }; D6F6AFB15AD1A3DE9AE390609384F1AB /* WebRTC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebRTC.framework; path = Frameworks/WebRTC.framework; sourceTree = ""; }; - D70B7A85E1799D72D9A6A6A957E9BA3D /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; - D723DCC6EDB2BA705256F4BEB1305ED4 /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; - D73173F5C68231D473A1D311BD7AD5D0 /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; - D741452E5AD995173B4FB5224589A542 /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVibration.m; sourceTree = ""; }; - D75770D70B9176C24A1674970C0004EE /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; - D76047925FF4F0719ADB2EBBE83482CA /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; + D72A5086705F3BAFEB1269EBE778F566 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; D7840E936631EC0CDC218A200B993CCB /* mips_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mips_macro.h; path = src/dsp/mips_macro.h; sourceTree = ""; }; + D78CF1A78FD76E950A83F5B95A112877 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; + D7A718E9E40F641EF25CBB285005DF86 /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; D7D231B7CEF66B3DD619BE56A21D09A5 /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; - D7E3497D52E7538E1EB549888A128920 /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; + D7DC864424FFCD32B48738F8E72507CB /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; + D7DDA4B923909E2ABB26250538C84B76 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; D7F800F4B8A79178A1AA514238E791D1 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; + D801AF3D252F806D05976A03102E51A5 /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; D8322329471A998422CAA20E7C3BDAC2 /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Private/GULNetwork.h; sourceTree = ""; }; D83FD833133BF0578E165633F10E99BA /* FIRInstanceIDConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDConstants.h; path = Firebase/InstanceID/FIRInstanceIDConstants.h; sourceTree = ""; }; - D840A641681843914893876836B4FA96 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; - D8634B303C42FE1F0F20D61F101838A9 /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; - D8B3C5324F767E3D5D28D4349F972EF0 /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; + D84BF71B3FD7D916318D8AFA3EC8C5BA /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + D8849FF2FAA7B4ADE1401764D456AC4F /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; + D8948C8DEFDFA24AACADDEF258199A1B /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; + D8AB62C8A78A17043382295D5AF6DFE8 /* EXAppLoaderProvider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppLoaderProvider.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D8D0CA6E66E84D101882B52AA7A338A6 /* thread_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_utils.c; path = src/utils/thread_utils.c; sourceTree = ""; }; - D8E41E332347521A9EFD65108E123861 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; - D8E94CEB3923CB382D202DABF854A44C /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; - D8FA8CB12E8C02963D96851B8B76A24D /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; D93050D6F9D827CAE6D7A7B952A30937 /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; - D944D2C962AF7FFDEDE2EDBF81D15D80 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; - D972552423F6AD7AB4A8697D7C7260B1 /* 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; }; - D9A715C953721810364533E47CD0AFE1 /* 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; }; - D9A7A987F3D7883C69C41E59AC3A8FEC /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; + D9320BE88E741DEC5491727C41EC8630 /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; + D9447883194DD09F8CB8F5CC8B8FC23F /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; + D976ACE9A0F79565855CDA712FD9AAC2 /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = ""; }; D9B9CB9BED0E87673E9A18E363E4817C /* FIRInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceID.h; path = Firebase/InstanceID/Public/FIRInstanceID.h; sourceTree = ""; }; - DA21331ADF7A5A9FCED79E5632563FF0 /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; + DA1E6F5DA1C5B7BE02C7F9FAA2E7D246 /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; + DA2862C764DC067202223164258F2549 /* RNFirebaseAdMobBannerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobBannerManager.m; sourceTree = ""; }; + DA2E1D5D2151B6E028039E086377861B /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; DA46B0664E3A7BB9E473F604D77A3A5A /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; DA4A8DA48D85D2FA92152D838BCF910C /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; - DACEB7B2D1A2E0D3D73A0E65603FC960 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; - DACED286BD47D7AD609C723B7242D576 /* react-native-keyboard-input-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-input-dummy.m"; sourceTree = ""; }; - DAD0AAA0CE228A80C43121A88A1DD229 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; - DB108326E3B7C7826F1866FE12076A6F /* RNFirebasePerformance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebasePerformance.m; sourceTree = ""; }; - DB4EAA863CB8178BB1393C42EC98C6EC /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; - DB6771F44EED20E2F205901766E3B2B4 /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; - DB8F16FFD59A9DBCD4C6C6E23270431E /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; - DBA790A60CE99F2A73FACE7020931AD1 /* RNSplashScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSplashScreen.m; path = ios/RNSplashScreen.m; sourceTree = ""; }; + DA5783422343FC461A172E9D4CB314D9 /* libReact-jsinspector.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsinspector.a"; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + DA884B5D6B9B7635794D7EFC0E4BBD1F /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; + DAC7475ABC0A021C153586AF1B38843D /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; + DAC88AD06AFBA35B7614B2892CE1862D /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; + DACEA80519903C23ED463542B32F17C4 /* libReact-RCTImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTImage.a"; path = "libReact-RCTImage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + DAFA46D343260CFCD8636C9260F0491C /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; + DB2CC93EAFD0652A1251BE276258BCAB /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevMenu.h; sourceTree = ""; }; + DB550C0B57182EB7ECF71B581CB8332D /* libReact-RCTLinking.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTLinking.a"; path = "libReact-RCTLinking.a"; sourceTree = BUILT_PRODUCTS_DIR; }; DBBFC044221634764300D4A0C8191226 /* CGGeometry+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CGGeometry+RSKImageCropper.m"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.m"; sourceTree = ""; }; - DBC2F83BD3B511BEE9C55FA2CBACA7A0 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; - DBEC11F5DB238129703CC03ABDDB43BF /* RNCSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewManager.m; path = ios/SafeAreaView/RNCSafeAreaViewManager.m; sourceTree = ""; }; - DBFEECACDCA958BC8BC56A193507F759 /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; - DC91FC415BF07278BB1143F82FC4B0A1 /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; - DD0D00FE3327C2F3AAF31DF2E62C48BF /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = ""; }; - DD120F25C58E02FF25C34A48AA6D236A /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; - DD890BA80EB035A36FD6A5A786D84ED1 /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; - DD8D7B5399AD05721EA49A7E760680FA /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; + DC3DF2419CD1889E2B7759D0212C1489 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; + DC43EFFCE628499967009E8FD1F6CEE3 /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; + DC5012D88B77C31B39BB274BFF3219BD /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; + DC92291832A9A80C8FEF22C37FAD5B20 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; + DCBE288F57E819BDF9FC650A6C8F0D36 /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; + DCF6C088310EEF30275C9C3B4DBC9F25 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; DD8F6F3A202816B146D6B3887E8AEB74 /* FIRInstanceIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDStore.h; path = Firebase/InstanceID/FIRInstanceIDStore.h; sourceTree = ""; }; - DDAE8975226BBDF2C9A644C5729818F2 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; - DDAFED18C9F4F5D9592FED828F7B620C /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; - DDE1D68A0411438F5059BE30FB81BA16 /* RNFirebaseLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseLinks.h; sourceTree = ""; }; DDF3683F3ED11F7BCF308D682651AAAB /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; DE0704E4E2DE0B2DCC750EDB922186CF /* RSKInternalUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKInternalUtility.m; path = RSKImageCropper/RSKInternalUtility.m; sourceTree = ""; }; - DE0933C2CA15790260A9C7B82C577FBF /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; - DE1C30BAC2ED54837D3F040C0D93F2F1 /* RNFirebaseAdMobBannerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobBannerManager.h; sourceTree = ""; }; DE2B26B0E0BFD62EF816B83137A018DC /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; - DE3D407177E3340F50BA97AF82EC41F9 /* 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; }; - DE738962416D1A0FB5D95C5025691CD5 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; + DE721E39C1F43835E859AE29B93A0629 /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; DE7628942074E2E9FB76E1CAEDE49271 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = Firebase/Core/Private/FIROptionsInternal.h; sourceTree = ""; }; - DEAD8975DD0A2ADE8EAB85344308B844 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - DEB3B6D514C2E342DE40B97B52129F77 /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; - DEB90A98E2586521660B8F518126D411 /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; - DECB4E2CB41F6F5A85BF7CC64AF2731F /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = ""; }; - DEEF2251E2F5CA323596D6574F57B77C /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = ""; }; - DEFBFCDC16226A55B499ED6D0D4ED042 /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; - DF52A7476EF833C7CB94B0B1A3AFDCFF /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; - DF5DD3F2D99D789C21808B3CE21D8B44 /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; + DE8CD113CD3693946B31BF3AFBA15182 /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; + DEB21DA40A7D7B3E1D6A593245AFE04E /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; + DEFE7EF20F15D8C51FA1E7BE5ADF72C6 /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; + DF239F485579D2099543B08E4165026C /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; + DF2DC0C44CE483ABD4F98B0E5F097840 /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; + DF369DF3D4A9549CF6A59A917F768541 /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; + DF386E1B9ACF1CF737FA57899C6F62A4 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; + DF4912D26F07B97028F264B684A5A5D6 /* 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; }; + DF584DF14D519DCC098367248F4CD3AC /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; + DF5F4B608EFC5C937FEACB0CBC41C0EB /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; + DF7D9692AB0CF9237BA7B4C9E0ED16D1 /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; DF84CFF1949A27612BFB1D82133AE8CD /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = Firebase/Core/FIRApp.m; sourceTree = ""; }; - DF951CC9A59E82FD8FD3175E18C167BF /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; - DFDC71CC528CD516EBE0949D4046A3A7 /* libReact-RCTBlob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTBlob.a"; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - E00256C3604B84A2CCD6B0756DC79CB2 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; - E004884B5E4F1EE047A95A3E24ED00B3 /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; + DF93D4B0A603CD0CF6CB0F2F77D43126 /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; + DF9E339F522DAAB2B9E73F31537F8FFB /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; + DFC4812CE6BA6F03A4828EA600CD1D1E /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; + DFD1497E7A315817235A43F4C5B958F8 /* RNFirebaseCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseCrashlytics.m; sourceTree = ""; }; + DFE5E733EDF5FEF87333D061419E89A6 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + DFE6F4AE4A52E0402C95624B31731A16 /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; + DFF749D95E264156BABFB798B5B5F3D6 /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; E0145F79BA0A88C2B2E2AF8F48357CD5 /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; - E0224C0B2583436EB8BEDD12EA61A543 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; E0261F725100B4F0064DD6041D2571D8 /* libwebp.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.xcconfig; sourceTree = ""; }; - E0375D1357B3ECDD85500A747C13496F /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; - E03F9A9E47F0BA504C84E2D5F57B7F83 /* RNAudio.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNAudio.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; E047A854D579C83DD483BCBF81104986 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; E070640A397B53A09E64766337E88D56 /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTLibrary/Public/GoogleDataTransport.h; sourceTree = ""; }; - E0B17FD3C13B86EE8975CFCFA8456761 /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; + E0831E0CC52FF3C6413689E8FD108E7E /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; + E0A1BE111F61B60F675C339CF757757A /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; E0CE7E539FABA0D0602D2001A7B3D74E /* GDTTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTTransformer.m; path = GoogleDataTransport/GDTLibrary/GDTTransformer.m; sourceTree = ""; }; - E101C4D821571E73341FEA7624B607EA /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; - E10AAF26D2BF5079CDA145FFC3030730 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; - E111D53FF09A9CC77C5D9CE0C0F28263 /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; - E13B9720FE050B017C5D9FABA51E7940 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; + E0E131BC3D68CD4CF4E45F8A5B77A0C0 /* RNCUIWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebViewManager.h; path = ios/RNCUIWebViewManager.h; sourceTree = ""; }; + E0FE5E4F949A2D2D334FEB6417F012D5 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; + E1586535F11C552CD5FCA9E225D102FC /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; E171A346FC7D96C63AFE1735FF7770C2 /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; - E19CCDE6348867174E9BADDA3CD1BC89 /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; - E1EB00A993D6AA65E76A5C7D33178AAC /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; - E21DA4EE9E2F720E5E3894CA9F2F5A62 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; - E21FCC3B73E11CFE28CD1430766BFE6B /* react-native-notifications.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.xcconfig"; sourceTree = ""; }; + E18AD20128B69DC2D9A91F91108EEE60 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; + E198172F6749DBC8FFB5CC6034E4D8E6 /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; + E1E2E32840FA665638BC0BDAC13FD8BF /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; + E1ED833C1DF75C4BCB52EE680234CE3C /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; E229AE471DE8CDDEEC7790DBECC166E2 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; - E25537F9C2DA789257326F6E34715758 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + E2306D5FB2F49E75665AE8E3911A4754 /* libBugsnagReactNative.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libBugsnagReactNative.a; path = libBugsnagReactNative.a; sourceTree = BUILT_PRODUCTS_DIR; }; E27287031B8AAEE45985814B4EDF8D08 /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; - E2774BE5BA001204679B658F551086E7 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; + E279ED36192F6396844CD1D3AE31AE46 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; E286A13145ECBD0ED5107D7555B7B133 /* lossless_enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_neon.c; path = src/dsp/lossless_enc_neon.c; sourceTree = ""; }; - E296EE9D12A8D6AAFED566985277B963 /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; - E2DA6439760D44D175E990AC419CB65F /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; - E2DC8B644C130623A0BE199A4ED83311 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; - E2E96059D0CCBAE7A8F2B157F3D50038 /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; - E2E9A868A31FBB27BA168DEF4F7EBEB5 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - E33732DA4B76A1F597BB43892E075E26 /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; - E358966C3DFA031055AF8A397211BFC7 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; - E394BD039B2AF6514E2AC79928FDB8CE /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; + E298A4C4F98E3A5263D4CB82DEE411D6 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; + E33DD9742BBB769FD756DB0981348B97 /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; + E36693084136459DC362AEAFB76F6C6B /* RCTVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoPlayerViewController.m; path = ios/Video/RCTVideoPlayerViewController.m; sourceTree = ""; }; + E36DDE85ED8F9E2F285114A9607A7D44 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; + E399DC420F7D49BAA8DDEE6C78F05A8F /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; + E3C1EE15A8B761F2506CEEB138AB56FF /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; E3CB6BD41583CB5AFC7913B38BB7F166 /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = Firebase/Core/Private/FIRLogger.h; sourceTree = ""; }; E3D0280F0405F05E16163B124B4575DF /* histogram_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = histogram_enc.c; path = src/enc/histogram_enc.c; sourceTree = ""; }; - E40CB03180633460FF63486832E00806 /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; - E4134546CFE760F7541AF4F3851E901B /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; - E42DFF5D2D504893A52117043570B29E /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; 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; }; + E42E8FF004760A273B45C14DBFDEA993 /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; + E45D779C266172A684B698F1298F708D /* 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; }; + E46A026ECB5B82F99A115CFD9DCFC1F5 /* 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; }; E46CB1CAF8EA7964EFA29B3CC90A369F /* 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 = ""; }; - E4A298AA53A807D585B28DFEC3E3FE48 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; - E4CC9D857FD29E6865DA453DD2DC9EE1 /* AudioRecorderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AudioRecorderManager.h; path = ios/AudioRecorderManager.h; sourceTree = ""; }; - E5C53B891F06F1C7FF25B522823943C4 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; - E6390116C74EEB846D1541AA9EA9A560 /* EXSystemBrightnessRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXSystemBrightnessRequester.m; path = EXPermissions/EXSystemBrightnessRequester.m; sourceTree = ""; }; - E66589B0E33602D442277017EF0CA0B8 /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; - E6753D53BAE8459EFA98E4DEC670A9A5 /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; - E6A82EFE71F698F08729D8A48A8A18CC /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; - E6AD8F15EC6FADA0E51E861913D963E3 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; - E6B8BE17F389E0AE36CADB9F93E4AF06 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; + E4882FAE6F2C0CC916E6871F70A1A983 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; + E49095A3107CAB8BDABD87287A631C8A /* RNFirebaseInstanceId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseInstanceId.h; sourceTree = ""; }; + E4F72F67AB9685C072917A0880F7FF11 /* EXRemoteNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemoteNotificationRequester.h; path = EXPermissions/EXRemoteNotificationRequester.h; sourceTree = ""; }; + E51D7F63B069E4994B4B8D5E4C1D0675 /* RCTVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewController.h; path = ios/Video/RCTVideoPlayerViewController.h; sourceTree = ""; }; + E54C26DCEB21B7DCF12F63E0371C4636 /* RNAudio.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNAudio.xcconfig; sourceTree = ""; }; + E54F978444A7CEF84EE02DD3AAA36A72 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; + E597B6B237F0736D5C201E27C53A3F5D /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; + E5A0609A4F1D25071C96892F8D2DC260 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + E5AB4A66A2FE5D8764C6EE9096C72518 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; + E5DDEE85626A84F58AE2152550825C8C /* react-native-background-timer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.xcconfig"; sourceTree = ""; }; + E5F32C80489C8EE4CB8C544D85360E3C /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; + E60EB5702F44F0338F436F0649EA09E5 /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; + E612B4BB28A3B645D685CF9AD20AC095 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; + E61D1F9C622B0200284D9B1D2CAEA105 /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; + E64340356E6F9AE06CBF2BCFF3E18DB5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + E6AD35E2827330F6D0FDDA7A31D290E6 /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; + E6B75C132C07BC882F7FB5588848815D /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; E6C65C4BC155F8AE8FFD112237503535 /* FIRInstanceIDTokenDeleteOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenDeleteOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenDeleteOperation.h; sourceTree = ""; }; + E6E88CCF48AB30F6305AB96E4C0CB8C7 /* RNFirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAuth.h; sourceTree = ""; }; + E70628CB7C4150E60887D1C06A324ECD /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; + E706CE3149E69838539A935D471359EA /* RNCWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebViewManager.h; path = ios/RNCWKWebViewManager.h; sourceTree = ""; }; + E70AEED73E5DE6CF2AE2300263552226 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; E723D3596BFBC35A6289523AD2B53647 /* Pods-RocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-resources.sh"; sourceTree = ""; }; + E726FFE91602139913C1543A7328C450 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; + E730F5A0625FEFFE5532EA912AAFA8F5 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; E739CA9FF7C24F8ED603A7F7FDFFDFE2 /* dec_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_msa.c; path = src/dsp/dec_msa.c; sourceTree = ""; }; - E77491AC0355DFB465F2F2FAEF844D2E /* react-native-video-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-video-prefix.pch"; sourceTree = ""; }; + E749B8877B3B0EE7EEF1DDCF99DD0F83 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; E77E169257CAC680599A408A2E8BD165 /* vp8li_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_dec.h; path = src/dec/vp8li_dec.h; sourceTree = ""; }; - E78B4162D30CAA063A10BE260B449392 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; - E7FB5329CA2B0D95B2F1D40C347C62B9 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; - E813F14FA145A74331CA5F5AB0C0F2C2 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; + E788ED0D0E971350B6AA43A6E9EA1C8D /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; + E792A56960DE7B083053882538A55F5F /* RNFirebaseFirestoreDocumentReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreDocumentReference.m; sourceTree = ""; }; + E7C848FF3ABA2C35DBAD13A5D7F7C85B /* RNFirebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFirebase.xcconfig; sourceTree = ""; }; + E83BC0869C332952905502DB320B10F1 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + E849D6F37E7174B6C155619799AA8173 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; E8538B57397E0EBE516081FD6AB6BFC2 /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; - E8CC0C1D6B6939ABA8743AAE9D52F1E4 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; - E90406F2ED3779820587D3A9D975B17B /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; 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; }; - E9BE8BABF0FBA1318115BEAFCD7CA8E6 /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; + E85C0C94B7D5FB5DC0F407F2600152D3 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; + E88864F2F461C52C9E0228247A522A1C /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; + E8890B903CEC07A38B5E97F6B26123A0 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; + E89FA65752DFF12DB8FF3620228BE5F8 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; + E8B74C2FE69C1503D7FD854A9BDFE747 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; + E8BA406F1554548B86334FEEA49CD21A /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; + E91E1F32FD136A4D2C4428C141222543 /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; + E950A29E3193050AC0B092D929EC6165 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; + E9CCFBD3A7AF692B506909FDA846C710 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; E9D092DBFCC5CB2234422DF2728F3722 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = Firebase/Core/FIRDependency.m; sourceTree = ""; }; - E9DC781ACA5F2608552586A764F57DEB /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; - E9F927EC0FE47F451DEFE65068A5127E /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = ""; }; - E9FDC01EE742E5FCE16BC5D151DFE0EF /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; - EA235917F29DD4D3EC56B5BB3E473AD1 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; + E9D41375CE9A5EB189F9B8A07230DB4E /* RCTVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoManager.h; path = ios/Video/RCTVideoManager.h; sourceTree = ""; }; + E9DE536273503BFD853C7F1E29AB5F9D /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; + E9F7DBA2F2ADB56223D8FC71E44FC92D /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; + EA56701034E43E1D4C2BA343E80A18EB /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; EA5FFEA91E07D363F41AE15ADD8C866D /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; - EA72A3724480391C51D0E847207DD53E /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; - EA73C235F91696E58796122777A55141 /* RNFirebase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFirebase-prefix.pch"; sourceTree = ""; }; - EA8C0B67A692AC97697019F89486F73C /* RNFirebaseInstanceId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseInstanceId.m; sourceTree = ""; }; - EACA7E6E24B3033A59D542F7EB8FDC62 /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; - EAE5CEAD32D3EA75775A09A567A1464E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - EB0772A091863E29F4B6FB5D7FE1C8F7 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; - EB5FAD175A817898D734D0C0922E2D1E /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; - EB90C3B9038444E21C8CF6386023AD2A /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; - EBC54ECFF8601AC96927D4ED2FA737DC /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; - EBC637EE3FDD33592FB4C7CB0EC80A47 /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; - EBDA33B4DA1649A6BE9DCDF2629B533F /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetworkTask.m; sourceTree = ""; }; - EBDB25D003B75D0DC0446CB4F81F1D98 /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; + EAA1B093A4DB20F9F31584CFE7262384 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; + EAB5F55088374969C34AC879E3F596C0 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; + EAC1B1DE473FB1605621FAF200F94389 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; + EAFF7DF58471BC362F2D2DAF2215797F /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; + EB072EC67FF85120DF099767F4317442 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + EB44D8F303D45D242103CDB25BF48DBE /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; + EB6BD9F82161C104132984C6A19CCE8E /* RNFirebaseFirestore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestore.m; sourceTree = ""; }; + EBCC1EE518130A7BEB24147271BD699A /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; + EBE1A045C51E644379FCA7BB5C1A8C10 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; EC07CD6EAF5BAC50B9F7AB1B4AF6026D /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; - EC5EAD2792D00175F98B34546D424FC6 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; - EC79979FA356F2FE9577C55BEFBCCEC9 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; + EC73666E50DF41FAD73DDF692BD34931 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + EC7B045962DCBDA2CAE57D022600ECFA /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; EC9287B023487367544B583D62504235 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; - ECB864743EC58A9D1903C657F8429652 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + EC977BDF60F0D8FD5CA3971CDBEF3EA0 /* libReactCommon.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactCommon.a; path = libReactCommon.a; sourceTree = BUILT_PRODUCTS_DIR; }; + EC98255645D800D93AA313FBD7A2C65C /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; + ECA4B460688DF2142CF64C2256B71522 /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; ECD343076F797FCD752BE527123BF02B /* NSBezierPath+RoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+RoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+RoundedCorners.h"; sourceTree = ""; }; ECD53A35203CF3EFF6CC520D9BB5439A /* 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 = ""; }; - ECD86AC6341CAC8C5E06112720AD6391 /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; - ED0E072C4FD33A7C346388106B39B1DF /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; + ECDA3645A898A8276498D93C1190AD6B /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; + ECE10FC2BF38F1BB875A7D45C9856E5C /* libSDWebImageWebPCoder.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImageWebPCoder.a; path = libSDWebImageWebPCoder.a; sourceTree = BUILT_PRODUCTS_DIR; }; + ECECCA3D20B6BDA3040997E7EE61D10B /* 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; }; ED10B73795E82AA9A70F0B015CE551AD /* muxi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = muxi.h; path = src/mux/muxi.h; sourceTree = ""; }; ED5429E388CD23904C491234D507B650 /* quant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant.h; path = src/dsp/quant.h; sourceTree = ""; }; - EDF98F2A7B780B4EB26AEEE45E9BAE4F /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; - EE07FCC6342859FF992CFD4249BF0346 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; - EE1EC80F8BD71CD7BE459EE5E2EAFAB9 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; - EE87A6DD2B6DBB14E64433982A168E10 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; - EE93680BB531D9FA4678C4FB50E8DA92 /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedModule.m; sourceTree = ""; }; - EE953B05322E4D02384D64B041779BDD /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; - EE9EE401ABBE74AC838AF98616190666 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + ED5CE9B9F397590A36DF9262A13DAAAC /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; + EDA35732043AF03C1D0A9D11AC79A10A /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; + EDAA4916ACE76B6A069F9ED3C4ED339F /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; + EE4E17CB57E71CEC6326510BBD28C33D /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; + EE9B1F8A8D75DBD0B724CBBC425403EF /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; EEA510D50642D5063ADD2D6ED11895E4 /* 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 = ""; }; - EEB5281683361FD2FB295C3256F443F4 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; - EEB58D09EC7DED96CE561CE64145D5A8 /* RNFirebase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFirebase.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - EEE2ADF260DC6B0C67C10B80ECDFFDF4 /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; - EEF5E79E130ABC8A6FCE174D8710D6F0 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; - EF039B2109A76249DEC888435F565A48 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; + EEB466F74ACC7EBC0B496B85E36EDB3F /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; + EEF40665F46FB3797440A917AF5C07C5 /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + EF19086FC19FF73008D2D0747261BD3D /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; EF5526B1FDBD5CA54475C9028CA88C83 /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; EF5762268C647C0466867833BCB4DA66 /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; + EF64F723099DEC0EB5B0C9F5CEAB3B19 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; EF86848722F005343E8F78FE98C72283 /* GDTStoredEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTStoredEvent.h; path = GoogleDataTransport/GDTLibrary/Public/GDTStoredEvent.h; sourceTree = ""; }; - EFA115D40E68EFCB5E4110293EDC1A2C /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; - EFBEEEFBB317877C7D23308BD86DFF4A /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; - EFC282E48CD62116ABCC0607EB1C39D9 /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; - EFDF740620933B4841AD58A53BAEC7A3 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; - EFF331495097C1F9A56015604BE276B5 /* libReact-RCTActionSheet.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTActionSheet.a"; path = "libReact-RCTActionSheet.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + EFA17A1611483E4CAB28842BA66A59F8 /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; + EFBAACF6D899685F64842CD8C4FBEC17 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; F01130C986BAC60F5B3ACD416FBEBDD5 /* rescaler_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips32.c; path = src/dsp/rescaler_mips32.c; sourceTree = ""; }; - F0144562E9EE65FD04D6FB83225F9952 /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; - F0144A1DC33A190BED1250780C291F7D /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; - F01F8A651D0F97804369446D71BC17A1 /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; + F01E326CCE406D2A49E4A10396547317 /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; F0374C8E0FD7FEAB3F228A9EA9627A8D /* FIRInstanceIDStringEncoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDStringEncoding.h; path = Firebase/InstanceID/FIRInstanceIDStringEncoding.h; sourceTree = ""; }; - F07227FA31D8CE587E6921D10F01107E /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; - F078F24ACD9A1D9BC8095075A2E070A5 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; - F07935B83A1279A78510B6FF8E94E4EF /* libRNFirebase.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFirebase.a; path = libRNFirebase.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F07CD52B556C0CA803284EA52CE51FB7 /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; - F08480B58F3B3DBDAF9910B429EC7D23 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; + F040E331E673F93B31ED42B854281C45 /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; + F05A8F8C250E94F7535D77F642B34D45 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; + F05AB836BDC07D1ACDC2D02D31A773A8 /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; + F0649DDB022283545798B15182097277 /* 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; }; + F09F743D5423F2EE9A21918914DA08A1 /* ReactCommon.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.xcconfig; sourceTree = ""; }; F0A99024BB3B4EE55C6A3ED1CD817CBF /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; - F0CB2B0148E25F3CF9305D76ACCBE55F /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; - F0EB85E2CC7220BC9A402ED657430087 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; - F157DB0418B85BCCACED93D9097CD129 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + F0E6F18BD52E0CF9769F64BBFEAE8487 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; + F0F2C3DDC28B8D78EF6FB0C17C4AC0B6 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; + F106414321C52BC0328541629B8B29DD /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; + F1254E34D6B5674E1F4A309A48A3BACF /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; + F12C31B209356772EBED28609068E257 /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; + F14E4F9E7E375BE6FE42E2D25CBE3C26 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; F163EE2B01C6048029A8C258CCE35581 /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = ""; }; - F1B0A2A7ACA7BAC52B97117BEDE4957A /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; - F20519740F9C43E31D42ED4F436B4CCA /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; + F1808C91B566577A489B240322947C38 /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; + F190B64A2D63DAF1E694C5F3D806C8E5 /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; + F19BCB5E384F48FB9A57967B08C70F4F /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; + F19DEDB8616807263EC79EBEC423846C /* RNFirebaseAdMobInterstitial.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobInterstitial.m; sourceTree = ""; }; + F1A97663093C451E51C1285AFBDD4177 /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; + F1B38F47FD8ADDEB16D29405006445DF /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; + F1EE54C558C71275F875B67E1CAEFD2D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + F1EE90878DDB3B66274AE580B748C31A /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; F208206AA517C463DBC7F8798068446F /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = src/webp/types.h; sourceTree = ""; }; + F219F9EFB883772A4ACAAC42BC83F4A9 /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; F22BD4AA11C9AE735BF3D9A59AE4C137 /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; - F259D669A90EBD510CCAE2B7B7446935 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; + F23AD859800CCD9D7CFB2F7165D4D419 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; F26D92BC9188533EC4BC0A385FC9464F /* FIRInstanceIDTokenManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenManager.m; path = Firebase/InstanceID/FIRInstanceIDTokenManager.m; sourceTree = ""; }; - F28884A251C58244D531D3D99121F915 /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F28D6C4FEE0BE4BF51AF475A033F11F2 /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; F2C042E913EF7610168C1114340318CB /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = Firebase/Core/Private/FIRConfigurationInternal.h; sourceTree = ""; }; F2CB4CF11AA79755FBC5B08EACE06DB7 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = QBImagePicker/de.lproj; sourceTree = ""; }; - F3426CD7F8F9487B138F70D9E3376947 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; - F354FAEBB55CA4A77CF2A593DBDA38D8 /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; + F2CD426134D4E904003CC3897BC3E4CC /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; + F2E66F8F043639EC706963D14A9C9765 /* EXAppLoaderProvider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppLoaderProvider.xcconfig; sourceTree = ""; }; + F325369DEAC2F9F3E8BB72E3CB27E587 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; + F325600622CCAA9A09A4685975C9210C /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; + F33097B3879E9851A14049D85599297A /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; F366F5022D2BAA995F22199BB3C69715 /* 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 = ""; }; - F3BCAC2B84DF445FA5C5BC4F35821032 /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; - F3BDBEE68D24D640690AC5B15713CBC5 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F37FD7F638A29BEFACF9294960E1A508 /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; + F3931D28AA076A31C49BC2F3020B0733 /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVibration.m; sourceTree = ""; }; + F39D87D87782BE2F3483A8F92024F25A /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; + F3A726284EFD20935D731C08A511D713 /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; F3BE6A89C0B0239C7809E9B1FF58C15D /* FIRInstanceID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceID.m; path = Firebase/InstanceID/FIRInstanceID.m; sourceTree = ""; }; + F3BEC0B48A4079D97A09C0489F762EAC /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; + F3C545D3719C07AA73DC5A009DDB92B1 /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = ""; }; F426FEE4424D23704CA948BDB5BEDB8C /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; F43910CB743F06F295966C913C58D465 /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; - F445ABBE7D3384097D21EA71ABB30875 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - F49C00239726F99A897536D775526CD9 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; - F4A67157E188E6C729E2688D88DBAD4E /* RNFirebaseFirestoreCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreCollectionReference.h; sourceTree = ""; }; - F4E7A0515558C074F7EC178655DAA5C6 /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; - F4E8BEA4DB45E07D80B73BEF701E6806 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; - F53547BC3A8C245055FB72E05310A278 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; + F4FAAA98DA6FAE29391031279B2E7583 /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; F55AD6390B75E42F55EECD90216C7D7A /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; - F55CDF019ACA2217732F35553D42466C /* libEXAppLoaderProvider.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAppLoaderProvider.a; path = libEXAppLoaderProvider.a; sourceTree = BUILT_PRODUCTS_DIR; }; F5776A6462FAB1D3EB2498EEABA6EF42 /* lossless_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_sse2.c; path = src/dsp/lossless_sse2.c; sourceTree = ""; }; F57EFF2305EFF81E4002CF298FFC3C62 /* UIApplication+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+RSKImageCropper.h"; path = "RSKImageCropper/UIApplication+RSKImageCropper.h"; sourceTree = ""; }; - F584F64EB858EF704C5DA703F0F9C141 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNVectorIcons.a; path = libRNVectorIcons.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F5A34C31AB02B63C92EFA295D826B46F /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; - F5D05C2F0E0722A004161BEF93553C58 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; + F5837167B5F75D49720A052BB368408E /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + F5A1D2A2181A3CE2E6F5A205B199A4D2 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; + F5A6EF7877284C70D47CA945BD6ED2CE /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = ""; }; F5E8AB734699B19C78718064ABA1FC2D /* Pods-ShareRocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ShareRocketChatRN-resources.sh"; sourceTree = ""; }; - F60224A2FA0ECB20CB39284C596433FC /* libFBReactNativeSpec.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFBReactNativeSpec.a; path = libFBReactNativeSpec.a; sourceTree = BUILT_PRODUCTS_DIR; }; + F5EE07D4FF7C481EA57281ABF12FE6C5 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; F6215914E5B850B4D3CA559D2EEF3623 /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; F622D2DE360574F83D589D98519BBC8D /* FIRInstanceIDCheckinPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinPreferences.m; path = Firebase/InstanceID/FIRInstanceIDCheckinPreferences.m; sourceTree = ""; }; - F640F3B864F14F788D56ED1482B113EB /* rn-fetch-blob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.xcconfig"; sourceTree = ""; }; + F62F4A4BBFDD3FE3F0A229A612F2C9FD /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; + F689591CF7C3C72186DB328870EDE816 /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; + F69A49ED8D00ADA1F8ACFC1B2460DB0F /* RNCWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebViewManager.m; path = ios/RNCWKWebViewManager.m; sourceTree = ""; }; F69CF9A88B972BDA0B631489A51FA8C9 /* muxread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxread.c; path = src/mux/muxread.c; sourceTree = ""; }; - F6B4FBE64C338CB65C232D45CD23F84C /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; - F6BF19E2AC117AF21EB0D7359703456C /* NativeExpressComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeExpressComponent.h; sourceTree = ""; }; - F6F7137E76041A83D6CF7A92DE39494B /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; - F75931D0CE52B72D6AF0E190625EE3AA /* 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; }; - F75BB24F802DC6A2D91636B4C8C0335D /* RCTRequired.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.xcconfig; sourceTree = ""; }; - F78EDE334FDF15AAC3EA98A0098351E3 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; - F7A23BB0E6D649C735596560736210DD /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + F6FAA14558A4C4ACEB215A1400FA2220 /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = ""; }; + F748C1911393D3A68ED133957A913FF9 /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; + F75F01C3748354CB900B963E1E280814 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; + F76730335FA5B44EB23F25F0EA6399DC /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; + F77856DAB02054287753021638745EEA /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; F7B56AF292E8F7D5A9C9F485FF4716EF /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; F7BB7A5066213E49959F8E0552154F3C /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = Firebase/Core/FIRComponent.m; sourceTree = ""; }; - F7CB85937E8AFA7849EE34E3D3030DEE /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; - F7CE8E6B5360ECCCC3FCF79ADB071D19 /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; - F7E4EE9B0188F5209057622ACD58C841 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; + F7C160F8560865B7A599CF658C29362E /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; F7EEEF9E634653BAFEE012C9C06A8A90 /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; - F80A084AF2E14EA3001A58B0CD6613DF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - F8179C98B286C5C9274EB938E6B8C626 /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; - F82AF7A2832500365D7F13D772E53ECE /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; - F83614933E6E041EBDB5F89A55A4736B /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; + F834CCAD795E977DBB19041BCF8F27BD /* libRNLocalize.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNLocalize.a; path = libRNLocalize.a; sourceTree = BUILT_PRODUCTS_DIR; }; F83D0DD976046DFA3F989D3365BD3364 /* FirebaseInstanceID.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstanceID.xcconfig; sourceTree = ""; }; F843C96353F8D06C7E74EEBFCAAB86D6 /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; - F866335A32A07A4E706558E5EBB1B41E /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; + F879B1326B54C9F9A72C1A72B23916B6 /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; F88C750675C9707168976614308EE3A8 /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = Firebase/Core/Private/FIRBundleUtil.h; sourceTree = ""; }; - F8A3D62CAF53EE715782552E7018A591 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; - F91F3346033AF71D9C2DC38F22403556 /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; - F9419E43FA2DF31717C51E3A00273261 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; - F9457FBBB8773C29B1E66CCE6ADC32E6 /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; - F9894CB816B2D54C8A350E5E6924AB4E /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F9AF6801997FE5032856CC15AD27A79D /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; - FA38BC0AF9B52C902AE5A85D04A3CE01 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - FA4300DE49DD938544288CECFAEE3019 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; + F8EEB9B8F005A47C23DDF619994FD898 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; + F910D3B5C95998CA6A22B02EB5A8FDC0 /* 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; }; + F92EE1C0837EB379E32FFE7059BE647D /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDataRequestHandler.m; sourceTree = ""; }; + F965DCF885F1426E09025A2E6E691E96 /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; + F98E1DEFE3A940C12562B76C495E364E /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; + F99A39C227A6240858090253465A5496 /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; + F9BDB5FB053D69C8E59F594B9E914EC2 /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; + F9D1D3FCFF86056D9C66800FEEFC06B0 /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; + FA3BE52D5B6B778A172B4ABEF91CDA5E /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; FA446B698417568D5BEB49568655AE65 /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; + FA475548DB7784D97888AD13A8068EB4 /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; FA488407F572597916D559E4D9456C18 /* enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_neon.c; path = src/dsp/enc_neon.c; sourceTree = ""; }; + FA63D99B6021039B74156FB8E56D5799 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; + FA6A05E24DF5C1BDADD225F4BA44730F /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; FA70C0C21F424E0C40C6162AC449CFBE /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; - FA78B2BF920CFFE4315BD8205A2F6C17 /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; FA8BAF21586610704DB775F365B3EFD4 /* webpi_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = webpi_dec.h; path = src/dec/webpi_dec.h; sourceTree = ""; }; FA8CFC3FD598893FBCD003A30F10523E /* FIRDiagnosticsData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDiagnosticsData.m; path = Firebase/Core/FIRDiagnosticsData.m; sourceTree = ""; }; - FA9DB03A0E95934D0D1828D35620BB76 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; FAD92B2FED1728101BF962B17118D45D /* FIRInstanceIDTokenOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenOperation.m; sourceTree = ""; }; - FB0C5088029F6DF10F6F169BC3F3C2E5 /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; - FB1241B146F3110880A9F076234D836C /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; - FB1EFF7A8F4AE7B98C3DC698BF087E10 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; - FB45D77A30454E34289476D1B568340C /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; - FB62EBAAA5FA4164968F9935D7B3A56E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + FB0FA281B0BF713CBC57241C1246A488 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; + FB1AF4CE8DB6FF59DB022D2F559157EB /* 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; }; + FB55E6533C35670B3BF5EAFAB97011B1 /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; + FB5654D54283DA19B4F16F0BD22D0A3B /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; FB7436D9950CD010952DD6E4419E0688 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; FB89622D97EB5A6A0A93097D9C11E42B /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; - FBCEB86ACF30D93C1CD0A10909E39995 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; - FBDF54AB36E916C0E7E342966515E1DF /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; - FBFC0A7849A3B83550D5EC17C4FB51F6 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; - FC29B8E002404194B81CBC6A6A6CB468 /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; - FC68C3A9572247EB2C186F6FD17191A1 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; - FC68CA0C9B35A3F554A0AAB40793A23C /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; - FC77F5E8B156C8D5428CE7A1CECBE5A0 /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; - FC9B5CEAD3C76F94F865FB7A5839F13F /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; - FCADC8EB4C6EEF0EC86B28E9D528817B /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXPermissions/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; - FCCFDBA0C51CF7E7245A1A17DD323356 /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + FB99261DB69C1EB7B6545302C1CE6A4B /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; 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; }; + FBC5F328B91CDEFB67AF032281E6EB16 /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; + FBD195C1C123E5DA826A6272C83A7D4B /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; + FBD79F3E8B7334FE5D9E4C46AAC88A28 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; + FBDF8189F61B9E0CAA944B2D73AC6FA7 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; + FBE3260F5107E97CF76634BC8605C405 /* EXCameraRollRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraRollRequester.m; path = EXPermissions/EXCameraRollRequester.m; sourceTree = ""; }; + FBE5378C09BFC55CD82F6C17426AE8F3 /* RNFirebaseAdMobRewardedVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobRewardedVideo.m; sourceTree = ""; }; + FC1FC0DA8CEE8B98F69F2AC74A9D663C /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; + FC5DFE0E717A0A6D92D453D6251387BB /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; + FC79867D3EBAE9C8077300734E335FFD /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; + FC7A02454BC02E2504060136A6FCD201 /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; + FC9BBB92DF15F0771D6FBD1458871EC8 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; + FCAA8376DED59C1A32771B7C0FCB62B4 /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; + FCB72B65B0BEA4566579C1EB76647D3C /* EXSystemBrightnessRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXSystemBrightnessRequester.h; path = EXPermissions/EXSystemBrightnessRequester.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; }; FCE7C2864AB0D2F75CF5068437F73606 /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Frameworks/FIRAnalyticsConnector.framework; sourceTree = ""; }; + FCEC2541110D1265792D327D918573CC /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; FCF1244758EEAF1CE8D594EE842C4714 /* glog.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.xcconfig; sourceTree = ""; }; + FD0884FBF8E38AD7AE9679B92726379E /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; FD23012415E231DC86E456F1F2E83332 /* UIImage+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+RSKImageCropper.m"; path = "RSKImageCropper/UIImage+RSKImageCropper.m"; sourceTree = ""; }; - FD4BE464260812BB8390548FB348EB32 /* react-native-background-timer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.xcconfig"; sourceTree = ""; }; - FD65C3B227D72A06B16ED2EC77829389 /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; - FD74E2AED3CF913CF907D91D641B8CC3 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; - FD80317ACFACC5709F63EC1CBEDA25BC /* EXUserNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXUserNotificationRequester.m; path = EXPermissions/EXUserNotificationRequester.m; sourceTree = ""; }; - FD959D94675D3A797C2B498CD66EDA86 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; - FDA7A6F69EB7C8A8B899369C8124C509 /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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; }; + FD725E3DC813EBE48EE6AE23395DA6BA /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; + FD8919E809C87FE25026647AC644A90B /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; + FD9CC0B318912FFEC6798E5431C6C273 /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; + FDA5B7A03641BA8B2DBE29A614E7770D /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; + FDDDC2FA9F4DDA2DD7852488C0CE7446 /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; + FDEE1AD8F9E20C171936D9D4FFBA1EE7 /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; + FE11B451448C087FA000F8E536798238 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; + FE3D7A64EC1D8C73B06102101D283D62 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; FE3DF4EF4E5A90A23B9E0451A9EBDFEE /* FIRInstanceIDCheckinService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinService.h; path = Firebase/InstanceID/FIRInstanceIDCheckinService.h; sourceTree = ""; }; - FE49025B5A39CAC4A13F919BABD3E20A /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; - FF22779E4F1A31474F9EDBAC95817659 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; - FF3246FE28E33D7A28FF5A2C26ADD2AC /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; - FF9954C873BDAE25C6888513E9E71532 /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; - FFE241E2ECEC004643ECB1DB488B7D6B /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; + FE402DC8FD228C6CFD011F923A0A9354 /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; + FE497DC1D03BBC1524B08585DFBC018E /* libReact-RCTBlob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTBlob.a"; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + FE7B0C7D5C08B338703C396DD3B57ED7 /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; + FE9882D6F1ADD55B531AE6C0DA506CCC /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; + FEF802BF200B9669B9C5B9B36BE04EED /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; + FF1CA10439430CC049CD5687B975EE75 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + FF21F2F302A776515EE5EF5560F277CC /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; + FF7A4EF0C373D5139F2F1CBB88FC71CC /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; + FFBE77E59F03C19E6D2D4D175A6106C0 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; + FFC5ABC27E695D934677BECA7F9216F6 /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; + FFDC942E37948825AC39ECEFF5C5AA17 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -6143,13 +6106,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 06E6987B524335FC3617A4E322CD68A8 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 0E90A456CFF928D05FF1B141F6F73686 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6171,14 +6127,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 170278C4C0C03F180C951BB42E36F805 /* Frameworks */ = { + 10269FF106A58B22D9E19EDB078CFC99 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1E0AB82A7EF5BF69E0CEE4F2C1768C57 /* Frameworks */ = { + 135DFAF142A14BF96714707FA8F4EF77 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 192A46BB4F825672EB39443B8A7C2E26 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6206,6 +6169,34 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 24B4BCD997742976F79030BBBD932F56 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 2865E77511619A76182CB1CA82DB5C48 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 288ABC21F1D06F9CB82B2CB966FE04A2 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 297CFACE54023F56F6CE738A4330D150 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 29DDCCCAF9B1EDCC9998ECDADEFF7D8A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6213,6 +6204,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 2C47705138CB6B365AC2DDC8E28598E2 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 2E44450BEA6B8CBCB8E9EF047BA1D554 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6220,35 +6218,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3016E4A7F7FF2B3037AA83EE2261F07D /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 30BE494D61C97489CD34E971F4FF3CE0 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 311B69243ACC1A445A49C1E41FFACC8A /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 350EAE20AD8050FED3F31EBAF7787178 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 359068122D4E9C11612CC38C63A4D1D7 /* Frameworks */ = { + 329CD3FEFD7012AEB924D8F0A059E0E1 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6269,6 +6239,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 3EFA10597286A79C3B1B7317D71DA962 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 424F30C23075C103135F4A1C1DA7D2B5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6276,14 +6253,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 44BF86729CD8674F9D5341D3D5869F4D /* Frameworks */ = { + 4893A645B393FAE52653F2C9E542610E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 472FFBA8A2FAFC233F632887CE021EE1 /* Frameworks */ = { + 4CC05941F3243820A59EA6DBD09125F8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6297,7 +6274,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 512FECE551E7D2CD859A428BA8E2A389 /* Frameworks */ = { + 5137E9B29ADF12A8450C66BDD4631174 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6332,7 +6309,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5E956293EABF3BA46E458B45E770C21B /* Frameworks */ = { + 606B6655F431A6AE5BB11530F9B9DB7E /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 6B0452B313FFE8313B50AC0DDA781936 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6346,27 +6330,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6E2F812E50EFA245B3242D2B16A54E25 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6FF9DDB98B04FD6A441C110D1E3DC40B /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 709E98DCF00A95E8D4549528463EF7BF /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 72B0967E2588D1C1B6670C7B5B86B766 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6374,13 +6337,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 77491BBC24C50126A7E4AE9E68860A51 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 7D5961F8827D0C2864985C4D63251C87 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6395,34 +6351,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 7F9E94531105CC4EB39E5220F789A5B0 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 801340E640F4D6DE8131E0143F698015 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 810AB987E0BA619CB2E0E634158AD9AF /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 810B22E04954064782EBE6776E3F2B81 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 82B25A2C6B77C607D0C0803B2D795029 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6430,14 +6358,28 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 82BE2448043FC2B2BA3DC5B4B80C5117 /* Frameworks */ = { + 8A2B774A73B408E296022927E7E912B9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8CFFE99D85FBEC982FE9C12BDB6FBD69 /* Frameworks */ = { + 8B3E7988F932C74A7CE6F1431E939268 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 8BEB698AEAD02F532FFF875B6B2B4692 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 8CF1FEC117EC8E94BDFC47B3A7074B6E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6451,6 +6393,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 938A282777DB04289778D5D033447B37 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 93A0739E5133AD08F334E7807BC7E5CB /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6472,6 +6421,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 9E3FCDC116387EDA7420257D1B04F1D3 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; A3044A76BB7DB25B126B27CEC50DC142 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6479,7 +6435,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - AEBA4839075C1F35A975D9AE800C88E2 /* Frameworks */ = { + A3A30198A7972B6B0824BC3F85B8C3EB /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A3BD170F3892930FE000EF30E902628D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B38B94F395F4D44F2E9798E642962781 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6500,13 +6470,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - BD8E98DB954B3074273975997CC1E632 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; C1248EBD5F1A180D2AF1F6081680C0BF /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6514,13 +6477,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C638EC16CE02DB43D1CC41349588FCBE /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; C7B8A65B14C1CF0B7A00F44AD54A879F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6528,21 +6484,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C88593AB5E0A4A18E78511B9A5538AAB /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - CC40332BC92069738A3F8F6DE6A2F542 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - CD19E060C5ADD9F0BA45F9545AD18088 /* Frameworks */ = { + C84EF20AF4BA0C5E4C1DA53D0E3D3CCF /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6563,14 +6505,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D3D18C5FE4AC8B8A2F86F2B75D610078 /* Frameworks */ = { + D309C0D2C3A05A6DE2127D2E561E3771 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D4046E7611126E9599A99CFC06396A8C /* Frameworks */ = { + D3D18C5FE4AC8B8A2F86F2B75D610078 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6584,28 +6526,28 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - DAEB9FC5321BD04C105F295444952F78 /* Frameworks */ = { + DD5858A8BC66B8601AE70F4BF5285321 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - EFB77EF20B196EA0B3521F0697373A1B /* Frameworks */ = { + EBA4FEE7F3800EACA0EE15AA7127279A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - F27070FBC2BD7A41CCF28E56A90B3E35 /* Frameworks */ = { + EE1F3C37ACAF5EFD0568E299ABE080B9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - F3E080F8CB256B044677EB0BD6D2B8A3 /* Frameworks */ = { + F5CD5392DB2070C7C20849B56F328115 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -6619,6 +6561,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + F7498C7BA263C5FBCCE77DC270AB9212 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F7E238D6ED628807081958F6DB260F36 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; FC83F047F4DF5E0F0A6C3FF8C8C19584 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -6629,41 +6585,6 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 005DF25CDD666E7DCEDA65090598975E /* RNScreens */ = { - isa = PBXGroup; - children = ( - 5788C8695681651644ECEC0D51664E97 /* RNSScreen.h */, - 23725374A0A9C584DAF7EABEF8BF5926 /* RNSScreen.m */, - 11870B3F7707405FAA4B9E6832E6EB08 /* RNSScreenContainer.h */, - 26BABC6A3ED1A81C0D4BBBD0C8E8ADA0 /* RNSScreenContainer.m */, - 7C60FF237535414A616C6E5BF992C375 /* RNSScreenStack.h */, - 6249CB308C9D6E64F30262E644AF980B /* RNSScreenStack.m */, - 26705C1AA9F866EE38E8F7CBCC3B8CA5 /* RNSScreenStackHeaderConfig.h */, - 3089DD250EDF54060C42681665272839 /* RNSScreenStackHeaderConfig.m */, - 9D46F2A072DDD246DD16F0B471E05C31 /* Pod */, - 4AF9DF48857B3D83DE76447E5851FD51 /* Support Files */, - ); - name = RNScreens; - path = "../../node_modules/react-native-screens"; - sourceTree = ""; - }; - 006F923B9C1ED692E748A1DAF3603F47 /* Support Files */ = { - isa = PBXGroup; - children = ( - 8D531A107BA8083E3C88DC361F833CA4 /* UMFaceDetectorInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; - sourceTree = ""; - }; - 008C8516EB04D23233492536806E8196 /* Pod */ = { - isa = PBXGroup; - children = ( - 84AD0A79A867A56D1EF82E7EC909728D /* React-jsiexecutor.podspec */, - ); - name = Pod; - sourceTree = ""; - }; 009C6CE75EA75D20A6F859DF74D42ABF /* DoubleConversion */ = { isa = PBXGroup; children = ( @@ -6691,45 +6612,39 @@ path = DoubleConversion; sourceTree = ""; }; - 01C57E2B36ED5EFB86EAD76E13D1E304 /* Text */ = { + 01A8A353AA55AFA81A7F36B1741F308D /* react-native-orientation-locker */ = { isa = PBXGroup; children = ( - 08049A44DC9E04D54FCD791584970ACE /* NSTextStorage+FontScaling.h */, - 2A9136BB9773FE121610B6B24E0FCB2B /* RCTTextShadowView.h */, - BE61E209BFADEC5159E0E8E7E4A3FD4F /* RCTTextView.h */, - 42F54E3960977E8751F7EED016BA5DE9 /* RCTTextViewManager.h */, + EDA35732043AF03C1D0A9D11AC79A10A /* Orientation.h */, + 82D3AFC1AB29B1706189ED814A87A1E2 /* Orientation.m */, + EF15C051CE8400AA00912ED805EF5920 /* Pod */, + 293CF54965526CAE7895FA11C15A7AF0 /* Support Files */, ); - name = Text; - path = Libraries/Text/Text; + name = "react-native-orientation-locker"; + path = "../../node_modules/react-native-orientation-locker"; sourceTree = ""; }; - 029F22D598F6626F524FE9EF1ECE5413 /* Support Files */ = { + 01DFBB12B21647E349D88C524FB03D8C /* FBLazyVector */ = { isa = PBXGroup; children = ( - F640F3B864F14F788D56ED1482B113EB /* rn-fetch-blob.xcconfig */, - 84E7DF79F373307C82C81D47441FFF44 /* rn-fetch-blob-dummy.m */, - 1E2C963E7D290C062846D206D6B56B10 /* rn-fetch-blob-prefix.pch */, + 1E0FA86414BFEB705C57670B3CB2C87C /* FBLazyIterator.h */, + 424A556EC446FE4350191468301D19A8 /* FBLazyVector.h */, + 12AAA04D8C74C5C031678EDE4488AB76 /* Pod */, + E6C7E0B45F851F376CA4B86E11020A74 /* Support Files */, + ); + name = FBLazyVector; + path = "../../node_modules/react-native/Libraries/FBLazyVector"; + sourceTree = ""; + }; + 02CB2453ABFE94487A4C2E99D1C9945F /* Support Files */ = { + isa = PBXGroup; + children = ( + B8D5C7E974E0DA0C96BAA4040B03F3E7 /* React-RCTNetwork.xcconfig */, + BA8EA011464D1B5C848FBEFC83CE3E39 /* React-RCTNetwork-dummy.m */, + 930864A3E4EB771995396A54BF432BB2 /* React-RCTNetwork-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; - sourceTree = ""; - }; - 02C0215B0286E1546C1A3A368D0962F0 /* Pod */ = { - isa = PBXGroup; - children = ( - 95217485AA603FCE669BEBFD132B611F /* React-RCTText.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 02E18A39F9377FCD0E04F49DC5AF6B39 /* Pod */ = { - isa = PBXGroup; - children = ( - F7A23BB0E6D649C735596560736210DD /* LICENSE */, - 970E9341B80BB1944BAFD6EEF7D872A9 /* react-native-splash-screen.podspec */, - 57B0A8531F71C28BCCC339BA5F7F1274 /* README.md */, - ); - name = Pod; + path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; sourceTree = ""; }; 03091ECE0AA6E6999D89D5DBDB4C49B8 /* Pods */ = { @@ -6762,127 +6677,85 @@ name = Pods; sourceTree = ""; }; - 0348C5A97EA3401AC307F30C3851E7C6 /* Support Files */ = { + 031006DC9D39D21D60AE4B672B95091C /* Support Files */ = { isa = PBXGroup; children = ( - 71646FA54589C424BE94B79C0BEFDCC2 /* RNFirebase.xcconfig */, - 13536C6E4C7F4304016BB076A7964256 /* RNFirebase-dummy.m */, - EA73C235F91696E58796122777A55141 /* RNFirebase-prefix.pch */, + F2E66F8F043639EC706963D14A9C9765 /* EXAppLoaderProvider.xcconfig */, + 0E8177E5B34A0B1FAB6FC745856B935A /* EXAppLoaderProvider-dummy.m */, + 7A64BF1C1F98F81E2863BDFF51C90B71 /* EXAppLoaderProvider-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFirebase"; + path = "../../../ios/Pods/Target Support Files/EXAppLoaderProvider"; sourceTree = ""; }; - 03BDAC3A44468859AC45690F586814C7 /* Multiline */ = { + 03D1E4A9AD8826221A98E4435DA38047 /* Pod */ = { isa = PBXGroup; children = ( - 0C520C1A3BE63C99B34B7D0D41A02B5B /* RCTMultilineTextInputView.m */, - C8917E400B130A86B473571407C82E28 /* RCTMultilineTextInputViewManager.m */, - EE1EC80F8BD71CD7BE459EE5E2EAFAB9 /* RCTUITextView.m */, + 4347897D8EE6D5B5D4E83AF48D5B0D01 /* UMConstantsInterface.podspec */, ); - name = Multiline; - path = Multiline; + name = Pod; sourceTree = ""; }; - 041BED5182C2B4A0150C1CF5495C806E /* rn-extensions-share */ = { + 04D7CD27DE251E443592FC86B4FD06E7 /* Pod */ = { isa = PBXGroup; children = ( - 09E3497F9523C8F5CB165879DCFA656C /* ReactNativeShareExtension.h */, - F4E7A0515558C074F7EC178655DAA5C6 /* ReactNativeShareExtension.m */, - 328EC4B4915ABE43B4CA7B250CB21E5B /* Pod */, - E1BC4799EAAD3EE9897E537AB3E5B7D6 /* Support Files */, + 01F9CAFA7C785C370974E137539A7E94 /* advancedIos.md */, + 013DB95938B7728F34B16035C8FA1EEB /* installation.md */, + 3437AB5300C2642CD3E8E9DE45BE8593 /* LICENSE */, + D9447883194DD09F8CB8F5CC8B8FC23F /* localNotifications.md */, + A8B11446203E849D229A546628455865 /* notificationsEvents.md */, + 4755005ADAFB0BAE54A7380DB5497844 /* react-native-notifications.podspec */, + 26037CD168CD5E3516B2582D8A023D4F /* README.md */, + 4B089478EB44035FB3C7975EBD74DFE4 /* subscription.md */, ); - name = "rn-extensions-share"; - path = "../../node_modules/rn-extensions-share"; + name = Pod; sourceTree = ""; }; - 06D5A36012BA4E8AE4730DD2C74C32DD /* React-RCTLinking */ = { + 05B2BF0E16F8E4E5097BE2C2FF096DA1 /* Support Files */ = { isa = PBXGroup; children = ( - D51E4E0999A9EE8000CCA538CED6A950 /* RCTLinkingManager.m */, - 60F1A6B5C599E5301484F588FA34138B /* Pod */, - 6B1E133F8300C78AEF11AB09386D4115 /* Support Files */, + 6E85BF10F7547DE92410EA03C468AFA8 /* EXPermissions.xcconfig */, + 053A5D01A585A827EDB74B9253950129 /* EXPermissions-dummy.m */, + 5915A0EB82E56482E0488E47E312FCBB /* EXPermissions-prefix.pch */, ); - name = "React-RCTLinking"; - path = "../../node_modules/react-native/Libraries/LinkingIOS"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXPermissions"; sourceTree = ""; }; - 084FA5E518A97A47191F0F6F497A9DFC /* React-RCTBlob */ = { + 064D4AB74961C6DD14AF8C99C4A2A156 /* Pod */ = { isa = PBXGroup; children = ( - CD440779B1A0E00415FAA7DAA2DFB245 /* RCTBlobCollector.h */, - 1CC6648D3F2B43B57E14351AB326A7AB /* RCTBlobCollector.mm */, - BF27CC5643F100FD1EFA42E96E23860C /* RCTBlobManager.mm */, - 82D07583C91EC8C527B7562AEC6F0968 /* RCTFileReaderModule.m */, - 35F682F9741C098594B0452A4BF6CF13 /* Pod */, - D35135C14BDCA52B08D577ACD8ADB554 /* Support Files */, + CC74A6BA09B50FC84C6B08F70CC9B206 /* LICENSE */, + 595D13ED373FA716AADBEC9D7FB0B688 /* README.md */, + 15FCD29C178E73D03CACA2081D41AD4D /* RNGestureHandler.podspec */, ); - name = "React-RCTBlob"; - path = "../../node_modules/react-native/Libraries/Blob"; + name = Pod; sourceTree = ""; }; - 08A5FF7E278934960BEA62410DCB1571 /* React-RCTNetwork */ = { + 07A16BA1CF5BED2CCA3A57E86843E2BE /* RCTActionSheetHeaders */ = { isa = PBXGroup; children = ( - 9F96C2D034FC4DC21D29895AC31A4BAB /* RCTDataRequestHandler.m */, - 1A20C907D6FD0AE8AFB94779E776E8E1 /* RCTFileRequestHandler.m */, - FFE241E2ECEC004643ECB1DB488B7D6B /* RCTHTTPRequestHandler.mm */, - AD49A1E00BE112B46CD42FFDC5FE9DF6 /* RCTNetInfo.m */, - 0EE4B645C22834041013277CF3774631 /* RCTNetworking.mm */, - EBDA33B4DA1649A6BE9DCDF2629B533F /* RCTNetworkTask.m */, - BEF799E14A15ED866892E3EEAD021308 /* Pod */, - 4AB790F6782EFAA8E94A2FE4216E36A0 /* Support Files */, + 77892E1E84595471F5AC0F2C036E5F15 /* RCTActionSheetManager.h */, ); - name = "React-RCTNetwork"; - path = "../../node_modules/react-native/Libraries/Network"; + name = RCTActionSheetHeaders; sourceTree = ""; }; - 08E6BC08320659F8C78F76D95CAF676F /* perf */ = { + 089F77584A17C84FBB2831F6FBEC88DE /* Support Files */ = { isa = PBXGroup; children = ( - 212FD633E04FF1BBE43235CC32F5013B /* RNFirebasePerformance.h */, - DB108326E3B7C7826F1866FE12076A6F /* RNFirebasePerformance.m */, + 2BA65DB4257C2024DDAB391A776ED76D /* UMConstantsInterface.xcconfig */, ); - name = perf; - path = RNFirebase/perf; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; sourceTree = ""; }; - 08F865014DE672CC3938961D4013D50A /* fabric */ = { + 08B38747045F15BDC86D9BE861C7683F /* Reporting */ = { isa = PBXGroup; children = ( - CDECB276EFC4A7C95CCCEAE672CE3D19 /* crashlytics */, + A182CD6ECEADB7EC036B163C5AF9103F /* Filters */, ); - name = fabric; - path = RNFirebase/fabric; - sourceTree = ""; - }; - 093E2B1307EE21C7E79B992164D95748 /* notifications */ = { - isa = PBXGroup; - children = ( - 68414F480190A2CCC3F77FA8F625DBC6 /* RNFirebaseNotifications.h */, - 86D29600DA05F6F9D33340723303D6F5 /* RNFirebaseNotifications.m */, - ); - name = notifications; - path = RNFirebase/notifications; - sourceTree = ""; - }; - 09466073752E525852CBDAACF5D70454 /* instanceid */ = { - isa = PBXGroup; - children = ( - B196CDA4EB6FD3838DAE6A83724ED8F9 /* RNFirebaseInstanceId.h */, - EA8C0B67A692AC97697019F89486F73C /* RNFirebaseInstanceId.m */, - ); - name = instanceid; - path = RNFirebase/instanceid; - sourceTree = ""; - }; - 097DFFA6052A36185EEDF3C4B8F7BAA9 /* bugsnag-cocoa */ = { - isa = PBXGroup; - children = ( - 40DDD70006B1615B14D292EA17E38BBF /* Source */, - ); - name = "bugsnag-cocoa"; - path = "bugsnag-cocoa"; + name = Reporting; + path = Reporting; sourceTree = ""; }; 098C3AEBF372929FA2E482B19533EDBC /* FirebaseCore */ = { @@ -6932,81 +6805,100 @@ path = FirebaseCore; sourceTree = ""; }; - 09BBFB279FB49C8EFECC3199AA82A619 /* jsi */ = { + 099AE0AE9E9DB07248430CE8586CBE40 /* notifications */ = { isa = PBXGroup; children = ( - 172EE6327F218D058C5AC5E5F8076ED2 /* decorator.h */, - 9D41565ECF50A645AFB1FFD05C35005E /* instrumentation.h */, - 9EA1E9E91BAD66A06A4C0486B14CC841 /* jsi.cpp */, - D1DF776A8CFD4EA62F1B7106C11682BC /* jsi.h */, - 54A46897422039769E26E67F5A71BDEA /* jsi-inl.h */, - 7D192754C4D84F904302BC57EFAAA132 /* JSIDynamic.cpp */, - 7EF3D0E8CDB2DA70814AD22E36F97678 /* JSIDynamic.h */, - ACBE06FF89BA2DD1572CF560E88FDAE9 /* jsilib.h */, - 4012680413DA1D865421D65EC764BC7D /* jsilib-posix.cpp */, - 69C063FB557367E499E02F74DF220F34 /* jsilib-windows.cpp */, - 76B1A4CCF35779C9E2ACC3E5D807D236 /* threadsafe.h */, + 8CD45EBEA139064AED165C8728AD3B8F /* RNFirebaseNotifications.h */, + C3DEBDBD5F087F4D3F139931C71B7FA6 /* RNFirebaseNotifications.m */, ); - name = jsi; - path = jsi; + name = notifications; + path = RNFirebase/notifications; sourceTree = ""; }; - 0B56BC19A716CAC569361638B06111ED /* Support Files */ = { + 0A5FB4C48FAF01B0472F1F023C83CAC4 /* RCTCustomInputController */ = { isa = PBXGroup; children = ( - 4DD5E20D88209E65E9BEBDDA476BF54F /* RCTTypeSafety.xcconfig */, - 97E4179597FC9EFD71EAC38BB8422710 /* RCTTypeSafety-dummy.m */, - 118935DCA3E8FEBC0991A4ABC89AD6A8 /* RCTTypeSafety-prefix.pch */, + 2023A72C011E18F05C0BF471D42E29E2 /* RCTCustomInputController.h */, + 27BB988E58B26A522972143B489F069A /* RCTCustomInputController.m */, + FFC5ABC27E695D934677BECA7F9216F6 /* RCTCustomKeyboardViewController.h */, + C24F2D232EB58787DEA2CA30758659D6 /* RCTCustomKeyboardViewController.m */, + ); + name = RCTCustomInputController; + path = lib/ios/RCTCustomInputController; + sourceTree = ""; + }; + 0B0CE029E886AB512825EBCE0DADA4D7 /* Singleline */ = { + isa = PBXGroup; + children = ( + CFDCAEAB682B98ADF0EAA9C335C0131F /* RCTSinglelineTextInputView.m */, + 04455DB3BC054DF6D56C6BA001B5A7CE /* RCTSinglelineTextInputViewManager.m */, + 66C291D4A674C6356B137CA62D173818 /* RCTUITextField.m */, + ); + name = Singleline; + path = Singleline; + sourceTree = ""; + }; + 0BD24D42AA707D813E69331FF8820843 /* Pod */ = { + isa = PBXGroup; + children = ( + EB072EC67FF85120DF099767F4317442 /* LICENSE */, + 6F6FF11949142094AFB32F29FFAFCF03 /* README.md */, + DF4912D26F07B97028F264B684A5A5D6 /* rn-fetch-blob.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 0CFE4C51FA90CD6886BE632C8066A602 /* BaseText */ = { + isa = PBXGroup; + children = ( + 4C994142F48C355AF473A71D1DDCC1DC /* RCTBaseTextShadowView.m */, + 0E04AFC8B5440DD13FAF59D1180ABCD9 /* RCTBaseTextViewManager.m */, + ); + name = BaseText; + path = BaseText; + sourceTree = ""; + }; + 0D2E46E8DFCDCE3FF9997C65CB500766 /* Support Files */ = { + isa = PBXGroup; + children = ( + 455A6FB5786B77E5E2668ECE0C9A178C /* react-native-jitsi-meet.xcconfig */, + 4C3AA4CB7AC17CEF05DFB7A28CADC8AF /* react-native-jitsi-meet-dummy.m */, + 723EF007185A97D35DC8BD4F52C1F87F /* react-native-jitsi-meet-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; + path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; sourceTree = ""; }; - 0C2508B925551C4E2A1983A6CF2366E0 /* Reporting */ = { + 0D97DBA70F89B8FEAA9C464E40542F66 /* React-RCTSettings */ = { isa = PBXGroup; children = ( - 8C7D5A45BB7E9DAECBBD2586D28486F1 /* Filters */, + BA42074E9801DCCF7FCD4BF7D2249405 /* RCTSettingsManager.m */, + 28E37F3C157EA28BE0B03862AB3309FE /* Pod */, + C19D7CF12BD52427B17CB11656268F60 /* Support Files */, ); - name = Reporting; - path = Reporting; + name = "React-RCTSettings"; + path = "../../node_modules/react-native/Libraries/Settings"; sourceTree = ""; }; - 0D3C251AB5334E3F8EDAB0DB2CD9761C /* ios */ = { + 0DC0EDBB99FA575D9C15BEAFDF2C6027 /* Support Files */ = { isa = PBXGroup; children = ( - 0F8FBB91717BEF08A3C1FDF8D36D7ECB /* RCTTurboModule.h */, - 9C742DC1E28F4023A8291B9C6D48422E /* RCTTurboModule.mm */, - BD91263A6DA3AB3204590314944D3D6E /* RCTTurboModuleManager.h */, - DA21331ADF7A5A9FCED79E5632563FF0 /* RCTTurboModuleManager.mm */, + 2F9A53E729223A59791772D34C9FC202 /* EXFileSystem.xcconfig */, + 5553B7B08BF84D52C10343090077F8C9 /* EXFileSystem-dummy.m */, + 64522F0752F5FF19C6EF78D53B7594D6 /* EXFileSystem-prefix.pch */, ); - name = ios; - path = ios; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXFileSystem"; sourceTree = ""; }; - 0E13E494343CF2DA023D136BA21AD0D3 /* React-RCTAnimation */ = { + 0E131B0B98EB1928C92832F75D968F0A /* converters */ = { isa = PBXGroup; children = ( - 5A6A7E7A0C9DE85679B7A792CD356E79 /* RCTAnimationUtils.m */, - EE93680BB531D9FA4678C4FB50E8DA92 /* RCTNativeAnimatedModule.m */, - B9DAFA142346219493C216D081E348EF /* RCTNativeAnimatedNodesManager.m */, - 19DA47B35D961D40DD4F0D7DADF06805 /* Drivers */, - 7796F3B9C7AC831B8CDDDEDB7EBABBD0 /* Nodes */, - B4AF875ED0E71D6108B7C8E2547795A8 /* Pod */, - 5D5AC770A84D59B3466E2F103A15F161 /* Support Files */, + 56CB55815CDD2D9C3A5E0E2D4B73E037 /* RCTConvert+UIBackgroundFetchResult.h */, + BE25945B2546B4E805BC0E01903CC69E /* RCTConvert+UIBackgroundFetchResult.m */, ); - name = "React-RCTAnimation"; - path = "../../node_modules/react-native/Libraries/NativeAnimation"; - sourceTree = ""; - }; - 0E986D5DA9ECEC270B7EF8036731C7FC /* react-native-video */ = { - isa = PBXGroup; - children = ( - DBC7EFC8957A280E045F245B60C3A977 /* Pod */, - 82257D584A2D67D8491C7671DACA9F92 /* Support Files */, - 6066B3038B0CF70C0F88CF4439973149 /* Video */, - ); - name = "react-native-video"; - path = "../../node_modules/react-native-video"; + name = converters; + path = RNFirebase/converters; sourceTree = ""; }; 0EE8A32B2BFC683B93B2BA20CFA3F79D /* Support Files */ = { @@ -7018,15 +6910,20 @@ path = "../Target Support Files/boost-for-react-native"; sourceTree = ""; }; - 0F40E7953D029122183EA92C32C2349B /* Support Files */ = { + 0F10A061FF00071D3988930A499FB1BC /* React-CoreModules */ = { isa = PBXGroup; children = ( - 3725CB0D232F75861E7CF57C9FD51442 /* RNGestureHandler.xcconfig */, - 3216F8147EDF38C0ECE3396AEA3F4635 /* RNGestureHandler-dummy.m */, - 30DF3F93C1A42AE7DA94BB70BEC67FB1 /* RNGestureHandler-prefix.pch */, + DA1E6F5DA1C5B7BE02C7F9FAA2E7D246 /* CoreModulesPlugins.mm */, + A110CE3C880FAC45F8BB586761603C09 /* RCTExceptionsManager.mm */, + B3EFAC78F103E51CEA11AC34D1ECF0CB /* RCTImageEditingManager.m */, + EBCC1EE518130A7BEB24147271BD699A /* RCTImageLoader.mm */, + BB73A2FA7AABFB68521C902D59683FD5 /* RCTImageStoreManager.m */, + 13E15D09E335BE6074D12F5BDB1A19EF /* RCTPlatform.mm */, + 1F54B78EBA5D1D373158569316543195 /* Pod */, + 58CFAC3B2D744EEA58A7EDB8D5760D59 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNGestureHandler"; + name = "React-CoreModules"; + path = "../../node_modules/react-native/React/CoreModules"; sourceTree = ""; }; 101EED33BAC7AB267A02B4BB0E8713FF /* GoogleAppMeasurement */ = { @@ -7163,49 +7060,34 @@ name = Core; sourceTree = ""; }; - 1198052C06D69DAE1CDE63D6251136C8 /* UMCore */ = { + 11467BACF9BC2CC93789B20AB0D02A07 /* Support Files */ = { isa = PBXGroup; children = ( - EEB5281683361FD2FB295C3256F443F4 /* UMAppDelegateWrapper.h */, - EFC282E48CD62116ABCC0607EB1C39D9 /* UMAppDelegateWrapper.m */, - 026242D775D0D1C6C5C2064BA17FBA1D /* UMDefines.h */, - 673D46BD840DF16FDDB190F621BE76D7 /* UMExportedModule.h */, - 87545F89DFF41A6193D0E86E57D4A8B4 /* UMExportedModule.m */, - 4339CC5EDBE21248B57B43142C78FDA4 /* UMSingletonModule.h */, - A9D228BB93A3C1F8DABA176C396E4FBB /* UMSingletonModule.m */, - E13B9720FE050B017C5D9FABA51E7940 /* UMUtilities.h */, - 6534BAA3AB8D0B453F3B86BE5CAD4908 /* UMUtilities.m */, - 024A177C049377BFFBF85D955602ADC9 /* UMViewManager.h */, - 99C3168D41B9FC41720825F052172573 /* UMViewManager.m */, - 6723243CB1C6123E0AF38C65D26BF060 /* Pod */, - 7BB4879A55C7FB19E9CBB24B552A754C /* Protocols */, - 87DCE5A513857AD49098590D3913F80F /* Services */, - 5238387CFDA2E76C655BDF4E632776DE /* Support Files */, - 23EAF4556E4B8BF8AC55D7B3E3ECB0D3 /* UMModuleRegistry */, - A8A7227F348424BCABD715ED0CCB9F78 /* UMModuleRegistryProvider */, + 4147EAC2416ADC20941A5E597DA0D2E6 /* EXHaptics.xcconfig */, + 09BC00953B7AD898175C78AAADBD317D /* EXHaptics-dummy.m */, + 2515E476101B948AB81B6A35DC8BE1B5 /* EXHaptics-prefix.pch */, ); - name = UMCore; - path = "../../node_modules/@unimodules/core/ios"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXHaptics"; sourceTree = ""; }; - 145DBC4CF2E5F763EA5C471306637E52 /* Pod */ = { + 12AAA04D8C74C5C031678EDE4488AB76 /* Pod */ = { isa = PBXGroup; children = ( - 1C75A55326ABEDB240E0F2E77623075B /* LICENSE */, - 33FFD0CC413DFE6129F0333A2DA1E5DD /* react-native-orientation-locker.podspec */, - 3EA74D7266C0527969FAEC582E34B849 /* README.md */, + C95F7F0BB59E03EF5CBC816D28B51A8F /* FBLazyVector.podspec */, ); name = Pod; sourceTree = ""; }; - 146382A915E5A99FE220B0DE5067ADE8 /* VirtualText */ = { + 1417455366FDE29F339C244D1E1EF950 /* Support Files */ = { isa = PBXGroup; children = ( - 78AE52F0BCA0532AAEA774CBD36EDBB9 /* RCTVirtualTextShadowView.h */, - 50FC66338483B11FEBFB342EC0BE5072 /* RCTVirtualTextViewManager.h */, + C7C222BF7D9472BE80CE933B394805B8 /* react-native-video.xcconfig */, + AD0BF147CDC3863A03E6AD4CDCD05EDD /* react-native-video-dummy.m */, + 432015892798064D127AD8AF53FF3923 /* react-native-video-prefix.pch */, ); - name = VirtualText; - path = Libraries/Text/VirtualText; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-video"; sourceTree = ""; }; 14876DCA21FFA05DA02947692813B53B /* demux */ = { @@ -7218,25 +7100,72 @@ name = demux; sourceTree = ""; }; - 14B3049319576BC5760FDF736720D0A7 /* event */ = { + 14A56F3289DAC1BB7BD6B7680D5B1066 /* Pod */ = { isa = PBXGroup; children = ( - E9BE8BABF0FBA1318115BEAFCD7CA8E6 /* event.cpp */, - 69A8EB204DA42F54E697DAD17D3E757C /* event.h */, + A9D22AA00BB4016F84DAE57CFD038334 /* EXFileSystem.podspec */, ); - name = event; - path = yoga/event; + name = Pod; sourceTree = ""; }; - 1792A3CF9DC586CB1F3A41EF9FC1BF02 /* Support Files */ = { + 14C49D9B45B0FF06FE9219BD4FCC5CD4 /* instanceid */ = { isa = PBXGroup; children = ( - 70AD8BF98FA5C5F329C2F6FE663514D5 /* React-cxxreact.xcconfig */, - F7E4EE9B0188F5209057622ACD58C841 /* React-cxxreact-dummy.m */, - F866335A32A07A4E706558E5EBB1B41E /* React-cxxreact-prefix.pch */, + E49095A3107CAB8BDABD87287A631C8A /* RNFirebaseInstanceId.h */, + C9CF53D2295282EC9ACA6DB73EE9A9B2 /* RNFirebaseInstanceId.m */, + ); + name = instanceid; + path = RNFirebase/instanceid; + sourceTree = ""; + }; + 161C71101A52CB2EA89701C94C0AA630 /* Support Files */ = { + isa = PBXGroup; + children = ( + 13F3EE543C8BA12CF095D9709376A681 /* React-Core.xcconfig */, + ECA4B460688DF2142CF64C2256B71522 /* React-Core-dummy.m */, + 55719E74D72294EE0D554332A69D065B /* React-Core-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; + path = "../../ios/Pods/Target Support Files/React-Core"; + sourceTree = ""; + }; + 16488AEA80A1AF2EC326B2C0A647217A /* Pod */ = { + isa = PBXGroup; + children = ( + 09C0F8525F18B02A95BA7CDBBD2BB865 /* UMCore.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 164F823316FF8FB134E91630E4C73BF9 /* Pod */ = { + isa = PBXGroup; + children = ( + 8FDFD9A8764EA0B559ACB03F2109D8E9 /* UMBarCodeScannerInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 171FB9F951926D7D69F37D315853132C /* Drivers */ = { + isa = PBXGroup; + children = ( + C11B859C9B678D377691DAB7053CABB5 /* RCTDecayAnimation.m */, + 4341046B557301C8C52B4235329D3B0F /* RCTEventAnimation.m */, + E597B6B237F0736D5C201E27C53A3F5D /* RCTFrameAnimation.m */, + 3C8967EB8943C362A949D858A7313623 /* RCTSpringAnimation.m */, + ); + name = Drivers; + path = Drivers; + sourceTree = ""; + }; + 174F47C6821A4A8E15C4B35A7F0DCF50 /* Support Files */ = { + isa = PBXGroup; + children = ( + F6FAA14558A4C4ACEB215A1400FA2220 /* React-RCTImage.xcconfig */, + A85BBF1BB8607EBB7E6BA89D2278165C /* React-RCTImage-dummy.m */, + D66A5ABDC175A4C8569498B8AFCB1B5C /* React-RCTImage-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; sourceTree = ""; }; 185519C98B7C801E65896D53804ECF43 /* Folly */ = { @@ -7263,100 +7192,107 @@ path = Folly; sourceTree = ""; }; - 186B08313E058E664D32100C0823B780 /* Resources */ = { + 198B298FB24873B1FDF8CDF2D04460B4 /* RCTImageHeaders */ = { isa = PBXGroup; children = ( - 5276D62636EBCD436F969A4BC46EA48C /* AntDesign.ttf */, - 675F7DBC39E6FB01A58FDD54F812019A /* Entypo.ttf */, - 40367BDBD46DAAF558641D898E746F44 /* EvilIcons.ttf */, - E004884B5E4F1EE047A95A3E24ED00B3 /* Feather.ttf */, - CB71FB953386F4844FC134EAEB38AC56 /* FontAwesome.ttf */, - 2E4B8CB97B20EB18D9546E83F9869EEE /* FontAwesome5_Brands.ttf */, - F53547BC3A8C245055FB72E05310A278 /* FontAwesome5_Regular.ttf */, - D41DDAD789714C293FC2E18862CDC8A5 /* FontAwesome5_Solid.ttf */, - 35044CF6B9C4D8ABC03E93C8C08B2B73 /* Fontisto.ttf */, - 702E41E9C86930621F0D95ED8DE3A2EF /* Foundation.ttf */, - 10BEF6E5B9A6714310B87334EB4AE56A /* Ionicons.ttf */, - 68370F336693D0F5941100A5A2B76984 /* MaterialCommunityIcons.ttf */, - 4C11EFAB38A2FE5303419DE4FC410768 /* MaterialIcons.ttf */, - 5B3B0C5C702B82139A82E06DDF038422 /* Octicons.ttf */, - F1B0A2A7ACA7BAC52B97117BEDE4957A /* SimpleLineIcons.ttf */, - C14746BB36E23B5AF083D4E4977C3BD1 /* Zocial.ttf */, + 849BAF286C430F04B7D2003F3CB677AB /* RCTAnimatedImage.h */, + 86B2636F998D062D4D3FB9C112E7C761 /* RCTGIFImageDecoder.h */, + 661F03944A7D3C41BEACEE82E89C53AD /* RCTImageBlurUtils.h */, + 92FC18EC6AD15E95D5C55E9E231A2178 /* RCTImageCache.h */, + 73EE8E27AD9A38B22238BD2AE9CF4AD9 /* RCTImageDataDecoder.h */, + 5284303ED4B1250943EE4429B2E83C86 /* RCTImageLoaderProtocol.h */, + E749B8877B3B0EE7EEF1DDCF99DD0F83 /* RCTImageShadowView.h */, + 2E760992B2650089B51F63143D7E9C3D /* RCTImageURLLoader.h */, + 25E04E81DF3771994D1AD16A26EDCF46 /* RCTImageUtils.h */, + F76730335FA5B44EB23F25F0EA6399DC /* RCTImageView.h */, + 6CD0229375DE1D2D8DEA21B80ECA6388 /* RCTImageViewManager.h */, + FBDF8189F61B9E0CAA944B2D73AC6FA7 /* RCTLocalAssetImageLoader.h */, + 8FD0B65F93BBF3D29E1F13C7E482877E /* RCTResizeMode.h */, + 9874A1ACDC0B0D75CA7A7E561B7C821D /* RCTUIImageViewAnimated.h */, ); - name = Resources; + name = RCTImageHeaders; sourceTree = ""; }; - 18EA769F5869EEACD7D59DA604F43162 /* internal */ = { + 19CE0BF4225519CBE3D68804AB7D00C7 /* Development Pods */ = { isa = PBXGroup; children = ( - C641CFC2B167B82C543D9CFC19FB102D /* experiments.cpp */, - 6C5DB5852C6DBBFDD90861989FCF5E7A /* experiments.h */, - 3E9082D939DBA35F1A504D1388788EE8 /* experiments-inl.h */, + EBA61C37156700AD40BDE29A27CC1573 /* BugsnagReactNative */, + F186A0A80F48592C66302F725A4BEC1B /* EXAppLoaderProvider */, + DA9966820E16AB135D425EE174272255 /* EXAV */, + 2DD2F5E5D95F7FB9235EBFEEDFE322B4 /* EXConstants */, + E1C6F709CD668DF42912AFF4DEF8639E /* EXFileSystem */, + F6DAB2D1E921041E12670AAD379C83AF /* EXHaptics */, + A7C265C94D28AE185BA8B6E258FEF2DA /* EXPermissions */, + CB1C7B816EBBFB15DED635CF72046494 /* EXWebBrowser */, + 01DFBB12B21647E349D88C524FB03D8C /* FBLazyVector */, + F6093BEB6091392A92590D948465F618 /* FBReactNativeSpec */, + A69791230F777B21005472941CF2C4A1 /* RCTRequired */, + A2B6157DD36D2B6ACA4389B166D009F8 /* RCTTypeSafety */, + 652CA6BFA1D8484CA993DFA32E44B1A1 /* React */, + F41D27CCF23045603E78345AB7951FFB /* React-Core */, + 0F10A061FF00071D3988930A499FB1BC /* React-CoreModules */, + B2651275FF887455E77F929836D0C3A7 /* React-cxxreact */, + D0B7EA55A2B1CE20FFB95A53BCF580E3 /* React-jsi */, + 7CC7C516F88FCA44517D1E61F36EC15F /* React-jsiexecutor */, + 5930ED8DD384570CA551A37C1F473291 /* React-jsinspector */, + 20F564B59B31F95F3F20DD51F72302F2 /* react-native-background-timer */, + 43CF31DF4E39BA5BF5C2A58428EB2F74 /* react-native-document-picker */, + FDCCDAD0667AC7EC273BD2A5A4E3095B /* react-native-jitsi-meet */, + 57E9681E6AB3EF7AE7D2013AF6880D0D /* react-native-keyboard-input */, + 4BE756250D1ECF6C253065F5B2FA9D79 /* react-native-keyboard-tracking-view */, + 75D7BF0943BCCD94F5ED5FAAB8F334AB /* react-native-notifications */, + 01A8A353AA55AFA81A7F36B1741F308D /* react-native-orientation-locker */, + C437BD883F5EBA585A778D23FE5D224E /* react-native-splash-screen */, + D033233737CB27D26F172EBB1C703236 /* react-native-video */, + 5432C5B6FB6CB41BB8216C58EFB1F805 /* react-native-webview */, + BEC4854966A33A94EEB857F6AB2BBD96 /* React-RCTActionSheet */, + C6BBAC5C19713AB0C6A967E41276FD06 /* React-RCTAnimation */, + 785AB03F08CFF048705F813A5BDE6820 /* React-RCTBlob */, + 9F11F71AA6CDD6D60D6AD8F805A80A9D /* React-RCTImage */, + E29D3A5209CB3747E8E1C389D07AE44D /* React-RCTLinking */, + BB76AEA1E13A51BE8C3D716F3178C819 /* React-RCTNetwork */, + 0D97DBA70F89B8FEAA9C464E40542F66 /* React-RCTSettings */, + 52349F4D4BA1244BC9E043CFFD84ED6C /* React-RCTText */, + 67EC0F389B1FDA4D7F0EE0CDDE3A9B12 /* React-RCTVibration */, + 8F2D2152063E33D5679B0993F99A0257 /* ReactCommon */, + 493C5A1ECF31A191771A52D652820874 /* rn-extensions-share */, + 281444D8EF63909D4DFA99748B56DFB5 /* rn-fetch-blob */, + 623C4E269FA0252D4BFD63BA25BFD9B9 /* RNAudio */, + 4C0B41991CC7C966CB3A30EDCEEE585F /* RNDeviceInfo */, + 7E0DB297392B8A48300A1753B173B34B /* RNFastImage */, + B3E9BFC16E08834B1D814CE43443CBDE /* RNFirebase */, + 3173D5C1C69BD8E2124446A7974BEE7C /* RNGestureHandler */, + EA087189CFBA14B5D6F38530087DC387 /* RNImageCropPicker */, + 26FD63F4F214EAB11FDDA6612E41816F /* RNLocalize */, + 43C44707AD78010D557DF2127F556029 /* RNReanimated */, + F4369B5D916E3A341AA40BEC4B3D1B53 /* RNScreens */, + A398E4C5EC98BFCF0CE5EA14645F7A62 /* RNUserDefaults */, + C84D37CAD0D45945C09CE0DA08EADD1F /* RNVectorIcons */, + 51029A5B0A64AB7F58316BE9892C6F58 /* UMBarCodeScannerInterface */, + 23FCEF518E7CD0080FB945FC0993D6FC /* UMCameraInterface */, + 9C9A9F1ACD3F674643079F52ABD9CA97 /* UMConstantsInterface */, + 9D0BA34D2DF88484D47F8840EAE717DF /* UMCore */, + 7154D5B0CED37CA14A8CB41D2143C983 /* UMFaceDetectorInterface */, + 9F9AC2900443CF1C172DE7E70630249C /* UMFileSystemInterface */, + 548D0A7EA8E1D4A391E648B85A36D5F4 /* UMFontInterface */, + CFCE2E129260B2DC9C3FBD031AEE9738 /* UMImageLoaderInterface */, + 8D951304368588B30E020B2022029AD7 /* UMPermissionsInterface */, + 66524E121E9678338594A0A185E103E6 /* UMReactNativeAdapter */, + 975BC4A9540A9D72BE5C9AB7CB34B0B6 /* UMSensorsInterface */, + E895048131BBE4CDE2476746D902A059 /* UMTaskManagerInterface */, + E1E7D9103929F67FE9369C8949CD91AA /* Yoga */, ); - name = internal; - path = yoga/internal; + name = "Development Pods"; sourceTree = ""; }; - 190322DC6DDCD56B0CDE19A389C79145 /* Support Files */ = { + 19E2B62B5841B9B0550E5653AAF31878 /* Pod */ = { isa = PBXGroup; children = ( - 043C8D27A22B10869854753572130400 /* UMBarCodeScannerInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; - sourceTree = ""; - }; - 1963CE86137D6CA609B5FA92CE5654BB /* UMFontInterface */ = { - isa = PBXGroup; - children = ( - 5FEB57653B2E587681925D19E36B603F /* UMFontManagerInterface.h */, - F83614933E6E041EBDB5F89A55A4736B /* UMFontProcessorInterface.h */, - CCC35CAF48E84E321DC0A754C14D4155 /* UMFontScalerInterface.h */, - BB624FB849FAEC4569CE5CFD011073F2 /* UMFontScalersManagerInterface.h */, - 9004BDEFE4F2095165B3DE716D33DF7C /* Pod */, - BF0BC018B1BB4AD9D3E5C6F230AC38F5 /* Support Files */, - ); - name = UMFontInterface; - path = "../../node_modules/unimodules-font-interface/ios"; - sourceTree = ""; - }; - 19DA47B35D961D40DD4F0D7DADF06805 /* Drivers */ = { - isa = PBXGroup; - children = ( - 7E5FA3CB30EB592869B083947201A5EA /* RCTDecayAnimation.m */, - A042E9934070323AF37FF873CBE05BAF /* RCTEventAnimation.m */, - AA65C22B9756E0B3F3715C18C629DD73 /* RCTFrameAnimation.m */, - FB1EFF7A8F4AE7B98C3DC698BF087E10 /* RCTSpringAnimation.m */, - ); - name = Drivers; - path = Drivers; - sourceTree = ""; - }; - 19F394E38254750B6D4613BBC4A81E76 /* Pod */ = { - isa = PBXGroup; - children = ( - D24821990A889E6EA12453C3284F5C2D /* LICENSE */, - B33AF048A3C96E6607B05C7D4ABD1905 /* README.md */, - 19C5B26821BF422266D5AE10728E66DF /* RNVectorIcons.podspec */, + 24EDFDD6887102483489AFE14F32AB18 /* RCTTypeSafety.podspec */, ); name = Pod; sourceTree = ""; }; - 1A0972D40A6EE14DDE5DC4B9014CCD22 /* UMReactNativeAdapter */ = { - isa = PBXGroup; - children = ( - B0DF55260CB83C973816C8C7BE667241 /* UMBridgeModule.h */, - 26D3AA594AFC1216C0DA45EF9FE686BA /* Pod */, - 31653DFE49C80F8047D1D6D9D78DB121 /* Services */, - 97B5F5BF70BDCA642D18734A45DDB652 /* Support Files */, - 8C0574A83B6F49DCA5D1D211D7056702 /* UMModuleRegistryAdapter */, - AF66EECAC3EC038735E086ED29EB96A6 /* UMNativeModulesProxy */, - D1AE7FF9D188850B949F9C54540F73FA /* UMViewManagerAdapter */, - ); - name = UMReactNativeAdapter; - path = "../../node_modules/@unimodules/react-native-adapter/ios"; - sourceTree = ""; - }; 1A26BE4AAAB78A3ADEC6C804FEFE4F86 /* Logger */ = { isa = PBXGroup; children = ( @@ -7367,128 +7303,53 @@ name = Logger; sourceTree = ""; }; - 1B1F7AE8102817BBE9BCADA74BA600BA /* Pod */ = { + 1A89D9AD4B14297D60BB576F76250C40 /* Pod */ = { isa = PBXGroup; children = ( - ADD7C166914EF86D693121CA1797EA64 /* EXAppLoaderProvider.podspec */, + 999620C379E51B2D5151B5D70F40E7AE /* UMTaskManagerInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 1BC478356F6679B7626E20510141F29C /* Support Files */ = { + 1B95B25D6EF2F73FD130589FB3B18B2A /* Pod */ = { isa = PBXGroup; children = ( - 0FA2F433E540C0073C0D9B4E0A2DFC54 /* React-CoreModules.xcconfig */, - 4B67CC88A271DE62796A777B6D1CFEE2 /* React-CoreModules-dummy.m */, - 441E04426149FF8BC87FC8C229F638A2 /* React-CoreModules-prefix.pch */, + C0AF8A51E28DC0FEEA5B45A6E27A28C6 /* LICENSE */, + 7B528786017D9DAE80E38746B599AF7A /* react-native-webview.podspec */, + A3D2972F5BB21FFEEF73983D51644494 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 1F54B78EBA5D1D373158569316543195 /* Pod */ = { + isa = PBXGroup; + children = ( + 51602A8B0FF2DBD9D031FBEEBE346B11 /* React-CoreModules.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 2011012DA4D4BA42994E704E278AB9EF /* Support Files */ = { + isa = PBXGroup; + children = ( + BC80D47C6CDBD7086E7E728EB1717A10 /* react-native-document-picker.xcconfig */, + FC5DFE0E717A0A6D92D453D6251387BB /* react-native-document-picker-dummy.m */, + 7393CF7A333E2F3F4502DDA8465306CC /* react-native-document-picker-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; + path = "../../ios/Pods/Target Support Files/react-native-document-picker"; sourceTree = ""; }; - 1BFCCAC9A67E55D2C4526E6335B770D9 /* Surface */ = { + 20F564B59B31F95F3F20DD51F72302F2 /* react-native-background-timer */ = { isa = PBXGroup; children = ( - 210B7BD233F22F152F7CC032E98367D0 /* RCTSurface.h */, - 524690C6149DF048A91A107B8A1E2891 /* RCTSurface.mm */, - D6676CECE89CEB3E98A9AFCB004866B9 /* RCTSurfaceDelegate.h */, - 851E845006C0DFF54AE5B7D501C95BB5 /* RCTSurfaceRootShadowView.h */, - 77FA0CB1441C59B7A21C7AD303488977 /* RCTSurfaceRootShadowView.m */, - E5C53B891F06F1C7FF25B522823943C4 /* RCTSurfaceRootShadowViewDelegate.h */, - 98A5BCE524F6789D52CAD863DFAEC38D /* RCTSurfaceRootView.h */, - C58DAA4203EAEE32D62CFF20E6A02AE9 /* RCTSurfaceRootView.mm */, - 2FA4F8C4BE83F7A643D54A86C58895BC /* RCTSurfaceStage.h */, - F3426CD7F8F9487B138F70D9E3376947 /* RCTSurfaceStage.m */, - CBCD8EB01BC31B1ECEED391EEB3E7088 /* RCTSurfaceView.h */, - B91331C48536659680EE5EAA9EE02C9D /* RCTSurfaceView.mm */, - 31554746BC6159F2CADBE263BFE17239 /* RCTSurfaceView+Internal.h */, - 7511F658E9D9822EBB0BD4DC87578DE3 /* SurfaceHostingView */, + 73BE4E2BD8191FF1A806D5002828337D /* RNBackgroundTimer.h */, + 667562C93CE0E35859560D81A9D4C366 /* RNBackgroundTimer.m */, + 9163A0F0F7F059B9B12D2A46D962897D /* Pod */, + 738048688FCAFD0EA62436788E5E7837 /* Support Files */, ); - name = Surface; - path = Surface; - sourceTree = ""; - }; - 1C2F923A8E0728F3EE682EA3DD52B9C9 /* TextInput */ = { - isa = PBXGroup; - children = ( - BB3282EF4DBE9CD99DAD283ABA8C670E /* RCTBackedTextInputDelegateAdapter.m */, - CAB831E3C616717D719D35E55728038A /* RCTBaseTextInputShadowView.m */, - 788DEE98E3CA1A812D1798E35B6DFED0 /* RCTBaseTextInputView.m */, - 6EA871D60B58303220351B196981986B /* RCTBaseTextInputViewManager.m */, - 757934FE95DADAA21806311FF273FF0E /* RCTInputAccessoryShadowView.m */, - B5B3F647F1139CB1C2D5B90DC2CE7107 /* RCTInputAccessoryView.m */, - C3CBAFF43E73228346B47BCF6BBCD62C /* RCTInputAccessoryViewContent.m */, - 61F47A738145109F37BC5439CA43A250 /* RCTInputAccessoryViewManager.m */, - 68343C788E89DA448E407E7A946A020A /* RCTTextSelection.m */, - 03BDAC3A44468859AC45690F586814C7 /* Multiline */, - F6F29A376E24C72EC24FC34C4004B7DB /* Singleline */, - ); - name = TextInput; - path = TextInput; - sourceTree = ""; - }; - 1DE6C177E924F2DB6B3CDFEC5814CE83 /* RCTVibrationHeaders */ = { - isa = PBXGroup; - children = ( - 952089D780267A2D11750B51F49F2F25 /* RCTVibration.h */, - ); - name = RCTVibrationHeaders; - sourceTree = ""; - }; - 1ECCFE94ECFC3A2F46204B2C8DB43DDA /* config */ = { - isa = PBXGroup; - children = ( - A4A62A49927979547591B04816443326 /* RNFirebaseRemoteConfig.h */, - A112A07C6625F98F1BA6C168EEA0A9F2 /* RNFirebaseRemoteConfig.m */, - ); - name = config; - path = RNFirebase/config; - sourceTree = ""; - }; - 1F298069CD073F541C92820D95F8A96B /* Pod */ = { - isa = PBXGroup; - children = ( - 2585836CA536FE4318F3F764A00E0A90 /* advancedIos.md */, - 904EBBB159EFB89B34BAF27D0B10237C /* installation.md */, - 1156568F0753F0632630A318D6C17E6E /* LICENSE */, - 183AC678527C8A35A0FC978A9C3B077B /* localNotifications.md */, - 8864621570BFF62599C10D372B017976 /* notificationsEvents.md */, - 0D7418BDE4B19AB8A1C1B7FA663E4CD6 /* react-native-notifications.podspec */, - 9739CE6ECC687D2B8093376DDE5D89D0 /* README.md */, - 6254A40C26AF0383611550FFE646BC03 /* subscription.md */, - ); - name = Pod; - sourceTree = ""; - }; - 1FA4419EDAE993F1CF73635CFCE4EEAB /* Support Files */ = { - isa = PBXGroup; - children = ( - 2D74DD88DE2748B2514AF73DF5658135 /* FBReactNativeSpec.xcconfig */, - 13C6F9E43F61D0753575DE405608E66E /* FBReactNativeSpec-dummy.m */, - DEFBFCDC16226A55B499ED6D0D4ED042 /* FBReactNativeSpec-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; - sourceTree = ""; - }; - 1FDD80D4F770190C190D8A17C7EDD9AD /* Pod */ = { - isa = PBXGroup; - children = ( - 8A14B7055460F8920E63DD6CB22866D5 /* LICENSE */, - B272F25F326C7915BB95A8ED6A6AA68E /* README.md */, - C5B75E96BED458352201FA06AE45A026 /* rn-fetch-blob.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 1FF954423318B39BCCAD8B5892AAE6AF /* Pod */ = { - isa = PBXGroup; - children = ( - 580465200257C884071DF12A9217E91A /* LICENSE */, - B2C61A33AC980929E1343F953D5E3EF7 /* README.md */, - E03F9A9E47F0BA504C84E2D5F57B7F83 /* RNAudio.podspec */, - ); - name = Pod; + name = "react-native-background-timer"; + path = "../../node_modules/react-native-background-timer"; sourceTree = ""; }; 2136ECB76D27908075C4B018E1E6C607 /* Firebase */ = { @@ -7501,167 +7362,165 @@ path = Firebase; sourceTree = ""; }; - 22D4E3A4C30FB18492FCE31F9B0A4F08 /* React-Core */ = { + 2348794B921E44C89ED1E1D641BB8687 /* Pod */ = { isa = PBXGroup; children = ( - E35FA91CB85DB5E82943ECC28C8AD4AC /* CoreModulesHeaders */, - AE7AB636E2CFBEC3043784F813F20FB6 /* Default */, - 7F601E55D1CC72A9196735EA5EE0ED55 /* DevSupport */, - 4FCBA42777BE2E75CDA116381D4BAD75 /* Pod */, - 786172CCB0A814F9B6231758640FFBA2 /* RCTActionSheetHeaders */, - 713DFA2F8F7ABE011F0551080AB53B2C /* RCTAnimationHeaders */, - 47B3441F41B74C5C1C9F929801B7E6AF /* RCTBlobHeaders */, - 777658E5419CD2B8C5890B5E9713CCE6 /* RCTImageHeaders */, - 58FCE60A80CF6FEA1952D8E53D6C667A /* RCTLinkingHeaders */, - D0EE3E5205407DEA33BF6DA09314FBB2 /* RCTNetworkHeaders */, - 64DFE11D862BB87E1E7B52C8A5DC8504 /* RCTSettingsHeaders */, - 9D22DF0A9A366214E8A513AF9F63FD4F /* RCTTextHeaders */, - 1DE6C177E924F2DB6B3CDFEC5814CE83 /* RCTVibrationHeaders */, - 4F5E3E83E942DE2EA1332EE7D7826779 /* RCTWebSocket */, - 87664853A63DC7C648708CAAF5CB63ED /* Support Files */, - ); - name = "React-Core"; - path = "../../node_modules/react-native"; - sourceTree = ""; - }; - 23EAF4556E4B8BF8AC55D7B3E3ECB0D3 /* UMModuleRegistry */ = { - isa = PBXGroup; - children = ( - 48FFBF121F31AEA781C280C41AEA8A8D /* UMModuleRegistry.h */, - 37006D61CD175B673FEB9953C5756E90 /* UMModuleRegistry.m */, - 19204F31F35697F6B8D1ED03BAF14CDC /* UMModuleRegistryDelegate.h */, - ); - name = UMModuleRegistry; - path = UMCore/UMModuleRegistry; - sourceTree = ""; - }; - 244A85584AA0D87B82A47C9E3FC0938A /* Support Files */ = { - isa = PBXGroup; - children = ( - FD4BE464260812BB8390548FB348EB32 /* react-native-background-timer.xcconfig */, - 116CEA524A3351D8A5BF943C07325E1C /* react-native-background-timer-dummy.m */, - 7C6E3D06B7C3A6C90040B328AD7C469F /* react-native-background-timer-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-background-timer"; - sourceTree = ""; - }; - 24AFCB8BA6292EAF2E1E846AAF86D327 /* Support Files */ = { - isa = PBXGroup; - children = ( - 8ED7131BD769F675631C0F8458FF6562 /* UMCameraInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; - sourceTree = ""; - }; - 25423CF51FE14AB48650CFE3C5B4EE77 /* EXHaptics */ = { - isa = PBXGroup; - children = ( - A965D48D828ED54D8B34A82BBD763A56 /* EXHapticsModule.h */, - 3029A4C8498438BB04B0630377E29DCE /* EXHapticsModule.m */, - 88EDA20962DBDF67FF5B5DF7358F19BD /* Pod */, - 8402315EC9F344FE85D9BBDAA1AB7F15 /* Support Files */, - ); - name = EXHaptics; - path = "../../node_modules/expo-haptics/ios"; - sourceTree = ""; - }; - 26D3AA594AFC1216C0DA45EF9FE686BA /* Pod */ = { - isa = PBXGroup; - children = ( - 5A7E8556F46D9086773FC65E65945D02 /* UMReactNativeAdapter.podspec */, + 4E3073268F3560B063D070EF55DA0D9B /* UMFileSystemInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 284C546F0E37E3E3DAA1FB5A460C47A2 /* Pod */ = { + 23D640A023956697F7254F02F112EB09 /* Support Files */ = { isa = PBXGroup; children = ( - B5DE79C6CB8DF7C24C892F8B504CA59C /* LICENSE */, - 362240E24C515C4ED4C1719116E0BF49 /* react-native-jitsi-meet.podspec */, - 47B68665153ACE22A9D0E631F264BFE4 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 2862380108F70211F6880CC5A642106D /* Support Files */ = { - isa = PBXGroup; - children = ( - A3E18E5BE7BAA4745020688185C4BFBB /* UMFileSystemInterface.xcconfig */, + F3C545D3719C07AA73DC5A009DDB92B1 /* React-RCTActionSheet.xcconfig */, + C1FD61059ED51E365EB8C98830DA1DDB /* React-RCTActionSheet-dummy.m */, + CC175D849FF5E17E87CAA2E1FA679940 /* React-RCTActionSheet-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; + path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; sourceTree = ""; }; - 299C8496E1AF6A6D037DEDD8A119621B /* Pod */ = { + 23FCEF518E7CD0080FB945FC0993D6FC /* UMCameraInterface */ = { isa = PBXGroup; children = ( - 37770AF7C8631396D540CF9230FA65B0 /* UMFaceDetectorInterface.podspec */, + 1EDB4DD1370455027F415ADAF0FE206B /* UMCameraInterface.h */, + 93080E9A956C3EF9992CE2BDBAE7D92C /* Pod */, + 611E207009DB11C41FFE26E192D584E1 /* Support Files */, + ); + name = UMCameraInterface; + path = "../../node_modules/unimodules-camera-interface/ios"; + sourceTree = ""; + }; + 24267E43DEA33EB99583EF2C310F0E77 /* UIUtils */ = { + isa = PBXGroup; + children = ( + 943A32BC82DD9F90B690F521C2F3BF01 /* RCTUIUtils.h */, + C579CA51C3922D215446012D3F26D0D4 /* RCTUIUtils.m */, + ); + name = UIUtils; + path = React/UIUtils; + sourceTree = ""; + }; + 2689784321CA535F8759E8AB1741ECE8 /* Multiline */ = { + isa = PBXGroup; + children = ( + 9A400EAD23CF7F01C37961AE6ED25820 /* RCTMultilineTextInputView.h */, + 61AA363888A6630CBFBBB0BFB0F9D7D4 /* RCTMultilineTextInputViewManager.h */, + DEB21DA40A7D7B3E1D6A593245AFE04E /* RCTUITextView.h */, + ); + name = Multiline; + path = Multiline; + sourceTree = ""; + }; + 26FD63F4F214EAB11FDDA6612E41816F /* RNLocalize */ = { + isa = PBXGroup; + children = ( + 149234285FE52788DC286C2C1D089708 /* RNLocalize.h */, + 2C14B476AA97AC9B5965F8675044844F /* RNLocalize.m */, + 5B6847EE8E12E4BC522D73352DFD055D /* Pod */, + CB8FFE81C7D6B29641D72C66AB75126D /* Support Files */, + ); + name = RNLocalize; + path = "../../node_modules/react-native-localize"; + sourceTree = ""; + }; + 281444D8EF63909D4DFA99748B56DFB5 /* rn-fetch-blob */ = { + isa = PBXGroup; + children = ( + 858402B1090257CEEDC1F5183B06EC41 /* IOS7Polyfill.h */, + 16288A6D374DEF57B30DDCE361394DDD /* RNFetchBlobConst.h */, + FE11B451448C087FA000F8E536798238 /* RNFetchBlobConst.m */, + 3DDA5211D6D3A7556B833E5BE41C6FED /* RNFetchBlobFS.h */, + 6B6AB3485E97258DA51BC6AC13968E3D /* RNFetchBlobFS.m */, + CA28D65097E457C8F388D75083A9111F /* RNFetchBlobNetwork.h */, + 21C2FD82F3EF2E1D1385E4CF77E0EE21 /* RNFetchBlobNetwork.m */, + 1BC512E868EDC52D88DB5A2461800637 /* RNFetchBlobProgress.h */, + B22C08575AEB62A243675DECFA9C489C /* RNFetchBlobProgress.m */, + 0C8700E7C2E5477D0948D22AE0D0346E /* RNFetchBlobReqBuilder.h */, + 07679B01ED7717BDB95924F0A1F4636F /* RNFetchBlobReqBuilder.m */, + B8B967F67A9A47EAE957BE83BF7A08F9 /* RNFetchBlobRequest.h */, + 897103098BBBD0BC1C556F51F19325F6 /* RNFetchBlobRequest.m */, + 0BD24D42AA707D813E69331FF8820843 /* Pod */, + F8D67F47F1036A158C06BA57E504A8A0 /* RNFetchBlob */, + 7DA3503D65449BF63F910C510D3C419B /* Support Files */, + ); + name = "rn-fetch-blob"; + path = "../../node_modules/rn-fetch-blob"; + sourceTree = ""; + }; + 28E37F3C157EA28BE0B03862AB3309FE /* Pod */ = { + isa = PBXGroup; + children = ( + C10ACEEBA7982577556E26F349C4699F /* React-RCTSettings.podspec */, ); name = Pod; sourceTree = ""; }; - 2A6AAF6A11A0E8CDB698F0BCC8C2AD17 /* Support Files */ = { + 293CF54965526CAE7895FA11C15A7AF0 /* Support Files */ = { isa = PBXGroup; children = ( - 1D46D1AF9480B8219F2793E475C533EC /* EXConstants.xcconfig */, - A59C91EF26C663EEAC72D9CFD60575EF /* EXConstants-dummy.m */, - 64990AD3A57F040DC0043489B2F27B7A /* EXConstants-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXConstants"; - sourceTree = ""; - }; - 2BCB0AF5004913F8C9F0B9AA697F309D /* Transitioning */ = { - isa = PBXGroup; - children = ( - F6B4FBE64C338CB65C232D45CD23F84C /* RCTConvert+REATransition.h */, - BA809AF0EF74364F699C474DD8A703B3 /* RCTConvert+REATransition.m */, - 5DE3EB62C8C2BB26535E979EB5208D1E /* REAAllTransitions.h */, - D8B3C5324F767E3D5D28D4349F972EF0 /* REAAllTransitions.m */, - 742AD48E6C5612CF0796FEAC2E2629CE /* REATransition.h */, - 8A465236DFA5D2FD0A21D4D53F8A328D /* REATransition.m */, - CD32ADA37A4032844E49367E51BC76D7 /* REATransitionAnimation.h */, - 15CCE0603210C9C4FBCEBADDC20538DF /* REATransitionAnimation.m */, - FA4300DE49DD938544288CECFAEE3019 /* REATransitionManager.h */, - 8C43A1B22E483D71551C541EB00BE23B /* REATransitionManager.m */, - 7D13984EFFDC4EE40E38B864C1DBE2B0 /* REATransitionValues.h */, - 6E84A2B5CBF4936A0B8979077C0CFFF4 /* REATransitionValues.m */, - ); - name = Transitioning; - path = ios/Transitioning; - sourceTree = ""; - }; - 2C238C7A59F21CBE7D424C0AEF8AF4FE /* VirtualText */ = { - isa = PBXGroup; - children = ( - 97772715F1946476C81AF067F80DBDC5 /* RCTVirtualTextShadowView.m */, - B7911F9C6D6FCF75555C8B719694B744 /* RCTVirtualTextViewManager.m */, - ); - name = VirtualText; - path = VirtualText; - sourceTree = ""; - }; - 2D0413D32AD11498470C7AEA1878CA7F /* Pod */ = { - isa = PBXGroup; - children = ( - 04FEEC5DCB00A25787709575DFECCD40 /* UMImageLoaderInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 2D16D0C42B1DB8DA494832E5BB6826D9 /* Support Files */ = { - isa = PBXGroup; - children = ( - F5A34C31AB02B63C92EFA295D826B46F /* react-native-orientation-locker.xcconfig */, - D0A9025FF4604B47ACC9C18CC3C62938 /* react-native-orientation-locker-dummy.m */, - 9FCB77363FB6017B71C511D63680640A /* react-native-orientation-locker-prefix.pch */, + 61FF33B74344249CC59D55F54F4D3652 /* react-native-orientation-locker.xcconfig */, + 311DF445FE87CE1764573708E7F33CBE /* react-native-orientation-locker-dummy.m */, + AC5AEA724649D3D8BE10F6B7E3704C36 /* react-native-orientation-locker-prefix.pch */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; sourceTree = ""; }; + 2C3A81619707143ABF34D8F184280AA4 /* Pod */ = { + isa = PBXGroup; + children = ( + 6B715AADBE26668243592D882F5FD78C /* LICENSE */, + F1EE54C558C71275F875B67E1CAEFD2D /* README.md */, + 9E4995825BF1CC7B1272BA7374915B4E /* RNFastImage.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 2D0ED285167E80156E050384AB5AFAA5 /* Sentry */ = { + isa = PBXGroup; + children = ( + 810F63F23555A8505AEA8B76EDB18D76 /* BSG_KSCrashSentry.c */, + AB46787E2D8E38B23B6E70FFB59547A4 /* BSG_KSCrashSentry.h */, + E42E8FF004760A273B45C14DBFDEA993 /* BSG_KSCrashSentry_CPPException.h */, + AC11BC507A7E2C29D98632EB8C9197D2 /* BSG_KSCrashSentry_CPPException.mm */, + BDA7BDED460EEFAAD058802B9AFF9917 /* BSG_KSCrashSentry_MachException.c */, + E9F7DBA2F2ADB56223D8FC71E44FC92D /* BSG_KSCrashSentry_MachException.h */, + BE305D50A851A552CAE374BCF1D4F77C /* BSG_KSCrashSentry_NSException.h */, + C1329548FB5474AD5B664F1F97BCCC78 /* BSG_KSCrashSentry_NSException.m */, + FD9CC0B318912FFEC6798E5431C6C273 /* BSG_KSCrashSentry_Private.h */, + 3A3FA7E5BA0595C9DB539264B6DCFA7F /* BSG_KSCrashSentry_Signal.c */, + BD4C8BC633E2A9B5A5D3435478D22C3B /* BSG_KSCrashSentry_Signal.h */, + 9BE194BCBF94E09172E4340DD7686E24 /* BSG_KSCrashSentry_User.c */, + DE721E39C1F43835E859AE29B93A0629 /* BSG_KSCrashSentry_User.h */, + ); + name = Sentry; + path = Sentry; + sourceTree = ""; + }; + 2DD2F5E5D95F7FB9235EBFEEDFE322B4 /* EXConstants */ = { + isa = PBXGroup; + children = ( + 0182ABCB8A61B583B37098F2F4D3D3D3 /* EXConstants.h */, + 4C19F8522831D2F9EE9D4A1147119D41 /* EXConstants.m */, + 5C1E4A406BD935C2DA57253C04A20DC4 /* EXConstantsService.h */, + CA94976BBB1A2EF6CDDEA7C1D01F25D3 /* EXConstantsService.m */, + 340D605553F7B470F6B5FCF154F0F7B9 /* Pod */, + AC3E47478A27694D1A44571A9C728F1E /* Support Files */, + ); + name = EXConstants; + path = "../../node_modules/expo-constants/ios"; + sourceTree = ""; + }; + 2E299FD20AAD4C2075DF3FBB1B18680F /* Pod */ = { + isa = PBXGroup; + children = ( + 6C5F2693223E3FE7E2AC98ABBF24DF2B /* React-RCTNetwork.podspec */, + ); + name = Pod; + sourceTree = ""; + }; 2E3AF22451B9D0CD72A455BC06A17F6C /* Support Files */ = { isa = PBXGroup; children = ( @@ -7672,112 +7531,96 @@ path = "../Target Support Files/FirebaseCore"; sourceTree = ""; }; - 2E960682D234DCDC434EDB5C0C878CAB /* Support Files */ = { + 2E87789820CAFB333B93FB1D7ADAA135 /* Support Files */ = { isa = PBXGroup; children = ( - F75BB24F802DC6A2D91636B4C8C0335D /* RCTRequired.xcconfig */, + 824BCC9DC38620055EC071518322EFE8 /* react-native-keyboard-input.xcconfig */, + 4D3BB9A691B6348607528B84A81C4278 /* react-native-keyboard-input-dummy.m */, + 23D97E3914D4BD4753EA2C6E3DF2F48F /* react-native-keyboard-input-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTRequired"; + path = "../../ios/Pods/Target Support Files/react-native-keyboard-input"; sourceTree = ""; }; - 2FDD2E511A2AF4BD60E90E864F40B1DB /* UMCameraInterface */ = { + 3173D5C1C69BD8E2124446A7974BEE7C /* RNGestureHandler */ = { isa = PBXGroup; children = ( - 6EA436B94C51F83AD10E5B728C1A50DC /* UMCameraInterface.h */, - 4E140C82CF3EDD9C4EA720B7DC4BD2AC /* Pod */, - 24AFCB8BA6292EAF2E1E846AAF86D327 /* Support Files */, + D801AF3D252F806D05976A03102E51A5 /* RNGestureHandler.h */, + 435810AA44D25F78E402E260306A966E /* RNGestureHandler.m */, + E1ED833C1DF75C4BCB52EE680234CE3C /* RNGestureHandlerButton.h */, + AB726F23F2EB8BFD8AF3422843E0CDB9 /* RNGestureHandlerButton.m */, + 352C6E90D068FB859B0ACAEC65A0F166 /* RNGestureHandlerDirection.h */, + D0EA0D0D64A4CC345586C1291CA087A6 /* RNGestureHandlerEvents.h */, + 17A3F710097376D90315825E107D5707 /* RNGestureHandlerEvents.m */, + 1C247F512B6D089F48F0B57405F07C83 /* RNGestureHandlerManager.h */, + F05AB836BDC07D1ACDC2D02D31A773A8 /* RNGestureHandlerManager.m */, + 21F17E06C2BC683EA3844510D8BEB780 /* RNGestureHandlerModule.h */, + 7CF841B7F2C4FFE5C70AD8200D90F5E5 /* RNGestureHandlerModule.m */, + FE9882D6F1ADD55B531AE6C0DA506CCC /* RNGestureHandlerRegistry.h */, + 8FD4960E636E1EF34354A4B03380DB08 /* RNGestureHandlerRegistry.m */, + 0CC89BB934369B19B9F46D39A46AA58C /* RNGestureHandlerState.h */, + A68FBC3F5EF9C484CA4B97ED5D841169 /* RNRootViewGestureRecognizer.h */, + 5204A27C7572AECD142E1A0DE5595F9A /* RNRootViewGestureRecognizer.m */, + DDCDDABC49E9709834132C3C25E1B654 /* Handlers */, + 064D4AB74961C6DD14AF8C99C4A2A156 /* Pod */, + F9CA889B5CB2E84E70982614CD766A5E /* Support Files */, ); - name = UMCameraInterface; - path = "../../node_modules/unimodules-camera-interface/ios"; + name = RNGestureHandler; + path = "../../node_modules/react-native-gesture-handler"; sourceTree = ""; }; - 30995E6C69786CA56B5F5E8DCA3E6185 /* Singleline */ = { + 326DB36CE8B2997E670F1036291F2F97 /* Support Files */ = { isa = PBXGroup; children = ( - 1D0FCBEA0B1685BD8A9EF2CE7D38F1DF /* RCTSinglelineTextInputView.h */, - B91BEAAFF4DCB95DA0D8DAEA4E232F30 /* RCTSinglelineTextInputViewManager.h */, - 8A433F730AAD8F31114DDB79F01CDBD3 /* RCTUITextField.h */, - ); - name = Singleline; - path = Singleline; - sourceTree = ""; - }; - 315AADD385D3A647D6EDD12173C429A3 /* Support Files */ = { - isa = PBXGroup; - children = ( - 8CAFFF01AF4E0AC88F4E736BDC29C459 /* UMSensorsInterface.xcconfig */, + 323DD5C7D0964EA39BE403A831E9C6A5 /* React-RCTBlob.xcconfig */, + D52F8088FD47E4E052367ED557DC9D38 /* React-RCTBlob-dummy.m */, + 06F110F71397F24159F56D7B2854524D /* React-RCTBlob-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; + path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; sourceTree = ""; }; - 31653DFE49C80F8047D1D6D9D78DB121 /* Services */ = { + 337B4A4D7EEE023C665C1FD1DF59D1E8 /* Support Files */ = { isa = PBXGroup; children = ( - 0FF3A426B2480328F013135198A59E96 /* UMReactFontManager.h */, - B031CE3E700D70F7BCA195DFB9127D53 /* UMReactFontManager.m */, - F5D05C2F0E0722A004161BEF93553C58 /* UMReactLogHandler.h */, - CD6358ECF478DF14FE6E68A4D9842235 /* UMReactLogHandler.m */, - 442036AA59EF836C1752B8F1C8F08671 /* UMReactNativeAdapter.h */, - D5DBFEDFA3C0C3C493B8260D15BB5DDA /* UMReactNativeAdapter.m */, - A75A85102C13352816AD523CACFA9AD7 /* UMReactNativeEventEmitter.h */, - A5950D78481A135EEE8D46816F77759F /* UMReactNativeEventEmitter.m */, + 883C9E38BB217029ADF8022B1D274DB6 /* RNFastImage.xcconfig */, + F965DCF885F1426E09025A2E6E691E96 /* RNFastImage-dummy.m */, + 8CD43246F366DCE35A65E6E4924E18A5 /* RNFastImage-prefix.pch */, ); - name = Services; - path = UMReactNativeAdapter/Services; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNFastImage"; sourceTree = ""; }; - 32401A809080CAEB4485BCFCCFC7793D /* RNImageCropPicker */ = { + 339EB9CB96F76A8830A47ABF43F5579A /* Surface */ = { isa = PBXGroup; children = ( - 683F7B0626624F23FAEF3328C288C85C /* Compression.h */, - 4BE12B775FA858722C656B6CB23E0FC8 /* Compression.m */, - D9A7A987F3D7883C69C41E59AC3A8FEC /* ImageCropPicker.h */, - E7FB5329CA2B0D95B2F1D40C347C62B9 /* ImageCropPicker.m */, - B9E8E55C5402DE1D13F2A2FA127DF2BB /* UIImage+Resize.h */, - BBEC178A5E6B61715E5A41638BED6D14 /* UIImage+Resize.m */, - A610BDED88406F58A9117867EE23DDE2 /* Pod */, - B89877AB28B060619B52AD99CBD5D1B6 /* Support Files */, + E85C0C94B7D5FB5DC0F407F2600152D3 /* RCTSurface.h */, + A0C6606D2DA7EEA34B069ADD6667E0B0 /* RCTSurface.mm */, + DF386E1B9ACF1CF737FA57899C6F62A4 /* RCTSurfaceDelegate.h */, + 86147824685623C46CAC743FC1BC6364 /* RCTSurfaceRootShadowView.h */, + 6A873229028D1DCC282AA0FA849579CA /* RCTSurfaceRootShadowView.m */, + 499C5CA01A8F491E9ED436E6171BB50D /* RCTSurfaceRootShadowViewDelegate.h */, + 6E9EC060AED3BF6D73D4CAE2EA0E4653 /* RCTSurfaceRootView.h */, + 196B36500F41B8DEAD7E76153FF0F832 /* RCTSurfaceRootView.mm */, + EFBAACF6D899685F64842CD8C4FBEC17 /* RCTSurfaceStage.h */, + 2493FEB4824E177D1417D8421C1A2F3E /* RCTSurfaceStage.m */, + 0A0D8670A8F4F0002D6099952104E081 /* RCTSurfaceView.h */, + 05C4A9697C1CDEC26FD3D27810AAB2E8 /* RCTSurfaceView.mm */, + 50EDF2247D0E2B94B1E4D798890BFC72 /* RCTSurfaceView+Internal.h */, + EB5360BD739E3E5103000078B801D570 /* SurfaceHostingView */, ); - name = RNImageCropPicker; - path = "../../node_modules/react-native-image-crop-picker"; + name = Surface; + path = Surface; sourceTree = ""; }; - 328EC4B4915ABE43B4CA7B250CB21E5B /* Pod */ = { + 340D605553F7B470F6B5FCF154F0F7B9 /* Pod */ = { isa = PBXGroup; children = ( - 58AB84DD227C477EB8A881EA6A119BB8 /* LICENSE */, - 070CD7C7E67F485A1785D19E0F616BE1 /* README.md */, - 0C35FD0C65C553D569CB7C0EE24B2B45 /* rn-extensions-share.podspec */, + 80D474772031EDA1D872FCD359AE130A /* EXConstants.podspec */, ); name = Pod; sourceTree = ""; }; - 33602C1065E3EBDD8C44C1043B4D9916 /* Pod */ = { - isa = PBXGroup; - children = ( - F9894CB816B2D54C8A350E5E6924AB4E /* Yoga.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 3463E49CD27EC74B3482A825CBB97CBA /* RNReanimated */ = { - isa = PBXGroup; - children = ( - 82014CC10F27ED3801D1DFB374CAD1C0 /* REAModule.h */, - F0CB2B0148E25F3CF9305D76ACCBE55F /* REAModule.m */, - 09EE1AA69C215D80608133BC27BBB5D4 /* REANodesManager.h */, - 1880D9CB0F7A540D0451EB2E4F0EF65F /* REANodesManager.m */, - 4EC7C2A64317E61CB6223C8313C9209B /* Nodes */, - CD1C7D2CD28DF0326838E9239EEB7292 /* Pod */, - A4EBE0F9BFF7EA5D678B59208357FC26 /* Support Files */, - 2BCB0AF5004913F8C9F0B9AA697F309D /* Transitioning */, - ); - name = RNReanimated; - path = "../../node_modules/react-native-reanimated"; - sourceTree = ""; - }; 347E620B0DF1C7D8ED2FB2063B6FF354 /* FirebaseCoreDiagnosticsInterop */ = { isa = PBXGroup; children = ( @@ -7789,76 +7632,46 @@ path = FirebaseCoreDiagnosticsInterop; sourceTree = ""; }; - 3496110C4782DAF621F126ACA6342676 /* Modules */ = { + 34B6096C687B7C8ACDA14C90FC7954E8 /* Profiler */ = { isa = PBXGroup; children = ( - EEF5E79E130ABC8A6FCE174D8710D6F0 /* RCTAccessibilityManager.h */, - 897C090F907DEBF41227E3CCEF14BC37 /* RCTAccessibilityManager.m */, - D8E41E332347521A9EFD65108E123861 /* RCTAlertManager.h */, - 8E5D5A56442BC1A2D76A733018CFDB67 /* RCTAlertManager.m */, - F0EB85E2CC7220BC9A402ED657430087 /* RCTAppState.h */, - ECD86AC6341CAC8C5E06112720AD6391 /* RCTAppState.m */, - D4B411DFA781143F4EFDA63B4BE25ED6 /* RCTAsyncLocalStorage.h */, - 9C4BB7264829288DBFB4A14AD8AC1991 /* RCTAsyncLocalStorage.m */, - 71C495265665A385D4EFE17A320EFB82 /* RCTClipboard.h */, - 3FF341EBB2130B6E8A91926D3CA35683 /* RCTClipboard.m */, - 6B2761FB0E93085DA33560A83C598CE8 /* RCTDeviceInfo.h */, - C16058E82410D17A43BC355CCA4ED3C6 /* RCTDeviceInfo.m */, - 42C974B2040AE33AA5A4C9842333E515 /* RCTDevSettings.h */, - A0462C15B6BC705D0E86F7957176B303 /* RCTDevSettings.mm */, - 0393521ADCCDC0312EFA14D90F70FD94 /* RCTEventEmitter.h */, - CB616159D52ED6A8BE29F63774540732 /* RCTEventEmitter.m */, - 3BBEC13B79F27D6ED869EBC9DE30FDFE /* RCTI18nManager.h */, - 9F4FC66ABF94C27CD1801D82912A0ECE /* RCTI18nManager.m */, - BFED9260DC0EB5D2C025BBDA287443AB /* RCTI18nUtil.h */, - 4ECADD2C62E5FB5CA1D6D6CB22DF27EA /* RCTI18nUtil.m */, - 53631A21AA7DE7C3CB9F063A6499C3F1 /* RCTKeyboardObserver.h */, - FE49025B5A39CAC4A13F919BABD3E20A /* RCTKeyboardObserver.m */, - A8F75DE0CDA238306BFC8DF0E2DC9F75 /* RCTLayoutAnimation.h */, - 3E35F3DADF37A2F465F6F78D52CC948F /* RCTLayoutAnimation.m */, - 38FA1894BB2223603F9F12CEBA9A0951 /* RCTLayoutAnimationGroup.h */, - B4D19DA2A1F53C7EF3F756A1A34DF4CC /* RCTLayoutAnimationGroup.m */, - 41BD29A4D64B15AA9C08CDAB6A72748F /* RCTRedBox.h */, - 9FB3F23BD02D6D11603407607DD3FBD6 /* RCTRedBox.m */, - 6DFB945AB1F5ACE153825C3C27E609B5 /* RCTRedBoxExtraDataViewController.h */, - CFEC11A91A614DDE0F8761B5EB73A90E /* RCTRedBoxExtraDataViewController.m */, - 4CE1695BC0770F905CDFD9EA38A4BFFB /* RCTSourceCode.h */, - 45C303BA7E70182BAB688513619BB69F /* RCTSourceCode.m */, - B608EFB5273C2182D5612A4706E53FB8 /* RCTStatusBarManager.h */, - 38303E74A6B7985BFEADECF8C67FFE45 /* RCTStatusBarManager.m */, - D644D4D368E497F4AD756C4766676B55 /* RCTSurfacePresenterStub.h */, - C4AAAAB99D75A904E920EA4479EA2B27 /* RCTSurfacePresenterStub.m */, - 474095ADE4BB1B597F9A4608E751BEBF /* RCTTiming.h */, - 95E2CA4F1266539E8D8FC4772351858D /* RCTTiming.m */, - 788CF0FB634A486F9472BB7ED573A382 /* RCTUIManager.h */, - F9419E43FA2DF31717C51E3A00273261 /* RCTUIManager.m */, - 6998C004A025E96CBF652588574B1BFB /* RCTUIManagerObserverCoordinator.h */, - 524D7B4F89D6A468AB8F84089F026E1F /* RCTUIManagerObserverCoordinator.mm */, - 1B49501DF7904F9A8CD6E55BCD2EC1FD /* RCTUIManagerUtils.h */, - 0DED51C857EF202EFAD1AD478D2DD146 /* RCTUIManagerUtils.m */, + C6BBF10D0568EACF7D5A2AAB7D8F18C3 /* RCTFPSGraph.h */, + 8D0AC2D50D7D2C791B08AD60C6B17CA5 /* RCTFPSGraph.m */, + 148980C89EFF8F652687014331586428 /* RCTMacros.h */, + 5FBF7783362F2FAABF6B7F8AD2FAFD62 /* RCTPerfMonitor.m */, + 49088C0902F6B970C7555A3B4255F85C /* RCTProfile.h */, + EF19086FC19FF73008D2D0747261BD3D /* RCTProfile.m */, + 88D32AEAF24B72B853AD03FC0774B285 /* RCTProfileTrampoline-arm.S */, + A87EA7E9759D4E10D3F233F2428356EF /* RCTProfileTrampoline-arm64.S */, + BD8F473C3E4A3FE6CA53CE1F5D981D40 /* RCTProfileTrampoline-i386.S */, + CD662CEDBFD96BFA0736A129B582B0AB /* RCTProfileTrampoline-x86_64.S */, ); - name = Modules; - path = React/Modules; + name = Profiler; + path = React/Profiler; sourceTree = ""; }; - 359923AC9D6B4CDA11D905F74C3A1AC7 /* react-native-keyboard-input */ = { + 35013D174F5D04E5571D2D9AB5E3E114 /* Support Files */ = { isa = PBXGroup; children = ( - 44F9BBC70C514AE861A2BB56C92C8751 /* LNInterpolation */, - 52F299FD088AFBAC5955F0FFEABB7D9A /* Pod */, - 3B60EA6D91747CEE20035355EDD8714E /* RCTCustomInputController */, - AE4AED288FC4B72E51A2037859139164 /* Support Files */, + 9477D376E691798B42431F5D088414E8 /* React-RCTVibration.xcconfig */, + F0F2C3DDC28B8D78EF6FB0C17C4AC0B6 /* React-RCTVibration-dummy.m */, + B5A9173B90D3C3ACB383BCCCE244771D /* React-RCTVibration-prefix.pch */, ); - name = "react-native-keyboard-input"; - path = "../../node_modules/react-native-keyboard-input"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; sourceTree = ""; }; - 35F682F9741C098594B0452A4BF6CF13 /* Pod */ = { + 35A90260E0A3601543B2CCD85B5B6708 /* RCTNetworkHeaders */ = { isa = PBXGroup; children = ( - 588F369317ECF1964C0CFCE956709B2C /* React-RCTBlob.podspec */, + 3162609F6B6850B1DD8A9479CC18DD16 /* RCTDataRequestHandler.h */, + B518BC9BD482C1913CE4D88CDFD9421C /* RCTFileRequestHandler.h */, + FBD79F3E8B7334FE5D9E4C46AAC88A28 /* RCTHTTPRequestHandler.h */, + A778999F163DF9687DA14B63BB982F2E /* RCTNetInfo.h */, + 6156004C6392EA98C2A26FF9DA3CD6C5 /* RCTNetworking.h */, + 341CFFF0DD947EE9C0719DB50875B42B /* RCTNetworkTask.h */, ); - name = Pod; + name = RCTNetworkHeaders; sourceTree = ""; }; 35FE887956225FE6B7D8E4BE53F0315A /* Resources */ = { @@ -7869,88 +7682,54 @@ name = Resources; sourceTree = ""; }; - 3612C3A56EC5994979DE22B51A34AE9E /* react-native-jitsi-meet */ = { + 38E3316D3BAF16CA2652F99C7FD89386 /* Multiline */ = { isa = PBXGroup; children = ( - 96AAFEA40C907D7186049F7947993ECF /* RNJitsiMeetView.h */, - 03A852B75ED956E93AFBC2EAEA4BE635 /* RNJitsiMeetView.m */, - BC3A41AAA162841935D4DA74981AE8C2 /* RNJitsiMeetViewManager.h */, - 32D3A5FD177AE01A2EABD8740246262B /* RNJitsiMeetViewManager.m */, - 284C546F0E37E3E3DAA1FB5A460C47A2 /* Pod */, - 577A5E9BA11E2B4C0D0D65EB3EA486F6 /* Support Files */, + B06EA9ED33D7A432E1ACE38EA9409FF5 /* RCTMultilineTextInputView.m */, + 986B2273FF3D42F53FA6563FB449EDE2 /* RCTMultilineTextInputViewManager.m */, + FB0FA281B0BF713CBC57241C1246A488 /* RCTUITextView.m */, ); - name = "react-native-jitsi-meet"; - path = "../../node_modules/react-native-jitsi-meet"; + name = Multiline; + path = Multiline; sourceTree = ""; }; - 369AB92D91057517B690F229EF10980F /* Support Files */ = { + 3A1AAC6C2DC6D0EC3CEBF8FB436B973D /* Pod */ = { isa = PBXGroup; children = ( - 8E3CE7326FFD21C3F5435AFE0A1ACC0F /* EXPermissions.xcconfig */, - 360844A61A12EF855608DEFB9E3D70FD /* EXPermissions-dummy.m */, - 6C319FD812618932C7E0D99F364D9D14 /* EXPermissions-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXPermissions"; - sourceTree = ""; - }; - 3A17AE2F8D2F02702CEB54A5D9D2F3F7 /* BaseText */ = { - isa = PBXGroup; - children = ( - 32C12603AD73CFBA479EBE94C1CDFFC0 /* RCTBaseTextShadowView.m */, - 8775FB3EC2DF584EA64AF8186EA7D218 /* RCTBaseTextViewManager.m */, - ); - name = BaseText; - path = BaseText; - sourceTree = ""; - }; - 3B60EA6D91747CEE20035355EDD8714E /* RCTCustomInputController */ = { - isa = PBXGroup; - children = ( - BFF97AB6432CF984C8F68AAEC8F70608 /* RCTCustomInputController.h */, - 2AEB3E2C0B815875A8A54F9A4BCB269F /* RCTCustomInputController.m */, - 296C7741FFDF6C5CFB206BB5119D280E /* RCTCustomKeyboardViewController.h */, - A1CCE2109756CD298A0C4476235693A6 /* RCTCustomKeyboardViewController.m */, - ); - name = RCTCustomInputController; - path = lib/ios/RCTCustomInputController; - sourceTree = ""; - }; - 3C3313A58B14D563369D4F5D2FB4B206 /* CxxBridge */ = { - isa = PBXGroup; - children = ( - D7E3497D52E7538E1EB549888A128920 /* JSCExecutorFactory.h */, - 6C6BF8DEAE5F41DF41EDFDEEBB7C56C2 /* JSCExecutorFactory.mm */, - 901456400438C05BA7A0A511AB22E059 /* NSDataBigString.h */, - D73173F5C68231D473A1D311BD7AD5D0 /* NSDataBigString.mm */, - A913C19CF60D9CF747C88410F3753B03 /* RCTCxxBridge.mm */, - FB0C5088029F6DF10F6F169BC3F3C2E5 /* RCTCxxBridgeDelegate.h */, - 3BD7C0EC7ED516058E0818918C6E44CC /* RCTMessageThread.h */, - CE53AB3C1008082211D1514B0956C381 /* RCTMessageThread.mm */, - 07E7CF4FE7B30247F96279D21D93C880 /* RCTObjcExecutor.h */, - 7D01979664B40391BB52275159EBAB7E /* RCTObjcExecutor.mm */, - ); - name = CxxBridge; - path = React/CxxBridge; - sourceTree = ""; - }; - 3CBB56D9152F609241860C95C584EC55 /* Pod */ = { - isa = PBXGroup; - children = ( - 74ECC7932DE9C106D17C9EFFD7124001 /* RCTRequired.podspec */, + 77563CBBC295652F09A0B06AA30606C5 /* React-jsiexecutor.podspec */, ); name = Pod; sourceTree = ""; }; - 3FB7D03DBBE15999E974941956D8BA50 /* Support Files */ = { + 3C054CB30B4FAEE030C670A926919A59 /* RCTAnimationHeaders */ = { isa = PBXGroup; children = ( - CDC60B19EC6EC55E064F928C2AD605E5 /* React-RCTActionSheet.xcconfig */, - 4A55D8D8D4B7FF06C22B7253007ACCD8 /* React-RCTActionSheet-dummy.m */, - B2E03329E07FE66EE35EDB38E2B6C066 /* React-RCTActionSheet-prefix.pch */, + C2B92333BB5845F760C448E223DD5AA8 /* RCTAnimationUtils.h */, + 0ED6BF721FE2D996FA29368D4CC4C8D9 /* RCTNativeAnimatedModule.h */, + CA3904BCD27523736FE542F13F3E9869 /* RCTNativeAnimatedNodesManager.h */, + 47A6A66137C515CA13A17E3A22DCD1E7 /* Drivers */, + 98000F8EE66DE05DE11247FDF405A305 /* Nodes */, + ); + name = RCTAnimationHeaders; + sourceTree = ""; + }; + 3CE3E367C4EAD6B0343D4D3662EEE1E0 /* KSCrash */ = { + isa = PBXGroup; + children = ( + E9A4ED271E8F96640FF20315F2DD507D /* Recording */, + 08B38747045F15BDC86D9BE861C7683F /* Reporting */, + ); + name = KSCrash; + path = KSCrash; + sourceTree = ""; + }; + 3E0D626DC6D9FCD2CB475A8E7918C157 /* Support Files */ = { + isa = PBXGroup; + children = ( + 566AD3507F551CF6CC8AE84B4EBFD196 /* UMFileSystemInterface.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; + path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; sourceTree = ""; }; 3FBCB639711F335106BD59282389EEA9 /* QBImagePickerController */ = { @@ -7981,112 +7760,6 @@ path = QBImagePickerController; sourceTree = ""; }; - 4044A4FED63DA6446C1212F476274CE8 /* React-RCTImage */ = { - isa = PBXGroup; - children = ( - 75ADFC2BC5A34B409A399640907E2229 /* RCTAnimatedImage.m */, - 5F5CB905660A84A9EDD11E2300CB1E40 /* RCTGIFImageDecoder.m */, - D8E94CEB3923CB382D202DABF854A44C /* RCTImageBlurUtils.m */, - A671A890EF7D563E9B424DE0D4ABEB1F /* RCTImageCache.m */, - C56A6CFD221C46D53C79646F05CD072B /* RCTImageShadowView.m */, - 4C4D965126B9D67D008EBA4BA083FDF3 /* RCTImageUtils.m */, - 414172DE1E7F113E65EBDE98BE04A466 /* RCTImageView.m */, - 59211F6BDE83CD47BDC7A101632B218E /* RCTImageViewManager.m */, - D2FE14F9627496A030104ADCC9D2A5B1 /* RCTLocalAssetImageLoader.m */, - 709637C0A06FBBA95BC900A5496139BE /* RCTResizeMode.m */, - B075B0791A439C952ADEB40E7D32A345 /* RCTUIImageViewAnimated.m */, - 43C9B05406F4FBF3708CEA54E43FF534 /* Pod */, - 672A329569D3733046D6E08C1C63120D /* Support Files */, - ); - name = "React-RCTImage"; - path = "../../node_modules/react-native/Libraries/Image"; - sourceTree = ""; - }; - 4061F6CD8ACDAAAC9A29B814A7B2ACD3 /* RNFastImage */ = { - isa = PBXGroup; - children = ( - 5AA1B288D30B68B1C154F01667BDFECE /* FFFastImageSource.h */, - 0C43B38F6CBCDC1EA3A4F892A80B0053 /* FFFastImageSource.m */, - CFF3B04503AFB5C9CBA1D54B1A9FB737 /* FFFastImageView.h */, - 39166A3ACDF4227152116AD503BF645B /* FFFastImageView.m */, - 178F700E78D034BBB707481B4F886DFA /* FFFastImageViewManager.h */, - EBC637EE3FDD33592FB4C7CB0EC80A47 /* FFFastImageViewManager.m */, - 13FDF849FA34B754C0BA8ABB5E85F6ED /* RCTConvert+FFFastImage.h */, - 6EEFE603F9091830102EAD978B0A9EDE /* RCTConvert+FFFastImage.m */, - E609F63ED4963446072E957B0FB8E1FE /* Pod */, - B491D4C0BD2B739B550CDB77CEC992C6 /* Support Files */, - ); - name = RNFastImage; - path = "../../node_modules/react-native-fast-image"; - sourceTree = ""; - }; - 4068B6782C5B0FBFF8025BB76BF8B5A2 /* Pod */ = { - isa = PBXGroup; - children = ( - F28884A251C58244D531D3D99121F915 /* EXConstants.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 40DDD70006B1615B14D292EA17E38BBF /* Source */ = { - isa = PBXGroup; - children = ( - BF0B8E81463B3A3B98C032DC2E69420A /* BSG_KSCrashReportWriter.h */, - 30A630D95DA548AB8940009405D9726B /* BSGConnectivity.h */, - FB1241B146F3110880A9F076234D836C /* BSGConnectivity.m */, - EB5FAD175A817898D734D0C0922E2D1E /* BSGOutOfMemoryWatchdog.h */, - C73BCC4D70C58C75B36F4C6446BA10A3 /* BSGOutOfMemoryWatchdog.m */, - 2A2FF97164F5996CF244965C8AEA2BFC /* BSGSerialization.h */, - AD3B41E0B2649E3F42467961621D0F96 /* BSGSerialization.m */, - 32C40A6A5D1837835D6B90DC571D15A0 /* Bugsnag.h */, - 50EB0A752B427486F24A0491E810EE59 /* Bugsnag.m */, - EBDB25D003B75D0DC0446CB4F81F1D98 /* BugsnagApiClient.h */, - 10D00697F79A0E2D3291732024F91CE6 /* BugsnagApiClient.m */, - 472B6517DC791653B82EA7988B300BBA /* BugsnagBreadcrumb.h */, - EACA7E6E24B3033A59D542F7EB8FDC62 /* BugsnagBreadcrumb.m */, - 43FE608151DDA2E629BA5C12D0DBC0D4 /* BugsnagCollections.h */, - 018756ECCADE640B4D5FAE732E732ECF /* BugsnagCollections.m */, - 5E7ED6B57037EB52B49820D4A514E644 /* BugsnagConfiguration.h */, - 20DEFB753ADDCD70AB2F9C5EA153424D /* BugsnagConfiguration.m */, - 7EC8FF78AEEA1889F14389379A988626 /* BugsnagCrashReport.h */, - F07227FA31D8CE587E6921D10F01107E /* BugsnagCrashReport.m */, - 7B057F5A8759F7DEDC2CCEFE9CAB5A01 /* BugsnagCrashSentry.h */, - EA72A3724480391C51D0E847207DD53E /* BugsnagCrashSentry.m */, - D2753FB4B7CFA9E756A41628B99BBA9C /* BugsnagErrorReportApiClient.h */, - 00C4153615A557D8864D07EF594B70EF /* BugsnagErrorReportApiClient.m */, - 4B6B2C02BEC0919D088E3152A8B5A160 /* BugsnagFileStore.h */, - 1C3F24269B77A0E8A47C499F3FD1763B /* BugsnagFileStore.m */, - D76047925FF4F0719ADB2EBBE83482CA /* BugsnagHandledState.h */, - AB3A76E3BD356B755BE10C4F27A944F1 /* BugsnagHandledState.m */, - A4577D3139604BC45690324C3C8E79E6 /* BugsnagKeys.h */, - 1D3C624B0D9F58207A0540006A13C458 /* BugsnagKSCrashSysInfoParser.h */, - DB6771F44EED20E2F205901766E3B2B4 /* BugsnagKSCrashSysInfoParser.m */, - 52D049E2B11A707CB567C478AF370F11 /* BugsnagLogger.h */, - F6F7137E76041A83D6CF7A92DE39494B /* BugsnagMetaData.h */, - 814D86E28D60E9243E49771E1B17000D /* BugsnagMetaData.m */, - 1BBAA9DB7C7A19C747BF204E1AAE8DEB /* BugsnagNotifier.h */, - 744A8E9E8392FEC342780386C7F654ED /* BugsnagNotifier.m */, - 7FE0297B571B6592112EC1A8C97A30E0 /* BugsnagSession.h */, - 8FDFCD8BE393E9584DF412AF2DF73EE6 /* BugsnagSession.m */, - 8669FB1052435F4308947465F5A45369 /* BugsnagSessionFileStore.h */, - 7E40BD796D6425D1338F0CF354097344 /* BugsnagSessionFileStore.m */, - 2E203022524F65016EBA5089F3467300 /* BugsnagSessionTracker.h */, - B1D8132BC5A265598A040A7D9AA383BC /* BugsnagSessionTracker.m */, - 155D106665752614D277BBDC57B5F592 /* BugsnagSessionTrackingApiClient.h */, - 7D55A5C0BD6C285941B1635A7BBEF6C6 /* BugsnagSessionTrackingApiClient.m */, - C4B1A1B5BDFA05E2CEE27999A2C8EE27 /* BugsnagSessionTrackingPayload.h */, - A99EEF13B1A98819112C6D773BE85105 /* BugsnagSessionTrackingPayload.m */, - C809FF26F15281FB86EB559F471601F9 /* BugsnagSink.h */, - 857A18203467E0E53B167530BEB153F4 /* BugsnagSink.m */, - A2145EC1475F7A3766093EAA79881B40 /* BugsnagUser.h */, - 129134F86E8966ADA3471E09FB592D00 /* BugsnagUser.m */, - 987A01F7D1CB6D6C6357094D937438FA /* Private.h */, - 4D267B4850BBC0AF4A123864153D6055 /* KSCrash */, - ); - name = Source; - path = Source; - sourceTree = ""; - }; 4149A060ABA622333B58CFC72B8E8253 /* Resources */ = { isa = PBXGroup; children = ( @@ -8100,30 +7773,64 @@ name = Resources; sourceTree = ""; }; - 4291452483F87479D788E2FAF1CAF9A8 /* Pod */ = { + 421441F53CABC916EB976DA993030A58 /* Support Files */ = { isa = PBXGroup; children = ( - FA9DB03A0E95934D0D1828D35620BB76 /* UMFileSystemInterface.podspec */, + DF7D9692AB0CF9237BA7B4C9E0ED16D1 /* UMFaceDetectorInterface.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; sourceTree = ""; }; - 43A8DEE029954E89A5796F7B2E60607C /* Pod */ = { + 42E621BBE5564E7E803726656856E2ED /* UMModuleRegistryAdapter */ = { isa = PBXGroup; children = ( - FB62EBAAA5FA4164968F9935D7B3A56E /* LICENSE */, - A487618198501583855DB337FF43EEAD /* react-native-safe-area-context.podspec */, - 225D7F1E2FE322851F3388AEC03EC16B /* README.md */, + 04A453ADA31088DEF5A67519CD4860BF /* UMModuleRegistryAdapter.h */, + 63E21425C37E960C1E29E2D3EF3300F4 /* UMModuleRegistryAdapter.m */, + 580BC6FD478957654C4352DA4270E025 /* UMViewManagerAdapterClassesRegistry.h */, + 39D0F9ED2E4BC0E3916B780CA5C9D622 /* UMViewManagerAdapterClassesRegistry.m */, ); - name = Pod; + name = UMModuleRegistryAdapter; + path = UMReactNativeAdapter/UMModuleRegistryAdapter; sourceTree = ""; }; - 43C9B05406F4FBF3708CEA54E43FF534 /* Pod */ = { + 43805B9D4BDE4462EC79BA9E0725D255 /* Support Files */ = { isa = PBXGroup; children = ( - 0E0C1D54678946A9B5E6CFB6B4E7292E /* React-RCTImage.podspec */, + A55E7EC91AD0B1AFCC10A42D8D106577 /* UMCore.xcconfig */, + 81E495DC27F8820E0F7C1E39F2D71739 /* UMCore-dummy.m */, + 3F3C7244EB44D0B5F967C8330B9AD181 /* UMCore-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMCore"; + sourceTree = ""; + }; + 43C44707AD78010D557DF2127F556029 /* RNReanimated */ = { + isa = PBXGroup; + children = ( + BDFB51ADA6468FC5D7E77E0A83765BBE /* REAModule.h */, + 3A5B59423CA8D381C4BBD432AE6AD75F /* REAModule.m */, + ADEA8E9FE8D76BCE22028D8E4F20EA29 /* REANodesManager.h */, + 037A48AE57AA6B3C75EFEAD196441BC8 /* REANodesManager.m */, + F65F1FCDCBCC5D3AE5AB899CB62D1BA3 /* Nodes */, + E8598DD18E659916D2E9CBE2075762DB /* Pod */, + EA1D6739F5B1DF78A7FC98EE6054749E /* Support Files */, + F06D764E0284EB598C20B1CF6AA72316 /* Transitioning */, + ); + name = RNReanimated; + path = "../../node_modules/react-native-reanimated"; + sourceTree = ""; + }; + 43CF31DF4E39BA5BF5C2A58428EB2F74 /* react-native-document-picker */ = { + isa = PBXGroup; + children = ( + 6759327F1828D6B0EB2AEB250153BEBB /* RNDocumentPicker.h */, + 56C81757F4727E41BA011562A6C6E56A /* RNDocumentPicker.m */, + A0D9A747D9376DA2DF4F94A93C806C7E /* Pod */, + 2011012DA4D4BA42994E704E278AB9EF /* Support Files */, + ); + name = "react-native-document-picker"; + path = "../../node_modules/react-native-document-picker"; sourceTree = ""; }; 44CA0DFFA3EE5E6BAF138E4A1675E9DB /* Support Files */ = { @@ -8135,61 +7842,104 @@ path = "../Target Support Files/FirebaseCoreDiagnosticsInterop"; sourceTree = ""; }; - 44F9BBC70C514AE861A2BB56C92C8751 /* LNInterpolation */ = { + 475A3A43E890DBD5493F0236FA4CE5BA /* Products */ = { isa = PBXGroup; children = ( - 1863D85A4D4546C80EE02DD43BC4A8D0 /* Color+Interpolation.h */, - 2D04A56CA4CF3700F6D6F17A66F77CCB /* Color+Interpolation.m */, - DEB90A98E2586521660B8F518126D411 /* LNAnimator.h */, - BED3B6FED796457A557A1E562F9FDFF8 /* LNAnimator.m */, - 6BE1942CF4FEF0EEA46ABD2079E5F6FA /* LNInterpolable.h */, - D29FAC4AB3DAA712FC48194E75DE9B86 /* LNInterpolable.m */, - B86E2F27CA7CF17251DE1F6DF270A47C /* LNInterpolation.h */, - 9904D01AF3E57EBC4AA564DE0D14DEF6 /* NSValue+Interpolation.h */, + 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 */, ); - name = LNInterpolation; - path = lib/ios/LNInterpolation; + name = Products; sourceTree = ""; }; - 4529CB872AD4ECC308D3A569F904D7AE /* Pod */ = { + 47A4CCE46A5200755FEFE5D346367F6D /* auth */ = { isa = PBXGroup; children = ( - 551161D0CA7AB2BDF2AE469AFB69F33E /* EXWebBrowser.podspec */, + E6E88CCF48AB30F6305AB96E4C0CB8C7 /* RNFirebaseAuth.h */, + 8F11F570308CDC853BABBEC38D47572C /* RNFirebaseAuth.m */, ); - name = Pod; + name = auth; + path = RNFirebase/auth; sourceTree = ""; }; - 4614F955C9A29E47F0AF426F2CA1E57E /* react-native-safe-area-context */ = { + 47A6A66137C515CA13A17E3A22DCD1E7 /* Drivers */ = { isa = PBXGroup; children = ( - 7F42C7C230CB17846A7CB1AD43CC67A2 /* RNCSafeAreaView.h */, - 6588502A14DCCDF5A37D2A2DDFA3AE4E /* RNCSafeAreaView.m */, - 26BF9F2222F478ECF2E8D83F8280F2B7 /* RNCSafeAreaViewManager.h */, - DBEC11F5DB238129703CC03ABDDB43BF /* RNCSafeAreaViewManager.m */, - 43A8DEE029954E89A5796F7B2E60607C /* Pod */, - B83320CE283D4CBDE040CDFFD9C72B1E /* Support Files */, + FC1FC0DA8CEE8B98F69F2AC74A9D663C /* RCTAnimationDriver.h */, + 8ABF9E15E87F25B75581ED9825AB0A90 /* RCTDecayAnimation.h */, + 9A31001672A2F92EBFE5A9DEB5FC1A7C /* RCTEventAnimation.h */, + 9312678C01E526ED0B774C6976B0256D /* RCTFrameAnimation.h */, + A5306B67950A6E590FF79ACF340E2A72 /* RCTSpringAnimation.h */, ); - name = "react-native-safe-area-context"; - path = "../../node_modules/react-native-safe-area-context"; - sourceTree = ""; - }; - 476F04DF73B5BF0EA0B7E3783A4EC21F /* Pod */ = { - isa = PBXGroup; - children = ( - 1CF29D424EB5C269C8B2EDE4AD4DDF57 /* LICENSE */, - 2B9CE216B0EE3BD236D45E158841D045 /* README.md */, - F3BDBEE68D24D640690AC5B15713CBC5 /* RNGestureHandler.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 47B3441F41B74C5C1C9F929801B7E6AF /* RCTBlobHeaders */ = { - isa = PBXGroup; - children = ( - 6F2500AEED7F5B9F3DE2400DC92BF592 /* RCTBlobManager.h */, - 6E1FC64DBD40A75618ECCEF5B4A53B54 /* RCTFileReaderModule.h */, - ); - name = RCTBlobHeaders; + name = Drivers; + path = Libraries/NativeAnimation/Drivers; sourceTree = ""; }; 47DF58E02830DB7010781AF7438EFDDA /* UserDefaults */ = { @@ -8201,25 +7951,27 @@ name = UserDefaults; sourceTree = ""; }; - 48287CAC1E35D183A5505395F5F41D2F /* RawText */ = { + 493C5A1ECF31A191771A52D652820874 /* rn-extensions-share */ = { isa = PBXGroup; children = ( - 91FD49BDDDF74385D62455B48BCD74F5 /* RCTRawTextShadowView.h */, - 12A3C9211FEA4385AC3F91C59C4C9C7C /* RCTRawTextViewManager.h */, + DCBE288F57E819BDF9FC650A6C8F0D36 /* ReactNativeShareExtension.h */, + C3C11881E2F336517CFF4E6B6DDE7FCB /* ReactNativeShareExtension.m */, + 73027A6C9F29B1EFC1B482DBAEFF5FBE /* Pod */, + 8BB57AED62BE389D58DD6A703AC58482 /* Support Files */, ); - name = RawText; - path = Libraries/Text/RawText; + name = "rn-extensions-share"; + path = "../../node_modules/rn-extensions-share"; sourceTree = ""; }; - 4A09E0B3A317DD526F840C57735664D8 /* Support Files */ = { + 4A2FAAA64229A258E22AEF293A6017F9 /* internal */ = { isa = PBXGroup; children = ( - 11EBDE56B15977B30148A1D56A61E072 /* ReactCommon.xcconfig */, - 5386540EC5258D7E7F849C9E8E1DAAFC /* ReactCommon-dummy.m */, - 223F1CAEA7730CE785A1B025E94F379F /* ReactCommon-prefix.pch */, + 1EA1E4929834E80F9031A0E802E1E931 /* experiments.cpp */, + 159C23316B64E79F2A8F063074242D3E /* experiments.h */, + 320B535A141FFFD6BEF39B9029F0ACE4 /* experiments-inl.h */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactCommon"; + name = internal; + path = yoga/internal; sourceTree = ""; }; 4A854B05DD0C86B61CFF86670D2231C6 /* Frameworks */ = { @@ -8230,158 +7982,88 @@ name = Frameworks; sourceTree = ""; }; - 4AB790F6782EFAA8E94A2FE4216E36A0 /* Support Files */ = { + 4B4DB59D3FE4524F670104E8157571B1 /* platform */ = { isa = PBXGroup; children = ( - 45E750B8327A9113F0AA0E653A2774F9 /* React-RCTNetwork.xcconfig */, - 7E5C70BDCB86B9F70EB53A0C64E1FA59 /* React-RCTNetwork-dummy.m */, - E6AD8F15EC6FADA0E51E861913D963E3 /* React-RCTNetwork-prefix.pch */, + B5E95B58FDDA627BF052CED8E412C44B /* ios */, + ); + name = platform; + path = turbomodule/core/platform; + sourceTree = ""; + }; + 4BE756250D1ECF6C253065F5B2FA9D79 /* react-native-keyboard-tracking-view */ = { + isa = PBXGroup; + children = ( + 5566964AFCE43B80771F95B85FA4C68C /* KeyboardTrackingViewManager.h */, + 538E1380F02205A6F58F796C494CF55D /* KeyboardTrackingViewManager.m */, + 6207FF278A70770958D7291B4E8519D2 /* ObservingInputAccessoryView.h */, + 005BC469630F6F7D66610C867DC586BC /* ObservingInputAccessoryView.m */, + 1617C6129814BD692F81CD11B543090D /* UIResponder+FirstResponder.h */, + 099698855A327030936F87CEC20A807E /* UIResponder+FirstResponder.m */, + 6327AD3730FD608D804FC82DF852170F /* Pod */, + A74F4CEEC4E7ACDBDC2A9DA4F134EFAE /* Support Files */, + ); + name = "react-native-keyboard-tracking-view"; + path = "../../node_modules/react-native-keyboard-tracking-view"; + sourceTree = ""; + }; + 4C0B41991CC7C966CB3A30EDCEEE585F /* RNDeviceInfo */ = { + isa = PBXGroup; + children = ( + 10D27A7F00D229731BC7F62D6A8F461B /* DeviceUID.h */, + A5328265B65371E9D6B710194CAD7C06 /* DeviceUID.m */, + 670899587CDF9673DCCDFAD2A1E5407A /* RNDeviceInfo.h */, + BA389489AD3F66E8E1CB1FE46F32744C /* RNDeviceInfo.m */, + 8008AAA7B210ECBDEC871291CF3DE4EA /* Pod */, + B491C9AE2312CAEA9C8BDCD4F1B79055 /* Support Files */, + ); + name = RNDeviceInfo; + path = "../../node_modules/react-native-device-info"; + sourceTree = ""; + }; + 4C173838B3C9F6CD300F88E5F6A824A8 /* UMModuleRegistryProvider */ = { + isa = PBXGroup; + children = ( + 9D7B7CB894CCA3FD5F353EB7F1B02EAD /* UMModuleRegistryProvider.h */, + 74ABABBA392724CE895FBCE6CBFC9966 /* UMModuleRegistryProvider.m */, + ); + name = UMModuleRegistryProvider; + path = UMCore/UMModuleRegistryProvider; + sourceTree = ""; + }; + 4C2B59A6447845E8C7EC645FE695DA33 /* firestore */ = { + isa = PBXGroup; + children = ( + 27E75C50F92E130F88D4B6358253C445 /* RNFirebaseFirestore.h */, + EB6BD9F82161C104132984C6A19CCE8E /* RNFirebaseFirestore.m */, + 3D2A8A4DB39D76CF60BB6EC3314F228C /* RNFirebaseFirestoreCollectionReference.h */, + A302DCC4C64D912E6521BDAC89150910 /* RNFirebaseFirestoreCollectionReference.m */, + 7BA993BA85D5B32B217BF12413874098 /* RNFirebaseFirestoreDocumentReference.h */, + E792A56960DE7B083053882538A55F5F /* RNFirebaseFirestoreDocumentReference.m */, + ); + name = firestore; + path = RNFirebase/firestore; + sourceTree = ""; + }; + 4CA03AAD8F7B30E5946E59E15D11AFD1 /* Support Files */ = { + isa = PBXGroup; + children = ( + 2177633D2BA7B24159DF0F8D9895045C /* react-native-webview.xcconfig */, + 2B340C1A9DA24640121D255A2C50B247 /* react-native-webview-dummy.m */, + 4108B6722686B91AF785A162ED70BE71 /* react-native-webview-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; + path = "../../ios/Pods/Target Support Files/react-native-webview"; sourceTree = ""; }; - 4AF9DF48857B3D83DE76447E5851FD51 /* Support Files */ = { + 4FABEC75634AA0C38933844043EBB565 /* links */ = { isa = PBXGroup; children = ( - 9ACDE621D52DEC10F88955005141CAD0 /* RNScreens.xcconfig */, - 1AEC7BEF09E4F9775F9F6D4ECA2ECD20 /* RNScreens-dummy.m */, - B956EAEAF96020807601F79575F4301E /* RNScreens-prefix.pch */, + 007D8E799734FFD16BA16CC0493D23BB /* RNFirebaseLinks.h */, + 13F848E82CBE206FF89F5A4D545E95DB /* RNFirebaseLinks.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNScreens"; - sourceTree = ""; - }; - 4BD4900B27B4CEB63F48570EA4B89193 /* turbomodule */ = { - isa = PBXGroup; - children = ( - D8C2BAB00F3C3A045DEB6DD4FEA35D5E /* core */, - ); - name = turbomodule; - sourceTree = ""; - }; - 4D267B4850BBC0AF4A123864153D6055 /* KSCrash */ = { - isa = PBXGroup; - children = ( - C1C268E557C64146E3A9D621CD05F356 /* Source */, - ); - name = KSCrash; - path = KSCrash; - sourceTree = ""; - }; - 4E140C82CF3EDD9C4EA720B7DC4BD2AC /* Pod */ = { - isa = PBXGroup; - children = ( - 48727D1578959491ADDFE69C45A48ADA /* UMCameraInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 4E28CF5CF43DB1CC65E3CF71FF06C9EC /* Support Files */ = { - isa = PBXGroup; - children = ( - E21FCC3B73E11CFE28CD1430766BFE6B /* react-native-notifications.xcconfig */, - 8E29CF50A9C67BCA3AB95BBF936D6020 /* react-native-notifications-dummy.m */, - 97C894F63FAF425D5FFBC892F57E9FF2 /* react-native-notifications-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-notifications"; - sourceTree = ""; - }; - 4E6181F2138CDF609DFCCA308D1CF7FD /* auth */ = { - isa = PBXGroup; - children = ( - 4C4DE418E6C4007E2836C1CBA0AB7829 /* RNFirebaseAuth.h */, - 506859CED17C25CD4D15CC68573AC710 /* RNFirebaseAuth.m */, - ); - name = auth; - path = RNFirebase/auth; - sourceTree = ""; - }; - 4EB22A16E511EEF4451E26A0666CC411 /* Support Files */ = { - isa = PBXGroup; - children = ( - 8A7CE4F72855B7F5E9577317F3DF8F11 /* UMPermissionsInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; - sourceTree = ""; - }; - 4EC28C179DF353B2A04D33217DA71FE0 /* Pod */ = { - isa = PBXGroup; - children = ( - 1414981020730D83047993FE695C4175 /* EXPermissions.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 4EC7C2A64317E61CB6223C8313C9209B /* Nodes */ = { - isa = PBXGroup; - children = ( - 6A5C4B567C8EA3495097F9A24613F6FF /* REAAlwaysNode.h */, - BB63E0BB432F268B4E29A03A7876011E /* REAAlwaysNode.m */, - 97FD81BBA20148E68B95E54C61AD992F /* REABezierNode.h */, - BDBF74E8AE5B9F337FB2345862BC53EF /* REABezierNode.m */, - 730716A2707FA86CBF72EB1D19C6920E /* REABlockNode.h */, - 1A416DA5D00BB3A84A22ACC7C7B8D0BF /* REABlockNode.m */, - 7536D6C08D2EB2368F239F339E094B48 /* REACallFuncNode.h */, - 8B6299858AB4A4595747DF5F6A11601B /* REACallFuncNode.m */, - 019752590BA28354EEDFA435DB050EAC /* REAClockNodes.h */, - 5EB4AA2B872DEE23920B4D97A73528B3 /* REAClockNodes.m */, - C954E8150DF46DCEA657CC0B3718B112 /* REAConcatNode.h */, - B66A14EEA57D04353FC41FCCE22BDABF /* REAConcatNode.m */, - E33732DA4B76A1F597BB43892E075E26 /* REACondNode.h */, - 8F9DB61AEDE12B4187272F0B24E5B506 /* REACondNode.m */, - 44987E59C8ACE5202ED4B50FA7F04112 /* READebugNode.h */, - C825CB7BFB6E74922A33A3A1B0652F6B /* READebugNode.m */, - C5E1FE199F096E6F7DC9E1FDDB0C346D /* REAEventNode.h */, - 7629B9BD7F572EAB472B8A8FE27CDAEB /* REAEventNode.m */, - 9DD1443F82FFBF7298B7D3C8979D89CD /* REAFunctionNode.h */, - 3B0FD580475D1EB5A921C9AA90FE0C0A /* REAFunctionNode.m */, - FC77F5E8B156C8D5428CE7A1CECBE5A0 /* REAJSCallNode.h */, - AF39CC6979579912E7139AF8C456083D /* REAJSCallNode.m */, - ABBA1006B691BDDC97E06F44EFE93FBB /* REANode.h */, - 763804BFF9B43FAC3F6E0962685F2230 /* REANode.m */, - 95321D22E8C964DCE9A3AC29C4ABED29 /* REAOperatorNode.h */, - 3583ED43A6647A32545A09879D94DDF5 /* REAOperatorNode.m */, - 2703C72F933F53025C828C107799FD10 /* REAParamNode.h */, - 51568D362701B6B81C0139744164CA4D /* REAParamNode.m */, - 2F376571D3754BC58E0FD4601CE551E5 /* REAPropsNode.h */, - F0144562E9EE65FD04D6FB83225F9952 /* REAPropsNode.m */, - 33EEF8A74FE15E3B8262554D8BFB7C5C /* REASetNode.h */, - 91D6F5754639B6F94FF0134463F2C36B /* REASetNode.m */, - 0B723E88641B9F8F46432CE58DE751BA /* REAStyleNode.h */, - 7CB562017B48AAFE9160824A33DE66FE /* REAStyleNode.m */, - D4E212EFA993BE1ABD93E72D1F998AFD /* REATransformNode.h */, - 3DA052739501902A223DC53E296907BF /* REATransformNode.m */, - DEB3B6D514C2E342DE40B97B52129F77 /* REAValueNode.h */, - 23A0EF3FD305CA0FC3112F329AB1A35E /* REAValueNode.m */, - ); - name = Nodes; - path = ios/Nodes; - sourceTree = ""; - }; - 4F5E3E83E942DE2EA1332EE7D7826779 /* RCTWebSocket */ = { - isa = PBXGroup; - children = ( - F3BCAC2B84DF445FA5C5BC4F35821032 /* RCTReconnectingWebSocket.h */, - FD74E2AED3CF913CF907D91D641B8CC3 /* RCTReconnectingWebSocket.m */, - 1C046D3A111C990B22B244A5CEAF1235 /* RCTSRWebSocket.h */, - 3579FDC1F171440E024A4D2C7C55955B /* RCTSRWebSocket.m */, - E9FDC01EE742E5FCE16BC5D151DFE0EF /* RCTWebSocketExecutor.h */, - F07CD52B556C0CA803284EA52CE51FB7 /* RCTWebSocketExecutor.m */, - 67361392F0CC4167D473E425CF2608FC /* RCTWebSocketModule.h */, - 450A8BDD4F83B1059206640669FD50E3 /* RCTWebSocketModule.m */, - ); - name = RCTWebSocket; - sourceTree = ""; - }; - 4F971F3A131EB0DB3EEA096E817A9859 /* Pod */ = { - isa = PBXGroup; - children = ( - 41D4F2C9315C3ADE1A02BC0AE1FDA016 /* React-RCTVibration.podspec */, - ); - name = Pod; + name = links; + path = RNFirebase/links; sourceTree = ""; }; 4FB4326A298FD7848ACC2033DEC91DE6 /* Fabric */ = { @@ -8396,144 +8078,150 @@ path = Fabric; sourceTree = ""; }; - 4FCBA42777BE2E75CDA116381D4BAD75 /* Pod */ = { + 51029A5B0A64AB7F58316BE9892C6F58 /* UMBarCodeScannerInterface */ = { isa = PBXGroup; children = ( - 970FAFB8D3A01336713C77A466828192 /* React-Core.podspec */, + 40650C3157A19EA6BCDB1E0DCB8C8B8C /* UMBarCodeScannerInterface.h */, + 52097CBB2533B170B1D68EFC658DEEFE /* UMBarCodeScannerProviderInterface.h */, + 164F823316FF8FB134E91630E4C73BF9 /* Pod */, + C30DEAFD1ABD4EC7997B9CDF5AB71FC8 /* Support Files */, + ); + name = UMBarCodeScannerInterface; + path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; + sourceTree = ""; + }; + 52349F4D4BA1244BC9E043CFFD84ED6C /* React-RCTText */ = { + isa = PBXGroup; + children = ( + C39665AF94FBA346085767D7916412E6 /* RCTConvert+Text.m */, + 0EE37BEFEC43603EA71DA17AD6DB6EC8 /* RCTTextAttributes.m */, + 0CFE4C51FA90CD6886BE632C8066A602 /* BaseText */, + D2EE3F70424ED65F47E176E6D70DD3AC /* Pod */, + 702ADC08C7D8F6A755B62662349B67C9 /* RawText */, + 8159EBF5FDBB444988DD9A37F58947A1 /* Support Files */, + 9EF5244FC41FECF1AAD6BFF941D69A0E /* Text */, + 5F12FE9BA5FF0CCE2A937A5ABC4F9410 /* TextInput */, + DB1AF4D7E2E6B5A08ED8D63C4D18FBA4 /* VirtualText */, + ); + name = "React-RCTText"; + path = "../../node_modules/react-native/Libraries/Text"; + sourceTree = ""; + }; + 5432C5B6FB6CB41BB8216C58EFB1F805 /* react-native-webview */ = { + isa = PBXGroup; + children = ( + 69EA2982D27D95080CAD783E0DC509E6 /* RNCUIWebView.h */, + 7A7A515834AE7AD2E49E9BF5C650DB63 /* RNCUIWebView.m */, + E0E131BC3D68CD4CF4E45F8A5B77A0C0 /* RNCUIWebViewManager.h */, + 3BEBF59797D0B7EC87BEB87BD2C61525 /* RNCUIWebViewManager.m */, + 2347462D47221E766C95EF43C86C5097 /* RNCWKProcessPoolManager.h */, + 607049354624AEE8FCDC45ADA3B250E3 /* RNCWKProcessPoolManager.m */, + 0A3D10984774FF2D4A12FA7CC49BFFC3 /* RNCWKWebView.h */, + CA1F092C65DA8E6C48C6F21690506982 /* RNCWKWebView.m */, + E706CE3149E69838539A935D471359EA /* RNCWKWebViewManager.h */, + F69A49ED8D00ADA1F8ACFC1B2460DB0F /* RNCWKWebViewManager.m */, + 1B95B25D6EF2F73FD130589FB3B18B2A /* Pod */, + 4CA03AAD8F7B30E5946E59E15D11AFD1 /* Support Files */, + ); + name = "react-native-webview"; + path = "../../node_modules/react-native-webview"; + sourceTree = ""; + }; + 548D0A7EA8E1D4A391E648B85A36D5F4 /* UMFontInterface */ = { + isa = PBXGroup; + children = ( + F325600622CCAA9A09A4685975C9210C /* UMFontManagerInterface.h */, + 16A4126BC78B4983AFCB3092432BE39E /* UMFontProcessorInterface.h */, + D1CC13168FC8DBB7DDF9AB78DCD3FBCE /* UMFontScalerInterface.h */, + 085A09056E1148316166F25EC7D79E0B /* UMFontScalersManagerInterface.h */, + 92BF14FE7890E1557C12912D5ED7E08C /* Pod */, + C2C64BAD894C524B4CF3161427E86E20 /* Support Files */, + ); + name = UMFontInterface; + path = "../../node_modules/unimodules-font-interface/ios"; + sourceTree = ""; + }; + 57E9681E6AB3EF7AE7D2013AF6880D0D /* react-native-keyboard-input */ = { + isa = PBXGroup; + children = ( + 852083D7A696D80DE9E77778D3D2E60E /* LNInterpolation */, + F885A308EB492EB907B3D8D25E264600 /* Pod */, + 0A5FB4C48FAF01B0472F1F023C83CAC4 /* RCTCustomInputController */, + 2E87789820CAFB333B93FB1D7ADAA135 /* Support Files */, + ); + name = "react-native-keyboard-input"; + path = "../../node_modules/react-native-keyboard-input"; + sourceTree = ""; + }; + 58CFAC3B2D744EEA58A7EDB8D5760D59 /* Support Files */ = { + isa = PBXGroup; + children = ( + 8CBB5C5BAC37CA780E3117B6AB1CAB47 /* React-CoreModules.xcconfig */, + AEE3DD005F902CB0572F5B9E859A7D7B /* React-CoreModules-dummy.m */, + 150AD3BF6D6A700C099220CAE5027D05 /* React-CoreModules-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; + sourceTree = ""; + }; + 5930ED8DD384570CA551A37C1F473291 /* React-jsinspector */ = { + isa = PBXGroup; + children = ( + 605635D6DB4B1BDBFEF5762CF7A64D54 /* InspectorInterfaces.cpp */, + 60C743CD5F6E78B0DFEAF3C1C92EF55E /* InspectorInterfaces.h */, + CCDF37DB566108C526E46063C4B26F72 /* Pod */, + EE28FFC8C472FE476C57714799722BA1 /* Support Files */, + ); + name = "React-jsinspector"; + path = "../../node_modules/react-native/ReactCommon/jsinspector"; + sourceTree = ""; + }; + 599F37BE324D2165B71B0309C2765FC9 /* Pod */ = { + isa = PBXGroup; + children = ( + CFA757F4A01E5EE1C0D49E13B09169AC /* React.podspec */, ); name = Pod; sourceTree = ""; }; - 5238387CFDA2E76C655BDF4E632776DE /* Support Files */ = { + 59A8D4BC88C6FF4A62F163B403AA7F0D /* Support Files */ = { isa = PBXGroup; children = ( - AA6220A557BF114DB76A15F129AF8E27 /* UMCore.xcconfig */, - 359B060557BFE9DFF9EC8C4570EB28FA /* UMCore-dummy.m */, - AD3CB0088255A383F6D2038A4547A916 /* UMCore-prefix.pch */, + 43904D676F711B84D0363DF0430E85AC /* FBReactNativeSpec.xcconfig */, + 80A15382E98BDAF0193A36F6DF062EAE /* FBReactNativeSpec-dummy.m */, + 924720F5C2D4A799CF215C9F992670E3 /* FBReactNativeSpec-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMCore"; + path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; sourceTree = ""; }; - 529785B2588570A46CF14BE5B4B723DD /* Support Files */ = { + 5AC3286FBB8B4C0AA46BDB324C2DA012 /* UMModuleRegistry */ = { isa = PBXGroup; children = ( - 11D176F5F5FCEDEA0630DB8ECF8AC635 /* BugsnagReactNative.xcconfig */, - C04E7CB35881421CC7C4DE9AE2276BD9 /* BugsnagReactNative-dummy.m */, - F7CE8E6B5360ECCCC3FCF79ADB071D19 /* BugsnagReactNative-prefix.pch */, + 4C7E2C6308D8C8DD2F1341FB8F321FD4 /* UMModuleRegistry.h */, + D5050F9FA6EF770BDC0BA85B547449F2 /* UMModuleRegistry.m */, + A0CB64F4C7708EEA1503FD11E213386E /* UMModuleRegistryDelegate.h */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; + name = UMModuleRegistry; + path = UMCore/UMModuleRegistry; sourceTree = ""; }; - 52F299FD088AFBAC5955F0FFEABB7D9A /* Pod */ = { + 5B6847EE8E12E4BC522D73352DFD055D /* Pod */ = { isa = PBXGroup; children = ( - F80A084AF2E14EA3001A58B0CD6613DF /* LICENSE */, - 04B5998B8BADC42B642684D81AF70EB7 /* react-native-keyboard-input.podspec */, - F445ABBE7D3384097D21EA71ABB30875 /* README.md */, + D4A56D810B8EC11BFEA5D4C20EFF3AEE /* README.md */, + B51A7B88A4C808780209A9EB402F05C1 /* RNLocalize.podspec */, ); name = Pod; sourceTree = ""; }; - 54399176D63056541C7C7B496E451213 /* jscallinvoker */ = { + 5C32729E6213C6F97BD80F073787FFAB /* Support Files */ = { isa = PBXGroup; children = ( - 9B4F6322F4E053E02A6998B5B12A0261 /* BridgeJSCallInvoker.cpp */, - 247C6485F4BCA6190AED6989285BAA10 /* BridgeJSCallInvoker.h */, - 495E0C732876CA1F3142152FAF076FEB /* JSCallInvoker.h */, - ); - name = jscallinvoker; - sourceTree = ""; - }; - 548D2E31192B779DFA69CE59E47A50CC /* Pod */ = { - isa = PBXGroup; - children = ( - 83560E525838057FB10C426721B4F304 /* React-jsi.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 577A5E9BA11E2B4C0D0D65EB3EA486F6 /* Support Files */ = { - isa = PBXGroup; - children = ( - 5946F82A8BBC25FEA190FDC93656ECC1 /* react-native-jitsi-meet.xcconfig */, - 727D71946298C0D81E3E63197B42D07D /* react-native-jitsi-meet-dummy.m */, - 66EA181440FC595A2FC5D18B52C65B9A /* react-native-jitsi-meet-prefix.pch */, + 36EA1DBC087523A55053723339039F73 /* UMSensorsInterface.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; - sourceTree = ""; - }; - 57B17424001C1B177AAF3C38B27A2100 /* Support Files */ = { - isa = PBXGroup; - children = ( - 19A6BD92B96BAA625B041EBE7FFA6D23 /* RNVectorIcons.xcconfig */, - 6BD3113B8C20E70AF080D54D141380AF /* RNVectorIcons-dummy.m */, - F9457FBBB8773C29B1E66CCE6ADC32E6 /* RNVectorIcons-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNVectorIcons"; - sourceTree = ""; - }; - 5808D9B6E72CD4E227B01670628B93EA /* Pod */ = { - isa = PBXGroup; - children = ( - F75931D0CE52B72D6AF0E190625EE3AA /* React-RCTActionSheet.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 5858055F36862D88CC79AD51CF3C1F2B /* Pod */ = { - isa = PBXGroup; - children = ( - DEAD8975DD0A2ADE8EAB85344308B844 /* LICENSE */, - 1C8C8A8A3DA023D85BB88C23E944DC4D /* react-native-webview.podspec */, - 80CED4C0002F52CEF317D0150DA0CE51 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 5860028CF367BA98210DDFE2DA622297 /* react-native-background-timer */ = { - isa = PBXGroup; - children = ( - 57253803800CB211417297335CCD0419 /* RNBackgroundTimer.h */, - 9F957A58E8FE652DD1F3DE28B8CE50D5 /* RNBackgroundTimer.m */, - C338F15EB6228CA4BE12B74215549793 /* Pod */, - 244A85584AA0D87B82A47C9E3FC0938A /* Support Files */, - ); - name = "react-native-background-timer"; - path = "../../node_modules/react-native-background-timer"; - sourceTree = ""; - }; - 58FCE60A80CF6FEA1952D8E53D6C667A /* RCTLinkingHeaders */ = { - isa = PBXGroup; - children = ( - 7206D69E698E689460E8C5A477C1CB6B /* RCTLinkingManager.h */, - ); - name = RCTLinkingHeaders; - sourceTree = ""; - }; - 5A5371A2D7E640387CFE291DF66C9C63 /* Support Files */ = { - isa = PBXGroup; - children = ( - BEE28714BD2DE0A16928AD736CF24ECC /* React-RCTSettings.xcconfig */, - A2EAF7A7CEEAFAD16DDC5D843197C7FB /* React-RCTSettings-dummy.m */, - 8D2A63C0C9D59F9A73D4FE3B19FD022C /* React-RCTSettings-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; - sourceTree = ""; - }; - 5C22FB84FFC113DBADAA78E3E797A019 /* Support Files */ = { - isa = PBXGroup; - children = ( - 54E082E90CAF371FF97974E78DB15502 /* RNLocalize.xcconfig */, - D648BCD4E994941382EE954821EC72CB /* RNLocalize-dummy.m */, - DD8D7B5399AD05721EA49A7E760680FA /* RNLocalize-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNLocalize"; + path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; sourceTree = ""; }; 5D2D4DF93BFEBDAF6A82CA4D55887DCF /* Support Files */ = { @@ -8547,291 +8235,88 @@ path = "../Target Support Files/libwebp"; sourceTree = ""; }; - 5D5AC770A84D59B3466E2F103A15F161 /* Support Files */ = { + 5DAB022BCB874F041A686A5C948D6E93 /* Support Files */ = { isa = PBXGroup; children = ( - 30DD2B54E8B83385D1E17E18ECEFEC9E /* React-RCTAnimation.xcconfig */, - 82818FC3C2A6B81FAA4419BB2DEC88B3 /* React-RCTAnimation-dummy.m */, - 29C793BCF9A0265143913A9F379F5D98 /* React-RCTAnimation-prefix.pch */, + 211F80634955535277F6E665B57F313B /* React-jsi.xcconfig */, + 0C3FEAA5996EBAB6C087D51EBE25F51B /* React-jsi-dummy.m */, + A2A09B04F81EF2E3056B41E1DA8CE523 /* React-jsi-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; + path = "../../../../ios/Pods/Target Support Files/React-jsi"; sourceTree = ""; }; - 5D62ABCDD03BB2A3D6CA6F6B0ABD9F84 /* Base */ = { + 5F12FE9BA5FF0CCE2A937A5ABC4F9410 /* TextInput */ = { isa = PBXGroup; children = ( - 03D03E5D8E11BC46FA4CEDDA928F825B /* RCTAssert.h */, - DB8F16FFD59A9DBCD4C6C6E23270431E /* RCTAssert.m */, - BD756CCC8A6F288479927B7A468F5DC4 /* RCTBridge.h */, - A875C01527B1824FF82F97580829CF92 /* RCTBridge.m */, - 612237747AF33E12E29F29C686F0EF1D /* RCTBridge+Private.h */, - 61B1B2524F66E2689235387020F56724 /* RCTBridgeDelegate.h */, - 5D287B82B0D4D075643FD1CD58D0BA8A /* RCTBridgeMethod.h */, - 7801A4930819C7EB29EE5304B3862021 /* RCTBridgeModule.h */, - 5BE5ADA48556BAE6A528B69D5DA29258 /* RCTBundleURLProvider.h */, - 831F2DDCB51B3780CE7D6A9D4F430D89 /* RCTBundleURLProvider.m */, - DBC2F83BD3B511BEE9C55FA2CBACA7A0 /* RCTComponentEvent.h */, - C2AAE71AF8006AA30A64CF4504D526EE /* RCTComponentEvent.m */, - BB9CAD04ADD8404E21061E072AD9F60A /* RCTConvert.h */, - 5556863B6CBE1867B6B4E36DDB0B841A /* RCTConvert.m */, - 83E3400853693E65BAAB9E182487BA2A /* RCTCxxConvert.h */, - DE738962416D1A0FB5D95C5025691CD5 /* RCTCxxConvert.m */, - FC68C3A9572247EB2C186F6FD17191A1 /* RCTDefines.h */, - 2850D08FC65AB2BFE6F11F31C82F4630 /* RCTDisplayLink.h */, - E21DA4EE9E2F720E5E3894CA9F2F5A62 /* RCTDisplayLink.m */, - 477E3945548B8EAC18BE1994BEB058F9 /* RCTErrorCustomizer.h */, - 6AE604056FD8783FB9392D3D28296B1D /* RCTErrorInfo.h */, - F82AF7A2832500365D7F13D772E53ECE /* RCTErrorInfo.m */, - B40741E4D0355C3E8580FB4615BF911F /* RCTEventDispatcher.h */, - DD120F25C58E02FF25C34A48AA6D236A /* RCTEventDispatcher.m */, - 4255A70D1E5472010E7123FA03A17B7F /* RCTFrameUpdate.h */, - 3EC051CD4EE0FF49306A398ECB396CDE /* RCTFrameUpdate.m */, - 6F033B27EB27123B6CCC7A7C7DE01E96 /* RCTImageSource.h */, - AE735E75964CE24E03D2269158232098 /* RCTImageSource.m */, - 075663E9AA585DCC7CDDCEE64724C79A /* RCTInvalidating.h */, - 685E1CFEA16F021B2FE0A1E5BA66A85B /* RCTJavaScriptExecutor.h */, - E78B4162D30CAA063A10BE260B449392 /* RCTJavaScriptLoader.h */, - 80C4A2E4D76203670EC68AECB8D26B36 /* RCTJavaScriptLoader.mm */, - 84F69C57B313D77512C38C51B2F40A2B /* RCTJSStackFrame.h */, - 737B3C595CA63B535BC4EB3165BAD4B5 /* RCTJSStackFrame.m */, - 67F0BD21A792353FDE8EDD3064FDDDD6 /* RCTKeyCommands.h */, - 7BB52BC5A6D5E146C1BDDD5573557478 /* RCTKeyCommands.m */, - 83C72B9176B50700B8070E2FD3F9B449 /* RCTLog.h */, - 4853BBAF2D3166382D188EA079598AC3 /* RCTLog.mm */, - CAEA9BC3766046E69CEFA2DBB6FAD110 /* RCTManagedPointer.h */, - 324C8D7FF5265BEEB2F9AB9D71C806CE /* RCTManagedPointer.mm */, - A98D42D2F791FD55BA9CE579DCFBBB6F /* RCTModuleData.h */, - 40D860B53369DCC44F2BE6C08233659B /* RCTModuleData.mm */, - 5D059AA26239CC92CEC17FC007519E15 /* RCTModuleMethod.h */, - EC79979FA356F2FE9577C55BEFBCCEC9 /* RCTModuleMethod.mm */, - 7E0062B09494B55074D1C5906D3AF2C0 /* RCTMultipartDataTask.h */, - A78772CB1D68C46340815D48D6820E90 /* RCTMultipartDataTask.m */, - C89FF0810BD4F04063F625B87CD9043E /* RCTMultipartStreamReader.h */, - 05D2BDC1BB3CA0A49905FF67637CF66E /* RCTMultipartStreamReader.m */, - E0375D1357B3ECDD85500A747C13496F /* RCTNullability.h */, - 5654D160A809BFDF0F9892CB56D901CE /* RCTParserUtils.h */, - A443AC435CE4A4AEA1064FDEF406CB77 /* RCTParserUtils.m */, - 4079980CF0CE484D8AF2C6718D9D390C /* RCTPerformanceLogger.h */, - 17886E58A8D0B13B8B74D13F4FEE7F0B /* RCTPerformanceLogger.m */, - 649046F7FAAD5795A341A92920037616 /* RCTReloadCommand.h */, - 74D69112E4D6401A96119500674C49D6 /* RCTReloadCommand.m */, - D2636EF8E148C627BDF9737E2572C5CB /* RCTRootContentView.h */, - 14583AF4E411CD44F77D06F9F5554F11 /* RCTRootContentView.m */, - 09E8BDBF03C2CE0E0637E1E405CFBD21 /* RCTRootView.h */, - 319456CF7423767E37C738CDD3682CF3 /* RCTRootView.m */, - 64225901D9BC184AE5F93A69092D299A /* RCTRootViewDelegate.h */, - 0A5A425A0ECFE22EDBB587C1412BF24B /* RCTRootViewInternal.h */, - 37CF770FDF352A24EC3AB16FF2E96884 /* RCTTouchEvent.h */, - 428844487F23597C747AD12CAD9D1440 /* RCTTouchEvent.m */, - E4A298AA53A807D585B28DFEC3E3FE48 /* RCTTouchHandler.h */, - CCBDC94101D93E6A3DAC4082116D33C6 /* RCTTouchHandler.m */, - B868863514FA35A4413D35D5B762E59C /* RCTURLRequestDelegate.h */, - AFD3DECBB494C2A51C307578CF48358E /* RCTURLRequestHandler.h */, - 9E64A074C8DC78A75EAAA6DA1FA9A0D9 /* RCTUtils.h */, - CBAC4A58CACE4D055CAD511ECFF72574 /* RCTUtils.m */, - ECB864743EC58A9D1903C657F8429652 /* RCTVersion.h */, - 140C32167571C58047CBD46B6859A355 /* RCTVersion.m */, - 9B2689AF3C6A5C24499AC4698427F4C8 /* RCTWeakProxy.h */, - 741B5CC254878F89BB3DFAB9E49B4C07 /* RCTWeakProxy.m */, - 1BFCCAC9A67E55D2C4526E6335B770D9 /* Surface */, + 283F9DBC19BC9C368189DBC095F85792 /* RCTBackedTextInputDelegateAdapter.m */, + 343B4074993DCF17EBC2939439C15A10 /* RCTBaseTextInputShadowView.m */, + 98738FC7EF9E6C189DFCD03F8F0586F9 /* RCTBaseTextInputView.m */, + E9DE536273503BFD853C7F1E29AB5F9D /* RCTBaseTextInputViewManager.m */, + F14E4F9E7E375BE6FE42E2D25CBE3C26 /* RCTInputAccessoryShadowView.m */, + 21ABA09EC95E05879F07F584E19B8541 /* RCTInputAccessoryView.m */, + D7DC864424FFCD32B48738F8E72507CB /* RCTInputAccessoryViewContent.m */, + 25E8D94BF8D71ED99315114105FB7E17 /* RCTInputAccessoryViewManager.m */, + B7D880AD3344988E75DB2D19B5008257 /* RCTTextSelection.m */, + 38E3316D3BAF16CA2652F99C7FD89386 /* Multiline */, + 0B0CE029E886AB512825EBCE0DADA4D7 /* Singleline */, ); - name = Base; - path = React/Base; + name = TextInput; + path = TextInput; sourceTree = ""; }; - 5EB125123D239804553E615128F88EE2 /* Support Files */ = { + 6065E5B12A5672A833E7CF853E6FE31F /* Support Files */ = { isa = PBXGroup; children = ( - 8394F1B20A5A1FEFBE8E5E5E5294F8F9 /* Yoga.xcconfig */, - 164C790EF97865907EE39DC49E5DA344 /* Yoga-dummy.m */, - 56D35F0536D35E7A3FDD8DB7502F98AF /* Yoga-prefix.pch */, + 2884DD0912197AF891B45AC139D8C64E /* react-native-splash-screen.xcconfig */, + 81C2532EF3342F72E6FD0A53291AD89A /* react-native-splash-screen-dummy.m */, + 7EBF1B168B6A290113FB57AB45EB4870 /* react-native-splash-screen-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/Yoga"; + path = "../../ios/Pods/Target Support Files/react-native-splash-screen"; sourceTree = ""; }; - 5F1A9E856E26A0280584F985D0EDCA30 /* storage */ = { + 611E207009DB11C41FFE26E192D584E1 /* Support Files */ = { isa = PBXGroup; children = ( - 014FDB19903EB134E0AECA24E6BB5CCF /* RNFirebaseStorage.h */, - 8EEF4CE097F577CFB6E7CE9A4BF0881A /* RNFirebaseStorage.m */, + F689591CF7C3C72186DB328870EDE816 /* UMCameraInterface.xcconfig */, ); - name = storage; - path = RNFirebase/storage; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; sourceTree = ""; }; - 5F333FB7440A3CC6A89F2281808A25F7 /* RNVectorIcons */ = { + 6128B252FC1BD23075D495354CCE4231 /* Pod */ = { isa = PBXGroup; children = ( - BD0501497EB1D2525E810D765BE138CB /* RNVectorIconsManager.h */, - C2867E7076F2AF989B9B71B50B8CCA64 /* RNVectorIconsManager.m */, - 19F394E38254750B6D4613BBC4A81E76 /* Pod */, - 186B08313E058E664D32100C0823B780 /* Resources */, - 57B17424001C1B177AAF3C38B27A2100 /* Support Files */, - ); - name = RNVectorIcons; - path = "../../node_modules/react-native-vector-icons"; - sourceTree = ""; - }; - 6013073D7E79F81B87C7E8F3406B7C9E /* React-RCTVibration */ = { - isa = PBXGroup; - children = ( - D741452E5AD995173B4FB5224589A542 /* RCTVibration.m */, - 4F971F3A131EB0DB3EEA096E817A9859 /* Pod */, - C0076F5F6762BA80DDD7A2FD70AB7F32 /* Support Files */, - ); - name = "React-RCTVibration"; - path = "../../node_modules/react-native/Libraries/Vibration"; - sourceTree = ""; - }; - 602CF73DECBD0F65A240ABA6FBDA12E8 /* ReactCommon */ = { - isa = PBXGroup; - children = ( - 54399176D63056541C7C7B496E451213 /* jscallinvoker */, - 4A09E0B3A317DD526F840C57735664D8 /* Support Files */, - 4BD4900B27B4CEB63F48570EA4B89193 /* turbomodule */, - ); - name = ReactCommon; - path = "../../node_modules/react-native/ReactCommon"; - sourceTree = ""; - }; - 6066B3038B0CF70C0F88CF4439973149 /* Video */ = { - isa = PBXGroup; - children = ( - CF0AD6EBF14D3F52DF8F7A94928B4D97 /* RCTVideo.h */, - 8CC511B16EF948EAAE9EF314FD8D5FED /* RCTVideo.m */, - C0811DAC6D552FB356D7575AF4844BE5 /* RCTVideoManager.h */, - A588BC5F497161F1F6F0D5A68491578F /* RCTVideoManager.m */, - B26E4A4A95BF24EA28B2C025232D2257 /* RCTVideoPlayerViewController.h */, - 8A2A219731CE5324848BD7A1A83A7819 /* RCTVideoPlayerViewController.m */, - 7F8D11415C85564761C20FD0EDDA14A1 /* RCTVideoPlayerViewControllerDelegate.h */, - 19F13015D6D229A32B55FA476C22D580 /* UIView+FindUIViewController.h */, - CAD73DC9C17FE6AC5CF8C596197A6F2F /* UIView+FindUIViewController.m */, - ); - name = Video; - sourceTree = ""; - }; - 60BF6517086893E1B6AD05340D2B012E /* EXFileSystem */ = { - isa = PBXGroup; - children = ( - C3AA110259054E16A7D2EEF2264B8253 /* EXDownloadDelegate.h */, - 69FD62B43890C1488F1CCC8BDB6A0331 /* EXDownloadDelegate.m */, - C807FECCF102D19262B8F17694D029D8 /* EXFilePermissionModule.h */, - 6C3932DDFF94712420C93082E6DF30EF /* EXFilePermissionModule.m */, - 27E5B52707C0F3079D2F7E4D540F1B00 /* EXFileSystem.h */, - 0F54DB78C60B0A0033B3B0A6975E1017 /* EXFileSystem.m */, - 4D761807A2FECF60EDB424C5ACC8B538 /* EXFileSystemAssetLibraryHandler.h */, - 59C6272923411E4BE89A82E5040D98FC /* EXFileSystemAssetLibraryHandler.m */, - B194B571DE62CC8A6C06351641F9EA45 /* EXFileSystemLocalFileHandler.h */, - 333E66EDC8DB6E62AD52DD735C682B66 /* EXFileSystemLocalFileHandler.m */, - BD12E273A21EE2A09F277E510BB09201 /* Pod */, - E06C2B562B98227580C39FC2192E5BAF /* Support Files */, - ); - name = EXFileSystem; - path = "../../node_modules/expo-file-system/ios"; - sourceTree = ""; - }; - 60F1A6B5C599E5301484F588FA34138B /* Pod */ = { - isa = PBXGroup; - children = ( - 97FDB2800D0C06FD55EDEBC84EA60C4F /* React-RCTLinking.podspec */, + 254FD94E666E958F4AA767DBF3514C11 /* LICENSE */, + 17B5A3398542FBA69038FDE4DB3AF30E /* README.md */, + 4C0F6D6814201054F7BC694B6F77F313 /* RNVectorIcons.podspec */, ); name = Pod; sourceTree = ""; }; - 622AB53C3F25008C5ACB23AA781D5ED5 /* Pod */ = { + 623C4E269FA0252D4BFD63BA25BFD9B9 /* RNAudio */ = { isa = PBXGroup; children = ( - EEB58D09EC7DED96CE561CE64145D5A8 /* RNFirebase.podspec */, + A00C194F97F81C3428B538B51E2A782F /* AudioRecorderManager.h */, + 512147BD01A00A9A399A9F21DF93F432 /* AudioRecorderManager.m */, + AF5A9C9DCB1542D640E0321F6320FA77 /* Pod */, + 874E4E0F72BCAD4505CE4EE7DE6E4F95 /* Support Files */, + ); + name = RNAudio; + path = "../../node_modules/react-native-audio"; + sourceTree = ""; + }; + 6327AD3730FD608D804FC82DF852170F /* Pod */ = { + isa = PBXGroup; + children = ( + 38EE2AEE5664ED9EFAAB1C91EB51082E /* LICENSE */, + 81029198431B4FFAE34236943BB9E65B /* react-native-keyboard-tracking-view.podspec */, + 5A54E8710802BFE7EB7AD8BD1B5E1104 /* README.md */, ); name = Pod; sourceTree = ""; }; - 626CDE09DB1925F3BDEB9693E59BF749 /* EXPermissions */ = { - isa = PBXGroup; - children = ( - 8A0950220244BF61D612736CA0B8AC13 /* EXAudioRecordingPermissionRequester.h */, - FCADC8EB4C6EEF0EC86B28E9D528817B /* EXAudioRecordingPermissionRequester.m */, - 073E8A3CD06AB6BBB7F2FEC7E54F5E94 /* EXCalendarRequester.h */, - BEC8DE5627FD24B5F94CF1CEDD4EFEED /* EXCalendarRequester.m */, - 83891139F79BF847C56CEFBF6C3713F8 /* EXCameraPermissionRequester.h */, - 2DD7893B62BB82BF7CA2F2886F6B5A6B /* EXCameraPermissionRequester.m */, - 30147B9307000E3029CAB6E9D5A16E06 /* EXCameraRollRequester.h */, - 9F99786D6E0D484A69F4566BFCD289C2 /* EXCameraRollRequester.m */, - 727E407A3322087D134F715297692411 /* EXContactsRequester.h */, - 3195505E0729B4614D60025ED7CAA2A6 /* EXContactsRequester.m */, - 9DCC67EB103D9A1897E64556350F2D76 /* EXLocationRequester.h */, - C1556487DA90D957A1139D2EC8565676 /* EXLocationRequester.m */, - DF5DD3F2D99D789C21808B3CE21D8B44 /* EXPermissions.h */, - 71571D4590C4ED3F2C600D66264D03E4 /* EXPermissions.m */, - 5A4F408BE58736D8D222BAEC35D49649 /* EXReactNativeUserNotificationCenterProxy.h */, - 1E1091C5BC6B2F7D90CD1F8CE023E3C6 /* EXReactNativeUserNotificationCenterProxy.m */, - 0FB6260E5B1618C8A23D9F32B4677B0F /* EXRemindersRequester.h */, - 42BCEE5E040F3D638C0792F449ABDA87 /* EXRemindersRequester.m */, - 6B9DEAD710C3522076B3E41FE1CD15F2 /* EXRemoteNotificationRequester.h */, - 4896EA5817A5BEF19F56C3D7F82A206C /* EXRemoteNotificationRequester.m */, - 581EBFF895B7F91F26D6A77D0822785A /* EXSystemBrightnessRequester.h */, - E6390116C74EEB846D1541AA9EA9A560 /* EXSystemBrightnessRequester.m */, - 7CA3D3FBB9C732E53BDAD62F66B1EA24 /* EXUserNotificationRequester.h */, - FD80317ACFACC5709F63EC1CBEDA25BC /* EXUserNotificationRequester.m */, - 4EC28C179DF353B2A04D33217DA71FE0 /* Pod */, - 369AB92D91057517B690F229EF10980F /* Support Files */, - ); - name = EXPermissions; - path = "../../node_modules/expo-permissions/ios"; - sourceTree = ""; - }; - 628D3C2A7035B570757BAEE20DFAACF2 /* links */ = { - isa = PBXGroup; - children = ( - DDE1D68A0411438F5059BE30FB81BA16 /* RNFirebaseLinks.h */, - 0924786BD027338C15D968073ECFFFD7 /* RNFirebaseLinks.m */, - ); - name = links; - path = RNFirebase/links; - sourceTree = ""; - }; - 62934FD0505B17AA4E1556DE9358822E /* DevSupport */ = { - isa = PBXGroup; - children = ( - E9F927EC0FE47F451DEFE65068A5127E /* RCTDevLoadingView.h */, - 54C982C90AF5EFE8A833693625838E0A /* RCTDevLoadingView.m */, - B2003958EC394E36B16B2E029E0D631E /* RCTDevMenu.h */, - 3EF4B27E17C63D7CBEAD59D73BC014D2 /* RCTDevMenu.m */, - 43104A491C9DF0BD0AEB9715B949B9A8 /* RCTInspectorDevServerHelper.h */, - 6597EF9A31A7DF713E5E5B3E73B1FF05 /* RCTInspectorDevServerHelper.mm */, - C0AC944A756460B48773C16C85ABEE38 /* RCTPackagerClient.h */, - D944D2C962AF7FFDEDE2EDBF81D15D80 /* RCTPackagerClient.m */, - B04C828EDBBF50DD4110D46B7CCCC49E /* RCTPackagerConnection.h */, - E101C4D821571E73341FEA7624B607EA /* RCTPackagerConnection.mm */, - ); - name = DevSupport; - path = React/DevSupport; - sourceTree = ""; - }; - 63814B842C73AAD2D360DDEDBFD177D2 /* admob */ = { - isa = PBXGroup; - children = ( - 68039FD9D0B1AEB7435763A7082221C2 /* BannerComponent.h */, - 69299A2553489034C01AB719F2BC7E87 /* BannerComponent.m */, - F6BF19E2AC117AF21EB0D7359703456C /* NativeExpressComponent.h */, - CCD3EC953CE3B6A1C8E5ED1E0D31F6C8 /* NativeExpressComponent.m */, - CF15B0E81578CD4A65CC515D17F032C8 /* RNFirebaseAdMob.h */, - 32D124440224981CAAE96235A81CE22D /* RNFirebaseAdMob.m */, - DE1C30BAC2ED54837D3F040C0D93F2F1 /* RNFirebaseAdMobBannerManager.h */, - 2C3B7059B68C5F008E579860896BF1AB /* RNFirebaseAdMobBannerManager.m */, - 96828A154291EE6E5258DC48A5F4B966 /* RNFirebaseAdMobInterstitial.h */, - 517496BEF372A38C79DA1071A3A6DDD5 /* RNFirebaseAdMobInterstitial.m */, - A461CFD6D0A8C84868B8225D03330BE3 /* RNFirebaseAdMobNativeExpressManager.h */, - 19D9E59F04BBE993E8B9D79841321317 /* RNFirebaseAdMobNativeExpressManager.m */, - 4A4B70FC0876B33071969B459F1E573F /* RNFirebaseAdMobRewardedVideo.h */, - 5528E6A2F3ACD862E83084EB2126D020 /* RNFirebaseAdMobRewardedVideo.m */, - ); - name = admob; - path = RNFirebase/admob; - sourceTree = ""; - }; 642005C5DE6E1F298D75A62BCD595955 /* GoogleDataTransportCCTSupport */ = { isa = PBXGroup; children = ( @@ -8849,21 +8334,6 @@ path = GoogleDataTransportCCTSupport; sourceTree = ""; }; - 6420DBBF67C2C37A69DAF522D48BFC3B /* UMTaskManagerInterface */ = { - isa = PBXGroup; - children = ( - 9321E90B5F9E0A7912E3BF222C768819 /* UMTaskConsumerInterface.h */, - 1D1064EF067032F75AD07A6A10C7FA98 /* UMTaskInterface.h */, - FF22779E4F1A31474F9EDBAC95817659 /* UMTaskLaunchReason.h */, - 8DBA332EB76301F1CFB21413BAF07EE8 /* UMTaskManagerInterface.h */, - 466316A4A5986D7A4C8A0FDC507893C1 /* UMTaskServiceInterface.h */, - B1E420A0A46B9151544B83426846D7C6 /* Pod */, - CB2560DA7CCC3101486756A9B03D0507 /* Support Files */, - ); - name = UMTaskManagerInterface; - path = "../../node_modules/unimodules-task-manager-interface/ios"; - sourceTree = ""; - }; 642308BABD7DF51F6469BDAA7086F840 /* JitsiMeetSDK */ = { isa = PBXGroup; children = ( @@ -8874,23 +8344,14 @@ path = JitsiMeetSDK; sourceTree = ""; }; - 645418A73AC0ABE6C27BB7862723715F /* Support Files */ = { + 652CA6BFA1D8484CA993DFA32E44B1A1 /* React */ = { isa = PBXGroup; children = ( - B122FC4EA0744A09698D6C39F3BC9CD9 /* react-native-document-picker.xcconfig */, - 5E625706D264318EE4B3D85897654253 /* react-native-document-picker-dummy.m */, - F08480B58F3B3DBDAF9910B429EC7D23 /* react-native-document-picker-prefix.pch */, + 599F37BE324D2165B71B0309C2765FC9 /* Pod */, + FC8CB42543B8AAB6DB6BCB44A8324BF1 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-document-picker"; - sourceTree = ""; - }; - 64DFE11D862BB87E1E7B52C8A5DC8504 /* RCTSettingsHeaders */ = { - isa = PBXGroup; - children = ( - 177F7E8D528169E7CCDB2AAF9E885D56 /* RCTSettingsManager.h */, - ); - name = RCTSettingsHeaders; + name = React; + path = "../../node_modules/react-native"; sourceTree = ""; }; 654F21F543F956F4DAC287ECAF47A07A /* Support Files */ = { @@ -8904,88 +8365,54 @@ path = "../Target Support Files/SDWebImage"; sourceTree = ""; }; - 66DD84E852CDC9EA545387FF5C7A3B21 /* Pod */ = { + 65C092509AB3160B74D81E849D1E48F2 /* Pod */ = { isa = PBXGroup; children = ( - 0507E0063A965F60FBB63FCB8E0CAE63 /* FBLazyVector.podspec */, + 2E4358AA31F04F7E98758851A3B23137 /* Yoga.podspec */, ); name = Pod; sourceTree = ""; }; - 66F122FC511DE4425D9F73B6C3EE15C6 /* EXAppLoaderProvider */ = { + 66524E121E9678338594A0A185E103E6 /* UMReactNativeAdapter */ = { isa = PBXGroup; children = ( - BA2DEA4A7585625DC467AD048303D374 /* EXAppLoaderProvider.h */, - ADE1C95FE8B65275E010F0693DB4180A /* EXAppLoaderProvider.m */, - 7875EB6ECC5A9B70BC12F7C8AFEAF802 /* Interfaces */, - 1B1F7AE8102817BBE9BCADA74BA600BA /* Pod */, - B7E1A687F8C6E648DCE171D4323EEF9D /* Support Files */, + D6D5927AF267515C77C90FFAAA11F663 /* UMBridgeModule.h */, + C6001D3B2A54270C452614A0C3638FD6 /* Pod */, + D9BEDAFAC222C1B71F6644A4BA1B9DEA /* Services */, + 732CF9E49F31813C04BC03A8FB54D4A6 /* Support Files */, + 42E621BBE5564E7E803726656856E2ED /* UMModuleRegistryAdapter */, + 66BF011275801B69A83EABBAA6051D6C /* UMNativeModulesProxy */, + 7D4A0F12DA35C361343DC637FBC44152 /* UMViewManagerAdapter */, ); - name = EXAppLoaderProvider; - path = "../../node_modules/expo-app-loader-provider/ios"; + name = UMReactNativeAdapter; + path = "../../node_modules/@unimodules/react-native-adapter/ios"; sourceTree = ""; }; - 6723243CB1C6123E0AF38C65D26BF060 /* Pod */ = { + 66AD9D645332E83295CE79FF61595097 /* Pod */ = { isa = PBXGroup; children = ( - 9ECC6C54EEDEA7CD3D108213818E0EE3 /* UMCore.podspec */, + 6A95733BC6CAA935AAFFEAA102274897 /* React-RCTAnimation.podspec */, ); name = Pod; sourceTree = ""; }; - 672A329569D3733046D6E08C1C63120D /* Support Files */ = { + 66BF011275801B69A83EABBAA6051D6C /* UMNativeModulesProxy */ = { isa = PBXGroup; children = ( - DD0D00FE3327C2F3AAF31DF2E62C48BF /* React-RCTImage.xcconfig */, - 3BC3FF44FD0DECA39B6AE17973A40385 /* React-RCTImage-dummy.m */, - F7CB85937E8AFA7849EE34E3D3030DEE /* React-RCTImage-prefix.pch */, + 375519D93ECF9CF39780B72B9BF6F8F9 /* UMNativeModulesProxy.h */, + 0D84FDC058A1FD39DBDD29372DB782E3 /* UMNativeModulesProxy.m */, + ); + name = UMNativeModulesProxy; + path = UMReactNativeAdapter/UMNativeModulesProxy; + sourceTree = ""; + }; + 66C3F4E0771AE643F3CCFE0C2D686219 /* Support Files */ = { + isa = PBXGroup; + children = ( + 60A29590279765D116F9A5A784729A4D /* UMPermissionsInterface.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; - sourceTree = ""; - }; - 676A04E52EC5F587CD67A935E3104E00 /* Drivers */ = { - isa = PBXGroup; - children = ( - 79C60F5059736B2C4690D774D98E0F4D /* RCTAnimationDriver.h */, - CE184E2EA75C75D6E19C3620720A22B1 /* RCTDecayAnimation.h */, - 43133926B9CE9A5AB1D5AF4BD6A29544 /* RCTEventAnimation.h */, - 8BCBB6D696BAB769CBBEF5A27053176F /* RCTFrameAnimation.h */, - 01C6389F9925C66D3B6ED1AA58A3810D /* RCTSpringAnimation.h */, - ); - name = Drivers; - path = Libraries/NativeAnimation/Drivers; - sourceTree = ""; - }; - 677A823FA70FFA7A8231D3E8A7C93F6C /* converters */ = { - isa = PBXGroup; - children = ( - 6B10B3067584B8DE82EFD03A553B952C /* RCTConvert+UIBackgroundFetchResult.h */, - 482F5F5913C7CE680229B17501F62F19 /* RCTConvert+UIBackgroundFetchResult.m */, - ); - name = converters; - path = RNFirebase/converters; - sourceTree = ""; - }; - 6785A6D4C4A097C2D8708376D36D87FD /* TextInput */ = { - isa = PBXGroup; - children = ( - 57503E4B94E8B26EEFA730102E290966 /* RCTBackedTextInputDelegate.h */, - 4E7AC849DB321BA7905B3592CFCD745C /* RCTBackedTextInputDelegateAdapter.h */, - 1B0ED25D98142E212137CC0286881F80 /* RCTBackedTextInputViewProtocol.h */, - 16D652425529A0E5F7AF73A5B22C545C /* RCTBaseTextInputShadowView.h */, - 9F7D1BC5637F5854846BA58FDB7D0369 /* RCTBaseTextInputView.h */, - C967157D298B7BACB2B943C8DB8CFC5F /* RCTBaseTextInputViewManager.h */, - 8903713160BBADFA4ACAC276057D4B5C /* RCTInputAccessoryShadowView.h */, - 953D86414D1C162F750E54AC5F01BF20 /* RCTInputAccessoryView.h */, - 2D767267E6C3C9289E8D7F0FCE6A7EBA /* RCTInputAccessoryViewContent.h */, - 57800479DF81CC4341AF8C74CAA41B87 /* RCTInputAccessoryViewManager.h */, - 9403DAE180262FDB327C26226C15441E /* RCTTextSelection.h */, - A5A1288549560AA41E14592080932E68 /* Multiline */, - 30995E6C69786CA56B5F5E8DCA3E6185 /* Singleline */, - ); - name = TextInput; - path = Libraries/Text/TextInput; + path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; sourceTree = ""; }; 6797B7A25E0298E4F4B21C545C6D2ED7 /* Pods-ShareRocketChatRN */ = { @@ -9002,63 +8429,86 @@ path = "Target Support Files/Pods-ShareRocketChatRN"; sourceTree = ""; }; - 6900006C392DE2AC1A394608EA8A5460 /* UMFaceDetectorInterface */ = { + 67EC0F389B1FDA4D7F0EE0CDDE3A9B12 /* React-RCTVibration */ = { isa = PBXGroup; children = ( - 11C06CDD52C8193A3542A4C2FAA632FA /* UMFaceDetectorManager.h */, - EBC54ECFF8601AC96927D4ED2FA737DC /* UMFaceDetectorManagerProvider.h */, - 299C8496E1AF6A6D037DEDD8A119621B /* Pod */, - 006F923B9C1ED692E748A1DAF3603F47 /* Support Files */, + F3931D28AA076A31C49BC2F3020B0733 /* RCTVibration.m */, + EF06B98637154181EC86FE652C4FA1BF /* Pod */, + 35013D174F5D04E5571D2D9AB5E3E114 /* Support Files */, ); - name = UMFaceDetectorInterface; - path = "../../node_modules/unimodules-face-detector-interface/ios"; + name = "React-RCTVibration"; + path = "../../node_modules/react-native/Libraries/Vibration"; sourceTree = ""; }; - 6B1E133F8300C78AEF11AB09386D4115 /* Support Files */ = { + 6864C4323B332927C25C81D363DFC6F0 /* admob */ = { isa = PBXGroup; children = ( - 296A20E14601F3E7D22ABE1C5586BF9A /* React-RCTLinking.xcconfig */, - 228ACBF4C61B3139FDBA24DCD0A952FB /* React-RCTLinking-dummy.m */, - 21C333073A806035B32E7EC3D796FED8 /* React-RCTLinking-prefix.pch */, + 53CCF119E6E87F4352F1C3330BC95C59 /* BannerComponent.h */, + 77EB216CA8013141E8A00A4CFB2BCDA3 /* BannerComponent.m */, + 4F0C01DFBB5346F4FE6D03839E067D94 /* NativeExpressComponent.h */, + 9D97FFC28C9414B95D589399763961D4 /* NativeExpressComponent.m */, + BD5288BA61AC1F0A50A3CB5E7F211A76 /* RNFirebaseAdMob.h */, + A70694F5A4C5B5EF87E255F6DA6125A9 /* RNFirebaseAdMob.m */, + 685F76DE22F8EBD774E3CB935D8B507E /* RNFirebaseAdMobBannerManager.h */, + DA2862C764DC067202223164258F2549 /* RNFirebaseAdMobBannerManager.m */, + D253F0093B088DDC3E1FAF79F9E53D45 /* RNFirebaseAdMobInterstitial.h */, + F19DEDB8616807263EC79EBEC423846C /* RNFirebaseAdMobInterstitial.m */, + B8D5E9FDB2234F0FAF6B2E0983778CD6 /* RNFirebaseAdMobNativeExpressManager.h */, + 167A459272622EAFCCF5329E8083961A /* RNFirebaseAdMobNativeExpressManager.m */, + 218D325ED6F9CF50D150F81EC9121080 /* RNFirebaseAdMobRewardedVideo.h */, + FBE5378C09BFC55CD82F6C17426AE8F3 /* RNFirebaseAdMobRewardedVideo.m */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; + name = admob; + path = RNFirebase/admob; sourceTree = ""; }; - 6BFC193DCD932F9F0F5BF07CFB738B2C /* rn-fetch-blob */ = { + 68B113FC9C0EB87DF386554BD03D2038 /* bugsnag-cocoa */ = { isa = PBXGroup; children = ( - AA98C5F806487077902557FEF8BFC2B0 /* IOS7Polyfill.h */, - EFBEEEFBB317877C7D23308BD86DFF4A /* RNFetchBlobConst.h */, - 319BA8E6EE102A4442F9C0B07E458DD7 /* RNFetchBlobConst.m */, - 97DBE660F21AC0B114EB6A66C5D55B69 /* RNFetchBlobFS.h */, - 6169139BECDBAD5C231CA4500A251CB1 /* RNFetchBlobFS.m */, - 87FE4E820C2F27FD3534654C720D61E4 /* RNFetchBlobNetwork.h */, - 07606EAE56E2BCC291F151955A1514E3 /* RNFetchBlobNetwork.m */, - B9F64D87ABFA34CCA549E3A416E0072A /* RNFetchBlobProgress.h */, - 02EB98B0AADF3F35964113C1CF40B06C /* RNFetchBlobProgress.m */, - E4134546CFE760F7541AF4F3851E901B /* RNFetchBlobReqBuilder.h */, - A2A7BB45B73D0CDF7F6AA6C39F0519E7 /* RNFetchBlobReqBuilder.m */, - B4A2DA4C50EB3E93FC75D09645928547 /* RNFetchBlobRequest.h */, - 32B13DD5CC6DB74653E5F79A53392B57 /* RNFetchBlobRequest.m */, - 1FDD80D4F770190C190D8A17C7EDD9AD /* Pod */, - 703A724A5D70E5A8E22FEF577EB8CD49 /* RNFetchBlob */, - 029F22D598F6626F524FE9EF1ECE5413 /* Support Files */, + AE0AFADC1249F540DDC71B19D65D0334 /* Source */, ); - name = "rn-fetch-blob"; - path = "../../node_modules/rn-fetch-blob"; + name = "bugsnag-cocoa"; + path = "bugsnag-cocoa"; sourceTree = ""; }; - 6CECA841451AE86AE3316FF49F0CDA70 /* Text */ = { + 696E1E15370051EEE34FD44A0DB41574 /* Protocols */ = { isa = PBXGroup; children = ( - 825C0199C9B5A3ACAE901CFECD6DAD79 /* NSTextStorage+FontScaling.m */, - 127F387056C0FAACF9FCC1377EB445FE /* RCTTextShadowView.m */, - 86CD21A2EF51923225C679934ABD125F /* RCTTextView.m */, - 70E0E6A82E05308737F98EC583DED5A4 /* RCTTextViewManager.m */, + 37FAF41B1B290E8EAE555F939966E563 /* UMAppLifecycleListener.h */, + 1B46C473A86E2ED7BF76C7AC7E5BB383 /* UMAppLifecycleService.h */, + A731CFCEDA268A9E7D5B827BCA3528E8 /* UMEventEmitter.h */, + 2BC0D218879DC2E4C7EF682C9A6CC58F /* UMEventEmitterService.h */, + F01E326CCE406D2A49E4A10396547317 /* UMInternalModule.h */, + 1C172FCA6DEEE2C4CA566912D635CF84 /* UMJavaScriptContextProvider.h */, + A43B34C48897A6C0958D0D49568F9AB2 /* UMKernelService.h */, + C00F6ABD26FA24AC01558D1555972C93 /* UMLogHandler.h */, + E3C1EE15A8B761F2506CEEB138AB56FF /* UMModuleRegistryConsumer.h */, + BD77FDB21D05219BDE06CA6527AD066C /* UMUIManager.h */, + 248035685EB19D1B3F5667BF8645BED5 /* UMUtilitiesInterface.h */, ); - name = Text; - path = Text; + name = Protocols; + path = UMCore/Protocols; + sourceTree = ""; + }; + 6C520778F34C82058DA983FD5B4D9637 /* TextInput */ = { + isa = PBXGroup; + children = ( + C59BAEC2A7827C2B428990AD6BB07A31 /* RCTBackedTextInputDelegate.h */, + DCF6C088310EEF30275C9C3B4DBC9F25 /* RCTBackedTextInputDelegateAdapter.h */, + FBD195C1C123E5DA826A6272C83A7D4B /* RCTBackedTextInputViewProtocol.h */, + B8D6A01971F78DEFE0CD090570F95BAE /* RCTBaseTextInputShadowView.h */, + 89167B14F836AA4BBAEEE438D34AF41E /* RCTBaseTextInputView.h */, + FF7A4EF0C373D5139F2F1CBB88FC71CC /* RCTBaseTextInputViewManager.h */, + FDA5B7A03641BA8B2DBE29A614E7770D /* RCTInputAccessoryShadowView.h */, + C238953E538AED81F3041EF99B90B69C /* RCTInputAccessoryView.h */, + BF7C8D82374ED918C8F4EC3C2D81AC16 /* RCTInputAccessoryViewContent.h */, + 30D4989713F879DD1DB017EFC27AC2E5 /* RCTInputAccessoryViewManager.h */, + BB32D49DA0AECFC80F73D73ECAB81A6F /* RCTTextSelection.h */, + 2689784321CA535F8759E8AB1741ECE8 /* Multiline */, + 8B5F55D483D67D5673C44540DC51C6D8 /* Singleline */, + ); + name = TextInput; + path = Libraries/Text/TextInput; sourceTree = ""; }; 6FA9136E1DBFC8D09F8D9DC92421A62B /* MethodSwizzler */ = { @@ -9071,17 +8521,6 @@ name = MethodSwizzler; sourceTree = ""; }; - 6FE5958D9829663D9D2E0CF8FBAA5EBD /* Support Files */ = { - isa = PBXGroup; - children = ( - A7BB785FB65867995104BFDE8A4147C4 /* React-jsinspector.xcconfig */, - 027E90B2E827C026B2F0237B4E501353 /* React-jsinspector-dummy.m */, - D2FAFDD2278AD0DB7E73BC0FB553E1C6 /* React-jsinspector-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; - sourceTree = ""; - }; 7008768CAB0F167E6274133D45D6011F /* FirebaseInstanceID */ = { isa = PBXGroup; children = ( @@ -9155,64 +8594,14 @@ path = FirebaseInstanceID; sourceTree = ""; }; - 703A724A5D70E5A8E22FEF577EB8CD49 /* RNFetchBlob */ = { + 702ADC08C7D8F6A755B62662349B67C9 /* RawText */ = { isa = PBXGroup; children = ( - 62C301B2DF66A5F2B36EF82088C1F6B7 /* RNFetchBlob.h */, - 6F8DE0EB9FAB472116E359796DF26409 /* RNFetchBlob.m */, + 09AE6C4847EC41611B376E9BB177F772 /* RCTRawTextShadowView.m */, + ADD9F6420889E1B436C90B5D1917C8BC /* RCTRawTextViewManager.m */, ); - name = RNFetchBlob; - path = ios/RNFetchBlob; - sourceTree = ""; - }; - 70468299414AEED80A5DBF9017D8EC06 /* React-jsi */ = { - isa = PBXGroup; - children = ( - 2F403813AE91E14E70E2B256877F2CE5 /* JSCRuntime.cpp */, - A65940BB455BB0B0FEC9FD931DB65BC1 /* JSCRuntime.h */, - 09BBFB279FB49C8EFECC3199AA82A619 /* jsi */, - 548D2E31192B779DFA69CE59E47A50CC /* Pod */, - 7E7FA0AA92756D4F379ED6FDB32D2E4B /* Support Files */, - ); - name = "React-jsi"; - path = "../../node_modules/react-native/ReactCommon/jsi"; - sourceTree = ""; - }; - 7067043B208B2B556C580DE6D4F0F6DD /* Yoga */ = { - isa = PBXGroup; - children = ( - C60382D8D327473E4F9CE109EB1A133A /* Bitfield.h */, - 742A92EE848D74948FA6B9485B1C5403 /* CompactValue.h */, - 55D89B433C776C791AB49FF99A50B87B /* log.cpp */, - 85A2D2CDB198F6E1DC78A7F466446B78 /* log.h */, - D4C2FEABDB84EEA3D5D959A81F784F46 /* Utils.cpp */, - E6B8BE17F389E0AE36CADB9F93E4AF06 /* Utils.h */, - 34ECA820CADF5DC6E239E8E6A7EE7ED1 /* YGConfig.cpp */, - 537BCF82C764E02CEEA8BACB4A571B39 /* YGConfig.h */, - 94689D6A6B23AAEB03D438145268A39C /* YGEnums.cpp */, - 40AEE707C2D2034774762F300868A896 /* YGEnums.h */, - DF951CC9A59E82FD8FD3175E18C167BF /* YGFloatOptional.h */, - F78EDE334FDF15AAC3EA98A0098351E3 /* YGLayout.cpp */, - F20519740F9C43E31D42ED4F436B4CCA /* YGLayout.h */, - 7F00F179EFD0639C9B5A8ADEAF2AD4D0 /* YGMacros.h */, - 51FB5172CB4BB836A939DA025689FF74 /* YGNode.cpp */, - AC0664B9365BE04B8AE775DB05D4AD51 /* YGNode.h */, - 3DFB06F347C4F0EB3F206AA4081DC816 /* YGNodePrint.cpp */, - 7A54BE3B7E806D34C37EA1D6A686B30C /* YGNodePrint.h */, - 9324718CF27D69D845A5D6D46FCE7135 /* YGStyle.cpp */, - ADA2C087A342C31E5A1102FCFFBB8D7D /* YGStyle.h */, - 4C2671E96FBDB6EB09DF61C9345F9024 /* YGValue.cpp */, - 9AA2C71CBE523653ED8626C586538CA3 /* YGValue.h */, - 968B64357D7E84B201F9354C7B41A488 /* Yoga.cpp */, - 53637AACE7B69880126FF29ED486EBC4 /* Yoga.h */, - 78C3881A9847D8F7C438ABDF1A993A46 /* Yoga-internal.h */, - 14B3049319576BC5760FDF736720D0A7 /* event */, - 18EA769F5869EEACD7D59DA604F43162 /* internal */, - 33602C1065E3EBDD8C44C1043B4D9916 /* Pod */, - 5EB125123D239804553E615128F88EE2 /* Support Files */, - ); - name = Yoga; - path = "../../node_modules/react-native/ReactCommon/yoga"; + name = RawText; + path = RawText; sourceTree = ""; }; 70E0F91EC56BA02DB752464E7D4A0434 /* Support Files */ = { @@ -9224,25 +8613,44 @@ path = "../Target Support Files/JitsiMeetSDK"; sourceTree = ""; }; - 713DFA2F8F7ABE011F0551080AB53B2C /* RCTAnimationHeaders */ = { + 7154D5B0CED37CA14A8CB41D2143C983 /* UMFaceDetectorInterface */ = { isa = PBXGroup; children = ( - E40CB03180633460FF63486832E00806 /* RCTAnimationUtils.h */, - 3F2837544E174A1A515B0B38FE98EFDD /* RCTNativeAnimatedModule.h */, - 2B057CCEC1B0705DFEC4572AADF77972 /* RCTNativeAnimatedNodesManager.h */, - 676A04E52EC5F587CD67A935E3104E00 /* Drivers */, - F821A03CB5EDF48D9D1EE9D5358C8A54 /* Nodes */, + 9990343D83C89804B084FE4F87C99DF2 /* UMFaceDetectorManager.h */, + D25FF2A1A7108DACA8AE84999769A5AD /* UMFaceDetectorManagerProvider.h */, + C5CE554627B54A2CD09898FF37451579 /* Pod */, + 421441F53CABC916EB976DA993030A58 /* Support Files */, ); - name = RCTAnimationHeaders; + name = UMFaceDetectorInterface; + path = "../../node_modules/unimodules-face-detector-interface/ios"; sourceTree = ""; }; - 72198C223968F896CA65ED13BF2A4AD2 /* Support Files */ = { + 71A0E37D26DC03196CB73301CFC8CF81 /* Pod */ = { isa = PBXGroup; children = ( - E111D53FF09A9CC77C5D9CE0C0F28263 /* UMConstantsInterface.xcconfig */, + 0F186F37C21F554742D1737B8D1F6269 /* LICENSE */, + 6667C3035E82ECC130BEF6F3F8C575A9 /* react-native-video.podspec */, + 3ECA891608B867CCA5696895C4EC818E /* README.md */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; + name = Pod; + sourceTree = ""; + }; + 71EDA3F95823B04B363B0CF511FCE957 /* Pod */ = { + isa = PBXGroup; + children = ( + 9CBE4EAC0CAF4536219D4D9A0BD73FF0 /* UMImageLoaderInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 72C72B4B3E4608B05E8EC107494555BB /* crashlytics */ = { + isa = PBXGroup; + children = ( + 0D3283319DCE73232B5789FE6261D8B0 /* RNFirebaseCrashlytics.h */, + DFD1497E7A315817235A43F4C5B958F8 /* RNFirebaseCrashlytics.m */, + ); + name = crashlytics; + path = crashlytics; sourceTree = ""; }; 72DC33E2DD160F8A6F6F58AB06557CC2 /* CoreOnly */ = { @@ -9253,60 +8661,157 @@ name = CoreOnly; sourceTree = ""; }; - 731D0C554DA684254381A146BC3498BD /* Pod */ = { + 73027A6C9F29B1EFC1B482DBAEFF5FBE /* Pod */ = { isa = PBXGroup; children = ( - 1D45DBAD6812425C48A926E0267DA496 /* LICENSE */, - 75FF54E5B0DC14BA16D8322F7B9C21CE /* README.md */, - C9B0CD9BF00D66ABC8476B8206A847D7 /* RNDeviceInfo.podspec */, + E83BC0869C332952905502DB320B10F1 /* LICENSE */, + EC73666E50DF41FAD73DDF692BD34931 /* README.md */, + D2EF1493FE19EF6E9A7C6F8A066868DC /* rn-extensions-share.podspec */, ); name = Pod; sourceTree = ""; }; - 74AC54C23E4951C680C4CCBD9F0848CA /* Recording */ = { + 732CF9E49F31813C04BC03A8FB54D4A6 /* Support Files */ = { isa = PBXGroup; children = ( - AE54F2C86D4013737C652A8E18F3055E /* BSG_KSCrash.h */, - DC91FC415BF07278BB1143F82FC4B0A1 /* BSG_KSCrash.m */, - BACF7CE86AA3834C40620D43ADB7DEA0 /* BSG_KSCrashAdvanced.h */, - 49FA8818599D445027EB04C586A2A6A2 /* BSG_KSCrashC.c */, - 7F036D0156AB01DEF40395A30C70D2E8 /* BSG_KSCrashC.h */, - 445AC29FAF9E4FBCA3A1FD7ADB84CDCC /* BSG_KSCrashContext.h */, - 1E697EBFC2737E291BF40BD6E0D7E8A7 /* BSG_KSCrashDoctor.h */, - 1387D56A39A6850461E4237DCADF1B3F /* BSG_KSCrashDoctor.m */, - 7881AB572723816FECF3BBB4611C82D6 /* BSG_KSCrashReport.c */, - C8E67417E99A03C5E1CB973129A8A8E3 /* BSG_KSCrashReport.h */, - 554416244A08CCECBC8C85B538B91F55 /* BSG_KSCrashReportFields.h */, - 71E6C930EB56FE5AAC7EDC2DC1A9450C /* BSG_KSCrashReportStore.h */, - 4A519B2E5792F950F4DF2818EE05EE72 /* BSG_KSCrashReportStore.m */, - C2CB9B684BA15EBE98EA0A7EE838582C /* BSG_KSCrashReportVersion.h */, - 173619ADB7B2575BA37B739444CAD2DD /* BSG_KSCrashState.h */, - 9CD5BDE2BC7D38A713D9334E31C56E76 /* BSG_KSCrashState.m */, - 41491B4CFEE4E88898218256C9B31149 /* BSG_KSCrashType.c */, - 59DA515EE96F2A4DA4C0540FFE15C202 /* BSG_KSCrashType.h */, - 67B31535CD50D93E43613FCA0AAD0E71 /* BSG_KSSystemCapabilities.h */, - A14180910E915E983B9C77BB7D5E0431 /* BSG_KSSystemInfo.h */, - 22494F499DD32CF3BF4B910D98AC1597 /* BSG_KSSystemInfo.m */, - 4AADD0595A7995C25B6508F95D287B69 /* BSG_KSSystemInfoC.h */, - CAFAA5419E0451574CA50947377F1BA3 /* Sentry */, - 89374F3CC708EADAD5FAA3EE7AB2FC53 /* Tools */, + FA475548DB7784D97888AD13A8068EB4 /* UMReactNativeAdapter.xcconfig */, + 935271ED504C7B694762B790EAA3118E /* UMReactNativeAdapter-dummy.m */, + 68293502B264E8E1FD86B607C8D0D6ED /* UMReactNativeAdapter-prefix.pch */, ); - name = Recording; - path = Recording; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; sourceTree = ""; }; - 7511F658E9D9822EBB0BD4DC87578DE3 /* SurfaceHostingView */ = { + 738048688FCAFD0EA62436788E5E7837 /* Support Files */ = { isa = PBXGroup; children = ( - 7B23FD9B97F21045C669537FEAE2E29D /* RCTSurfaceHostingProxyRootView.h */, - E6A82EFE71F698F08729D8A48A8A18CC /* RCTSurfaceHostingProxyRootView.mm */, - FBCEB86ACF30D93C1CD0A10909E39995 /* RCTSurfaceHostingView.h */, - 430460805DAF79AB9221E24E244100CB /* RCTSurfaceHostingView.mm */, - E25537F9C2DA789257326F6E34715758 /* RCTSurfaceSizeMeasureMode.h */, - 4C086AD28B3624797C21A2EF1D15B1AB /* RCTSurfaceSizeMeasureMode.mm */, + E5DDEE85626A84F58AE2152550825C8C /* react-native-background-timer.xcconfig */, + C7082E79F2AAB8C5DFA3C141991F6634 /* react-native-background-timer-dummy.m */, + 08841FEBCCCD7B53C2C5F5C132BD14AC /* react-native-background-timer-prefix.pch */, ); - name = SurfaceHostingView; - path = SurfaceHostingView; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-background-timer"; + sourceTree = ""; + }; + 739BD686758B611709E4C1AF386FDA57 /* config */ = { + isa = PBXGroup; + children = ( + 9E84953AFE58B0FC4F1D4094F3814DFE /* RNFirebaseRemoteConfig.h */, + 8DC2FD8AE0197E4115A8D2A9B5EDB31A /* RNFirebaseRemoteConfig.m */, + ); + name = config; + path = RNFirebase/config; + sourceTree = ""; + }; + 74188A75CF81A30680D73217BC5D4673 /* CxxUtils */ = { + isa = PBXGroup; + children = ( + 0369E1124555667E8646DBBF07490844 /* RCTFollyConvert.h */, + 114C34D8834697823FC79812526E14AA /* RCTFollyConvert.mm */, + ); + name = CxxUtils; + path = React/CxxUtils; + sourceTree = ""; + }; + 74E61173E0B9CFE8096A159C4BF441F8 /* Support Files */ = { + isa = PBXGroup; + children = ( + F09F743D5423F2EE9A21918914DA08A1 /* ReactCommon.xcconfig */, + 621E16A73348549B7BE9353D22D6702D /* ReactCommon-dummy.m */, + FB99261DB69C1EB7B6545302C1CE6A4B /* ReactCommon-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/ReactCommon"; + sourceTree = ""; + }; + 75214B5EE7CF498F5C34DE3C1CB9328F /* Modules */ = { + isa = PBXGroup; + children = ( + 0472AFFAD011F413CCDA441B58E96DA6 /* RCTAccessibilityManager.h */, + 3221FE00A1602F823985FCD2723820CD /* RCTAccessibilityManager.m */, + 0C652809A4EF604F7132378D11C07B20 /* RCTAlertManager.h */, + F1A97663093C451E51C1285AFBDD4177 /* RCTAlertManager.m */, + 909A3B046942A94D6876AE056EA198D4 /* RCTAppState.h */, + BD28E838ADCCC65E5CCD3E96ED69CA63 /* RCTAppState.m */, + DA2E1D5D2151B6E028039E086377861B /* RCTAsyncLocalStorage.h */, + FDEE1AD8F9E20C171936D9D4FFBA1EE7 /* RCTAsyncLocalStorage.m */, + E5AB4A66A2FE5D8764C6EE9096C72518 /* RCTClipboard.h */, + C92DE7A07F2E756DF5DFA76B0D7364C4 /* RCTClipboard.m */, + 622F4B1F83CB4C45EE4282F4ED21DAD6 /* RCTDeviceInfo.h */, + 6262EB2DC13516A6F27E6AE25484ED7D /* RCTDeviceInfo.m */, + AAA8325D11CF3749C94DEAE5C5085E3A /* RCTDevSettings.h */, + 9EDBD3BEDF444E97BA7E052508D06878 /* RCTDevSettings.mm */, + 469D5CECF9B14CB47C6628F2E5875A5E /* RCTEventEmitter.h */, + 0E4FF71DC060298C1BE098B79EBC07E3 /* RCTEventEmitter.m */, + C62974E05057B212D7CA11B18B225453 /* RCTI18nManager.h */, + 5EB4B1B4A9B45B1CE1D2C9A894199455 /* RCTI18nManager.m */, + 2AC301BADE666E324EBD0FA7B6B7250D /* RCTI18nUtil.h */, + 87E66F6A0C7DDAF93995ACACE4BCAF0B /* RCTI18nUtil.m */, + 734C761D4996E224062F7055DCD5AFE0 /* RCTKeyboardObserver.h */, + 08E1AD7FD4DC7B341AB680D19921759D /* RCTKeyboardObserver.m */, + 95AA6E8D48E806E9A46EFB3DF6644B7B /* RCTLayoutAnimation.h */, + F33097B3879E9851A14049D85599297A /* RCTLayoutAnimation.m */, + 3E0D53AE22348ACA5019E711B052F91D /* RCTLayoutAnimationGroup.h */, + 87BAE6CE5D53DA4379063B118627926B /* RCTLayoutAnimationGroup.m */, + C5E6C401811F8E8E72A347413A20E31D /* RCTRedBox.h */, + 740AFC452E3C0DA7FE00D399D41B3C8C /* RCTRedBox.m */, + F8EEB9B8F005A47C23DDF619994FD898 /* RCTRedBoxExtraDataViewController.h */, + E726FFE91602139913C1543A7328C450 /* RCTRedBoxExtraDataViewController.m */, + 7FF84AB54A8F38ECC2DFB2FEDAEB68B0 /* RCTSourceCode.h */, + 80F397D34E7300F8F00F22CAB82A16DC /* RCTSourceCode.m */, + AF5B943A302C58530D06308B3737FD7A /* RCTStatusBarManager.h */, + 79EC6F19D4A58C5FB85C74142CA592BD /* RCTStatusBarManager.m */, + BA6E072D1A8B997D42A8ABA653B90133 /* RCTSurfacePresenterStub.h */, + FEF802BF200B9669B9C5B9B36BE04EED /* RCTSurfacePresenterStub.m */, + 5A1314D1DC895111A69435BB4CBD9E5B /* RCTTiming.h */, + 4BD815B0A50F75539647B5A987D130B1 /* RCTTiming.m */, + 0B259E547F8F4BB2DB47673E43EAFD93 /* RCTUIManager.h */, + C19C1705E6E1858A1FAB0C46E6D5D455 /* RCTUIManager.m */, + 6FE5F5E7D3A709FEE7272B876262C3FA /* RCTUIManagerObserverCoordinator.h */, + 7AB55ECDCC1B343952FDF3AFD1C899C7 /* RCTUIManagerObserverCoordinator.mm */, + EBE1A045C51E644379FCA7BB5C1A8C10 /* RCTUIManagerUtils.h */, + B920945C9CA21605C5876FFBA385F645 /* RCTUIManagerUtils.m */, + ); + name = Modules; + path = React/Modules; + sourceTree = ""; + }; + 75D7BF0943BCCD94F5ED5FAAB8F334AB /* react-native-notifications */ = { + isa = PBXGroup; + children = ( + 362B34AF06E4DD3B78721CA41E49802C /* RCTConvert+RNNotifications.h */, + F12C31B209356772EBED28609068E257 /* RCTConvert+RNNotifications.m */, + 3168B94989DF6941033689BD8D948B62 /* RNBridgeModule.h */, + 6D415352E3499FA04B015C1827EB89DF /* RNBridgeModule.m */, + 32CFF873DF3097D76C880151012A947C /* RNCommandsHandler.h */, + 2CA6A199D7F1D517194CD33AA24C0DAA /* RNCommandsHandler.m */, + C4BBC310691D1955EABB6CCD8E2335E2 /* RNEventEmitter.h */, + 4AA6D5CB12274E3E0BAA73FEA0B758A7 /* RNEventEmitter.m */, + A2B4AA84FFEAB4694F7306618ED0D5A0 /* RNNotificationCenter.h */, + 64C97CACB57042717A809EDB0DF68C63 /* RNNotificationCenter.m */, + 49B53B91A0A095795C5B103601EC9091 /* RNNotificationCenterListener.h */, + 22F17609A13F48A6EF6EC0D3BC5F9A3A /* RNNotificationCenterListener.m */, + C635370BF7182A2F524F98FA6D49C2EE /* RNNotificationEventHandler.h */, + B03DACD4D293CA5E131B244DF380A361 /* RNNotificationEventHandler.m */, + 777557749740C00BBFF089B62E1ED923 /* RNNotificationParser.h */, + 3A60CAAA7F985AC2622D11572F1A620A /* RNNotificationParser.m */, + B5D0403AE234D3440422D93C4C145063 /* RNNotifications.h */, + 357C18207563DC20B8BEB0607FC45B0F /* RNNotifications.m */, + 1ECF4FB380846056FFCACC5105C7D2F4 /* RNNotificationsStore.h */, + ADACD95D8F6382B1FD9712DE89344E08 /* RNNotificationsStore.m */, + 00BF4BD90992B195EF34E8231C77E6F5 /* RNNotificationUtils.h */, + DAC88AD06AFBA35B7614B2892CE1862D /* RNNotificationUtils.m */, + 84E1B2FAA5D3B051039B96F0883057AF /* RNPushKit.h */, + E33DD9742BBB769FD756DB0981348B97 /* RNPushKit.m */, + D409D02ECC9D15E6DD381481625E516A /* RNPushKitEventHandler.h */, + 1BC4F1D594338B8E5BF253CE26E5C888 /* RNPushKitEventHandler.m */, + F3BEC0B48A4079D97A09C0489F762EAC /* RNPushKitEventListener.h */, + DE8CD113CD3693946B31BF3AFBA15182 /* RNPushKitEventListener.m */, + 04D7CD27DE251E443592FC86B4FD06E7 /* Pod */, + DE6C175B840E97AC554B85EB0D3EEEEA /* Support Files */, + ); + name = "react-native-notifications"; + path = "../../node_modules/react-native-notifications"; sourceTree = ""; }; 75DB45C6B0510FE4613A19E70F1D1396 /* AppDelegateSwizzler */ = { @@ -9321,16 +8826,6 @@ name = AppDelegateSwizzler; sourceTree = ""; }; - 7617A1253CD568BEDB771D9A99B1FD2F /* CxxUtils */ = { - isa = PBXGroup; - children = ( - CE5B075784AEE1B096BE275D46997AAB /* RCTFollyConvert.h */, - FD65C3B227D72A06B16ED2EC77829389 /* RCTFollyConvert.mm */, - ); - name = CxxUtils; - path = React/CxxUtils; - sourceTree = ""; - }; 76E0E28B015BF1F44B6530763D8C32DA /* Support Files */ = { isa = PBXGroup; children = ( @@ -9342,198 +8837,118 @@ path = "../Target Support Files/SDWebImageWebPCoder"; sourceTree = ""; }; - 777658E5419CD2B8C5890B5E9713CCE6 /* RCTImageHeaders */ = { + 77A9631D4B21E1B63F0DFA695AACF1D9 /* ScrollView */ = { isa = PBXGroup; children = ( - 39D600148B0622F57BF00226124D9863 /* RCTAnimatedImage.h */, - BD26490FA2CAB15D99BD6281A1B1B835 /* RCTGIFImageDecoder.h */, - 2BAA2F72DEB9C7595D3A84FCBBA90499 /* RCTImageBlurUtils.h */, - 44ABBEBEE6E8977D6CF1226A4CB6A441 /* RCTImageCache.h */, - D8634B303C42FE1F0F20D61F101838A9 /* RCTImageDataDecoder.h */, - 48704E60577AE17006594F5B1F082C1C /* RCTImageLoaderProtocol.h */, - 188C92AAE969C46B84D0CD680DD2685A /* RCTImageShadowView.h */, - 89EEE144AA5204E18491E0B0601AC14E /* RCTImageURLLoader.h */, - C9CB52510C7D90A4BC4CF734E58B1883 /* RCTImageUtils.h */, - 1C7CBE8CD8B2BC02B9CC12FE21915785 /* RCTImageView.h */, - 19E2084D7B2F1388EFCC66087F27FFB9 /* RCTImageViewManager.h */, - AA34700AB371739A85D388B6BF6BC458 /* RCTLocalAssetImageLoader.h */, - 5516973A0EC1C04480B65F7E92BC41F6 /* RCTResizeMode.h */, - 2402DF4004A29006C095344FDBB5F8E1 /* RCTUIImageViewAnimated.h */, + 44F9738EAD6E7B2FDBDFCBA059106659 /* RCTScrollableProtocol.h */, + 2331104210C979BABADA961D17D1043D /* RCTScrollContentShadowView.h */, + BA1FDDA89F369E09845E91BEE4980D7F /* RCTScrollContentShadowView.m */, + EF64F723099DEC0EB5B0C9F5CEAB3B19 /* RCTScrollContentView.h */, + 784032A5322B124C5B6599C68C0F8947 /* RCTScrollContentView.m */, + B5C5214D438E6FAA8D6D4D0BA99046C8 /* RCTScrollContentViewManager.h */, + A9C9398573E80F194501E6D5C00F72CA /* RCTScrollContentViewManager.m */, + 5BB6875849373E94B58E7EEE3A2B059C /* RCTScrollView.h */, + B828E567307694BEA54DFA798D446AEB /* RCTScrollView.m */, + 50DBDC3B06FB28E4840470D3EA068F97 /* RCTScrollViewManager.h */, + A88D44D3DDCF8BB3222BF681C0B7D646 /* RCTScrollViewManager.m */, ); - name = RCTImageHeaders; + name = ScrollView; + path = ScrollView; sourceTree = ""; }; - 7796F3B9C7AC831B8CDDDEDB7EBABBD0 /* Nodes */ = { + 785AB03F08CFF048705F813A5BDE6820 /* React-RCTBlob */ = { isa = PBXGroup; children = ( - 8C8D4183E909DA22A6147D6C60865F71 /* RCTAdditionAnimatedNode.m */, - 2D442802319B1F8D0A4F9DA0DD9913D4 /* RCTAnimatedNode.m */, - 6E45909F5C1E58DA49BB0DE38600D556 /* RCTDiffClampAnimatedNode.m */, - EE953B05322E4D02384D64B041779BDD /* RCTDivisionAnimatedNode.m */, - 1C0CC488EE9992AD9534F5B0BB17370A /* RCTInterpolationAnimatedNode.m */, - C32D9BF00B81642F8B3EA21697B0DC90 /* RCTModuloAnimatedNode.m */, - 64EABEC938C8AA96DE5E65F520038E76 /* RCTMultiplicationAnimatedNode.m */, - 2E468E891956098D77140209010E109C /* RCTPropsAnimatedNode.m */, - 9E269F92C3C3C4CEC5150A13C19005B0 /* RCTStyleAnimatedNode.m */, - FBDF54AB36E916C0E7E342966515E1DF /* RCTSubtractionAnimatedNode.m */, - 7F3E0A3E9EA744F62A7C5F61819FDD96 /* RCTTrackingAnimatedNode.m */, - 25AF770AB277B214C5369BD1B885C749 /* RCTTransformAnimatedNode.m */, - 88CBF104300986618FEB745D95C32C89 /* RCTValueAnimatedNode.m */, + 8DD947A0E27F8395DC1DA31CA86A8547 /* RCTBlobCollector.h */, + 5803F4041283462B899282457DE9535F /* RCTBlobCollector.mm */, + 570C0007299E9E1EA2C8D258775A0AFE /* RCTBlobManager.mm */, + 77D6BC9496CBB29DC41F919B1A14940B /* RCTFileReaderModule.m */, + F8B2BED2EA17302214F17E0E40626F21 /* Pod */, + 326DB36CE8B2997E670F1036291F2F97 /* Support Files */, ); - name = Nodes; - path = Nodes; + name = "React-RCTBlob"; + path = "../../node_modules/react-native/Libraries/Blob"; sourceTree = ""; }; - 78432FA3249A1F15614DFC66C44AAA13 /* RawText */ = { + 78E390A3A596C0388CE10D8A09C812EB /* Support Files */ = { isa = PBXGroup; children = ( - 6E719086B586CDE0755B188BD6779394 /* RCTRawTextShadowView.m */, - 04E93D198A1F9F729BCBECFD6D9DB95B /* RCTRawTextViewManager.m */, - ); - name = RawText; - path = RawText; - sourceTree = ""; - }; - 786172CCB0A814F9B6231758640FFBA2 /* RCTActionSheetHeaders */ = { - isa = PBXGroup; - children = ( - D840A641681843914893876836B4FA96 /* RCTActionSheetManager.h */, - ); - name = RCTActionSheetHeaders; - sourceTree = ""; - }; - 7875EB6ECC5A9B70BC12F7C8AFEAF802 /* Interfaces */ = { - isa = PBXGroup; - children = ( - CDD1C880EA4AA2B057D5D718DE4E0F6D /* EXAppLoaderInterface.h */, - 7A046053DC23E314AC96EEE6A81A1C65 /* EXAppRecordInterface.h */, - ); - name = Interfaces; - path = EXAppLoaderProvider/Interfaces; - sourceTree = ""; - }; - 78DA69CCB675798DE173E67B97A0C3E5 /* RNFirebase */ = { - isa = PBXGroup; - children = ( - B33FEFD08F37A550E2C635EF0D79B7F5 /* RNFirebase.h */, - 6A930245709E661D2CDD24B81677B480 /* RNFirebase.m */, - CB3FD3DDA303CB0BB46A273621F0A894 /* RNFirebaseEvents.h */, - 96416B1B39BF76921AEC20D59B06D88A /* RNFirebaseUtil.h */, - 29749DC7DC277DE1ADE9926B431F8D38 /* RNFirebaseUtil.m */, - 63814B842C73AAD2D360DDEDBFD177D2 /* admob */, - 801E60B241DDC5BF6F804A399D26C2AA /* analytics */, - 4E6181F2138CDF609DFCCA308D1CF7FD /* auth */, - 1ECCFE94ECFC3A2F46204B2C8DB43DDA /* config */, - 677A823FA70FFA7A8231D3E8A7C93F6C /* converters */, - 7AC180D31FD868E092FAC18BD742BCD8 /* database */, - 08F865014DE672CC3938961D4013D50A /* fabric */, - 9ECEC25B758C6FFFEB38E4566D29FDA1 /* firestore */, - DB50E7C21ADEBB0DF0EE318D4196CCE0 /* functions */, - 09466073752E525852CBDAACF5D70454 /* instanceid */, - 628D3C2A7035B570757BAEE20DFAACF2 /* links */, - 84D7A012A6FBE2BC9C4169CBAB68ED72 /* messaging */, - 093E2B1307EE21C7E79B992164D95748 /* notifications */, - 08E6BC08320659F8C78F76D95CAF676F /* perf */, - 622AB53C3F25008C5ACB23AA781D5ED5 /* Pod */, - 5F1A9E856E26A0280584F985D0EDCA30 /* storage */, - 0348C5A97EA3401AC307F30C3851E7C6 /* Support Files */, - ); - name = RNFirebase; - path = "../../node_modules/react-native-firebase/ios"; - sourceTree = ""; - }; - 78DC78AA202FAEDB193B73D542082E0B /* Support Files */ = { - isa = PBXGroup; - children = ( - 6E7E7CF1B0AD8D1B8EAB8BEE8E681C40 /* RNAudio.xcconfig */, - 0B3D9F98247A67AB098FD041C45322B7 /* RNAudio-dummy.m */, - D6863EBF92CFD00404CABBBFAA83E752 /* RNAudio-prefix.pch */, + DF2DC0C44CE483ABD4F98B0E5F097840 /* RNImageCropPicker.xcconfig */, + 915233203EE7BF13D1BE60EB4BA67D61 /* RNImageCropPicker-dummy.m */, + FB5654D54283DA19B4F16F0BD22D0A3B /* RNImageCropPicker-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNAudio"; + path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; sourceTree = ""; }; - 78F799686334EF0B73E2B7866DB6396C /* Pod */ = { + 7A8964BD95CBEEEB59A620878CD1826C /* Support Files */ = { isa = PBXGroup; children = ( - E2E9A868A31FBB27BA168DEF4F7EBEB5 /* React.podspec */, + 1968EA8AC1899CE9211FFB0A9ADD1977 /* UMTaskManagerInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; + sourceTree = ""; + }; + 7BC0C6E8284295145B113BAA7336A893 /* Pod */ = { + isa = PBXGroup; + children = ( + CE745798B9CD3C17B8AE5DB7C87F66D9 /* React-RCTImage.podspec */, ); name = Pod; sourceTree = ""; }; - 7AC180D31FD868E092FAC18BD742BCD8 /* database */ = { + 7CB2A68288E70D1C7A87D587AEEF65AB /* Pod */ = { isa = PBXGroup; children = ( - 10A95DB26B92F016CE67E8D83B04BBF1 /* RNFirebaseDatabase.h */, - 7D8AA8D0D1F634E75FE154E4E4F894C8 /* RNFirebaseDatabase.m */, - 79AD1B7BEDC376AC0B1B91340D051D24 /* RNFirebaseDatabaseReference.h */, - 49070D4C872602F6290CC0C6719D9003 /* RNFirebaseDatabaseReference.m */, - ); - name = database; - path = RNFirebase/database; - sourceTree = ""; - }; - 7B6BAFA28FDC22E90B47550354F22F1C /* Pod */ = { - isa = PBXGroup; - children = ( - DE3D407177E3340F50BA97AF82EC41F9 /* React-CoreModules.podspec */, + 03A3E4A4C9538148C7F7A8F9FA7A187B /* LICENSE */, + E45D779C266172A684B698F1298F708D /* react-native-splash-screen.podspec */, + 78F219EA8DF004BD76593FE3558A3FC0 /* README.md */, ); name = Pod; sourceTree = ""; }; - 7BB4879A55C7FB19E9CBB24B552A754C /* Protocols */ = { + 7CC7C516F88FCA44517D1E61F36EC15F /* React-jsiexecutor */ = { isa = PBXGroup; children = ( - 7C5F92C196B3116E98C2C553D172CFB7 /* UMAppLifecycleListener.h */, - C969D899668D9AD51A4D693232EFE593 /* UMAppLifecycleService.h */, - 925A92D967E9433955AF48E86676E589 /* UMEventEmitter.h */, - 589C954C35817DBE715C6D291EB31948 /* UMEventEmitterService.h */, - 58A97F9A18E11DE5F68B80C997206812 /* UMInternalModule.h */, - 41974D60AC17C8FF4A2F80135E90F0C7 /* UMJavaScriptContextProvider.h */, - 6E2E19D13B3B7244CD0569D5CF87118F /* UMKernelService.h */, - 2DEA556B9F91EFEBBDF517FFF7AAFA4F /* UMLogHandler.h */, - 3F9D8FF19C26813ED813F62735D251D8 /* UMModuleRegistryConsumer.h */, - 1C25CC0075AFA8B13569820533B29774 /* UMUIManager.h */, - 520578A5F116585B434402D0843DFE42 /* UMUtilitiesInterface.h */, + CED7B95E4A78B2AD74DB8526ADD32676 /* JSIExecutor.cpp */, + C86203125B00920102E9A9E6EF3DD532 /* JSIExecutor.h */, + 4E805B6A93E2DDE62578C56D49A0CC4E /* JSINativeModules.cpp */, + 0BA08CB7743F937D23C1A6C7D8FBC27B /* JSINativeModules.h */, + 3A1AAC6C2DC6D0EC3CEBF8FB436B973D /* Pod */, + 848D804AFCA724A897080392A86F38F1 /* Support Files */, ); - name = Protocols; - path = UMCore/Protocols; + name = "React-jsiexecutor"; + path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; sourceTree = ""; }; - 7C3BCEF98710BDAA455077602FA7594F /* Inspector */ = { + 7D4A0F12DA35C361343DC637FBC44152 /* UMViewManagerAdapter */ = { isa = PBXGroup; children = ( - A80CF8468E9049C56C9EA16A82061CC3 /* RCTInspector.h */, - 9EA3DA4711B4011719896ADA0BFA4961 /* RCTInspector.mm */, - 704C0EF5CF8F036B06D71B8404F082B4 /* RCTInspectorPackagerConnection.h */, - 15725AD47425DBA11176117DDA118070 /* RCTInspectorPackagerConnection.m */, + 7ECB420536ADF69CE9843B14210A5ADE /* UMViewManagerAdapter.h */, + 270967510F13979B1EB6F3574EEC77F1 /* UMViewManagerAdapter.m */, ); - name = Inspector; - path = React/Inspector; + name = UMViewManagerAdapter; + path = UMReactNativeAdapter/UMViewManagerAdapter; sourceTree = ""; }; - 7DC5A08FC8CEC004058370E18C173FC3 /* Handlers */ = { + 7D6DAD9BDC2AB17AEBD390FCEE143065 /* Pod */ = { isa = PBXGroup; children = ( - BC0B6D584331758E4EA2D39BBC7D6BFC /* RNFlingHandler.h */, - BA8C1095D4A9AC8719FE42E57A6BB304 /* RNFlingHandler.m */, - C2593EAEA3167BA5619CD29EA9D93D13 /* RNForceTouchHandler.h */, - 3910C2EFA8A79FC82FCD760576FFAA54 /* RNForceTouchHandler.m */, - 3A4861BBAB43CDAB8683670C6BC93839 /* RNLongPressHandler.h */, - 5903B33A3AF28AB28A797A95DED2BF7F /* RNLongPressHandler.m */, - 3A20055E540EEE13D829CC42EB55FA62 /* RNNativeViewHandler.h */, - EF039B2109A76249DEC888435F565A48 /* RNNativeViewHandler.m */, - 88393E8369B47087272393526F8E3BD8 /* RNPanHandler.h */, - DDAE8975226BBDF2C9A644C5729818F2 /* RNPanHandler.m */, - 5F5B77C064B8778CAB3C2D3942D31337 /* RNPinchHandler.h */, - 4ED7012EAD1D0469E3F0DAF90DBF4648 /* RNPinchHandler.m */, - 4CF514CEBEB7B53040F577141FD44EC5 /* RNRotationHandler.h */, - 558F3D67B18067D15E32C8088539027A /* RNRotationHandler.m */, - 4FFE75388EEE8D910347DAB00BFB827F /* RNTapHandler.h */, - E0B17FD3C13B86EE8975CFCFA8456761 /* RNTapHandler.m */, + 20ACEE4893BA7EFE878483DFF8097A22 /* React-Core.podspec */, ); - name = Handlers; - path = ios/Handlers; + name = Pod; + sourceTree = ""; + }; + 7DA3503D65449BF63F910C510D3C419B /* Support Files */ = { + isa = PBXGroup; + children = ( + 77F5609B4B12EA9B0EDC2CF48E5572F3 /* rn-fetch-blob.xcconfig */, + E91E1F32FD136A4D2C4428C141222543 /* rn-fetch-blob-dummy.m */, + 2321C7B2C6AAB9C7AFDCCB49C72AC1FF /* rn-fetch-blob-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; sourceTree = ""; }; 7DE15526E8DB560E3196E08E90EFF632 /* Frameworks */ = { @@ -9544,109 +8959,99 @@ name = Frameworks; sourceTree = ""; }; - 7E7FA0AA92756D4F379ED6FDB32D2E4B /* Support Files */ = { + 7E0DB297392B8A48300A1753B173B34B /* RNFastImage */ = { isa = PBXGroup; children = ( - 6F529AC9C377C59FCF42F947791B492E /* React-jsi.xcconfig */, - 7B7888BB7BE85EE8D527C592F2CEFD8C /* React-jsi-dummy.m */, - C6C96D047BC4D058744676DDC4EDC5E0 /* React-jsi-prefix.pch */, + 112771E1E5793DBF74BBA1D3C35DBFBD /* FFFastImageSource.h */, + 473E13BA68BED6C6934E6BEA919A48BA /* FFFastImageSource.m */, + EC98255645D800D93AA313FBD7A2C65C /* FFFastImageView.h */, + 4EC4205FABEABCC72C0DBFBB1CB885A9 /* FFFastImageView.m */, + F77856DAB02054287753021638745EEA /* FFFastImageViewManager.h */, + 3505D6FE5DDE3A48D66A447E8A218EF8 /* FFFastImageViewManager.m */, + F9BDB5FB053D69C8E59F594B9E914EC2 /* RCTConvert+FFFastImage.h */, + 851E1E9DA148DF8D8D054D99847AE8EC /* RCTConvert+FFFastImage.m */, + 2C3A81619707143ABF34D8F184280AA4 /* Pod */, + 337B4A4D7EEE023C665C1FD1DF59D1E8 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsi"; + name = RNFastImage; + path = "../../node_modules/react-native-fast-image"; sourceTree = ""; }; - 7F601E55D1CC72A9196735EA5EE0ED55 /* DevSupport */ = { + 8008AAA7B210ECBDEC871291CF3DE4EA /* Pod */ = { isa = PBXGroup; children = ( - 62934FD0505B17AA4E1556DE9358822E /* DevSupport */, - 7C3BCEF98710BDAA455077602FA7594F /* Inspector */, - ); - name = DevSupport; - sourceTree = ""; - }; - 7F90C5A4E051D7E411714CFD3DFE4D07 /* Pod */ = { - isa = PBXGroup; - children = ( - 377DFB1666969358F520B20AB9E16E27 /* EXAV.podspec */, + 19E19694EA799C446569FF0DAF10EF46 /* LICENSE */, + 93752AC35B4BF873CFC039AC4029065E /* README.md */, + 3C549DDF856BB422636E3D7C42F96AD1 /* RNDeviceInfo.podspec */, ); name = Pod; sourceTree = ""; }; - 801E60B241DDC5BF6F804A399D26C2AA /* analytics */ = { + 81240900FA1FAB637B87FFAD36CE4673 /* Support Files */ = { isa = PBXGroup; children = ( - 7B6012DB79AFA1266D36F6C2183709EF /* RNFirebaseAnalytics.h */, - 492BAD8924B2A031BEE748D08EF182F2 /* RNFirebaseAnalytics.m */, - ); - name = analytics; - path = RNFirebase/analytics; - sourceTree = ""; - }; - 8117C658269D17D7CBB2D108193EA634 /* Support Files */ = { - isa = PBXGroup; - children = ( - 07D16A26681FF2E352792B64421ED0B6 /* UMImageLoaderInterface.xcconfig */, + D3BEA212F612722EEDFAD978C0BB39D8 /* EXAV.xcconfig */, + 75F263017750569A21246A8B421C3DE4 /* EXAV-dummy.m */, + 08C8CAC4FE84756EEAF76B2A238A7B92 /* EXAV-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; + path = "../../../ios/Pods/Target Support Files/EXAV"; sourceTree = ""; }; - 82257D584A2D67D8491C7671DACA9F92 /* Support Files */ = { + 8159EBF5FDBB444988DD9A37F58947A1 /* Support Files */ = { isa = PBXGroup; children = ( - 9AB527CFE893AF9A8B2D3374C93D998E /* react-native-video.xcconfig */, - A9954286FE2B8FFC4E7BDD00D99B662C /* react-native-video-dummy.m */, - E77491AC0355DFB465F2F2FAEF844D2E /* react-native-video-prefix.pch */, + B6B57818D5BE1B8294828964AFE6A2CC /* React-RCTText.xcconfig */, + 95A6CF289CEB268659DF4520A94F2054 /* React-RCTText-dummy.m */, + 5530D2A085E6E2236FD3D98780EBA47B /* React-RCTText-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-video"; + path = "../../../../ios/Pods/Target Support Files/React-RCTText"; sourceTree = ""; }; - 82E8969AA29E09B77D469A499343DDFA /* RCTTypeSafety */ = { + 822BB0E199AA8A31A359308C923BE3AA /* event */ = { isa = PBXGroup; children = ( - B5BE24CF227352207ED74841C688D105 /* RCTConvertHelpers.h */, - A2FDCDDE9F3874C99EC5AB35A582550A /* RCTConvertHelpers.mm */, - 62CEAF58CBA132903177BE4B6CD19787 /* RCTTypedModuleConstants.h */, - 8B0DD04958D6B485354D1EEB711BB131 /* RCTTypedModuleConstants.mm */, - A7E49DC7F0558564F325B995E750B72F /* Pod */, - 0B56BC19A716CAC569361638B06111ED /* Support Files */, + 50F0B6C3B6D69AD7902BDA15767E48CC /* event.cpp */, + DF584DF14D519DCC098367248F4CD3AC /* event.h */, ); - name = RCTTypeSafety; - path = "../../node_modules/react-native/Libraries/TypeSafety"; + name = event; + path = yoga/event; sourceTree = ""; }; - 8402315EC9F344FE85D9BBDAA1AB7F15 /* Support Files */ = { + 8353360E8979C67E6878E5D089D9FCEC /* Pod */ = { isa = PBXGroup; children = ( - B16C5F556A4FC739F9F59F08A82A4CC2 /* EXHaptics.xcconfig */, - 422EC0A9C834E03CE373FE805701DEB5 /* EXHaptics-dummy.m */, - 2CFDA8042C6277DACD4AB16AC0CA4AC7 /* EXHaptics-prefix.pch */, + 80B50683D60D36788668321D41A4F905 /* RCTRequired.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 848D804AFCA724A897080392A86F38F1 /* Support Files */ = { + isa = PBXGroup; + children = ( + 581AA7F4B16067D071241054CB86FA75 /* React-jsiexecutor.xcconfig */, + BA4D92333397EC8D722390CF6007C9D0 /* React-jsiexecutor-dummy.m */, + 6A329B8D6B5AC096B1CF8F3EAB76D814 /* React-jsiexecutor-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXHaptics"; + path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; sourceTree = ""; }; - 84D7A012A6FBE2BC9C4169CBAB68ED72 /* messaging */ = { + 852083D7A696D80DE9E77778D3D2E60E /* LNInterpolation */ = { isa = PBXGroup; children = ( - 70301BB6EB1394A3690D2E7E05EAD20A /* RNFirebaseMessaging.h */, - 1521F731A01FABC9EF521C6B13D29ABB /* RNFirebaseMessaging.m */, + 415C3BA01E823C90D60BC65AEB69F185 /* Color+Interpolation.h */, + BC6F2325D9C8B0EABE4B94C09D8CE138 /* Color+Interpolation.m */, + 023E4339966E9E2E9FE67C2EB7C47D1C /* LNAnimator.h */, + CFDAA17195D4BBD9B343F6A16B797EC4 /* LNAnimator.m */, + CB24821F8D92E1785823CD7E825ABA72 /* LNInterpolable.h */, + 47B0AFF0D32D5B238B0338E82F823051 /* LNInterpolable.m */, + 44FBEF46DA69AE67CB7C4EAB355665B8 /* LNInterpolation.h */, + 3C90957C7667D5B970F4C8D60145A5B3 /* NSValue+Interpolation.h */, ); - name = messaging; - path = RNFirebase/messaging; - sourceTree = ""; - }; - 852D0C0E0F3AB5CC0842A8F551AA78F2 /* RNAudio */ = { - isa = PBXGroup; - children = ( - E4CC9D857FD29E6865DA453DD2DC9EE1 /* AudioRecorderManager.h */, - 91EB93590129044FB30A60CBC3599486 /* AudioRecorderManager.m */, - 1FF954423318B39BCCAD8B5892AAE6AF /* Pod */, - 78DC78AA202FAEDB193B73D542082E0B /* Support Files */, - ); - name = RNAudio; - path = "../../node_modules/react-native-audio"; + name = LNInterpolation; + path = lib/ios/LNInterpolation; sourceTree = ""; }; 85B044187F74C1B0146CEA3746A32B9C /* SDWebImage */ = { @@ -9659,18 +9064,6 @@ path = SDWebImage; sourceTree = ""; }; - 85D71DD9C3747D45EE43F9D049DE6ECB /* RNLocalize */ = { - isa = PBXGroup; - children = ( - 2E2727D828C1AEF7210CA6BFFE7FD6EF /* RNLocalize.h */, - 0D3E744DEFEA33B275C22260573C7E3C /* RNLocalize.m */, - D6965623D9B31379599E0D430FDC693E /* Pod */, - 5C22FB84FFC113DBADAA78E3E797A019 /* Support Files */, - ); - name = RNLocalize; - path = "../../node_modules/react-native-localize"; - sourceTree = ""; - }; 8641CC33BCBB72FF03B42378FBC9AC1F /* Support Files */ = { isa = PBXGroup; children = ( @@ -9691,24 +9084,6 @@ path = "../Target Support Files/GoogleUtilities"; sourceTree = ""; }; - 869C52847C0F09570B9E96B348058F54 /* EXAV */ = { - isa = PBXGroup; - children = ( - F8179C98B286C5C9274EB938E6B8C626 /* EXAudioSessionManager.h */, - DD890BA80EB035A36FD6A5A786D84ED1 /* EXAudioSessionManager.m */, - 1C874F643B7C3F88D72A2A4DF1CF2A46 /* EXAV.h */, - 53169D4B4366A591F0286F4BF5AA334A /* EXAV.m */, - 2711C01F7907BA82903E557C61359C28 /* EXAVObject.h */, - FC29B8E002404194B81CBC6A6A6CB468 /* EXAVPlayerData.h */, - 95161EF947B084DEDB1756CA7F8D39BA /* EXAVPlayerData.m */, - 7F90C5A4E051D7E411714CFD3DFE4D07 /* Pod */, - CD2BF586B8DF97E858EBEA42C00DB990 /* Support Files */, - AAAEF6D3F6B2394AA26AB3AA3AA3F8B3 /* Video */, - ); - name = EXAV; - path = "../../node_modules/expo-av/ios"; - sourceTree = ""; - }; 870E8EFD0AC9071D87EADBB360FBC374 /* webp */ = { isa = PBXGroup; children = ( @@ -9864,25 +9239,44 @@ name = webp; sourceTree = ""; }; - 8754514EE3D0A7DEC6EA8889DB0D95E5 /* UIUtils */ = { + 873BA8B6CF0A01EC05FCCD0995033F40 /* Pod */ = { isa = PBXGroup; children = ( - D8FA8CB12E8C02963D96851B8B76A24D /* RCTUIUtils.h */, - 5E0391B0F3D71D64CF68DB134DBA70F7 /* RCTUIUtils.m */, + D8AB62C8A78A17043382295D5AF6DFE8 /* EXAppLoaderProvider.podspec */, ); - name = UIUtils; - path = React/UIUtils; + name = Pod; sourceTree = ""; }; - 87664853A63DC7C648708CAAF5CB63ED /* Support Files */ = { + 874E4E0F72BCAD4505CE4EE7DE6E4F95 /* Support Files */ = { isa = PBXGroup; children = ( - 1EDD8E143CC0969C713644ABB96EE776 /* React-Core.xcconfig */, - 689DE2E62C2A64BAF2D9EA01E6D8EA4B /* React-Core-dummy.m */, - 99AFC47914AF5BE7231ADE45485EB81B /* React-Core-prefix.pch */, + E54C26DCEB21B7DCF12F63E0371C4636 /* RNAudio.xcconfig */, + 46AEC60604B39AF805BC6D5EB27D7555 /* RNAudio-dummy.m */, + 5717E626E8E008514CB4C16907E75FBB /* RNAudio-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React-Core"; + path = "../../ios/Pods/Target Support Files/RNAudio"; + sourceTree = ""; + }; + 876E33278B351A381EE71B849DE2B7DD /* Support Files */ = { + isa = PBXGroup; + children = ( + 21C10B8C0533C1F8C901EE90FC88A762 /* RNVectorIcons.xcconfig */, + A5ABBF17FD206FBD0911CA8C83D9500F /* RNVectorIcons-dummy.m */, + A1BD812E27EEB4BD980432A00715B0E1 /* RNVectorIcons-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNVectorIcons"; + sourceTree = ""; + }; + 879B48C656E8FA1D3B1139A63BCCF953 /* Pod */ = { + isa = PBXGroup; + children = ( + 9343DE1F1989A99BD17DAC745D790480 /* LICENSE */, + 3F60A75B29A400815365320E53E9EAFD /* README.md */, + 140F46D2D2F24F9DB2A92470ED32950C /* RNUserDefaults.podspec */, + ); + name = Pod; sourceTree = ""; }; 87BD7946936D581AF43DEF83F8ED4D8C /* Support Files */ = { @@ -9895,137 +9289,66 @@ path = "../Target Support Files/FirebaseCoreDiagnostics"; sourceTree = ""; }; - 87DCE5A513857AD49098590D3913F80F /* Services */ = { + 8901910B52D0CD4819894CCA023756D0 /* Pod */ = { isa = PBXGroup; children = ( - A809A23E9EF95C498E5964553A87330E /* UMLogManager.h */, - 076356B50D29C4F9855F5DE0CBCEBB2E /* UMLogManager.m */, - ); - name = Services; - path = UMCore/Services; - sourceTree = ""; - }; - 87EF88F1F8C6D99EA557F8B807D866ED /* Pod */ = { - isa = PBXGroup; - children = ( - 6CF34DD4E1C82E28AAD3C1E0E36F046D /* UMPermissionsInterface.podspec */, + 87BBEB4BD130A28B3141A669894FAB1F /* React-RCTLinking.podspec */, ); name = Pod; sourceTree = ""; }; - 88EDA20962DBDF67FF5B5DF7358F19BD /* Pod */ = { + 8B5F55D483D67D5673C44540DC51C6D8 /* Singleline */ = { isa = PBXGroup; children = ( - FA38BC0AF9B52C902AE5A85D04A3CE01 /* EXHaptics.podspec */, + 7B6D6243FE11718BAC28BE6A7C3E6C22 /* RCTSinglelineTextInputView.h */, + 5B85A285352C374D520086FDCF7B0F8C /* RCTSinglelineTextInputViewManager.h */, + C73A6840F412A81A8DB9E48578EABA3F /* RCTUITextField.h */, + ); + name = Singleline; + path = Singleline; + sourceTree = ""; + }; + 8BB57AED62BE389D58DD6A703AC58482 /* Support Files */ = { + isa = PBXGroup; + children = ( + A49FD196C40396CE87F5E587717F312C /* rn-extensions-share.xcconfig */, + EFA17A1611483E4CAB28842BA66A59F8 /* rn-extensions-share-dummy.m */, + 184D7E85971E634B6D8916E6E07D8B29 /* rn-extensions-share-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/rn-extensions-share"; + sourceTree = ""; + }; + 8C19FA3C551D9216D554A12DFCD86C9A /* database */ = { + isa = PBXGroup; + children = ( + 683059112877707E522BC088D2CF1657 /* RNFirebaseDatabase.h */, + 6D94FBC1079F7E257483B299E7C8C892 /* RNFirebaseDatabase.m */, + 1B84B1680F89719975011E6416792F81 /* RNFirebaseDatabaseReference.h */, + 518B4BFAC8C86BA88D0C669147F14B2C /* RNFirebaseDatabaseReference.m */, + ); + name = database; + path = RNFirebase/database; + sourceTree = ""; + }; + 8CA39506E0553D2B9A4AF2F7FAA8843F /* Pod */ = { + isa = PBXGroup; + children = ( + 4E43B51F469B0AEE34BC4041C20C5BC0 /* EXWebBrowser.podspec */, ); name = Pod; sourceTree = ""; }; - 89374F3CC708EADAD5FAA3EE7AB2FC53 /* Tools */ = { + 8D951304368588B30E020B2022029AD7 /* UMPermissionsInterface */ = { isa = PBXGroup; children = ( - 4DAAB6E2406A0687205959EDE8917E3C /* BSG_KSArchSpecific.h */, - AEFF4754C447AA9CC5EE5F70AEB7F8CB /* BSG_KSBacktrace.c */, - 7D21CB99F0986FDAC89D2A7B5769D187 /* BSG_KSBacktrace.h */, - 189A9E75BC5BDDF1819E819734C9FE36 /* BSG_KSBacktrace_Private.h */, - 41F4EF1D59F1761C34131B6EF56212A4 /* BSG_KSCrashCallCompletion.h */, - C831AD93D1E9564ECE14E70441D6FBFD /* BSG_KSCrashCallCompletion.m */, - F0144A1DC33A190BED1250780C291F7D /* BSG_KSDynamicLinker.c */, - 77F9B01447E5C7DA50457BBFF08D392E /* BSG_KSDynamicLinker.h */, - 1B32ECC49FF7D82EB5C43E47F75F4A5C /* BSG_KSFileUtils.c */, - D411C6E983EA5D486B179BEF94DE3729 /* BSG_KSFileUtils.h */, - EFA115D40E68EFCB5E4110293EDC1A2C /* BSG_KSJSONCodec.c */, - 3E9C9D017230441E72524C75A4DE8368 /* BSG_KSJSONCodec.h */, - AFFE0298F47225860ECA486FDB8262AB /* BSG_KSJSONCodecObjC.h */, - 9D104CD0F8A300278ED678D2409246A0 /* BSG_KSJSONCodecObjC.m */, - A0A6C0C98A5E837EFE58CDC4B7EECACD /* BSG_KSLogger.h */, - D723DCC6EDB2BA705256F4BEB1305ED4 /* BSG_KSLogger.m */, - 9BC23BB7A8DE345C7FD96BA090F09B73 /* BSG_KSMach.c */, - 8D113E9A40250929AA9E511B55189C3B /* BSG_KSMach.h */, - 35072EFDB0C5C95E680212953EF13E30 /* BSG_KSMach_Arm.c */, - 9DD3A2FA9383510D024474E196ABD6A8 /* BSG_KSMach_Arm64.c */, - B7FCBB8705698B4C5C2F47EF0ECFA778 /* BSG_KSMach_x86_32.c */, - 1B5A80D6FF27D09397AC83F7FB106ACD /* BSG_KSMach_x86_64.c */, - 1119683640F1CBB5F4697C0D53575DD9 /* BSG_KSMachApple.h */, - 1CA3DF6BC7CAD857EDF9443C5A8E78B9 /* BSG_KSObjC.c */, - 561D5A5555B1FEF4E603AA0DB67A0CA9 /* BSG_KSObjC.h */, - 3E49FEDDDD4417AC7155DBD9401C4C9A /* BSG_KSObjCApple.h */, - D10EFDEF22B73A9DC0BB46C6D7C1AF51 /* BSG_KSSignalInfo.c */, - A35307FC9A62F53AE1127FD976357FA1 /* BSG_KSSignalInfo.h */, - A357969433D2169772F117DABC04E0F2 /* BSG_KSSingleton.h */, - 46D7F4DAB618D4CAE271758C3510F085 /* BSG_KSString.c */, - 1221BB61D6A94B5190923E67EC6BBD2D /* BSG_KSString.h */, - 848B4139DF08401E0A201D55731729EC /* BSG_KSSysCtl.c */, - 99CDE548697338314717AE0E6134FCB2 /* BSG_KSSysCtl.h */, - 9DD37EB2D399B9468794E988FD7C0C89 /* BSG_RFC3339DateTool.h */, - 977DF1CD4D09DFCC3A19427CEFDE660B /* BSG_RFC3339DateTool.m */, - 3EC179BB2DA882432C4069F95F687466 /* NSError+BSG_SimpleConstructor.h */, - D5EC93F587CEDA8EF6C9365F76039DC8 /* NSError+BSG_SimpleConstructor.m */, + 4CE10571F7D1FF9ADB910D24E22F88FD /* UMPermissionsInterface.h */, + CA8CD0CACBEE0102D390A826D6A512AB /* UMUserNotificationCenterProxyInterface.h */, + EB5C398A21C14E3344F61BAD84CDAFCE /* Pod */, + 66C3F4E0771AE643F3CCFE0C2D686219 /* Support Files */, ); - name = Tools; - path = Tools; - sourceTree = ""; - }; - 8C0574A83B6F49DCA5D1D211D7056702 /* UMModuleRegistryAdapter */ = { - isa = PBXGroup; - children = ( - A51A983258F0D553ACDCFC3621672FD5 /* UMModuleRegistryAdapter.h */, - 67CF8F37C4B72033AA6E2DE612F55F2C /* UMModuleRegistryAdapter.m */, - 0DCE7D5EC2F0598E04148FA4E8616207 /* UMViewManagerAdapterClassesRegistry.h */, - 608833E6861B4E4F8275CC22B3FB5F81 /* UMViewManagerAdapterClassesRegistry.m */, - ); - name = UMModuleRegistryAdapter; - path = UMReactNativeAdapter/UMModuleRegistryAdapter; - sourceTree = ""; - }; - 8C64D9745CAF87840F0146E3E9414458 /* React-RCTText */ = { - isa = PBXGroup; - children = ( - 55B8D0791E36572BFC240003E1474397 /* RCTConvert+Text.m */, - 49CF3A11E5181DA8ABE51009D71CDB6B /* RCTTextAttributes.m */, - 3A17AE2F8D2F02702CEB54A5D9D2F3F7 /* BaseText */, - 02C0215B0286E1546C1A3A368D0962F0 /* Pod */, - 78432FA3249A1F15614DFC66C44AAA13 /* RawText */, - B0FFE75BE501EE3F1A60407CAFB13297 /* Support Files */, - 6CECA841451AE86AE3316FF49F0CDA70 /* Text */, - 1C2F923A8E0728F3EE682EA3DD52B9C9 /* TextInput */, - 2C238C7A59F21CBE7D424C0AEF8AF4FE /* VirtualText */, - ); - name = "React-RCTText"; - path = "../../node_modules/react-native/Libraries/Text"; - sourceTree = ""; - }; - 8C7D5A45BB7E9DAECBBD2586D28486F1 /* Filters */ = { - isa = PBXGroup; - children = ( - 35E8E0CB837BAF6BB30DC2F2666F90CD /* BSG_KSCrashReportFilter.h */, - B9295502C8E57344C28AE10125A0D9E3 /* BSG_KSCrashReportFilterCompletion.h */, - ); - name = Filters; - path = Filters; - sourceTree = ""; - }; - 8D0ACA1FB6996D08599FBBF4435DE9ED /* UMImageLoaderInterface */ = { - isa = PBXGroup; - children = ( - C1E857CC0E1D0A33B399E29BE252B855 /* UMImageLoaderInterface.h */, - 2D0413D32AD11498470C7AEA1878CA7F /* Pod */, - 8117C658269D17D7CBB2D108193EA634 /* Support Files */, - ); - name = UMImageLoaderInterface; - path = "../../node_modules/unimodules-image-loader-interface/ios"; - sourceTree = ""; - }; - 8D36003AD110C1A41E151479331B10C0 /* UMFileSystemInterface */ = { - isa = PBXGroup; - children = ( - 9270D6D283F867C991ABB9ECAA39C63B /* UMFilePermissionModuleInterface.h */, - 526D73D1C26AD170D94A15BE249533F2 /* UMFileSystemInterface.h */, - 4291452483F87479D788E2FAF1CAF9A8 /* Pod */, - 2862380108F70211F6880CC5A642106D /* Support Files */, - ); - name = UMFileSystemInterface; - path = "../../node_modules/unimodules-file-system-interface/ios"; + name = UMPermissionsInterface; + path = "../../node_modules/unimodules-permissions-interface/ios"; sourceTree = ""; }; 8E03E7CE77D8AC7977DDB85E0F145E5C /* Support Files */ = { @@ -10038,6 +9361,17 @@ path = "../Target Support Files/GoogleDataTransportCCTSupport"; sourceTree = ""; }; + 8F2D2152063E33D5679B0993F99A0257 /* ReactCommon */ = { + isa = PBXGroup; + children = ( + C8A8F2A194C690C4616EAF0EB9A8CB57 /* jscallinvoker */, + 74E61173E0B9CFE8096A159C4BF441F8 /* Support Files */, + A8C738350F223A4E250F29D3245A3843 /* turbomodule */, + ); + name = ReactCommon; + path = "../../node_modules/react-native/ReactCommon"; + sourceTree = ""; + }; 8F50D4E533E25DD1EC15FC4611AE04A3 /* SDWebImageWebPCoder */ = { isa = PBXGroup; children = ( @@ -10052,26 +9386,6 @@ path = SDWebImageWebPCoder; sourceTree = ""; }; - 8F84578BF1B4E8195F0607F43B6B1670 /* platform */ = { - isa = PBXGroup; - children = ( - 0D3C251AB5334E3F8EDAB0DB2CD9761C /* ios */, - ); - name = platform; - path = turbomodule/core/platform; - sourceTree = ""; - }; - 8FD28E8C9F4ED92A72D1DBC097DC2C91 /* Support Files */ = { - isa = PBXGroup; - children = ( - DECB4E2CB41F6F5A85BF7CC64AF2731F /* React-jsiexecutor.xcconfig */, - D285D652FCDE706776F874DCED406C5A /* React-jsiexecutor-dummy.m */, - 19D82EF8F906D6E8F50476034D2684A4 /* React-jsiexecutor-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; - sourceTree = ""; - }; 9001E2B13ED6F066DDEEB1626E9C67AE /* Support Files */ = { isa = PBXGroup; children = ( @@ -10082,14 +9396,6 @@ path = "../Target Support Files/GoogleDataTransport"; sourceTree = ""; }; - 9004BDEFE4F2095165B3DE716D33DF7C /* Pod */ = { - isa = PBXGroup; - children = ( - 072A1D694D7F1B28134713C5AFEC530D /* UMFontInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; 90834D679B21D2F2B5B9085EE8ADC20D /* Frameworks */ = { isa = PBXGroup; children = ( @@ -10108,82 +9414,30 @@ name = "NSData+zlib"; sourceTree = ""; }; - 9135007D2DA4A1B116C5BCBE8B91C478 /* FBReactNativeSpec */ = { + 9163A0F0F7F059B9B12D2A46D962897D /* Pod */ = { isa = PBXGroup; children = ( - 8C4F70662866A6074C00FF398B7C03D3 /* FBReactNativeSpec.h */, - 9FE9B7BED9A63306EDBB827E7D39D174 /* FBReactNativeSpec-generated.mm */, - F95FDFE5356327B254C7D81F1404D8A2 /* Pod */, - 1FA4419EDAE993F1CF73635CFCE4EEAB /* Support Files */, - ); - name = FBReactNativeSpec; - path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; - sourceTree = ""; - }; - 918227BB70C4176BF5E80D9F7921DEDD /* Support Files */ = { - isa = PBXGroup; - children = ( - 13ABA67BF592749CAF26F481FD160A49 /* React.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React"; - sourceTree = ""; - }; - 920DC7F5F815D566EC3E3C05AA87E1C9 /* UMPermissionsInterface */ = { - isa = PBXGroup; - children = ( - E19CCDE6348867174E9BADDA3CD1BC89 /* UMPermissionsInterface.h */, - 45E9009661F7642265BA2B62788B039B /* UMUserNotificationCenterProxyInterface.h */, - 87EF88F1F8C6D99EA557F8B807D866ED /* Pod */, - 4EB22A16E511EEF4451E26A0666CC411 /* Support Files */, - ); - name = UMPermissionsInterface; - path = "../../node_modules/unimodules-permissions-interface/ios"; - sourceTree = ""; - }; - 92532A78DE51330F30FC57A74133208F /* react-native-document-picker */ = { - isa = PBXGroup; - children = ( - C24CE90AFA2D409DDCB67D3FAE01BCE0 /* RNDocumentPicker.h */, - F91F3346033AF71D9C2DC38F22403556 /* RNDocumentPicker.m */, - B5156846ADDB114BEA52EBA2EB340931 /* Pod */, - 645418A73AC0ABE6C27BB7862723715F /* Support Files */, - ); - name = "react-native-document-picker"; - path = "../../node_modules/react-native-document-picker"; - sourceTree = ""; - }; - 926AE24B97F79B2E4F32CD9DB7DBB5D5 /* react-native-splash-screen */ = { - isa = PBXGroup; - children = ( - D49F9ED1D4CB45DE93625BA200435AC5 /* RNSplashScreen.h */, - DBA790A60CE99F2A73FACE7020931AD1 /* RNSplashScreen.m */, - 02E18A39F9377FCD0E04F49DC5AF6B39 /* Pod */, - AEF90EB5D6DDD0494BB7B1C14904A22E /* Support Files */, - ); - name = "react-native-splash-screen"; - path = "../../node_modules/react-native-splash-screen"; - sourceTree = ""; - }; - 9271F59FCB86DE4EA2A4125DCD2A0C3D /* Pod */ = { - isa = PBXGroup; - children = ( - EAE5CEAD32D3EA75775A09A567A1464E /* LICENSE */, - EE9EE401ABBE74AC838AF98616190666 /* README.md */, - 70E33AB9563FBAD2433281005D1DAB6E /* RNUserDefaults.podspec */, + C5EBB0DCF4F22FD00FB15638ABC292DE /* LICENSE */, + F0649DDB022283545798B15182097277 /* react-native-background-timer.podspec */, + 5F22E75E01B9F9D96BEF96A42085CB21 /* README.md */, ); name = Pod; sourceTree = ""; }; - 92BB27717DAFC9C7418A9BBFDEEACA91 /* React-RCTActionSheet */ = { + 92BF14FE7890E1557C12912D5ED7E08C /* Pod */ = { isa = PBXGroup; children = ( - 22E4174F7DCEABDADC2A643765351F34 /* RCTActionSheetManager.m */, - 5808D9B6E72CD4E227B01670628B93EA /* Pod */, - 3FB7D03DBBE15999E974941956D8BA50 /* Support Files */, + 6313539CA2D05F8AABEBB90D128EE17D /* UMFontInterface.podspec */, ); - name = "React-RCTActionSheet"; - path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; + name = Pod; + sourceTree = ""; + }; + 93080E9A956C3EF9992CE2BDBAE7D92C /* Pod */ = { + isa = PBXGroup; + children = ( + 38457761BB95CA357F45DF5243F2B8D5 /* UMCameraInterface.podspec */, + ); + name = Pod; sourceTree = ""; }; 936D98A7C198094120299A5BDEE9B461 /* RSKImageCropper */ = { @@ -10212,105 +9466,124 @@ path = RSKImageCropper; sourceTree = ""; }; - 95853B5367DF3D5F827D042D85F8A879 /* React-jsinspector */ = { + 9437D9C3DDE287DB16B6C1C15EE8BCD4 /* Support Files */ = { isa = PBXGroup; children = ( - 2A87192E3AA37F552786A1113C791230 /* InspectorInterfaces.cpp */, - 6D0E1CCA8BB77C6B9E659C803537115C /* InspectorInterfaces.h */, - C640AC9BDDB2ACB24B886FE7DE2C57E5 /* Pod */, - 6FE5958D9829663D9D2E0CF8FBAA5EBD /* Support Files */, - ); - name = "React-jsinspector"; - path = "../../node_modules/react-native/ReactCommon/jsinspector"; - sourceTree = ""; - }; - 97B5F5BF70BDCA642D18734A45DDB652 /* Support Files */ = { - isa = PBXGroup; - children = ( - 3143AC6BA7678E130BD420050FD89DDD /* UMReactNativeAdapter.xcconfig */, - 5569BDCA2E37EEDFE27DECBA17377386 /* UMReactNativeAdapter-dummy.m */, - B55A6CEA0E968AC4F361EB86E611560C /* UMReactNativeAdapter-prefix.pch */, + 04E15B5964805DC5108565460F62DE8E /* RNScreens.xcconfig */, + 4700497CB6F7892DEBC975C55A151D91 /* RNScreens-dummy.m */, + C8C29DF21EC6F9850ADF4FC2EBA9AEF1 /* RNScreens-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; + path = "../../ios/Pods/Target Support Files/RNScreens"; sourceTree = ""; }; - 983471F60B05255D89C4BF1672A379C5 /* Products */ = { + 94B6D0C8116FC6956A0C7CD19FA5BFC4 /* Default */ = { isa = PBXGroup; children = ( - 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 */, + B0A1F0A97A5CFE5B1E4E3B43BF1E13AC /* Base */, + BB8971DFA319D1901489DE042CB9241E /* CxxBridge */, + FA7578C3AA70C34FCF89766B717CCFF0 /* CxxModule */, + 74188A75CF81A30680D73217BC5D4673 /* CxxUtils */, + 75214B5EE7CF498F5C34DE3C1CB9328F /* Modules */, + 34B6096C687B7C8ACDA14C90FC7954E8 /* Profiler */, + 24267E43DEA33EB99583EF2C310F0E77 /* UIUtils */, + A8C29875993C8E51BBD827FA49DF03DB /* Views */, ); - name = Products; + name = Default; + sourceTree = ""; + }; + 9514634DC3B2CA79749467D97717DBD3 /* RawText */ = { + isa = PBXGroup; + children = ( + 76575E3B79BFD3AEA8E0A0C627421865 /* RCTRawTextShadowView.h */, + 8E29358304887AE9D591F76515AAAE12 /* RCTRawTextViewManager.h */, + ); + name = RawText; + path = Libraries/Text/RawText; + sourceTree = ""; + }; + 9560AE0CA18895636E1CDAC1B24DBC79 /* Pod */ = { + isa = PBXGroup; + children = ( + 3D2C41FEE2EDC3E7D873BD1F314CE151 /* UMSensorsInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 957A9C1ACA7277FF1305C15B7E3F1E7D /* CoreModulesHeaders */ = { + isa = PBXGroup; + children = ( + 46B34CEA1C31953580CE189C9956C539 /* CoreModulesPlugins.h */, + A3CF386E760B431AF279467E1DCCF2FF /* RCTExceptionsManager.h */, + 14C664965E856D444C32E6EFCBFBB314 /* RCTImageEditingManager.h */, + B7CD90ABFA5CAD203DECF9778DF221F5 /* RCTImageLoader.h */, + 46C34CAB6AAC0E0EB79854BDD52EA02A /* RCTImageStoreManager.h */, + F1EE90878DDB3B66274AE580B748C31A /* RCTPlatform.h */, + ); + name = CoreModulesHeaders; + sourceTree = ""; + }; + 96A8FA253278C41422D7BF8458651454 /* Pod */ = { + isa = PBXGroup; + children = ( + A54FEC97C189CB11606A4308B2AE22A7 /* EXAV.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 975BC4A9540A9D72BE5C9AB7CB34B0B6 /* UMSensorsInterface */ = { + isa = PBXGroup; + children = ( + 54A593EA50F7A021692CC53552CF29AB /* UMAccelerometerInterface.h */, + 5EE21B14A271019C8E9B98428993A404 /* UMBarometerInterface.h */, + E36DDE85ED8F9E2F285114A9607A7D44 /* UMDeviceMotionInterface.h */, + 3D9DC6BE085A571CDB18E44DBDFF0070 /* UMGyroscopeInterface.h */, + 63A12B83F95FB9BF03317F5F506861BF /* UMMagnetometerInterface.h */, + CF67E5C4B0A7AB4861DF8E845B259ED3 /* UMMagnetometerUncalibratedInterface.h */, + 9560AE0CA18895636E1CDAC1B24DBC79 /* Pod */, + 5C32729E6213C6F97BD80F073787FFAB /* Support Files */, + ); + name = UMSensorsInterface; + path = "../../node_modules/unimodules-sensors-interface/ios"; + sourceTree = ""; + }; + 98000F8EE66DE05DE11247FDF405A305 /* Nodes */ = { + isa = PBXGroup; + children = ( + B1DB83D9D53946D698A41481D8841122 /* RCTAdditionAnimatedNode.h */, + F5A1D2A2181A3CE2E6F5A205B199A4D2 /* RCTAnimatedNode.h */, + 60BC42A9111822AFEAABCC60C8796759 /* RCTDiffClampAnimatedNode.h */, + DA884B5D6B9B7635794D7EFC0E4BBD1F /* RCTDivisionAnimatedNode.h */, + 688CA9964A0D2EB7CEC203851F00E7C3 /* RCTInterpolationAnimatedNode.h */, + C396D78F38FBE9F34D8848FC3FC43AE6 /* RCTModuloAnimatedNode.h */, + C5C8333BFD44196B4A0FFDB65E076AE5 /* RCTMultiplicationAnimatedNode.h */, + 445640C4E059EF5BD5ECBBD9FF01EC39 /* RCTPropsAnimatedNode.h */, + 87FF5199DB4EA632F3780A6BF236F2EC /* RCTStyleAnimatedNode.h */, + D72A5086705F3BAFEB1269EBE778F566 /* RCTSubtractionAnimatedNode.h */, + 034BF2C44FD02FB17FF3F13F5D6A2AD0 /* RCTTrackingAnimatedNode.h */, + 24E74C5A6343AC38E3B80858DB0A032A /* RCTTransformAnimatedNode.h */, + 462314FC5F61237B1DC57433E4DCB4D3 /* RCTValueAnimatedNode.h */, + ); + name = Nodes; + path = Libraries/NativeAnimation/Nodes; + sourceTree = ""; + }; + 98132535B13297279111C12B230177F9 /* Services */ = { + isa = PBXGroup; + children = ( + B2B9B966CF0670022DA229F644227B1B /* UMLogManager.h */, + 1B6589BE603FEA2993B00F22AA582653 /* UMLogManager.m */, + ); + name = Services; + path = UMCore/Services; + sourceTree = ""; + }; + 99BB210090A6AEE8DC8C32621878B864 /* Pod */ = { + isa = PBXGroup; + children = ( + 23EE2CE4FD8E5797BF49C3D61FCDA33A /* RNFirebase.podspec */, + ); + name = Pod; sourceTree = ""; }; 99E77EDDB8BF9E4B476AA4E6FF856A62 /* Pods-RocketChatRN */ = { @@ -10328,15 +9601,34 @@ path = "Target Support Files/Pods-RocketChatRN"; sourceTree = ""; }; - 9A7B4261BB0B1A979AC6234473488CDC /* React-RCTSettings */ = { + 9A12DE39C91654946A8090383730010A /* fabric */ = { isa = PBXGroup; children = ( - 628181E1739F0336CE736D10C1D1DE9E /* RCTSettingsManager.m */, - D72FBB4B449F9567051ED4ACCD3FBF96 /* Pod */, - 5A5371A2D7E640387CFE291DF66C9C63 /* Support Files */, + 72C72B4B3E4608B05E8EC107494555BB /* crashlytics */, ); - name = "React-RCTSettings"; - path = "../../node_modules/react-native/Libraries/Settings"; + name = fabric; + path = RNFirebase/fabric; + sourceTree = ""; + }; + 9A62AE547036F5F99BC115E4394E13C4 /* Support Files */ = { + isa = PBXGroup; + children = ( + 995B813E0C15D4D7E4DD92A81956264E /* BugsnagReactNative.xcconfig */, + E61D1F9C622B0200284D9B1D2CAEA105 /* BugsnagReactNative-dummy.m */, + 922A83677E2F464EB9F8239786B60738 /* BugsnagReactNative-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; + sourceTree = ""; + }; + 9B074E293882C1405FE7DFEA559C29DF /* storage */ = { + isa = PBXGroup; + children = ( + CA59BBE9E3A2CD7230971CE0ABA9D965 /* RNFirebaseStorage.h */, + 82055F34960F45D2A53AF2E6478EE6D7 /* RNFirebaseStorage.m */, + ); + name = storage; + path = RNFirebase/storage; sourceTree = ""; }; 9B0C168B9B00AF185AFD0DD948724F77 /* FirebaseAnalytics */ = { @@ -10349,18 +9641,40 @@ path = FirebaseAnalytics; sourceTree = ""; }; - 9C790CA86106E14F61591C9EA11309C4 /* React-jsiexecutor */ = { + 9C9A9F1ACD3F674643079F52ABD9CA97 /* UMConstantsInterface */ = { isa = PBXGroup; children = ( - 2641C911F6D6E4D1F425009DAB0C1FD9 /* JSIExecutor.cpp */, - D246168C9275EE7834A1179D99B68307 /* JSIExecutor.h */, - 9FD51D143FD71CBFA5350EB8CFB8E60D /* JSINativeModules.cpp */, - D47D7BFB7566E8A7C3476E0370D0BE27 /* JSINativeModules.h */, - 008C8516EB04D23233492536806E8196 /* Pod */, - 8FD28E8C9F4ED92A72D1DBC097DC2C91 /* Support Files */, + 878E2F0E69F6B0AA8E2E788FC082B4BF /* UMConstantsInterface.h */, + 03D1E4A9AD8826221A98E4435DA38047 /* Pod */, + 089F77584A17C84FBB2831F6FBEC88DE /* Support Files */, ); - name = "React-jsiexecutor"; - path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; + name = UMConstantsInterface; + path = "../../node_modules/unimodules-constants-interface/ios"; + sourceTree = ""; + }; + 9D0BA34D2DF88484D47F8840EAE717DF /* UMCore */ = { + isa = PBXGroup; + children = ( + 942CE26A8AA3D8D3B39ED7DA35A07AA3 /* UMAppDelegateWrapper.h */, + 8129C9C241D72DBCD91B3FF571A91FE8 /* UMAppDelegateWrapper.m */, + 4DB92CB13D90E6A63C9449EB4A3D5FB0 /* UMDefines.h */, + FD0884FBF8E38AD7AE9679B92726379E /* UMExportedModule.h */, + 7529CCA7472FB72A593D6657998C2972 /* UMExportedModule.m */, + 1DC839280346F1C3CBB79D66A0473331 /* UMSingletonModule.h */, + EEB466F74ACC7EBC0B496B85E36EDB3F /* UMSingletonModule.m */, + CEA26965AD99DE602B0FBF3060FD7E1B /* UMUtilities.h */, + 32D442C11B07C66C9018E78AF1F7D796 /* UMUtilities.m */, + DFF749D95E264156BABFB798B5B5F3D6 /* UMViewManager.h */, + 16730113239A4A5F7934D2D7C9DE36C3 /* UMViewManager.m */, + 16488AEA80A1AF2EC326B2C0A647217A /* Pod */, + 696E1E15370051EEE34FD44A0DB41574 /* Protocols */, + 98132535B13297279111C12B230177F9 /* Services */, + 43805B9D4BDE4462EC79BA9E0725D255 /* Support Files */, + 5AC3286FBB8B4C0AA46BDB324C2DA012 /* UMModuleRegistry */, + 4C173838B3C9F6CD300F88E5F6A824A8 /* UMModuleRegistryProvider */, + ); + name = UMCore; + path = "../../node_modules/@unimodules/core/ios"; sourceTree = ""; }; 9D1BD12B3BC37A17AC65A7C571DD6116 /* Crashlytics */ = { @@ -10380,51 +9694,102 @@ path = Crashlytics; sourceTree = ""; }; - 9D22DF0A9A366214E8A513AF9F63FD4F /* RCTTextHeaders */ = { + 9DE459859374F5B290408CD30B9DE13B /* jsi */ = { isa = PBXGroup; children = ( - 8C9172E1FD4EC4C46CB01E67337BA2C4 /* RCTConvert+Text.h */, - C4BD169CE289BAE4445841400DB80F38 /* RCTTextAttributes.h */, - 9400C28E188F6DDB02251AD6D9D87DAB /* RCTTextTransform.h */, - F20E88DD27CDCCB12A3749527173A324 /* BaseText */, - 48287CAC1E35D183A5505395F5F41D2F /* RawText */, - 01C57E2B36ED5EFB86EAD76E13D1E304 /* Text */, - 6785A6D4C4A097C2D8708376D36D87FD /* TextInput */, - 146382A915E5A99FE220B0DE5067ADE8 /* VirtualText */, + 143530949B5565B2E4DBF2F0C672E989 /* decorator.h */, + 7A7F70906ABA2A6F5B30D5A3EB40CE4A /* instrumentation.h */, + 270D91A8FE15937EE7AAE531B81CA808 /* jsi.cpp */, + BB4F98F9A79C65BE96594A6A62ACA28D /* jsi.h */, + 7F55E551A8CB8A46CB7B81200E70D4C7 /* jsi-inl.h */, + F37FD7F638A29BEFACF9294960E1A508 /* JSIDynamic.cpp */, + FA63D99B6021039B74156FB8E56D5799 /* JSIDynamic.h */, + 7799616C7D51CD10922AEC96A99941C9 /* jsilib.h */, + 45B386987E971282C4135DE079AA4C5A /* jsilib-posix.cpp */, + 57ADC6FB12218BC5F731E66581C6A9F0 /* jsilib-windows.cpp */, + D7DDA4B923909E2ABB26250538C84B76 /* threadsafe.h */, ); - name = RCTTextHeaders; + name = jsi; + path = jsi; sourceTree = ""; }; - 9D46F2A072DDD246DD16F0B471E05C31 /* Pod */ = { + 9EF5244FC41FECF1AAD6BFF941D69A0E /* Text */ = { isa = PBXGroup; children = ( - 05D1F2BBC795ABC94E7CED693FE2A4C8 /* LICENSE */, - D4F2B316FCEE4100AAD8DDD9D79489FC /* README.md */, - CCFC50593E8A77E6FC49557494D69F29 /* RNScreens.podspec */, + 8B045D0E4243730481AAA1CB77990DEF /* NSTextStorage+FontScaling.m */, + C11D9AD667508E1C876132F985D006E8 /* RCTTextShadowView.m */, + 9C3850FE6ED692788F89481C551A0BD6 /* RCTTextView.m */, + 4FDDC07BDB2D69B8364DA6810AD90E5F /* RCTTextViewManager.m */, + ); + name = Text; + path = Text; + sourceTree = ""; + }; + 9F11F71AA6CDD6D60D6AD8F805A80A9D /* React-RCTImage */ = { + isa = PBXGroup; + children = ( + D9320BE88E741DEC5491727C41EC8630 /* RCTAnimatedImage.m */, + 38FC85EF33B83764ACF58D59A2FF5A26 /* RCTGIFImageDecoder.m */, + B1E064D2E50907DD555F51A6E9449DF7 /* RCTImageBlurUtils.m */, + A832916A078966CF057416B5074A3D43 /* RCTImageCache.m */, + EAB5F55088374969C34AC879E3F596C0 /* RCTImageShadowView.m */, + DAC7475ABC0A021C153586AF1B38843D /* RCTImageUtils.m */, + 261E698D5EF014930107BA2CEFCFCD49 /* RCTImageView.m */, + CDD45AA3C601E1A3A45A712E8A9DFD90 /* RCTImageViewManager.m */, + 3F718A89C12CD95005EB2064AF63B331 /* RCTLocalAssetImageLoader.m */, + 19B762F877F3B152365AEC114E9BA027 /* RCTResizeMode.m */, + 0CBB6585A54119A963A82EE7A8977AF3 /* RCTUIImageViewAnimated.m */, + 7BC0C6E8284295145B113BAA7336A893 /* Pod */, + 174F47C6821A4A8E15C4B35A7F0DCF50 /* Support Files */, + ); + name = "React-RCTImage"; + path = "../../node_modules/react-native/Libraries/Image"; + sourceTree = ""; + }; + 9F9AC2900443CF1C172DE7E70630249C /* UMFileSystemInterface */ = { + isa = PBXGroup; + children = ( + 691CBA7AE1D192756DFB1300FC78BB72 /* UMFilePermissionModuleInterface.h */, + 53CBDB3E54E4634C4C8AA572F23DEA95 /* UMFileSystemInterface.h */, + 2348794B921E44C89ED1E1D641BB8687 /* Pod */, + 3E0D626DC6D9FCD2CB475A8E7918C157 /* Support Files */, + ); + name = UMFileSystemInterface; + path = "../../node_modules/unimodules-file-system-interface/ios"; + sourceTree = ""; + }; + A0D9A747D9376DA2DF4F94A93C806C7E /* Pod */ = { + isa = PBXGroup; + children = ( + 3FE86DB74A1BC11D0141924ED352515C /* LICENSE.md */, + 3028864806728918A117E4058D8441C1 /* react-native-document-picker.podspec */, + 331D10B0B267D53EE1FD58E141855523 /* README.md */, ); name = Pod; sourceTree = ""; }; - 9ECEC25B758C6FFFEB38E4566D29FDA1 /* firestore */ = { + A182CD6ECEADB7EC036B163C5AF9103F /* Filters */ = { isa = PBXGroup; children = ( - 8AA23DC79589894A9874B467B5CA0846 /* RNFirebaseFirestore.h */, - A944652844C06AB56A89170B53F5FB51 /* RNFirebaseFirestore.m */, - F4A67157E188E6C729E2688D88DBAD4E /* RNFirebaseFirestoreCollectionReference.h */, - A429599A7FF6BAA15EF2832FEBA810A5 /* RNFirebaseFirestoreCollectionReference.m */, - 2B30374D98D88FEFFA40BACB5AE902EC /* RNFirebaseFirestoreDocumentReference.h */, - 9AACFBC61EBC020ADA57FD6477F41622 /* RNFirebaseFirestoreDocumentReference.m */, + 94D6D30F732919276E067AADAB490563 /* BSG_KSCrashReportFilter.h */, + 031092BE47CEE783A63FE732D8DCA106 /* BSG_KSCrashReportFilterCompletion.h */, ); - name = firestore; - path = RNFirebase/firestore; + name = Filters; + path = Filters; sourceTree = ""; }; - A05CA388B2CB95481789987DE846CCF9 /* Pod */ = { + A2B6157DD36D2B6ACA4389B166D009F8 /* RCTTypeSafety */ = { isa = PBXGroup; children = ( - CDF5162864A25597045E77E8CF6847AF /* UMBarCodeScannerInterface.podspec */, + A00442AA0B1FADE223DA97EBAB3D838B /* RCTConvertHelpers.h */, + D58829D210FBE20929D48359B702D2FA /* RCTConvertHelpers.mm */, + 184A5FE6720285DD234352C0BE668DCE /* RCTTypedModuleConstants.h */, + A27244A05409F207F84EAB5D36DF078B /* RCTTypedModuleConstants.mm */, + 19E2B62B5841B9B0550E5653AAF31878 /* Pod */, + F478F99164218B2101AC58E6057180A6 /* Support Files */, ); - name = Pod; + name = RCTTypeSafety; + path = "../../node_modules/react-native/Libraries/TypeSafety"; sourceTree = ""; }; A2BD0DF7BB823F49F75A2CBAC78DB678 /* Support Files */ = { @@ -10436,70 +9801,16 @@ path = "../Target Support Files/Crashlytics"; sourceTree = ""; }; - A46B23531783BD59AE8C3EDE2F1BE37E /* react-native-keyboard-tracking-view */ = { + A398E4C5EC98BFCF0CE5EA14645F7A62 /* RNUserDefaults */ = { isa = PBXGroup; children = ( - DE0933C2CA15790260A9C7B82C577FBF /* KeyboardTrackingViewManager.h */, - 5D3EBE18666C5144A0EE55684B19F3F6 /* KeyboardTrackingViewManager.m */, - BF04A14120A396A0D894DC7059C9B783 /* ObservingInputAccessoryView.h */, - 5D8A124ABFB84572CBDF43F939BE7E61 /* ObservingInputAccessoryView.m */, - 0761E244B793FC335D2B8FA708497B59 /* UIResponder+FirstResponder.h */, - 865CEC3DED5252C3CDEA0479FBFC8F7F /* UIResponder+FirstResponder.m */, - E36136B830861F89EA63F11C19228FBF /* Pod */, - D5B814F2808F965D2B3FC76070BE25CD /* Support Files */, + 08E14DC5CD5C28CA59A5678EE181FBFC /* RNUserDefaults.h */, + 5C6355702DBCA100421558425DCD6D8B /* RNUserDefaults.m */, + 879B48C656E8FA1D3B1139A63BCCF953 /* Pod */, + EF32D11CFBA4E8AEEE9A1149B473AC7A /* Support Files */, ); - name = "react-native-keyboard-tracking-view"; - path = "../../node_modules/react-native-keyboard-tracking-view"; - sourceTree = ""; - }; - A4873261129B3870DF1E3B20F229D998 /* ScrollView */ = { - isa = PBXGroup; - children = ( - EB0772A091863E29F4B6FB5D7FE1C8F7 /* RCTScrollableProtocol.h */, - C38F16A153640B3293D8F667A981FBB8 /* RCTScrollContentShadowView.h */, - EC5EAD2792D00175F98B34546D424FC6 /* RCTScrollContentShadowView.m */, - 400B431DC7FE566443236C22A8C6D9E2 /* RCTScrollContentView.h */, - 83605A4F3CAC4DEA96570C8C7181B6F9 /* RCTScrollContentView.m */, - 1B3C4F868F5F690AFCBC2923C8B31BC7 /* RCTScrollContentViewManager.h */, - CCCA8C22CFF4E0CE7E180BE244CBE1CE /* RCTScrollContentViewManager.m */, - F9AF6801997FE5032856CC15AD27A79D /* RCTScrollView.h */, - 39C6A49C433EF04A3829B2494825F524 /* RCTScrollView.m */, - F4E8BEA4DB45E07D80B73BEF701E6806 /* RCTScrollViewManager.h */, - 63F0D11A6DCF0D1983AA0B7E1338E5C4 /* RCTScrollViewManager.m */, - ); - name = ScrollView; - path = ScrollView; - sourceTree = ""; - }; - A4961123965C842B32600F7D3DE74539 /* react-native-webview */ = { - isa = PBXGroup; - children = ( - BDDB896AE0C815BC2E6CFC74B852BDA6 /* RNCUIWebView.h */, - CE6A5EAE2D00F96C4034EEE29B3B48A8 /* RNCUIWebView.m */, - 88166403512FC6CD0F60F045A97FCEA2 /* RNCUIWebViewManager.h */, - 3276457071DF97D202177EBD051D0228 /* RNCUIWebViewManager.m */, - B3427F3B243F0244BD72CAB4E3F7AF19 /* RNCWKProcessPoolManager.h */, - 8C62901F4640CD3B115C26B6F444BF1C /* RNCWKProcessPoolManager.m */, - 0C503EFE1C0DD727D9DF9D30EB261433 /* RNCWKWebView.h */, - A8D65AD80416F65CE3983CA2C4536DA1 /* RNCWKWebView.m */, - 6C559DE1AA120AD0DCD2A8A8E0B8822F /* RNCWKWebViewManager.h */, - 3C01242E93742811C8DCF88449812EBA /* RNCWKWebViewManager.m */, - 5858055F36862D88CC79AD51CF3C1F2B /* Pod */, - CBD9C79AB520AA05B13522F90337C279 /* Support Files */, - ); - name = "react-native-webview"; - path = "../../node_modules/react-native-webview"; - sourceTree = ""; - }; - A4EBE0F9BFF7EA5D678B59208357FC26 /* Support Files */ = { - isa = PBXGroup; - children = ( - A3239E0A81A39A78BDA04A680434F993 /* RNReanimated.xcconfig */, - 17C243779CEE807D64BECE46965BA2B7 /* RNReanimated-dummy.m */, - 73ED565837EECFE6EBB94B19BC12A6BF /* RNReanimated-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNReanimated"; + name = RNUserDefaults; + path = "../../node_modules/rn-user-defaults"; sourceTree = ""; }; A50A315A41DB695EA33EC99233E9DC35 /* Support Files */ = { @@ -10513,28 +9824,6 @@ path = "../Target Support Files/RSKImageCropper"; sourceTree = ""; }; - A592BA79104C94C794DAC4D62BA64C53 /* UMConstantsInterface */ = { - isa = PBXGroup; - children = ( - 79AA3B240C55FD24638F7CFBA077148B /* UMConstantsInterface.h */, - E1CD6BD030E7A0CB09CDB0621D291543 /* Pod */, - 72198C223968F896CA65ED13BF2A4AD2 /* Support Files */, - ); - name = UMConstantsInterface; - path = "../../node_modules/unimodules-constants-interface/ios"; - sourceTree = ""; - }; - A5A1288549560AA41E14592080932E68 /* Multiline */ = { - isa = PBXGroup; - children = ( - AD0B75F82B79F1D06A10DCD5E95555B9 /* RCTMultilineTextInputView.h */, - 481C18E01A760B3F249339764020F262 /* RCTMultilineTextInputViewManager.h */, - 8263ED3D75AB0213BE2E35DA4D2CA5EB /* RCTUITextView.h */, - ); - name = Multiline; - path = Multiline; - sourceTree = ""; - }; A5ADA69422B84A7580C82CAA5A9168D1 /* Targets Support Files */ = { isa = PBXGroup; children = ( @@ -10544,59 +9833,78 @@ name = "Targets Support Files"; sourceTree = ""; }; - A5BEBFC9F187CF25F3F66E83EC183F8E /* UMBarCodeScannerInterface */ = { + A69791230F777B21005472941CF2C4A1 /* RCTRequired */ = { isa = PBXGroup; children = ( - 5B21EC36F06A84517421137EFA200EFB /* UMBarCodeScannerInterface.h */, - 93D6DD2520799898170B60DFA41188CB /* UMBarCodeScannerProviderInterface.h */, - A05CA388B2CB95481789987DE846CCF9 /* Pod */, - 190322DC6DDCD56B0CDE19A389C79145 /* Support Files */, + 650DB6B819DC30A7C6D51DFCAA3EB7F8 /* RCTRequired.h */, + 8353360E8979C67E6878E5D089D9FCEC /* Pod */, + D3F6B7649A10E51265CF082B2F76B04A /* Support Files */, ); - name = UMBarCodeScannerInterface; - path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; + name = RCTRequired; + path = "../../node_modules/react-native/Libraries/RCTRequired"; sourceTree = ""; }; - A610BDED88406F58A9117867EE23DDE2 /* Pod */ = { + A72FB130F3974E9F57AE9EC67DEFCED3 /* DevSupport */ = { isa = PBXGroup; children = ( - 79ED5DC08CCB102BC60B009FF3AD4AEF /* LICENSE */, - 65C8151212F9D1D2BA11A3857AF8DB7B /* README.md */, - 24BF1968F2602DC176FE42E42F6EB6B9 /* RNImageCropPicker.podspec */, + 52F5CC037E0AA5117AD5590A3986C8AE /* RCTDevLoadingView.h */, + 1F1A807662FDC7594F91714855F12EBD /* RCTDevLoadingView.m */, + DB2CC93EAFD0652A1251BE276258BCAB /* RCTDevMenu.h */, + 4ADD59F006F86CBA814C6ADCD4DDFBBE /* RCTDevMenu.m */, + 96F530C4CBF8BAADC5076ADD050B5A0E /* RCTInspectorDevServerHelper.h */, + FBC5F328B91CDEFB67AF032281E6EB16 /* RCTInspectorDevServerHelper.mm */, + C78FC1440F0A278101EA115E5D9AA22A /* RCTPackagerClient.h */, + 31505D7E478C6717D9019F338B7D7376 /* RCTPackagerClient.m */, + B073A051EB57DF54349C9150A67DAF60 /* RCTPackagerConnection.h */, + CEB737E34428B67F981BE7321E784390 /* RCTPackagerConnection.mm */, ); - name = Pod; + name = DevSupport; + path = React/DevSupport; sourceTree = ""; }; - A70FEA02F9AA8C35973C83E7FC978EF6 /* React-CoreModules */ = { + A74F4CEEC4E7ACDBDC2A9DA4F134EFAE /* Support Files */ = { isa = PBXGroup; children = ( - C2E92934A9BD986B50061D4763E2D459 /* CoreModulesPlugins.mm */, - 38A7C07FB150C20816E901B787BF37EA /* RCTExceptionsManager.mm */, - 27D91DEDD5BF35D3BA4F4D7F82909550 /* RCTImageEditingManager.m */, - 5FE8250F7846FF8F8518BCA5D983CEC9 /* RCTImageLoader.mm */, - C83F243A97A8963BC59CF8A6E58A55DC /* RCTImageStoreManager.m */, - F01F8A651D0F97804369446D71BC17A1 /* RCTPlatform.mm */, - 7B6BAFA28FDC22E90B47550354F22F1C /* Pod */, - 1BC478356F6679B7626E20510141F29C /* Support Files */, - ); - name = "React-CoreModules"; - path = "../../node_modules/react-native/React/CoreModules"; - sourceTree = ""; - }; - A7D242E617AEF504379C172B8EF82806 /* Support Files */ = { - isa = PBXGroup; - children = ( - 95A02C7143CE61537E1CF6BAE7424263 /* FBLazyVector.xcconfig */, + A88578045E339347233A1BCBF9F4C3B7 /* react-native-keyboard-tracking-view.xcconfig */, + C9FCCD691B58ACED82B04848C9B9B860 /* react-native-keyboard-tracking-view-dummy.m */, + 24724BCB576DF787119770C31B395EC3 /* react-native-keyboard-tracking-view-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; + path = "../../ios/Pods/Target Support Files/react-native-keyboard-tracking-view"; sourceTree = ""; }; - A7E49DC7F0558564F325B995E750B72F /* Pod */ = { + A7C265C94D28AE185BA8B6E258FEF2DA /* EXPermissions */ = { isa = PBXGroup; children = ( - B5D0A8289520971F31150FBCDD47E178 /* RCTTypeSafety.podspec */, + C999CBF0CDCCF9350B0C0A8215830F1C /* EXAudioRecordingPermissionRequester.h */, + 3D63A93F7ADBFA07F80E9681BCDDB72E /* EXAudioRecordingPermissionRequester.m */, + 0FD69AAD99CAD6A9F1FCCDF4C1B7FA7C /* EXCalendarRequester.h */, + B37A90398BCCDCC233D0E07016024232 /* EXCalendarRequester.m */, + 55FEA42274B43F7959F933B6E7D0768C /* EXCameraPermissionRequester.h */, + 646BC1E0E6C82CE13BF3FC32B4E99B03 /* EXCameraPermissionRequester.m */, + C7D9D34DC43886A53207BF9E80D3BF3A /* EXCameraRollRequester.h */, + FBE3260F5107E97CF76634BC8605C405 /* EXCameraRollRequester.m */, + B42FE18F19C04AC6DEDBEA85C745980A /* EXContactsRequester.h */, + 959E4F2F20DD331569989D41276051E1 /* EXContactsRequester.m */, + 241A26CB996A14E5B7B7320C51998079 /* EXLocationRequester.h */, + 5B67A2E90035830F4704E9B2100EFBD8 /* EXLocationRequester.m */, + 6E77E134D22C67293A6E91F68E12908E /* EXPermissions.h */, + 6F33DCE3027BC6BC8AC0D769DA5F846D /* EXPermissions.m */, + 929C056E8BC298F78C48EBD94A41B0AD /* EXReactNativeUserNotificationCenterProxy.h */, + 370690606EC6E87A207E7CB5BEA4E5EA /* EXReactNativeUserNotificationCenterProxy.m */, + 6F852CEDE307141D58790A6953B2FECB /* EXRemindersRequester.h */, + 091C9C23AE69F9B2BA8D31111118D209 /* EXRemindersRequester.m */, + E4F72F67AB9685C072917A0880F7FF11 /* EXRemoteNotificationRequester.h */, + AF4EA25442F8EC569DBAE79C2136E8F7 /* EXRemoteNotificationRequester.m */, + FCB72B65B0BEA4566579C1EB76647D3C /* EXSystemBrightnessRequester.h */, + C0142ED749AF000C530635CF83DF425A /* EXSystemBrightnessRequester.m */, + B755EBF064CC633CD0FB942E32ADFA78 /* EXUserNotificationRequester.h */, + 1E339A238C5C19A933FB40E580AF7A78 /* EXUserNotificationRequester.m */, + C5D5503B0BDE63B267E5A90009A4C57F /* Pod */, + 05B2BF0E16F8E4E5097BE2C2FF096DA1 /* Support Files */, ); - name = Pod; + name = EXPermissions; + path = "../../node_modules/expo-permissions/ios"; sourceTree = ""; }; A8594F09DE580E53D48DAE823AFC380F /* GoogleUtilities */ = { @@ -10616,75 +9924,223 @@ path = GoogleUtilities; sourceTree = ""; }; - A8A7227F348424BCABD715ED0CCB9F78 /* UMModuleRegistryProvider */ = { + A8C29875993C8E51BBD827FA49DF03DB /* Views */ = { isa = PBXGroup; children = ( - 8BBB780A9F12CF3E77B2EA8A84406625 /* UMModuleRegistryProvider.h */, - 0A45D44F0A4712BAB4EA2AA811B2D8B6 /* UMModuleRegistryProvider.m */, + A4C3A30D388BAB3491B25D05E1B0A71B /* RCTActivityIndicatorView.h */, + 360A590D6E87D353A4EE548C36D5B73D /* RCTActivityIndicatorView.m */, + E54F978444A7CEF84EE02DD3AAA36A72 /* RCTActivityIndicatorViewManager.h */, + 4E00F05CCF734A12CFC85CCF4150FA8D /* RCTActivityIndicatorViewManager.m */, + 5E07BF8060268F6B80602BEEB58F34AE /* RCTAnimationType.h */, + 1367958180570BB91AAC503D0DA52EA5 /* RCTAutoInsetsProtocol.h */, + A60CE7222FA178C7A80B5DDE6B86BDA4 /* RCTBorderDrawing.h */, + 6DD79C048F2F9C16126AC0E71B625506 /* RCTBorderDrawing.m */, + F39D87D87782BE2F3483A8F92024F25A /* RCTBorderStyle.h */, + 14A3D6EBD5C32E4A32F6B92C713CB468 /* RCTComponent.h */, + 67BD77AEC4CDF83989C9357B81F0DB81 /* RCTComponentData.h */, + 794D9C91799055313BD7AD8652AE800B /* RCTComponentData.m */, + F75F01C3748354CB900B963E1E280814 /* RCTConvert+CoreLocation.h */, + 363E6F052C48D3F0193DFD739D5B2222 /* RCTConvert+CoreLocation.m */, + 62E2FF06653AA04F58C3E3B1B8700E06 /* RCTConvert+Transform.h */, + 49EC7C3EFAC13533502ABAE3EF8E95F9 /* RCTConvert+Transform.m */, + 32336E7E9DC6F10F67D09C259843D0AF /* RCTDatePicker.h */, + FFDC942E37948825AC39ECEFF5C5AA17 /* RCTDatePicker.m */, + 52EB945050F8273FCC2AA02B3FF3D450 /* RCTDatePickerManager.h */, + 2615554DFEFB88ABE2F6B4CA84F63873 /* RCTDatePickerManager.m */, + BB95A42F1DB412AC51C240029BF888A0 /* RCTFont.h */, + 87A1C13CA2D72E1522A40D2D74193401 /* RCTFont.mm */, + A352EE81C4436FBC31BAC8A8587F313B /* RCTLayout.h */, + B453937127F6A3D264A97AB9C73C0ADC /* RCTLayout.m */, + B4D33198940256F0ACFB9163452F4A40 /* RCTMaskedView.h */, + 573C44DE67D54268AB03CF5F639F152C /* RCTMaskedView.m */, + 062AE6550F080AD30620845DBEB0FCB0 /* RCTMaskedViewManager.h */, + 2601F820D5E847840E1912591E645E44 /* RCTMaskedViewManager.m */, + 5EDE5499A2030945932C276366A4F22D /* RCTModalHostView.h */, + C17A7BC9744C2846DB65A6B7FC5AC80B /* RCTModalHostView.m */, + C61BF98CD40D21619BD6FFB97EE88B3C /* RCTModalHostViewController.h */, + 1EB62C1A0405F3AABCAA51A572E4481A /* RCTModalHostViewController.m */, + 56505B21ABD3B3E95EB5A96E9FBC65C9 /* RCTModalHostViewManager.h */, + D2425D4C3CEFC71CFF79A3F397658994 /* RCTModalHostViewManager.m */, + B8C46D38E4C93D5B3539F30546420B42 /* RCTModalManager.h */, + CB72724311908317E86E7679E0EB38B0 /* RCTModalManager.m */, + 2EE1DA86EC3D99C00C25FD24C6220B89 /* RCTPicker.h */, + 6C20BAEA9855B28809BD0DC67FFBCFA4 /* RCTPicker.m */, + 1C4EB2F545314F1957F530FB31F7A15D /* RCTPickerManager.h */, + E612B4BB28A3B645D685CF9AD20AC095 /* RCTPickerManager.m */, + 125140995B0A46D82FA3E4E85BE2664E /* RCTPointerEvents.h */, + C66417A8A5758738388ED7AA58B30060 /* RCTProgressViewManager.h */, + D84BF71B3FD7D916318D8AFA3EC8C5BA /* RCTProgressViewManager.m */, + 07233EDA1FC3BE41EB1F2313D8F020BB /* RCTRefreshControl.h */, + D8948C8DEFDFA24AACADDEF258199A1B /* RCTRefreshControl.m */, + 882D4B170328E113857BE5DFEE6EB7FB /* RCTRefreshControlManager.h */, + BE4E913B523C487FD14DC53DB97C143B /* RCTRefreshControlManager.m */, + 372B94412F3E2A1C066996D0B590E620 /* RCTRootShadowView.h */, + 73D2E9B4F61167441A36D7C78C495831 /* RCTRootShadowView.m */, + D02ECCE46323D1937AF1BD582D5AFEB5 /* RCTSegmentedControl.h */, + 62EA1C1E10E897A9DBD203F76B2C0B6D /* RCTSegmentedControl.m */, + 5843D5D3667FB0238E3EAE2D7449E82E /* RCTSegmentedControlManager.h */, + 4D402CA1FF2E44253F8C2FFE4C71CC15 /* RCTSegmentedControlManager.m */, + E0831E0CC52FF3C6413689E8FD108E7E /* RCTShadowView.h */, + E1E2E32840FA665638BC0BDAC13FD8BF /* RCTShadowView.m */, + 223120526602CBA7ADF9D35AC98D8720 /* RCTShadowView+Internal.h */, + 3F832139EA227D044E2A897B5F71A8A6 /* RCTShadowView+Internal.m */, + EAFF7DF58471BC362F2D2DAF2215797F /* RCTShadowView+Layout.h */, + E8B74C2FE69C1503D7FD854A9BDFE747 /* RCTShadowView+Layout.m */, + 624EB0EC80205CE1C8038C4BD5935FD0 /* RCTSlider.h */, + 1E0343C36A0B74959C83D8D8EF00965B /* RCTSlider.m */, + 147617E44F9FF00DFBA646A5E61B5F6B /* RCTSliderManager.h */, + 7384F92614915774FE7D143644A6AAC9 /* RCTSliderManager.m */, + 7F2E78275ADC02B7781684C3E99ADC46 /* RCTSwitch.h */, + 242135F551E8566963FD257AC3087ECB /* RCTSwitch.m */, + 476900FE80EACAEF08215CC16E6D35F7 /* RCTSwitchManager.h */, + EAC1B1DE473FB1605621FAF200F94389 /* RCTSwitchManager.m */, + 32BD0359DD585004F232BD4CDB009979 /* RCTTextDecorationLineType.h */, + FA6A05E24DF5C1BDADD225F4BA44730F /* RCTView.h */, + E0FE5E4F949A2D2D334FEB6417F012D5 /* RCTView.m */, + CA10FB1E0DFFF0B0FD133DC021512D3F /* RCTViewManager.h */, + 5CF3EC69826025014E5DEAD9152E01A0 /* RCTViewManager.m */, + 97D3928D38A1480CB81397CE9AF06E29 /* RCTWrapperViewController.h */, + 0F52746296A9DABDAD3FD8FDDC0DF9BD /* RCTWrapperViewController.m */, + 17644A6B0E396AF4AD0662B27777DFF8 /* UIView+Private.h */, + 835373FDECFAC8B72C5C6F5AEFC7A42E /* UIView+React.h */, + 7B20176F5FC22BE9655BFB17EC6839A9 /* UIView+React.m */, + AB93FA32A471CD605D916673901CB255 /* SafeAreaView */, + 77A9631D4B21E1B63F0DFA695AACF1D9 /* ScrollView */, ); - name = UMModuleRegistryProvider; - path = UMCore/UMModuleRegistryProvider; + name = Views; + path = React/Views; sourceTree = ""; }; - A8F34F8CC21AF33DF9FC50E58E729543 /* Pod */ = { + A8C738350F223A4E250F29D3245A3843 /* turbomodule */ = { isa = PBXGroup; children = ( - A4ABF332561FA35E98F71A29903E78A1 /* UMSensorsInterface.podspec */, + AC3A176FC19C031D257B5EF951568CBB /* core */, + ); + name = turbomodule; + sourceTree = ""; + }; + A90B82BEAF8C30CD6648482FD235E0D8 /* BaseText */ = { + isa = PBXGroup; + children = ( + 4EDA5B0B693EC04E2E1A909067E02BE0 /* RCTBaseTextShadowView.h */, + AE6E96DF9C6FDEC503DEC3366EC4D7AB /* RCTBaseTextViewManager.h */, + ); + name = BaseText; + path = Libraries/Text/BaseText; + sourceTree = ""; + }; + AB5F630503CEE34D20A831EB77BC8442 /* Pod */ = { + isa = PBXGroup; + children = ( + 3A03AEFCB40A7E79C41C1EEED1327D7C /* BugsnagReactNative.podspec */, + EE4E17CB57E71CEC6326510BBD28C33D /* LICENSE.txt */, + E64340356E6F9AE06CBF2BCFF3E18DB5 /* README.md */, ); name = Pod; sourceTree = ""; }; - AAAEF6D3F6B2394AA26AB3AA3AA3F8B3 /* Video */ = { + AB93FA32A471CD605D916673901CB255 /* SafeAreaView */ = { isa = PBXGroup; children = ( - 32A6EC2738B520FB1BE1FD70790DBFD1 /* EXVideoManager.h */, - A7A856045AA9746C6CE18B9C4D1A5880 /* EXVideoManager.m */, - 5125ADFD04847C63A5920859FD5FAAB2 /* EXVideoPlayerViewController.h */, - A0FF8480437167FF0A6C777C559AAF3C /* EXVideoPlayerViewController.m */, - D037B36024DED1C435D210E5E67A1150 /* EXVideoPlayerViewControllerDelegate.h */, - 6E4A736C487BEBF33F1347F324B474E9 /* EXVideoView.h */, - 5715F97119EF9358F9BEAB803F36F9E1 /* EXVideoView.m */, + A6CD2C98D5C802B074C47D5E2F5A1918 /* RCTSafeAreaShadowView.h */, + 438610B152172E5A494F3D6DAA4E51A1 /* RCTSafeAreaShadowView.m */, + 541665DE9513D4D514E370DAAF58ECC0 /* RCTSafeAreaView.h */, + 4E5FECC1F5F4E9A59CEE4D8563B9C00B /* RCTSafeAreaView.m */, + E730F5A0625FEFFE5532EA912AAFA8F5 /* RCTSafeAreaViewLocalData.h */, + FE3D7A64EC1D8C73B06102101D283D62 /* RCTSafeAreaViewLocalData.m */, + 90EF3CC92E1A8E488C018136E9006A28 /* RCTSafeAreaViewManager.h */, + 0672CC33362C8EA9E2EC7642931B289C /* RCTSafeAreaViewManager.m */, ); - name = Video; - path = EXAV/Video; + name = SafeAreaView; + path = SafeAreaView; sourceTree = ""; }; - ACEC7AFA215651EA8C36BA1E6C82473C /* EXWebBrowser */ = { + AC3A176FC19C031D257B5EF951568CBB /* core */ = { isa = PBXGroup; children = ( - 0F72656AB159F31BCB131BA3A378FCCB /* EXWebBrowser.h */, - 762D3E835B02D4B020A9DB1C12E37615 /* EXWebBrowser.m */, - 4529CB872AD4ECC308D3A569F904D7AE /* Pod */, - FAA05AEF2F944196638DC65E7AE34D17 /* Support Files */, + 15E3F338E2982D013E665FA5E6266A03 /* LongLivedObject.cpp */, + CE9E9ECC868228D37412CCD7DEA7CE22 /* LongLivedObject.h */, + 76657910171C675682A5C4E4F4BDBEFD /* TurboCxxModule.cpp */, + 5979A6DCA021FC4DB90375F8BEAE9D2A /* TurboCxxModule.h */, + 7005E4DA7F55B511559E8246168FE76A /* TurboModule.cpp */, + CE243AAD7E2688A6F06CD4B9E4124DCC /* TurboModule.h */, + 88B164D86751AE69B80EA5FBC5EBCE96 /* TurboModuleBinding.cpp */, + 5059A540B10068188B439D59A4DE311A /* TurboModuleBinding.h */, + A87AC62844575266891A5467856DA092 /* TurboModuleUtils.cpp */, + 6501672F142BDD3D0892B1547EB5A495 /* TurboModuleUtils.h */, + 4B4DB59D3FE4524F670104E8157571B1 /* platform */, ); - name = EXWebBrowser; - path = "../../node_modules/expo-web-browser/ios"; + name = core; sourceTree = ""; }; - AE4AED288FC4B72E51A2037859139164 /* Support Files */ = { + AC3E47478A27694D1A44571A9C728F1E /* Support Files */ = { isa = PBXGroup; children = ( - 1E433CADC81F6FCC5C5F5BB95F73090C /* react-native-keyboard-input.xcconfig */, - DACED286BD47D7AD609C723B7242D576 /* react-native-keyboard-input-dummy.m */, - 4FB223FB9D881BDA048E658A0886DBC2 /* react-native-keyboard-input-prefix.pch */, + A6B3905E0090D04E72761DFE3FA13965 /* EXConstants.xcconfig */, + 548EB0ABCA789B0DE2235B7CFE4C86CB /* EXConstants-dummy.m */, + 13AE3B54731D2D6128AC94B931D4028F /* EXConstants-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-keyboard-input"; + path = "../../../ios/Pods/Target Support Files/EXConstants"; sourceTree = ""; }; - AE7AB636E2CFBEC3043784F813F20FB6 /* Default */ = { + AE0AFADC1249F540DDC71B19D65D0334 /* Source */ = { isa = PBXGroup; children = ( - 5D62ABCDD03BB2A3D6CA6F6B0ABD9F84 /* Base */, - 3C3313A58B14D563369D4F5D2FB4B206 /* CxxBridge */, - B42408CA865B25EF98178E1468C0D76B /* CxxModule */, - 7617A1253CD568BEDB771D9A99B1FD2F /* CxxUtils */, - 3496110C4782DAF621F126ACA6342676 /* Modules */, - C0534DD2A9DB714EC68CABB36D203915 /* Profiler */, - 8754514EE3D0A7DEC6EA8889DB0D95E5 /* UIUtils */, - DCABE417C1B77D068D267EE3264EA07C /* Views */, + 537635F4708B126906D062515A1BE3A1 /* BSG_KSCrashReportWriter.h */, + 6C33E60E4947C96317C4255B8D508168 /* BSGConnectivity.h */, + 05442FDE4805564614EA4952496C139C /* BSGConnectivity.m */, + BB998A709396C02BF7801229F04600EE /* BSGOutOfMemoryWatchdog.h */, + C38027A5C41130D4A36A41863AFE03DE /* BSGOutOfMemoryWatchdog.m */, + CFEB170D65147AE6B399CAEAB51CDD83 /* BSGSerialization.h */, + 4F2E0C3D4F7F3E5B307FBEFD9725F1EF /* BSGSerialization.m */, + A494A9A1F1AC056C5AE2EFBD23136692 /* Bugsnag.h */, + 39A938235B3F79C2932F1080A077DCEA /* Bugsnag.m */, + 406F0A8AFBB83E44E858A26C5A72FB5A /* BugsnagApiClient.h */, + B59E19CC78621D2F32E9443F6F98BA0A /* BugsnagApiClient.m */, + E60EB5702F44F0338F436F0649EA09E5 /* BugsnagBreadcrumb.h */, + 4049ADE92FECBC403667D3A0C2152CD6 /* BugsnagBreadcrumb.m */, + 3A04E2393782BA1C44DD03CD92C6AE13 /* BugsnagCollections.h */, + 0E5A68431CC08DEFE993FF0DE9CF6989 /* BugsnagCollections.m */, + 11E4FD2442C70128644C7D019F1DCA17 /* BugsnagConfiguration.h */, + D6415C4D17B283E12255572B27EA49A2 /* BugsnagConfiguration.m */, + F748C1911393D3A68ED133957A913FF9 /* BugsnagCrashReport.h */, + 7F3169BDD19657EB912EB0AFCBC7E40E /* BugsnagCrashReport.m */, + 4E2B78E982AE24449641F5EC876DD0C5 /* BugsnagCrashSentry.h */, + A5C0990F7808701C0C84DB9A1A691EFE /* BugsnagCrashSentry.m */, + C039A0959DCC08B8A1F8215F71F2816F /* BugsnagErrorReportApiClient.h */, + 2C5607C6880FF5AC845BBA1B6B5C8278 /* BugsnagErrorReportApiClient.m */, + 0FFED4820CDB638B5ECA6DDB9D6E6944 /* BugsnagFileStore.h */, + 30540B5CD8D8D67A88C3FBCFED33E27A /* BugsnagFileStore.m */, + BA98B31EA1738E56ED3968B7D41292D7 /* BugsnagHandledState.h */, + BE862BF36C8861440009B6D78B4F44C5 /* BugsnagHandledState.m */, + AD19AB2D04A4025DA68CFA7186527E2B /* BugsnagKeys.h */, + 7DB0BF3ABAA1B33B4E2A1F4166755A2D /* BugsnagKSCrashSysInfoParser.h */, + CC97112575841E4BF0BBEB424C56236E /* BugsnagKSCrashSysInfoParser.m */, + 4DF27DFEF0E55DE0F3985BBF40FDD829 /* BugsnagLogger.h */, + 12EE1EAAC2DA7A25BCB317A65363FB8E /* BugsnagMetaData.h */, + FD725E3DC813EBE48EE6AE23395DA6BA /* BugsnagMetaData.m */, + 1A1F8B3A353F4A7504F87F7A7FA0A072 /* BugsnagNotifier.h */, + B9F668C38D2AC42B82699C84A7F586C8 /* BugsnagNotifier.m */, + 2169C4F6CF62640E8A8C6746DE13EA26 /* BugsnagSession.h */, + FE402DC8FD228C6CFD011F923A0A9354 /* BugsnagSession.m */, + F879B1326B54C9F9A72C1A72B23916B6 /* BugsnagSessionFileStore.h */, + B63CD15FD6ACF9EE75F164C21D5CCB46 /* BugsnagSessionFileStore.m */, + 783D3A6D2930F4F2E252E0843414B1EC /* BugsnagSessionTracker.h */, + 0635E482AFC3BFB5E1DAC723E4935367 /* BugsnagSessionTracker.m */, + 67787BB26327FECAC3B79C20BA2A917E /* BugsnagSessionTrackingApiClient.h */, + 1C5D7B960114F9BB1BCA58A7FA827695 /* BugsnagSessionTrackingApiClient.m */, + 32D139AE1030A1F5EC0E6E808CD2B05A /* BugsnagSessionTrackingPayload.h */, + EB44D8F303D45D242103CDB25BF48DBE /* BugsnagSessionTrackingPayload.m */, + 898A64B1A8A41E76DB7072DB08974FD3 /* BugsnagSink.h */, + 3F2E4423240E0F98D08353BC08A7D0AB /* BugsnagSink.m */, + 255F369A3756B80CD77447496371F192 /* BugsnagUser.h */, + 6131DCBD0941A1053295C68236B7F087 /* BugsnagUser.m */, + E399DC420F7D49BAA8DDEE6C78F05A8F /* Private.h */, + DCA0B66B65ED6E6EB8EB9C67DD98B1D0 /* KSCrash */, ); - name = Default; + name = Source; + path = Source; sourceTree = ""; }; AEE78C83739F4C5B5303E996719A34C3 /* nanopb */ = { @@ -10705,166 +10161,245 @@ path = nanopb; sourceTree = ""; }; - AEF90EB5D6DDD0494BB7B1C14904A22E /* Support Files */ = { + AF5A9C9DCB1542D640E0321F6320FA77 /* Pod */ = { isa = PBXGroup; children = ( - 31084C1F8D220713ECB94D24C58F465B /* react-native-splash-screen.xcconfig */, - 8507E4A52C119318C2F77073321AF237 /* react-native-splash-screen-dummy.m */, - 0838D1F3E35AD3FED1142D265C028474 /* react-native-splash-screen-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-splash-screen"; - sourceTree = ""; - }; - AF66EECAC3EC038735E086ED29EB96A6 /* UMNativeModulesProxy */ = { - isa = PBXGroup; - children = ( - 33E0FF5D0ACF793E0C3B6B89A16808E5 /* UMNativeModulesProxy.h */, - 9312725E7E867FFD8E99F05D37FA9626 /* UMNativeModulesProxy.m */, - ); - name = UMNativeModulesProxy; - path = UMReactNativeAdapter/UMNativeModulesProxy; - sourceTree = ""; - }; - AFE30170F3FC245E55C6938673A85017 /* Support Files */ = { - isa = PBXGroup; - children = ( - 8BA0333FD3440ED1605E44D752777D73 /* RNUserDefaults.xcconfig */, - 3F59D5A722D96D7F9D808EB99D4B2E9B /* RNUserDefaults-dummy.m */, - BDCEEAF03AA049CA8C0D2299EF483459 /* RNUserDefaults-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNUserDefaults"; - sourceTree = ""; - }; - B0FFE75BE501EE3F1A60407CAFB13297 /* Support Files */ = { - isa = PBXGroup; - children = ( - 18E5C34187C0E1AD4393C3077FD4913B /* React-RCTText.xcconfig */, - E296EE9D12A8D6AAFED566985277B963 /* React-RCTText-dummy.m */, - 79D4D8D7052E54820CAAFD9128B6E656 /* React-RCTText-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTText"; - sourceTree = ""; - }; - B1E420A0A46B9151544B83426846D7C6 /* Pod */ = { - isa = PBXGroup; - children = ( - 72200B1658FE8CF05230B9E6A9695C27 /* UMTaskManagerInterface.podspec */, + 5BBAA0EE9770537A594E3A5E9A121C80 /* LICENSE */, + 96CC4B1D880FB45289AC5D787DA25711 /* README.md */, + 1ABEE2D4FC9698E68CA4C7FFD1151177 /* RNAudio.podspec */, ); name = Pod; sourceTree = ""; }; - B42408CA865B25EF98178E1468C0D76B /* CxxModule */ = { + AF862D1A8D3C4E68C9DA59D4AA1C0DBA /* Pod */ = { isa = PBXGroup; children = ( - 7917CDFEA845901ECC20B88651896DA3 /* DispatchMessageQueueThread.h */, - 2F106E20FA9E15C3EC78264404AD0E84 /* RCTCxxMethod.h */, - 29B0113170F79A734F6E256EF8E568BF /* RCTCxxMethod.mm */, - BEEC1B87BE6AB4B746CED63C3CFACC6E /* RCTCxxModule.h */, - 771486F1326B18E61A4C88B609EC7B9C /* RCTCxxModule.mm */, - 447EF1EA74117D6E0BB07725CCC9DC21 /* RCTCxxUtils.h */, - 4E129ED0E4C41D48F63CAF12143A13DC /* RCTCxxUtils.mm */, - 5FA1B97082959A71FC1CDC378E1EF54A /* RCTNativeModule.h */, - E2E96059D0CCBAE7A8F2B157F3D50038 /* RCTNativeModule.mm */, - ); - name = CxxModule; - path = React/CxxModule; - sourceTree = ""; - }; - B491D4C0BD2B739B550CDB77CEC992C6 /* Support Files */ = { - isa = PBXGroup; - children = ( - 08779C68E0908708293E36EE6EBED395 /* RNFastImage.xcconfig */, - 739F27F9A95BB7B105543AB18FD7C4C2 /* RNFastImage-dummy.m */, - 8DC68E1A9E62D4213A29A7882F030267 /* RNFastImage-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNFastImage"; - sourceTree = ""; - }; - B4AF875ED0E71D6108B7C8E2547795A8 /* Pod */ = { - isa = PBXGroup; - children = ( - 79B2A01E1584553354A533A8EBCA3E4E /* React-RCTAnimation.podspec */, + 2249F9070C863D3CEC7124B2482FB873 /* FBReactNativeSpec.podspec */, ); name = Pod; sourceTree = ""; }; - B4DCB009CB01ED2856C37DD1B1D2FC57 /* RNDeviceInfo */ = { + B0A1F0A97A5CFE5B1E4E3B43BF1E13AC /* Base */ = { isa = PBXGroup; children = ( - D075654742F028D83F37352D3F3FC755 /* DeviceUID.h */, - 25C4E47DFE0BF89127E6F9147FFD5E51 /* DeviceUID.m */, - FD959D94675D3A797C2B498CD66EDA86 /* RNDeviceInfo.h */, - 8B3E8BD7A38381DE8BB1B47EC5CB08C8 /* RNDeviceInfo.m */, - 731D0C554DA684254381A146BC3498BD /* Pod */, - D52C88C94F45212042BFF4ADE60D8E90 /* Support Files */, + 6EE49F2E42B57ABFF7A9DC176D440F76 /* RCTAssert.h */, + 9770701D00AD7BD0ED5458AFB97AFE61 /* RCTAssert.m */, + C6322163B7128CD797844F1CEBB989F3 /* RCTBridge.h */, + F23AD859800CCD9D7CFB2F7165D4D419 /* RCTBridge.m */, + 78F9329624C946422F472DBDA7AB265A /* RCTBridge+Private.h */, + CC91B809615D4E91E1703E046ECAD0C0 /* RCTBridgeDelegate.h */, + 9F59812770BCBECF98FF23E95AC4DC27 /* RCTBridgeMethod.h */, + 2BC8110D8F6EEF1C21845076F7100B10 /* RCTBridgeModule.h */, + 76A738794D31D885B111B85A18CA1CF8 /* RCTBundleURLProvider.h */, + 675E5D49D53D73187019A27801C41869 /* RCTBundleURLProvider.m */, + 70308215C1175325A3EBB9B449C9828C /* RCTComponentEvent.h */, + CA7FE353B17B9F6411D1B8CC4F38E112 /* RCTComponentEvent.m */, + 34618B48335451A86FD63245F8B1A2CC /* RCTConvert.h */, + A4FA30C04F08AEB225F3EB7F744A92F7 /* RCTConvert.m */, + 86DD38D171735C60E25CF6FA5142E9B3 /* RCTCxxConvert.h */, + 13295BC400A5F4F8C1621BF5ED23EA2D /* RCTCxxConvert.m */, + D0D4EB434E2A7084401400859BE709FC /* RCTDefines.h */, + 1397DBF6218AA62653DBEE59059B323B /* RCTDisplayLink.h */, + 8A320BC213025221920BC95CF58F90A0 /* RCTDisplayLink.m */, + A76A4D55D86753F3914F46B5D28F56DF /* RCTErrorCustomizer.h */, + 8A86255F4E6C0462CF3200D4B4285015 /* RCTErrorInfo.h */, + B76D10F3EE89D60E6C52C27971C78A43 /* RCTErrorInfo.m */, + 0CDC53720F88761FFEBBA22F25FB5359 /* RCTEventDispatcher.h */, + 7D3E0310CCA25F3CD5B84308609151A1 /* RCTEventDispatcher.m */, + 42476F7A64AA7BA8FFB35920F1FE9AFA /* RCTFrameUpdate.h */, + 9007A3F44B14BA7EB90AA3B61B6EF21D /* RCTFrameUpdate.m */, + 9052C091A13022FF93718EE33BD00E74 /* RCTImageSource.h */, + FF1CA10439430CC049CD5687B975EE75 /* RCTImageSource.m */, + D3C3F2AB2E31399ED485A9653BC34AF2 /* RCTInvalidating.h */, + 6F067734D13880C265E549D01BE5C90B /* RCTJavaScriptExecutor.h */, + 30B553459F4188715B5D1F719303295A /* RCTJavaScriptLoader.h */, + 523700F193E295798F5EC922B95231DC /* RCTJavaScriptLoader.mm */, + BF668DD35F7117FEFE217B1BEC930535 /* RCTJSStackFrame.h */, + 9F50D7622E84F5FA8AA25A055A69540B /* RCTJSStackFrame.m */, + 68C80B33AE1B6879EB74CF8842CB14CE /* RCTKeyCommands.h */, + 9B93D14FE376C2D5027B5831039438CF /* RCTKeyCommands.m */, + DF5F4B608EFC5C937FEACB0CBC41C0EB /* RCTLog.h */, + 3F127787122244C4AFE496D25DA31D4A /* RCTLog.mm */, + 30198F89533E567DE6EDCC4C1D62CF34 /* RCTManagedPointer.h */, + 84CD02D1ED29A744F8574417D01384C7 /* RCTManagedPointer.mm */, + FC9BBB92DF15F0771D6FBD1458871EC8 /* RCTModuleData.h */, + A569B97BA410C7A58E9B388D00B34F34 /* RCTModuleData.mm */, + D4CE9E92E07ABF17FED46F4750B649E2 /* RCTModuleMethod.h */, + D78CF1A78FD76E950A83F5B95A112877 /* RCTModuleMethod.mm */, + 95C99A3FFB6500F1978BD60C43BDD8BD /* RCTMultipartDataTask.h */, + 9AA5C9FC8CE7F44EFEAB0BD125AAE8CE /* RCTMultipartDataTask.m */, + 9856F95AC8C1232A931036A55559BC99 /* RCTMultipartStreamReader.h */, + A9622D55AEFAE02CED2DFFB85F78F9E8 /* RCTMultipartStreamReader.m */, + 654CD9BC492EBAE43E9EA12BDD165166 /* RCTNullability.h */, + A8518561956A95E1342CFBCF21B6FC01 /* RCTParserUtils.h */, + 9EDCBD529E4082C773FE0393618BE743 /* RCTParserUtils.m */, + EE9B1F8A8D75DBD0B724CBBC425403EF /* RCTPerformanceLogger.h */, + 96243305842B41AB0C1D76426C6B7583 /* RCTPerformanceLogger.m */, + 3BD0143DF5E499DCA1B23DAD0EDDC0E2 /* RCTReloadCommand.h */, + 0C1A507BCEB82D132645DA32F46BAC87 /* RCTReloadCommand.m */, + 1ECE1F925ECC0E51F74CE044F6D1AA39 /* RCTRootContentView.h */, + F325369DEAC2F9F3E8BB72E3CB27E587 /* RCTRootContentView.m */, + 02A0229394953FB8D15C30C1E490DAE9 /* RCTRootView.h */, + 8BF2586A232E616FF99C351820C4FEAC /* RCTRootView.m */, + 5FC66961EA27E6026AA4E22CBDE039D0 /* RCTRootViewDelegate.h */, + 6D4612EC95007C01427A34C2518E174B /* RCTRootViewInternal.h */, + 45C508BDB58C3C22D4B094C0BF786B3C /* RCTTouchEvent.h */, + C444E8C4FFBDF6017C84D102EF653A10 /* RCTTouchEvent.m */, + 9F70832FAF8D00BECAEBBAEEF9757BF4 /* RCTTouchHandler.h */, + 81B41AAAAED8392AA5AC9A581DA3B2A7 /* RCTTouchHandler.m */, + B4200244D0E1FA1327DCBBEF6454A66E /* RCTURLRequestDelegate.h */, + 59F604DFA78880738E3AA81560E5CA53 /* RCTURLRequestHandler.h */, + 9FA51DC1EB4858AA16A2A500FD76C664 /* RCTUtils.h */, + D5065EADC6A4E0E4BD0D987857BA04DC /* RCTUtils.m */, + DFE5E733EDF5FEF87333D061419E89A6 /* RCTVersion.h */, + 2A6BCBF8DFA9036607B10E1C54A7049E /* RCTVersion.m */, + 58076B1CBB4B83F6FC127CB8A4EF4CF4 /* RCTWeakProxy.h */, + A159C5095F4FAE2AA8E5AEA2CBEC07D0 /* RCTWeakProxy.m */, + 339EB9CB96F76A8830A47ABF43F5579A /* Surface */, ); - name = RNDeviceInfo; - path = "../../node_modules/react-native-device-info"; + name = Base; + path = React/Base; sourceTree = ""; }; - B5156846ADDB114BEA52EBA2EB340931 /* Pod */ = { + B2651275FF887455E77F929836D0C3A7 /* React-cxxreact */ = { isa = PBXGroup; children = ( - 3C4BE4A9A9C3C44051964E22C886DAD8 /* LICENSE.md */, - D9A715C953721810364533E47CD0AFE1 /* react-native-document-picker.podspec */, - AA5C70B18FC97DECBD76DE4EE9592567 /* README.md */, + E198172F6749DBC8FFB5CC6034E4D8E6 /* CxxModule.h */, + 044393F552A853D58562756BD01C24F7 /* CxxNativeModule.cpp */, + CA123E117105CCD6B185D40422D7DC30 /* CxxNativeModule.h */, + 9DB010F05ED85B59E18461127BDA2011 /* Instance.cpp */, + 3091E2CFFC0B4A1C7BD3C4D9B28DF2E6 /* Instance.h */, + 5D45C6ADB8D3846C42DC09C2AEA8357D /* JsArgumentHelpers.h */, + AEAF91E2DB5B6A939D80226C6461B2ED /* JsArgumentHelpers-inl.h */, + B35119F4088DD54E10619963A15ACA97 /* JSBigString.cpp */, + 66D06BEE9895A2305CDB2C4ED3A1E97B /* JSBigString.h */, + B33784A2108D2D41D6C7D2A4F9F0FC8C /* JSBundleType.cpp */, + 9DF61CB46D3614F3C454032356336A37 /* JSBundleType.h */, + E70628CB7C4150E60887D1C06A324ECD /* JSDeltaBundleClient.cpp */, + BE1D0D6043DBC36E460388414B674120 /* JSDeltaBundleClient.h */, + 3A2F76867CD64DF89F23D6837328260E /* JSExecutor.cpp */, + C2AC88F8D973034AFBF86A3FB6B7E0B0 /* JSExecutor.h */, + 8FE974BADF79553E4722E9189E9AE63F /* JSIndexedRAMBundle.cpp */, + 2240A04B699F4DF2CD4D46E9FE2DA557 /* JSIndexedRAMBundle.h */, + 426C1C903F357DC2DE898B6998D0DD5D /* JSModulesUnbundle.h */, + DC92291832A9A80C8FEF22C37FAD5B20 /* MessageQueueThread.h */, + 8AB56EB9AB0FCD6B15E62D038FE0A714 /* MethodCall.cpp */, + 785E5FE77EF92CC9C6E38F9463296C8F /* MethodCall.h */, + B53FAAD75C0C6369D832431E85667CCE /* ModuleRegistry.cpp */, + 3D0BAD9FC243B9AF0FE127E76E95F46F /* ModuleRegistry.h */, + 3BB71B5697E561D8A2B1717AC483B5AB /* NativeModule.h */, + ED5CE9B9F397590A36DF9262A13DAAAC /* NativeToJsBridge.cpp */, + E4882FAE6F2C0CC916E6871F70A1A983 /* NativeToJsBridge.h */, + EAA1B093A4DB20F9F31584CFE7262384 /* RAMBundleRegistry.cpp */, + 433EE80BFBA84B632B975E242C138631 /* RAMBundleRegistry.h */, + A5564BEB590405246294DD1CBD8BFAE3 /* ReactMarker.cpp */, + A43BA5B3060A78F4C17C697796E5B8EF /* ReactMarker.h */, + 92896B4FE27A8B9CD1DA76E16BDFB022 /* RecoverableError.h */, + F219F9EFB883772A4ACAAC42BC83F4A9 /* SharedProxyCxxModule.h */, + DAFA46D343260CFCD8636C9260F0491C /* SystraceSection.h */, + BAD9F50DFF237ECA26733FA5B14503A3 /* Pod */, + FBD803FBCB5790A0C017D5B6750136DD /* Support Files */, + ); + name = "React-cxxreact"; + path = "../../node_modules/react-native/ReactCommon/cxxreact"; + sourceTree = ""; + }; + B33CE6545DA022E972A8D7783453553D /* Support Files */ = { + isa = PBXGroup; + children = ( + CD297B797ED674D2A6DF814ED0D84459 /* Yoga.xcconfig */, + B072D8D73FB9454A1DF60D01B1086581 /* Yoga-dummy.m */, + 42B16FE63D75FB40E4A435DE61E1D82B /* Yoga-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/Yoga"; + sourceTree = ""; + }; + B3E9BFC16E08834B1D814CE43443CBDE /* RNFirebase */ = { + isa = PBXGroup; + children = ( + 292E194053D8F2265C1B40218F834FBF /* RNFirebase.h */, + BDC6A8BB06D24B48DC4DC36CF9EC67D2 /* RNFirebase.m */, + 05928729358A05A5C29C585D4CFF8531 /* RNFirebaseEvents.h */, + 66811F873C66A7948D2771AFCF65C980 /* RNFirebaseUtil.h */, + 80D2C1289FD39DC69D87397ABF0C0CC8 /* RNFirebaseUtil.m */, + 6864C4323B332927C25C81D363DFC6F0 /* admob */, + E90284B991485316A986E5FB1DF32CDC /* analytics */, + 47A4CCE46A5200755FEFE5D346367F6D /* auth */, + 739BD686758B611709E4C1AF386FDA57 /* config */, + 0E131B0B98EB1928C92832F75D968F0A /* converters */, + 8C19FA3C551D9216D554A12DFCD86C9A /* database */, + 9A12DE39C91654946A8090383730010A /* fabric */, + 4C2B59A6447845E8C7EC645FE695DA33 /* firestore */, + B3F79A03A8EC34461389872448FCFEE2 /* functions */, + 14C49D9B45B0FF06FE9219BD4FCC5CD4 /* instanceid */, + 4FABEC75634AA0C38933844043EBB565 /* links */, + EEF907437D27809B7CA53F1AAD787320 /* messaging */, + 099AE0AE9E9DB07248430CE8586CBE40 /* notifications */, + D617075BFB5A5D9D4FA15493346A2F83 /* perf */, + 99BB210090A6AEE8DC8C32621878B864 /* Pod */, + 9B074E293882C1405FE7DFEA559C29DF /* storage */, + FFCEB001A7EA1036A53CA103378B12D0 /* Support Files */, + ); + name = RNFirebase; + path = "../../node_modules/react-native-firebase/ios"; + sourceTree = ""; + }; + B3F79A03A8EC34461389872448FCFEE2 /* functions */ = { + isa = PBXGroup; + children = ( + 95BC1336B0F1DF0B8B9A4478EF9E6918 /* RNFirebaseFunctions.h */, + 4D00044A78AF2C669000B43E09D48157 /* RNFirebaseFunctions.m */, + ); + name = functions; + path = RNFirebase/functions; + sourceTree = ""; + }; + B491C9AE2312CAEA9C8BDCD4F1B79055 /* Support Files */ = { + isa = PBXGroup; + children = ( + 417DE957EC105186A344ACDA4E41ED2F /* RNDeviceInfo.xcconfig */, + 6A32AE1FB919DCA6398458A35DEBF369 /* RNDeviceInfo-dummy.m */, + B61E37A19DD34A941B2637D427A7F9C0 /* RNDeviceInfo-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; + sourceTree = ""; + }; + B52EFBA1619D90208453DC98A8390BCA /* Pod */ = { + isa = PBXGroup; + children = ( + 8CD0EBF3FB910053833A2A196972DD26 /* React-jsi.podspec */, ); name = Pod; sourceTree = ""; }; - B60B5791A09F867695B531031856BE7D /* Pod */ = { + B54D18DDE1F8820DAD793ADF6EA77237 /* Video */ = { isa = PBXGroup; children = ( - 0A3E610139FCDF632FEE44977D779694 /* BugsnagReactNative.podspec */, - 6EA4B3EEA28EB324134F5FE931B43522 /* LICENSE.txt */, - C3115194C5ED76B59575EB1D379B0C7A /* README.md */, + 81F5A0318ABFB4FDB7846C1DDCADF532 /* RCTVideo.h */, + BAF475FBE73DECDA301043F705C1DA1D /* RCTVideo.m */, + E9D41375CE9A5EB189F9B8A07230DB4E /* RCTVideoManager.h */, + 0534438AB319701CE76AD8A253D6A792 /* RCTVideoManager.m */, + E51D7F63B069E4994B4B8D5E4C1D0675 /* RCTVideoPlayerViewController.h */, + E36693084136459DC362AEAFB76F6C6B /* RCTVideoPlayerViewController.m */, + 6D666C4436EF461909F1FA890E75B227 /* RCTVideoPlayerViewControllerDelegate.h */, + 733FEDD8017B2DDE7BCA6BBDF2D8B241 /* UIView+FindUIViewController.h */, + 5F837651F5D08E18CB65FEA245D52D31 /* UIView+FindUIViewController.m */, ); - name = Pod; + name = Video; sourceTree = ""; }; - B63D34D64F1A4A3B05C953F0794C889B /* Pod */ = { + B5E95B58FDDA627BF052CED8E412C44B /* ios */ = { isa = PBXGroup; children = ( - 1B160D5FCA55E533033FB42A5DA637A4 /* React-cxxreact.podspec */, + 333ADA951A0BEE1FEAFF5ACE35B8ECF0 /* RCTTurboModule.h */, + 71541F399B2685CEB9C5D006A9B20DE7 /* RCTTurboModule.mm */, + D3245588DCAD4CF71DF8859685764FE8 /* RCTTurboModuleManager.h */, + C532BE23168A8EECAAEA83EC098617CE /* RCTTurboModuleManager.mm */, ); - name = Pod; - sourceTree = ""; - }; - B7E1A687F8C6E648DCE171D4323EEF9D /* Support Files */ = { - isa = PBXGroup; - children = ( - 805B0964D9A92F156020FE607DC679BE /* EXAppLoaderProvider.xcconfig */, - 1A34FDBE2C639412DD7763955BBF3D46 /* EXAppLoaderProvider-dummy.m */, - 0164E6F55CF755DCCDA5D301F61379F4 /* EXAppLoaderProvider-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAppLoaderProvider"; - sourceTree = ""; - }; - B83320CE283D4CBDE040CDFFD9C72B1E /* Support Files */ = { - isa = PBXGroup; - children = ( - 28CBEA458246C5B01A0E0DE4701554E3 /* react-native-safe-area-context.xcconfig */, - 84F96C5D37C786149D06D1E661EB6FCE /* react-native-safe-area-context-dummy.m */, - 7AE43E178764E6BE3CB3F6DC3AECD227 /* react-native-safe-area-context-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-safe-area-context"; - sourceTree = ""; - }; - B89877AB28B060619B52AD99CBD5D1B6 /* Support Files */ = { - isa = PBXGroup; - children = ( - 453634152B0E90E73925F836134076EB /* RNImageCropPicker.xcconfig */, - B1D73A503CFA0C4F313E4D1EA235247C /* RNImageCropPicker-dummy.m */, - E1EB00A993D6AA65E76A5C7D33178AAC /* RNImageCropPicker-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; + name = ios; + path = ios; sourceTree = ""; }; B8F622E3CB1AD4518328E7DFDE2019B3 /* Support Files */ = { @@ -10878,6 +10413,60 @@ path = "../Target Support Files/DoubleConversion"; sourceTree = ""; }; + B9E4151A894ABA82EE7C33FD47B70408 /* Tools */ = { + isa = PBXGroup; + children = ( + F1254E34D6B5674E1F4A309A48A3BACF /* BSG_KSArchSpecific.h */, + 848E2B83890BA8EE18D6FBCE6A0C144C /* BSG_KSBacktrace.c */, + 6A5D8BAC63D29824374C381C0A96C727 /* BSG_KSBacktrace.h */, + 635B30421D1D064749AABA2E40F9BF36 /* BSG_KSBacktrace_Private.h */, + B2D53B9F8BD8745AC674A2064EB8E986 /* BSG_KSCrashCallCompletion.h */, + 60307B4AFB07C7D8EE7B8A6C85039606 /* BSG_KSCrashCallCompletion.m */, + A2AB7A8A247219B30EBEDAB3E29FA7F9 /* BSG_KSDynamicLinker.c */, + 10DEDA49051F0A402D01324F03D9BC16 /* BSG_KSDynamicLinker.h */, + D0AE346535487551E03C418FEBE76792 /* BSG_KSFileUtils.c */, + 62BDA27416F0DA8CF8FFA27D15F81424 /* BSG_KSFileUtils.h */, + 26573A4207CED9E4E90197F447B19B22 /* BSG_KSJSONCodec.c */, + A22A14F0FBD25D1D6ED85AAF2766126B /* BSG_KSJSONCodec.h */, + 1DC26F9789EA7BEED081317924D62931 /* BSG_KSJSONCodecObjC.h */, + 65CBB5815C2C8E2699BCAD8FC3191639 /* BSG_KSJSONCodecObjC.m */, + FDDDC2FA9F4DDA2DD7852488C0CE7446 /* BSG_KSLogger.h */, + D4A7792216784BB7402BC5B2693927B3 /* BSG_KSLogger.m */, + AE94B7C81FB439C90658524538A54B96 /* BSG_KSMach.c */, + EC7B045962DCBDA2CAE57D022600ECFA /* BSG_KSMach.h */, + 3FDCC8ABD7A67A253A07EF146FF0B6D1 /* BSG_KSMach_Arm.c */, + 16F155C2E7E7876C921F3AF21AE8489E /* BSG_KSMach_Arm64.c */, + 590AA17A070B587502226ADCCCE7B101 /* BSG_KSMach_x86_32.c */, + 51BB6D545F8287FFECC34C9C10362B37 /* BSG_KSMach_x86_64.c */, + DF369DF3D4A9549CF6A59A917F768541 /* BSG_KSMachApple.h */, + 0DE6FE52679701DA0162920EC37D06F5 /* BSG_KSObjC.c */, + 72173F0326F3F2CF6249B84E3909FFF8 /* BSG_KSObjC.h */, + C04ADF14DB99C7990B47F00AE3C4E79E /* BSG_KSObjCApple.h */, + 7261F4174CD03563769037064F258351 /* BSG_KSSignalInfo.c */, + 3E54DF39BF0279AECDF1DCDC0FCC927A /* BSG_KSSignalInfo.h */, + 83968FC1BA6EDD62503BFB82F0CF2238 /* BSG_KSSingleton.h */, + B7C45FCE2881D036B56473739FCDDBFE /* BSG_KSString.c */, + FB55E6533C35670B3BF5EAFAB97011B1 /* BSG_KSString.h */, + 6E9D69B7D050FED48575C2FDAB456FC0 /* BSG_KSSysCtl.c */, + 000EE617F442AA338B46300173F67B79 /* BSG_KSSysCtl.h */, + A70E22ECB6B15884C8F7C9741D14A63F /* BSG_RFC3339DateTool.h */, + 0959F01729617BCA7738ED90704D2BDA /* BSG_RFC3339DateTool.m */, + DC43EFFCE628499967009E8FD1F6CEE3 /* NSError+BSG_SimpleConstructor.h */, + 30B5540FB20E231DD0C1B3C19AEF6296 /* NSError+BSG_SimpleConstructor.m */, + ); + name = Tools; + path = Tools; + sourceTree = ""; + }; + BAB8C5E018E5EF6FC8AC379C77B47AFD /* vendor */ = { + isa = PBXGroup; + children = ( + 68B113FC9C0EB87DF386554BD03D2038 /* bugsnag-cocoa */, + ); + name = vendor; + path = cocoa/vendor; + sourceTree = ""; + }; BAC226F24FB62F4C013428200A926482 /* Support Files */ = { isa = PBXGroup; children = ( @@ -10889,68 +10478,101 @@ path = "../Target Support Files/glog"; sourceTree = ""; }; - BD12E273A21EE2A09F277E510BB09201 /* Pod */ = { + BAD9F50DFF237ECA26733FA5B14503A3 /* Pod */ = { isa = PBXGroup; children = ( - 59FED6E9132BB6475FEED44436FB6735 /* EXFileSystem.podspec */, + 46646C0B2CC8006C439A95FBAF852B52 /* React-cxxreact.podspec */, ); name = Pod; sourceTree = ""; }; - BEF799E14A15ED866892E3EEAD021308 /* Pod */ = { + BB76AEA1E13A51BE8C3D716F3178C819 /* React-RCTNetwork */ = { isa = PBXGroup; children = ( - 18096BB955BB42F4DEB495AAC68FCE6C /* React-RCTNetwork.podspec */, + F92EE1C0837EB379E32FFE7059BE647D /* RCTDataRequestHandler.m */, + CCA72E64A0F57F58993904DBB63B6CF7 /* RCTFileRequestHandler.m */, + BA657D183021628BF32ED7BF4CCAB778 /* RCTHTTPRequestHandler.mm */, + 27ED0005F17C8AD51E057BF21D5F0EC2 /* RCTNetInfo.m */, + DC5012D88B77C31B39BB274BFF3219BD /* RCTNetworking.mm */, + A5A1C6C1D4F09382123FB6187EE8CF02 /* RCTNetworkTask.m */, + 2E299FD20AAD4C2075DF3FBB1B18680F /* Pod */, + 02CB2453ABFE94487A4C2E99D1C9945F /* Support Files */, + ); + name = "React-RCTNetwork"; + path = "../../node_modules/react-native/Libraries/Network"; + sourceTree = ""; + }; + BB8971DFA319D1901489DE042CB9241E /* CxxBridge */ = { + isa = PBXGroup; + children = ( + 3736B4D92E8195168EE3582062C4457E /* JSCExecutorFactory.h */, + 1A4E202763AF3FAE6CBFC04895E4DF1B /* JSCExecutorFactory.mm */, + E5F32C80489C8EE4CB8C544D85360E3C /* NSDataBigString.h */, + 36080B7CB2AEFCBD257B089A4550153B /* NSDataBigString.mm */, + 07E7EC48E22A55A891407DDFFFC66381 /* RCTCxxBridge.mm */, + 093A24227EABDA8622F866E729A0EB3D /* RCTCxxBridgeDelegate.h */, + 2742C515451DD6FFE912AF6EA16CFB7E /* RCTMessageThread.h */, + FFBE77E59F03C19E6D2D4D175A6106C0 /* RCTMessageThread.mm */, + E9CCFBD3A7AF692B506909FDA846C710 /* RCTObjcExecutor.h */, + 88CC76C7B3F3D5DD730A169F26DF8B7C /* RCTObjcExecutor.mm */, + ); + name = CxxBridge; + path = React/CxxBridge; + sourceTree = ""; + }; + BE00FAF0CBD2E4D1652C8986299FEAF3 /* RCTTextHeaders */ = { + isa = PBXGroup; + children = ( + BE4D11DC428728370935140D16D3665C /* RCTConvert+Text.h */, + C006DA03186A2DFF16C749637E83030E /* RCTTextAttributes.h */, + 48C40A12532E5FF027E698CA648F6AE6 /* RCTTextTransform.h */, + A90B82BEAF8C30CD6648482FD235E0D8 /* BaseText */, + 9514634DC3B2CA79749467D97717DBD3 /* RawText */, + E9C46F0530C455A69D1E8AC9DD78E579 /* Text */, + 6C520778F34C82058DA983FD5B4D9637 /* TextInput */, + EC94EADF73ECC0E2401AD7A4780CB857 /* VirtualText */, + ); + name = RCTTextHeaders; + sourceTree = ""; + }; + BE512648F280AF1B44F65A9012C11A56 /* Interfaces */ = { + isa = PBXGroup; + children = ( + 629BBD764161A3DE7E9C7942F38EA4EE /* EXAppLoaderInterface.h */, + BDE42650BC9F9DD8A115629E10981D07 /* EXAppRecordInterface.h */, + ); + name = Interfaces; + path = EXAppLoaderProvider/Interfaces; + sourceTree = ""; + }; + BEC4854966A33A94EEB857F6AB2BBD96 /* React-RCTActionSheet */ = { + isa = PBXGroup; + children = ( + 989EC3095E4875E3B1D9DBE132132CD9 /* RCTActionSheetManager.m */, + D2660491589B45D651371007B9613336 /* Pod */, + 23D640A023956697F7254F02F112EB09 /* Support Files */, + ); + name = "React-RCTActionSheet"; + path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; + sourceTree = ""; + }; + BFA96C05E594587DDADD1CE1605602FF /* Pod */ = { + isa = PBXGroup; + children = ( + D0453667D24E7F60CE58700765778DD9 /* LICENSE */, + F910D3B5C95998CA6A22B02EB5A8FDC0 /* react-native-jitsi-meet.podspec */, + E5A0609A4F1D25071C96892F8D2DC260 /* README.md */, ); name = Pod; sourceTree = ""; }; - BF0BC018B1BB4AD9D3E5C6F230AC38F5 /* Support Files */ = { + C07AA826730DEC9D91CDA6996D8AAD8D /* Support Files */ = { isa = PBXGroup; children = ( - 23B1BE278CD205D48A44F14DAC8A8AF7 /* UMFontInterface.xcconfig */, + 18B0F3793E3843628CE04C0BCDAC06F7 /* UMImageLoaderInterface.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFontInterface"; - sourceTree = ""; - }; - BF26F6753BEA85ADCCE965AF3F357D24 /* React */ = { - isa = PBXGroup; - children = ( - 78F799686334EF0B73E2B7866DB6396C /* Pod */, - 918227BB70C4176BF5E80D9F7921DEDD /* Support Files */, - ); - name = React; - path = "../../node_modules/react-native"; - sourceTree = ""; - }; - C0076F5F6762BA80DDD7A2FD70AB7F32 /* Support Files */ = { - isa = PBXGroup; - children = ( - DEEF2251E2F5CA323596D6574F57B77C /* React-RCTVibration.xcconfig */, - 01FF74C48E54FBDFEC0080DDD34AD0AF /* React-RCTVibration-dummy.m */, - 51E24A1E3414E653C968569C8F000692 /* React-RCTVibration-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; - sourceTree = ""; - }; - C0534DD2A9DB714EC68CABB36D203915 /* Profiler */ = { - isa = PBXGroup; - children = ( - 01ABF51D9235052EBB69E3ACB2EEBEB1 /* RCTFPSGraph.h */, - 10527EA069F37FB4FBAFB253864AC87F /* RCTFPSGraph.m */, - 67990EEF473097800E970FF9A56943FC /* RCTMacros.h */, - 015E5200F4C3DA81D4F43021B2CD8E1E /* RCTPerfMonitor.m */, - EB90C3B9038444E21C8CF6386023AD2A /* RCTProfile.h */, - 0F66331B97BE93C730AC2A4F4CA82819 /* RCTProfile.m */, - 0BBF37AFD62522FA77A1FCA579A3062A /* RCTProfileTrampoline-arm.S */, - 815BA5A5C6DA9D26A66BF659DF72FBBC /* RCTProfileTrampoline-arm64.S */, - 482058D245DD69C4C3A6E87A0A57D953 /* RCTProfileTrampoline-i386.S */, - 51F5AE97EBC08D9324A6F718CFC8C22C /* RCTProfileTrampoline-x86_64.S */, - ); - name = Profiler; - path = React/Profiler; + path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; sourceTree = ""; }; C13445FD1751F9C73A557E63E73EAAF1 /* FirebaseCoreDiagnostics */ = { @@ -10967,35 +10589,33 @@ path = FirebaseCoreDiagnostics; sourceTree = ""; }; - C1C268E557C64146E3A9D621CD05F356 /* Source */ = { + C19D7CF12BD52427B17CB11656268F60 /* Support Files */ = { isa = PBXGroup; children = ( - CC187E97C241EA1103BF8BBFF12FC601 /* KSCrash */, + A9174224765725AFB31BB9B842F12008 /* React-RCTSettings.xcconfig */, + BD96DC68DA0234D68DF41799B3EF2E50 /* React-RCTSettings-dummy.m */, + 32ADA46C128202D313CE8C8980EDF07B /* React-RCTSettings-prefix.pch */, ); - name = Source; - path = Source; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; sourceTree = ""; }; - C338F15EB6228CA4BE12B74215549793 /* Pod */ = { + C2C64BAD894C524B4CF3161427E86E20 /* Support Files */ = { isa = PBXGroup; children = ( - 38EDF111D900EB94F79EED6C99B39A14 /* LICENSE */, - 376232CCE51105BC9EBB6929EBBE965F /* react-native-background-timer.podspec */, - 65409E739D1C700B86402E3851A8586F /* README.md */, + D7A718E9E40F641EF25CBB285005DF86 /* UMFontInterface.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFontInterface"; sourceTree = ""; }; - C3BA035DE4754B12916D581ED878F75F /* react-native-orientation-locker */ = { + C30DEAFD1ABD4EC7997B9CDF5AB71FC8 /* Support Files */ = { isa = PBXGroup; children = ( - B6F03C8E53D47EB052A1CC5FA5F2614C /* Orientation.h */, - A1BBB61619A989569CB8098616E4D31B /* Orientation.m */, - 145DBC4CF2E5F763EA5C471306637E52 /* Pod */, - 2D16D0C42B1DB8DA494832E5BB6826D9 /* Support Files */, + A24B4C31CCB2B7ADF144611FECCFA52F /* UMBarCodeScannerInterface.xcconfig */, ); - name = "react-native-orientation-locker"; - path = "../../node_modules/react-native-orientation-locker"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; sourceTree = ""; }; C3F293B73B8E4013DFF8D0EE7111AADA /* Frameworks */ = { @@ -11007,6 +10627,18 @@ name = Frameworks; sourceTree = ""; }; + C437BD883F5EBA585A778D23FE5D224E /* react-native-splash-screen */ = { + isa = PBXGroup; + children = ( + 37A026A43479D39DF3888848ACC42BFE /* RNSplashScreen.h */, + 7F684B0B3F92BA579D74956F3636C84A /* RNSplashScreen.m */, + 7CB2A68288E70D1C7A87D587AEEF65AB /* Pod */, + 6065E5B12A5672A833E7CF853E6FE31F /* Support Files */, + ); + name = "react-native-splash-screen"; + path = "../../node_modules/react-native-splash-screen"; + sourceTree = ""; + }; C585E20F5427EE56255F14CB4CE12FAD /* Support Files */ = { isa = PBXGroup; children = ( @@ -11028,130 +10660,85 @@ path = "../Target Support Files/FirebaseInstanceID"; sourceTree = ""; }; - C640AC9BDDB2ACB24B886FE7DE2C57E5 /* Pod */ = { + C5CE554627B54A2CD09898FF37451579 /* Pod */ = { isa = PBXGroup; children = ( - 16F80F564F3A819704340879BCFD42D3 /* React-jsinspector.podspec */, + BCF4BB39AA9D972D4FAFEA6BC6B8EEBC /* UMFaceDetectorInterface.podspec */, ); name = Pod; sourceTree = ""; }; - C7C2498B021AEEAE88C8BED3AD124305 /* react-native-notifications */ = { + C5D5503B0BDE63B267E5A90009A4C57F /* Pod */ = { isa = PBXGroup; children = ( - DDAFED18C9F4F5D9592FED828F7B620C /* RCTConvert+RNNotifications.h */, - E9DC781ACA5F2608552586A764F57DEB /* RCTConvert+RNNotifications.m */, - 3676A972801F4861E5D0485DE7C09E39 /* RNBridgeModule.h */, - 91470931CE2F4D5F2F6D7F4DE87E4A11 /* RNBridgeModule.m */, - 6E446FE2AACF3592638FF62AD6690901 /* RNCommandsHandler.h */, - A8A11A28FFC137091F553BAED75EECB7 /* RNCommandsHandler.m */, - ACDA1DE1654B36F054675ACB4E873B75 /* RNEventEmitter.h */, - 5BE0B46BDE7B2B716210F16FE77CB5FC /* RNEventEmitter.m */, - 7E5605663032EC5A319B9EBBC3A8F55F /* RNNotificationCenter.h */, - B94EA1AEDECC277366A0D03E8D7EBF1C /* RNNotificationCenter.m */, - DBFEECACDCA958BC8BC56A193507F759 /* RNNotificationCenterListener.h */, - 9E099219D7E60FCFC87D5C1933412D80 /* RNNotificationCenterListener.m */, - 41989E69C1F9E62D9367BA76E343ADD1 /* RNNotificationEventHandler.h */, - E6753D53BAE8459EFA98E4DEC670A9A5 /* RNNotificationEventHandler.m */, - 0534975E0266B7039A5CAC7EBC33F077 /* RNNotificationParser.h */, - ACFDE15A0A495686930280A708A36700 /* RNNotificationParser.m */, - 545145E75CC7F87054F8129F9D6AA8EE /* RNNotifications.h */, - 6520D5F39B4FCC1EEE251141F081ED40 /* RNNotifications.m */, - D3E1FF370DE1C55EB660BD7C86F8DCD3 /* RNNotificationsStore.h */, - B91DAC059E0C38268C5BE5EE56C5D5F3 /* RNNotificationsStore.m */, - 4E1C13D39704C9B2F50E2AE49B721C79 /* RNNotificationUtils.h */, - B483868AB8CA5F529A41ABE3A2712850 /* RNNotificationUtils.m */, - 881F3F80A1FE603DF970448C24658675 /* RNPushKit.h */, - 3B638966B546BA1004E64E67CF3EBB70 /* RNPushKit.m */, - 9BA338194C90961253A3D4E0A70D7A57 /* RNPushKitEventHandler.h */, - 2C109BC59AFAD5D765A50625B9B68A96 /* RNPushKitEventHandler.m */, - 496F4557E7A4D54E268368278710F825 /* RNPushKitEventListener.h */, - D70B7A85E1799D72D9A6A6A957E9BA3D /* RNPushKitEventListener.m */, - 1F298069CD073F541C92820D95F8A96B /* Pod */, - 4E28CF5CF43DB1CC65E3CF71FF06C9EC /* Support Files */, + 3936896BBD2065045E090C1DCACCC95E /* EXPermissions.podspec */, ); - name = "react-native-notifications"; - path = "../../node_modules/react-native-notifications"; + name = Pod; sourceTree = ""; }; - C7CE6A3D9261E830E8B620BAEA80A851 /* Development Pods */ = { + C6001D3B2A54270C452614A0C3638FD6 /* Pod */ = { isa = PBXGroup; children = ( - D9B53A88B2BE01D956861FAB62B75119 /* BugsnagReactNative */, - 66F122FC511DE4425D9F73B6C3EE15C6 /* EXAppLoaderProvider */, - 869C52847C0F09570B9E96B348058F54 /* EXAV */, - DBA8267BC290C80B223AEF6AE5A359C4 /* EXConstants */, - 60BF6517086893E1B6AD05340D2B012E /* EXFileSystem */, - 25423CF51FE14AB48650CFE3C5B4EE77 /* EXHaptics */, - 626CDE09DB1925F3BDEB9693E59BF749 /* EXPermissions */, - ACEC7AFA215651EA8C36BA1E6C82473C /* EXWebBrowser */, - F1ACB20AFA0265D8E295526FD563D6B2 /* FBLazyVector */, - 9135007D2DA4A1B116C5BCBE8B91C478 /* FBReactNativeSpec */, - D3B2DC51368CFE0E88BDA10ED0F0F999 /* RCTRequired */, - 82E8969AA29E09B77D469A499343DDFA /* RCTTypeSafety */, - BF26F6753BEA85ADCCE965AF3F357D24 /* React */, - 22D4E3A4C30FB18492FCE31F9B0A4F08 /* React-Core */, - A70FEA02F9AA8C35973C83E7FC978EF6 /* React-CoreModules */, - E67994D1AE3F9B23BE5CA6DE4B6666CC /* React-cxxreact */, - 70468299414AEED80A5DBF9017D8EC06 /* React-jsi */, - 9C790CA86106E14F61591C9EA11309C4 /* React-jsiexecutor */, - 95853B5367DF3D5F827D042D85F8A879 /* React-jsinspector */, - 5860028CF367BA98210DDFE2DA622297 /* react-native-background-timer */, - 92532A78DE51330F30FC57A74133208F /* react-native-document-picker */, - 3612C3A56EC5994979DE22B51A34AE9E /* react-native-jitsi-meet */, - 359923AC9D6B4CDA11D905F74C3A1AC7 /* react-native-keyboard-input */, - A46B23531783BD59AE8C3EDE2F1BE37E /* react-native-keyboard-tracking-view */, - C7C2498B021AEEAE88C8BED3AD124305 /* react-native-notifications */, - C3BA035DE4754B12916D581ED878F75F /* react-native-orientation-locker */, - 4614F955C9A29E47F0AF426F2CA1E57E /* react-native-safe-area-context */, - 926AE24B97F79B2E4F32CD9DB7DBB5D5 /* react-native-splash-screen */, - 0E986D5DA9ECEC270B7EF8036731C7FC /* react-native-video */, - A4961123965C842B32600F7D3DE74539 /* react-native-webview */, - 92BB27717DAFC9C7418A9BBFDEEACA91 /* React-RCTActionSheet */, - 0E13E494343CF2DA023D136BA21AD0D3 /* React-RCTAnimation */, - 084FA5E518A97A47191F0F6F497A9DFC /* React-RCTBlob */, - 4044A4FED63DA6446C1212F476274CE8 /* React-RCTImage */, - 06D5A36012BA4E8AE4730DD2C74C32DD /* React-RCTLinking */, - 08A5FF7E278934960BEA62410DCB1571 /* React-RCTNetwork */, - 9A7B4261BB0B1A979AC6234473488CDC /* React-RCTSettings */, - 8C64D9745CAF87840F0146E3E9414458 /* React-RCTText */, - 6013073D7E79F81B87C7E8F3406B7C9E /* React-RCTVibration */, - 602CF73DECBD0F65A240ABA6FBDA12E8 /* ReactCommon */, - 041BED5182C2B4A0150C1CF5495C806E /* rn-extensions-share */, - 6BFC193DCD932F9F0F5BF07CFB738B2C /* rn-fetch-blob */, - 852D0C0E0F3AB5CC0842A8F551AA78F2 /* RNAudio */, - B4DCB009CB01ED2856C37DD1B1D2FC57 /* RNDeviceInfo */, - 4061F6CD8ACDAAAC9A29B814A7B2ACD3 /* RNFastImage */, - 78DA69CCB675798DE173E67B97A0C3E5 /* RNFirebase */, - F3FCE254FA39B3BEBA1FFFA1D715F01A /* RNGestureHandler */, - 32401A809080CAEB4485BCFCCFC7793D /* RNImageCropPicker */, - 85D71DD9C3747D45EE43F9D049DE6ECB /* RNLocalize */, - 3463E49CD27EC74B3482A825CBB97CBA /* RNReanimated */, - 005DF25CDD666E7DCEDA65090598975E /* RNScreens */, - E8A300F2BDF2BB40438F5B985129E36B /* RNUserDefaults */, - 5F333FB7440A3CC6A89F2281808A25F7 /* RNVectorIcons */, - A5BEBFC9F187CF25F3F66E83EC183F8E /* UMBarCodeScannerInterface */, - 2FDD2E511A2AF4BD60E90E864F40B1DB /* UMCameraInterface */, - A592BA79104C94C794DAC4D62BA64C53 /* UMConstantsInterface */, - 1198052C06D69DAE1CDE63D6251136C8 /* UMCore */, - 6900006C392DE2AC1A394608EA8A5460 /* UMFaceDetectorInterface */, - 8D36003AD110C1A41E151479331B10C0 /* UMFileSystemInterface */, - 1963CE86137D6CA609B5FA92CE5654BB /* UMFontInterface */, - 8D0ACA1FB6996D08599FBBF4435DE9ED /* UMImageLoaderInterface */, - 920DC7F5F815D566EC3E3C05AA87E1C9 /* UMPermissionsInterface */, - 1A0972D40A6EE14DDE5DC4B9014CCD22 /* UMReactNativeAdapter */, - D0599EECAACB92596554AC12CEB8E686 /* UMSensorsInterface */, - 6420DBBF67C2C37A69DAF522D48BFC3B /* UMTaskManagerInterface */, - 7067043B208B2B556C580DE6D4F0F6DD /* Yoga */, + 3CC08CCF71EA063D7C9F49DC76FA7477 /* UMReactNativeAdapter.podspec */, ); - name = "Development Pods"; + name = Pod; sourceTree = ""; }; - C923D4AB3586666209A979BB6F6EE6E1 /* Core */ = { + C6BBAC5C19713AB0C6A967E41276FD06 /* React-RCTAnimation */ = { isa = PBXGroup; children = ( + AA470EA710A5F74288B5F21FC07BCF6E /* RCTAnimationUtils.m */, + 01CA3635BAEFEBFFFA6086B82A4630AA /* RCTNativeAnimatedModule.m */, + 84B93183B0BF0D16902A3D146735FF9F /* RCTNativeAnimatedNodesManager.m */, + 171FB9F951926D7D69F37D315853132C /* Drivers */, + E6D267798D11167A7A9181428927C87C /* Nodes */, + 66AD9D645332E83295CE79FF61595097 /* Pod */, + FFA2D81094008E5DC54AB64DD745BE81 /* Support Files */, ); - name = Core; + name = "React-RCTAnimation"; + path = "../../node_modules/react-native/Libraries/NativeAnimation"; + sourceTree = ""; + }; + C775E0CE765301AA0D5949C13E578D77 /* Support Files */ = { + isa = PBXGroup; + children = ( + 71906CFCF94F1E983897EA95BC9AF648 /* React-RCTLinking.xcconfig */, + 14725CAC155E8EDBB22A24BBCB965C25 /* React-RCTLinking-dummy.m */, + 63CEF54D086C669043F6D5744672DBE9 /* React-RCTLinking-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; + sourceTree = ""; + }; + C7C4EE3C28CD5A1ACC1DCE9B67D24B91 /* Pod */ = { + isa = PBXGroup; + children = ( + 07B6F5EC5086A316E48857EB51500206 /* EXHaptics.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + C84D37CAD0D45945C09CE0DA08EADD1F /* RNVectorIcons */ = { + isa = PBXGroup; + children = ( + 5790CED5B5C3ABB8747E23A56375F84F /* RNVectorIconsManager.h */, + BC1273027B89903D2FA02EED7206E7B2 /* RNVectorIconsManager.m */, + 6128B252FC1BD23075D495354CCE4231 /* Pod */, + F095D80BB34A61EF98655673AB306B73 /* Resources */, + 876E33278B351A381EE71B849DE2B7DD /* Support Files */, + ); + name = RNVectorIcons; + path = "../../node_modules/react-native-vector-icons"; + sourceTree = ""; + }; + C8A8F2A194C690C4616EAF0EB9A8CB57 /* jscallinvoker */ = { + isa = PBXGroup; + children = ( + 58CFBB54CF6999643E129EA34CBB47AC /* BridgeJSCallInvoker.cpp */, + CE5496E6F7A3AE3054CCDBA23677DF90 /* BridgeJSCallInvoker.h */, + 1E93C236783610CBE74D685376947EF4 /* JSCallInvoker.h */, + ); + name = jscallinvoker; sourceTree = ""; }; C9AFE6A9467EAF20BA366490245FBDB7 /* Environment */ = { @@ -11163,127 +10750,94 @@ name = Environment; sourceTree = ""; }; - CAFAA5419E0451574CA50947377F1BA3 /* Sentry */ = { + CB1C7B816EBBFB15DED635CF72046494 /* EXWebBrowser */ = { isa = PBXGroup; children = ( - 72282327F95F8822756EDF024E482C3A /* BSG_KSCrashSentry.c */, - FC68CA0C9B35A3F554A0AAB40793A23C /* BSG_KSCrashSentry.h */, - 07401BE7214B2F6F903AB170EA90425A /* BSG_KSCrashSentry_CPPException.h */, - E66589B0E33602D442277017EF0CA0B8 /* BSG_KSCrashSentry_CPPException.mm */, - 97653D7DBD70A9B857F0DCA233B30BA4 /* BSG_KSCrashSentry_MachException.c */, - D75770D70B9176C24A1674970C0004EE /* BSG_KSCrashSentry_MachException.h */, - 61F76F2B12CA5ED98EC7DE96FD36B393 /* BSG_KSCrashSentry_NSException.h */, - A963A9A6EE380D60965CA3EF8EA10F39 /* BSG_KSCrashSentry_NSException.m */, - A0D1E2E71A5DEE6AFA783575E6E4F9A8 /* BSG_KSCrashSentry_Private.h */, - 03820841C6D9F58DB80408E8A2CBE1C5 /* BSG_KSCrashSentry_Signal.c */, - B8B2A7D89EFF4BDAF2F211220E380E10 /* BSG_KSCrashSentry_Signal.h */, - 140B2D0F51861EEAF82C5B9DE4181EEC /* BSG_KSCrashSentry_User.c */, - 76EDC43AE837446CA118C6F033D1446C /* BSG_KSCrashSentry_User.h */, + 06BC30FFF1D885CC49CF016CB604B726 /* EXWebBrowser.h */, + 9304735A76A1F46043D22855E7BDABD8 /* EXWebBrowser.m */, + 8CA39506E0553D2B9A4AF2F7FAA8843F /* Pod */, + FFA5DB6348D27D0CB2F79F5F804E8E5E /* Support Files */, ); - name = Sentry; - path = Sentry; + name = EXWebBrowser; + path = "../../node_modules/expo-web-browser/ios"; sourceTree = ""; }; - CB2560DA7CCC3101486756A9B03D0507 /* Support Files */ = { + CB8FFE81C7D6B29641D72C66AB75126D /* Support Files */ = { isa = PBXGroup; children = ( - BD71DD467C6026268F307A4BC8F4A69E /* UMTaskManagerInterface.xcconfig */, + CAE7752D029A98D84435AAB9B13C6C3C /* RNLocalize.xcconfig */, + 15047356F0303DE5403805E4517E1120 /* RNLocalize-dummy.m */, + C08A7BDC21357A2133C2B6BFC04AC9CE /* RNLocalize-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; + path = "../../ios/Pods/Target Support Files/RNLocalize"; sourceTree = ""; }; - CBD9C79AB520AA05B13522F90337C279 /* Support Files */ = { + CCA6E5514E5D2126D129F5520E556835 /* Inspector */ = { isa = PBXGroup; children = ( - 2B435DF52AD873ADF9D8AE1CBA4931E5 /* react-native-webview.xcconfig */, - 839FF9FB3C504A04C732B44C2B167713 /* react-native-webview-dummy.m */, - 203BEE5B7A3C76D9A28A062AB3122A0F /* react-native-webview-prefix.pch */, + CC5DE05F0AFDA59DEC6A3F5271D6E24B /* RCTInspector.h */, + 3C763F7A19E5C62201E3BFA66067DB8B /* RCTInspector.mm */, + E8890B903CEC07A38B5E97F6B26123A0 /* RCTInspectorPackagerConnection.h */, + 534D7E0FB2F0EFD8D7A082573E2E647D /* RCTInspectorPackagerConnection.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-webview"; + name = Inspector; + path = React/Inspector; sourceTree = ""; }; - CC187E97C241EA1103BF8BBFF12FC601 /* KSCrash */ = { + CCDF37DB566108C526E46063C4B26F72 /* Pod */ = { isa = PBXGroup; children = ( - 74AC54C23E4951C680C4CCBD9F0848CA /* Recording */, - 0C2508B925551C4E2A1983A6CF2366E0 /* Reporting */, - ); - name = KSCrash; - path = KSCrash; - sourceTree = ""; - }; - CD1C7D2CD28DF0326838E9239EEB7292 /* Pod */ = { - isa = PBXGroup; - children = ( - 37B1D4AEDA3C3A8E5F33F282F1F987B0 /* LICENSE */, - ACAB9FBCCBB1201C7E29D2295BFE1B8A /* README.md */, - 874D318D103104E57D797A8A07BC6432 /* RNReanimated.podspec */, + E46A026ECB5B82F99A115CFD9DCFC1F5 /* React-jsinspector.podspec */, ); name = Pod; sourceTree = ""; }; - CD2BF586B8DF97E858EBEA42C00DB990 /* Support Files */ = { - isa = PBXGroup; - children = ( - D407CAF1CE5A3A9A358FDDBBE99BA539 /* EXAV.xcconfig */, - 03EEEBC9EB839984A4629156269A8950 /* EXAV-dummy.m */, - B139E20F8DED281005CCC3C604099501 /* EXAV-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAV"; - sourceTree = ""; - }; - CDECB276EFC4A7C95CCCEAE672CE3D19 /* crashlytics */ = { - isa = PBXGroup; - children = ( - 73D906826174E00E73212B5936EE0CA2 /* RNFirebaseCrashlytics.h */, - 7E2B4037FB40EB12622E7E83F2F2A39D /* RNFirebaseCrashlytics.m */, - ); - name = crashlytics; - path = crashlytics; - sourceTree = ""; - }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - C7CE6A3D9261E830E8B620BAEA80A851 /* Development Pods */, + 19CE0BF4225519CBE3D68804AB7D00C7 /* Development Pods */, D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, 03091ECE0AA6E6999D89D5DBDB4C49B8 /* Pods */, - 983471F60B05255D89C4BF1672A379C5 /* Products */, + 475A3A43E890DBD5493F0236FA4CE5BA /* Products */, A5ADA69422B84A7580C82CAA5A9168D1 /* Targets Support Files */, ); sourceTree = ""; }; - D0599EECAACB92596554AC12CEB8E686 /* UMSensorsInterface */ = { + CFCE2E129260B2DC9C3FBD031AEE9738 /* UMImageLoaderInterface */ = { isa = PBXGroup; children = ( - 81DBBBFE40F94A479F78329C83F89993 /* UMAccelerometerInterface.h */, - 5F1CB8C264374D0EB1FE93936D93E179 /* UMBarometerInterface.h */, - 37857B35D45B329975E2FC0CFDA871F3 /* UMDeviceMotionInterface.h */, - BB8F6B18CBDC44962CE58B2D4142C48D /* UMGyroscopeInterface.h */, - 045DCC98B1EE1E332B6AA1BCC8D8767E /* UMMagnetometerInterface.h */, - 61F14494D2E24572CEDFEFE66EFF61CA /* UMMagnetometerUncalibratedInterface.h */, - A8F34F8CC21AF33DF9FC50E58E729543 /* Pod */, - 315AADD385D3A647D6EDD12173C429A3 /* Support Files */, + 022982682787D678778BD85E834CF01E /* UMImageLoaderInterface.h */, + 71EDA3F95823B04B363B0CF511FCE957 /* Pod */, + C07AA826730DEC9D91CDA6996D8AAD8D /* Support Files */, ); - name = UMSensorsInterface; - path = "../../node_modules/unimodules-sensors-interface/ios"; + name = UMImageLoaderInterface; + path = "../../node_modules/unimodules-image-loader-interface/ios"; sourceTree = ""; }; - D0EE3E5205407DEA33BF6DA09314FBB2 /* RCTNetworkHeaders */ = { + D033233737CB27D26F172EBB1C703236 /* react-native-video */ = { isa = PBXGroup; children = ( - 7F9BF7FE819E8239B871BA41782D78F3 /* RCTDataRequestHandler.h */, - 84774535DD78C27289E17B098E91A3A6 /* RCTFileRequestHandler.h */, - A5EE0E2BAF40FC2979AB4D85F3609396 /* RCTHTTPRequestHandler.h */, - 5C3F9FA7BE625120926C489171F50CD0 /* RCTNetInfo.h */, - 7F5C213C57D2CB3E33C59E8CCA4D7CF2 /* RCTNetworking.h */, - FB45D77A30454E34289476D1B568340C /* RCTNetworkTask.h */, + 71A0E37D26DC03196CB73301CFC8CF81 /* Pod */, + 1417455366FDE29F339C244D1E1EF950 /* Support Files */, + B54D18DDE1F8820DAD793ADF6EA77237 /* Video */, ); - name = RCTNetworkHeaders; + name = "react-native-video"; + path = "../../node_modules/react-native-video"; + sourceTree = ""; + }; + D0B7EA55A2B1CE20FFB95A53BCF580E3 /* React-jsi */ = { + isa = PBXGroup; + children = ( + DEFE7EF20F15D8C51FA1E7BE5ADF72C6 /* JSCRuntime.cpp */, + 1F9EFCA7F769A8BC9D4D8F58E29BB442 /* JSCRuntime.h */, + 9DE459859374F5B290408CD30B9DE13B /* jsi */, + B52EFBA1619D90208453DC98A8390BCA /* Pod */, + 5DAB022BCB874F041A686A5C948D6E93 /* Support Files */, + ); + name = "React-jsi"; + path = "../../node_modules/react-native/ReactCommon/jsi"; sourceTree = ""; }; D18EED1D9D93F4ADD7E9DC03536202BC /* GoogleDataTransport */ = { @@ -11338,14 +10892,35 @@ path = GoogleDataTransport; sourceTree = ""; }; - D1AE7FF9D188850B949F9C54540F73FA /* UMViewManagerAdapter */ = { + D20F22AE912FB0D4B2843A0BEA3D2BE8 /* Video */ = { isa = PBXGroup; children = ( - 2BF19C73B2A4983AAD7C4E991A9FC988 /* UMViewManagerAdapter.h */, - 1D8C90D7E3B20AB3CEB25B83EFE04E86 /* UMViewManagerAdapter.m */, + 699BB416915EB4AE3895CE56D70ED1AC /* EXVideoManager.h */, + 03DBC959BA24FFD4FC5267A7255E3E29 /* EXVideoManager.m */, + DF9E339F522DAAB2B9E73F31537F8FFB /* EXVideoPlayerViewController.h */, + F040E331E673F93B31ED42B854281C45 /* EXVideoPlayerViewController.m */, + E849D6F37E7174B6C155619799AA8173 /* EXVideoPlayerViewControllerDelegate.h */, + F3A726284EFD20935D731C08A511D713 /* EXVideoView.h */, + 3A74365ADEC5F621E9ED8B92BA9D9B15 /* EXVideoView.m */, ); - name = UMViewManagerAdapter; - path = UMReactNativeAdapter/UMViewManagerAdapter; + name = Video; + path = EXAV/Video; + sourceTree = ""; + }; + D2660491589B45D651371007B9613336 /* Pod */ = { + isa = PBXGroup; + children = ( + 03DD5B64B3D8782049A64AAA2FE72F6A /* React-RCTActionSheet.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + D2EE3F70424ED65F47E176E6D70DD3AC /* Pod */ = { + isa = PBXGroup; + children = ( + C568FD833DF9A59790247E4132B6D124 /* React-RCTText.podspec */, + ); + name = Pod; sourceTree = ""; }; D3405AE82E5D43C81387E3A276FA4552 /* Support Files */ = { @@ -11360,26 +10935,13 @@ path = "../Target Support Files/QBImagePickerController"; sourceTree = ""; }; - D35135C14BDCA52B08D577ACD8ADB554 /* Support Files */ = { + D3F6B7649A10E51265CF082B2F76B04A /* Support Files */ = { isa = PBXGroup; children = ( - 6A6AE536523343218452C303A428CE25 /* React-RCTBlob.xcconfig */, - 745027EDA644231242815F2669A3EB26 /* React-RCTBlob-dummy.m */, - 7B6CDD48A341E8E2C87916637FA5A221 /* React-RCTBlob-prefix.pch */, + CB44A58EFD3D043C620F7C7CBD9A3E54 /* RCTRequired.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; - sourceTree = ""; - }; - D3B2DC51368CFE0E88BDA10ED0F0F999 /* RCTRequired */ = { - isa = PBXGroup; - children = ( - E813F14FA145A74331CA5F5AB0C0F2C2 /* RCTRequired.h */, - 3CBB56D9152F609241860C95C584EC55 /* Pod */, - 2E960682D234DCDC434EDB5C0C878CAB /* Support Files */, - ); - name = RCTRequired; - path = "../../node_modules/react-native/Libraries/RCTRequired"; + path = "../../../../ios/Pods/Target Support Files/RCTRequired"; sourceTree = ""; }; D423A9E5EA3AC32021679D0F888D7242 /* glog */ = { @@ -11415,43 +10977,14 @@ path = libwebp; sourceTree = ""; }; - D52C88C94F45212042BFF4ADE60D8E90 /* Support Files */ = { + D617075BFB5A5D9D4FA15493346A2F83 /* perf */ = { isa = PBXGroup; children = ( - C72C1AD2A046915E567F543A12890B11 /* RNDeviceInfo.xcconfig */, - 892703501C089AB73F2DAE334C2FBFB5 /* RNDeviceInfo-dummy.m */, - A9CD10625108D8835EB0E8078968A067 /* RNDeviceInfo-prefix.pch */, + 0D43F8333E425C69C7EA7AF77DEF7F06 /* RNFirebasePerformance.h */, + 02EFCB261C6AC928F019AEEEF5629A8A /* RNFirebasePerformance.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; - sourceTree = ""; - }; - D5B814F2808F965D2B3FC76070BE25CD /* Support Files */ = { - isa = PBXGroup; - children = ( - 8C834B11C1A3D7F67378AFE97180F7AD /* react-native-keyboard-tracking-view.xcconfig */, - 2D76AE5198366EC5C840D39481EF7D0F /* react-native-keyboard-tracking-view-dummy.m */, - 067D3D4C629219ED6193199D68B31DFF /* react-native-keyboard-tracking-view-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-keyboard-tracking-view"; - sourceTree = ""; - }; - D6965623D9B31379599E0D430FDC693E /* Pod */ = { - isa = PBXGroup; - children = ( - 2CF1712DD773F206AB908CD8E6CAC43B /* README.md */, - BB04788BC17619581A61722D7A606E0B /* RNLocalize.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - D72FBB4B449F9567051ED4ACCD3FBF96 /* Pod */ = { - isa = PBXGroup; - children = ( - 17F4CCF8F05692F3D41171089D39CA1D /* React-RCTSettings.podspec */, - ); - name = Pod; + name = perf; + path = RNFirebase/perf; sourceTree = ""; }; D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { @@ -11461,157 +10994,116 @@ name = Frameworks; sourceTree = ""; }; - D8C2BAB00F3C3A045DEB6DD4FEA35D5E /* core */ = { + D9BEDAFAC222C1B71F6644A4BA1B9DEA /* Services */ = { isa = PBXGroup; children = ( - 16144FF63150234F56991AACAD7C2960 /* LongLivedObject.cpp */, - 88DD19586A0E4D0F851770D157E0A8B4 /* LongLivedObject.h */, - B2561CFEF2B1637A0987FDEB22430960 /* TurboCxxModule.cpp */, - B0FC520C69B49EF35100FF143549E415 /* TurboCxxModule.h */, - 943969C427D0DD2507BFD435F6B1657D /* TurboModule.cpp */, - F354FAEBB55CA4A77CF2A593DBDA38D8 /* TurboModule.h */, - AAEC0DED46F2DC556FC856F06BDF71EA /* TurboModuleBinding.cpp */, - AB28FF5B81D774E3D2A4823C4EEC7D89 /* TurboModuleBinding.h */, - E42DFF5D2D504893A52117043570B29E /* TurboModuleUtils.cpp */, - CC7DA785F2379D5642EA43D528611C39 /* TurboModuleUtils.h */, - 8F84578BF1B4E8195F0607F43B6B1670 /* platform */, + 170093C4AB07780A25C833E08EFE2CC0 /* UMReactFontManager.h */, + D39C219FA741DA0C29860635ACF28C4B /* UMReactFontManager.m */, + 027DEE4C1512F5E35E4ABBBC3D80CADE /* UMReactLogHandler.h */, + CF4562602F7A58F59F5BCCEEBFE71FC7 /* UMReactLogHandler.m */, + 24A642FBB58AA3F9D54B95906489B7B6 /* UMReactNativeAdapter.h */, + C402D82EE3109C9B95D9482EB7EC83A1 /* UMReactNativeAdapter.m */, + DC3DF2419CD1889E2B7759D0212C1489 /* UMReactNativeEventEmitter.h */, + 1A48830713BEA1445448426EEF1F37BD /* UMReactNativeEventEmitter.m */, ); - name = core; + name = Services; + path = UMReactNativeAdapter/Services; sourceTree = ""; }; - D9B53A88B2BE01D956861FAB62B75119 /* BugsnagReactNative */ = { + DA9966820E16AB135D425EE174272255 /* EXAV */ = { isa = PBXGroup; children = ( - 61C26C33269AE6F46FEB6103DFBA781F /* BugsnagReactNative.h */, - FA78B2BF920CFFE4315BD8205A2F6C17 /* BugsnagReactNative.m */, - C923D4AB3586666209A979BB6F6EE6E1 /* Core */, - B60B5791A09F867695B531031856BE7D /* Pod */, - 529785B2588570A46CF14BE5B4B723DD /* Support Files */, - EB52E40A7FC329076B3D1CBF59CBB30E /* vendor */, + C70A672855707370603108A8BB354B3D /* EXAudioSessionManager.h */, + BA31621FA1C8B1F40AC093EBA9775F25 /* EXAudioSessionManager.m */, + 26D28BA05D94E0E8DCFB49CD3794A884 /* EXAV.h */, + 70B9F2D6E6E268BD7EAFB3C8CB4365D1 /* EXAV.m */, + 79DA7C793A6EC92ED4DC9668657C2B27 /* EXAVObject.h */, + BDDBD2943A9B87E4E890E45468BD30D4 /* EXAVPlayerData.h */, + 20CC8B770E14F95BEAA6B4F19D4C8D1E /* EXAVPlayerData.m */, + 96A8FA253278C41422D7BF8458651454 /* Pod */, + 81240900FA1FAB637B87FFAD36CE4673 /* Support Files */, + D20F22AE912FB0D4B2843A0BEA3D2BE8 /* Video */, ); - name = BugsnagReactNative; - path = "../../node_modules/bugsnag-react-native"; + name = EXAV; + path = "../../node_modules/expo-av/ios"; sourceTree = ""; }; - DB50E7C21ADEBB0DF0EE318D4196CCE0 /* functions */ = { + DB1AF4D7E2E6B5A08ED8D63C4D18FBA4 /* VirtualText */ = { isa = PBXGroup; children = ( - 4598EEEFB1170675B8D9D20C3D4B35CE /* RNFirebaseFunctions.h */, - C252CB3D7FF8496BA69D28B1D6067380 /* RNFirebaseFunctions.m */, + 6D8E9C2ED083EC43BBDEA2F6E817A463 /* RCTVirtualTextShadowView.m */, + FC79867D3EBAE9C8077300734E335FFD /* RCTVirtualTextViewManager.m */, ); - name = functions; - path = RNFirebase/functions; + name = VirtualText; + path = VirtualText; sourceTree = ""; }; - DBA8267BC290C80B223AEF6AE5A359C4 /* EXConstants */ = { + DC617AD771802B571C4AD6EAF97CEC2A /* RCTWebSocket */ = { isa = PBXGroup; children = ( - 1CE38B3F7FA76E5D7E0901780BC22931 /* EXConstants.h */, - 7ED880625DEE80D6532A5AA8CF663345 /* EXConstants.m */, - 4B1DB18EB00950401534B150AD9AAB09 /* EXConstantsService.h */, - 7C0F9C2B70B66E383889AD66C2E4E0A9 /* EXConstantsService.m */, - 4068B6782C5B0FBFF8025BB76BF8B5A2 /* Pod */, - 2A6AAF6A11A0E8CDB698F0BCC8C2AD17 /* Support Files */, + D441D8AF46EAB4DEC84B6D1DF54A222E /* RCTReconnectingWebSocket.h */, + 6227D6DE69C1C5ADCE8E7EDA51391EC0 /* RCTReconnectingWebSocket.m */, + 7C6EE9F84C091C7D9933B6592258344C /* RCTSRWebSocket.h */, + 9617D5B43225127539083D8CD392617E /* RCTSRWebSocket.m */, + 7D86609CE01BC1D95D8904835F6234A5 /* RCTWebSocketExecutor.h */, + E88864F2F461C52C9E0228247A522A1C /* RCTWebSocketExecutor.m */, + 55D743C038051CB87EE180BC8E60B8E8 /* RCTWebSocketModule.h */, + 7FF7C85CADD71560CA8EF5F077926162 /* RCTWebSocketModule.m */, ); - name = EXConstants; - path = "../../node_modules/expo-constants/ios"; + name = RCTWebSocket; sourceTree = ""; }; - DBC7EFC8957A280E045F245B60C3A977 /* Pod */ = { + DC638F5160FCAA734082F3EB19EA0B41 /* DevSupport */ = { isa = PBXGroup; children = ( - 9A9B3A64BE258CD7BE76B7E6C3B93DF6 /* LICENSE */, - D972552423F6AD7AB4A8697D7C7260B1 /* react-native-video.podspec */, - 5A104C0DAFA12BF428B64E6F4163D775 /* README.md */, + A72FB130F3974E9F57AE9EC67DEFCED3 /* DevSupport */, + CCA6E5514E5D2126D129F5520E556835 /* Inspector */, ); - name = Pod; + name = DevSupport; sourceTree = ""; }; - DCABE417C1B77D068D267EE3264EA07C /* Views */ = { + DCA0B66B65ED6E6EB8EB9C67DD98B1D0 /* KSCrash */ = { isa = PBXGroup; children = ( - E2DC8B644C130623A0BE199A4ED83311 /* RCTActivityIndicatorView.h */, - 70F6042289E94BD0FBC6386B894E1564 /* RCTActivityIndicatorView.m */, - 61AA63660E6916B04FDE912FA8A5B429 /* RCTActivityIndicatorViewManager.h */, - F49C00239726F99A897536D775526CD9 /* RCTActivityIndicatorViewManager.m */, - 0FFBA410B7D98CB095EB075D9A0C16E2 /* RCTAnimationType.h */, - EA235917F29DD4D3EC56B5BB3E473AD1 /* RCTAutoInsetsProtocol.h */, - 54A1458A360C37A48571E2FD0299910F /* RCTBorderDrawing.h */, - 6415D47E5E5FB17066FCD67569076652 /* RCTBorderDrawing.m */, - E2774BE5BA001204679B658F551086E7 /* RCTBorderStyle.h */, - 371E2EC0DA2C47B1F4722AF633AEEBB7 /* RCTComponent.h */, - 6ACEC37385065D7204FBBF2FA7301D38 /* RCTComponentData.h */, - E90406F2ED3779820587D3A9D975B17B /* RCTComponentData.m */, - 9E862B35CABD5266D4B4CB2F777312B7 /* RCTConvert+CoreLocation.h */, - D13C1A951BD80025F2D15E06D9B2DC4A /* RCTConvert+CoreLocation.m */, - A059C2FCECF5737C8FF99D680609FFC4 /* RCTConvert+Transform.h */, - 19100DEB96768310FF4BBDB272FA0BB3 /* RCTConvert+Transform.m */, - B89EFEF1BE4BD2ABC7FE00951A366EE8 /* RCTDatePicker.h */, - AD246E5AD9E80917275152C3151879E1 /* RCTDatePicker.m */, - 3187260C25DF89EC205D9316352ECE78 /* RCTDatePickerManager.h */, - C34B5AA51CAC6FAA9921B2868B36E167 /* RCTDatePickerManager.m */, - E00256C3604B84A2CCD6B0756DC79CB2 /* RCTFont.h */, - 91CCA8DD71CCF17D77595CDBF2990F8D /* RCTFont.mm */, - 2CF6F54B785E9112BC6AE97E053D1290 /* RCTLayout.h */, - 2F247C6B74C425A67EF72C70425C689A /* RCTLayout.m */, - FC9B5CEAD3C76F94F865FB7A5839F13F /* RCTMaskedView.h */, - A0922BADB5750DB26C098CF437AA2490 /* RCTMaskedView.m */, - B921268D193BCB0A43F7C215758D0B44 /* RCTMaskedViewManager.h */, - 213E768CA7D3BB1738D7E381E4E84C3F /* RCTMaskedViewManager.m */, - EDF98F2A7B780B4EB26AEEE45E9BAE4F /* RCTModalHostView.h */, - 233FF4637F4469CF1895584EDEDBD214 /* RCTModalHostView.m */, - C639040A1D67515F2D55E631E08D192A /* RCTModalHostViewController.h */, - C673143192CDBADE000A4B54E42ECCDC /* RCTModalHostViewController.m */, - FBFC0A7849A3B83550D5EC17C4FB51F6 /* RCTModalHostViewManager.h */, - B8BA5C69B1DA202F44473DCAAE9F672A /* RCTModalHostViewManager.m */, - 44B99207D6ADA144F33B606D026D6C61 /* RCTModalManager.h */, - 2527DB628E9DC404A797B079C37E4DF7 /* RCTModalManager.m */, - 8DCA3A28B84869B2FA14D5E2E834B97F /* RCTPicker.h */, - 8E75B9E466529351EF714E9AE96D5FC9 /* RCTPicker.m */, - ED0E072C4FD33A7C346388106B39B1DF /* RCTPickerManager.h */, - 21E6922AE42449CD824A1562B55942B8 /* RCTPickerManager.m */, - 3675431A9DA90C3F94B56531D68D37CE /* RCTPointerEvents.h */, - 8B192281A2CE82C08FC1313DB2386338 /* RCTProgressViewManager.h */, - C1A1E7F355F35A189DEBABF8A0156CCA /* RCTProgressViewManager.m */, - 3DB6EFE5277CCD8A54FB4610A1FE0D3E /* RCTRefreshControl.h */, - EE07FCC6342859FF992CFD4249BF0346 /* RCTRefreshControl.m */, - 60BAB8900EAF8747BAE604479CCA6F1C /* RCTRefreshControlManager.h */, - 28C8357764854C0A7FF8B56D8588E795 /* RCTRefreshControlManager.m */, - A3673B3F2C07B82F7F7466343F0A1290 /* RCTRootShadowView.h */, - 3DF9DF132F0646FEC46004571DFD9089 /* RCTRootShadowView.m */, - E0224C0B2583436EB8BEDD12EA61A543 /* RCTSegmentedControl.h */, - A311691C89E4304C35006AF6725D790A /* RCTSegmentedControl.m */, - CF091148045C9BE0A1F7DB31B12A171D /* RCTSegmentedControlManager.h */, - 91DAEEAA913712230E2663F4CDD7C877 /* RCTSegmentedControlManager.m */, - EE87A6DD2B6DBB14E64433982A168E10 /* RCTShadowView.h */, - 9DA314410DCCCF798F8D1245B85E59FA /* RCTShadowView.m */, - A2B2916F4B2700499DCA14A4F53CABDF /* RCTShadowView+Internal.h */, - 2BE4A52210C4A9853C5E764B2B1C9B1D /* RCTShadowView+Internal.m */, - 60EEF2C7C62A445988B325B0912042FE /* RCTShadowView+Layout.h */, - 6EEC77A7FD0F5A87EE3BBE7B3CE0A543 /* RCTShadowView+Layout.m */, - B2000FC668084E1BB47312BB65BA59B8 /* RCTSlider.h */, - BDED2E830FB9FD86EFDA019F3798D24C /* RCTSlider.m */, - 078D9ED0FF01965099F47CB760602BB4 /* RCTSliderManager.h */, - 05AB846422108AE505456E8446BEC367 /* RCTSliderManager.m */, - D23F19BE79A6C5376A549BC4556DDEA3 /* RCTSwitch.h */, - 2CEC97C8B90A6F43F7FCCEAF8DB16D13 /* RCTSwitch.m */, - 2CEE2F8B47E188524845DECF761EBBB3 /* RCTSwitchManager.h */, - 5B8A74C2F27E73CCF0884BF48A7C358B /* RCTSwitchManager.m */, - E2DA6439760D44D175E990AC419CB65F /* RCTTextDecorationLineType.h */, - 3993F566E0DC59835A29E87AC2D5B5FC /* RCTView.h */, - 64420DD31B4A41A4A95DF1B1DA00A93E /* RCTView.m */, - 70516431F0EA0B5A48391BB400242461 /* RCTViewManager.h */, - 4771E4531524CF9305A27CCEA4CE52A0 /* RCTViewManager.m */, - 6704E04CB726E9EB832844B5491E00FB /* RCTWrapperViewController.h */, - FF9954C873BDAE25C6888513E9E71532 /* RCTWrapperViewController.m */, - 2E18F368109515B0C907BB2AC768E68C /* UIView+Private.h */, - CBD5488259C5761A140A5F80A6469C35 /* UIView+React.h */, - 9FBB336EA5883D01A2443577D41DAA67 /* UIView+React.m */, - F7C4696C0EFC32CA1767BAA3487FCD43 /* SafeAreaView */, - A4873261129B3870DF1E3B20F229D998 /* ScrollView */, + DF59BC5112616598532E41E6F7DE1885 /* Source */, ); - name = Views; - path = React/Views; + name = KSCrash; + path = KSCrash; + sourceTree = ""; + }; + DDCDDABC49E9709834132C3C25E1B654 /* Handlers */ = { + isa = PBXGroup; + children = ( + D3BA9D50CE03C2E15E321FF935241AD7 /* RNFlingHandler.h */, + DF239F485579D2099543B08E4165026C /* RNFlingHandler.m */, + FCEC2541110D1265792D327D918573CC /* RNForceTouchHandler.h */, + 3930DF44CA320210AFCD00EDF24C3008 /* RNForceTouchHandler.m */, + 535112F33FC1AAD3056ACC632C03B0A6 /* RNLongPressHandler.h */, + 2867C037657646F9A287C781D9B5E438 /* RNLongPressHandler.m */, + 2DEDE8FDCFE7CB914F5537D5B619BE8D /* RNNativeViewHandler.h */, + 58A2541978A1B839254E0ACB3701F3FA /* RNNativeViewHandler.m */, + B8493A937517A7BD1D737EC6BD9A7C5F /* RNPanHandler.h */, + B0CCA01C1EDB41C92C17E739DF8C675C /* RNPanHandler.m */, + 56F18861E692F6A345A9D6CE9475B5C0 /* RNPinchHandler.h */, + A9382F9E14149B5BF4108CDC945FC934 /* RNPinchHandler.m */, + 72EBE5488967F0F01EF6647918780E5D /* RNRotationHandler.h */, + EA56701034E43E1D4C2BA343E80A18EB /* RNRotationHandler.m */, + 185432325FE3B0675502832919F97685 /* RNTapHandler.h */, + 42D27314E2CE64DC6C50A5B4E368AC25 /* RNTapHandler.m */, + ); + name = Handlers; + path = ios/Handlers; + sourceTree = ""; + }; + DE6C175B840E97AC554B85EB0D3EEEEA /* Support Files */ = { + isa = PBXGroup; + children = ( + 8CC5F8E745AEB03DC3B1204CC12B3F0E /* react-native-notifications.xcconfig */, + 6517738E0F6018535C3900F4EB5D0228 /* react-native-notifications-dummy.m */, + 4C39F535F3E98652F5FD689A78B73185 /* react-native-notifications-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-notifications"; sourceTree = ""; }; DEB57027F9085268A7726475F5FC5619 /* decode */ = { @@ -11621,15 +11113,13 @@ name = decode; sourceTree = ""; }; - E06C2B562B98227580C39FC2192E5BAF /* Support Files */ = { + DF59BC5112616598532E41E6F7DE1885 /* Source */ = { isa = PBXGroup; children = ( - 9A83D9D6DD50C1693BC7A222C68F355F /* EXFileSystem.xcconfig */, - 224F5FF78B05ECE192B7B466F3A262B2 /* EXFileSystem-dummy.m */, - DACEB7B2D1A2E0D3D73A0E65603FC960 /* EXFileSystem-prefix.pch */, + 3CE3E367C4EAD6B0343D4D3662EEE1E0 /* KSCrash */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXFileSystem"; + name = Source; + path = Source; sourceTree = ""; }; E115460E1C82BF0095B8E8E5B175FB74 /* Support Files */ = { @@ -11643,23 +11133,24 @@ path = "../Target Support Files/Folly"; sourceTree = ""; }; - E1BC4799EAAD3EE9897E537AB3E5B7D6 /* Support Files */ = { + E1C6F709CD668DF42912AFF4DEF8639E /* EXFileSystem */ = { isa = PBXGroup; children = ( - 8AB1C40644764F574F897C3A600C0F67 /* rn-extensions-share.xcconfig */, - 69B5B379DABF557413A9AB24CFE67860 /* rn-extensions-share-dummy.m */, - A465DA7391C36452293BE5B609F5C83A /* rn-extensions-share-prefix.pch */, + 4B6947B19437ECB63258DC7F7074A020 /* EXDownloadDelegate.h */, + FE7B0C7D5C08B338703C396DD3B57ED7 /* EXDownloadDelegate.m */, + F05A8F8C250E94F7535D77F642B34D45 /* EXFilePermissionModule.h */, + E6B75C132C07BC882F7FB5588848815D /* EXFilePermissionModule.m */, + E950A29E3193050AC0B092D929EC6165 /* EXFileSystem.h */, + 42C2648C752E0C5DEDA31801002C062E /* EXFileSystem.m */, + 045BDC76AABBB9A6173613CD6C96D9B9 /* EXFileSystemAssetLibraryHandler.h */, + 9EBA5025778E228CC965FAECB1A78CBA /* EXFileSystemAssetLibraryHandler.m */, + C56082C206BF8B76E902D42B784C1DD9 /* EXFileSystemLocalFileHandler.h */, + 430CA544C5F5E7E8812FDA2B74015881 /* EXFileSystemLocalFileHandler.m */, + 14A56F3289DAC1BB7BD6B7680D5B1066 /* Pod */, + 0DC0EDBB99FA575D9C15BEAFDF2C6027 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-extensions-share"; - sourceTree = ""; - }; - E1CD6BD030E7A0CB09CDB0621D291543 /* Pod */ = { - isa = PBXGroup; - children = ( - 878D8917F48CA59D3D095AE301DAE5C3 /* UMConstantsInterface.podspec */, - ); - name = Pod; + name = EXFileSystem; + path = "../../node_modules/expo-file-system/ios"; sourceTree = ""; }; E1D69CC4A1EF83E855FB1AB9E3C8FEA0 /* Frameworks */ = { @@ -11670,92 +11161,136 @@ name = Frameworks; sourceTree = ""; }; - E35FA91CB85DB5E82943ECC28C8AD4AC /* CoreModulesHeaders */ = { + E1E7D9103929F67FE9369C8949CD91AA /* Yoga */ = { isa = PBXGroup; children = ( - 9F5246E19B60DB8DA4D689C4C881A28E /* CoreModulesPlugins.h */, - E394BD039B2AF6514E2AC79928FDB8CE /* RCTExceptionsManager.h */, - CD4E0F5A984C13FE07AE59684229B9D9 /* RCTImageEditingManager.h */, - CC191D45EDDC88508CBD0A193A27FFF7 /* RCTImageLoader.h */, - A763DF3AB18E74C80668090681ADFFC6 /* RCTImageStoreManager.h */, - 96CCC402794DFC3B872597624419885D /* RCTPlatform.h */, + BD138F8E84C692E0B4161D3612F0BABE /* Bitfield.h */, + B7500FFE33613A53567F24D90D17D351 /* CompactValue.h */, + 68E28EC045760162DF91A5E765362213 /* log.cpp */, + 4D2F39FBF9AB5EDA8A7A4EED2F29C886 /* log.h */, + 2ECB2C5504539A433653C059A976740E /* Utils.cpp */, + 1BB8B5AFBC405617B0FE9B0EF60CFC4E /* Utils.h */, + 8C171DAA5581762934238E562AB7204F /* YGConfig.cpp */, + 846F375D1458E294C907D63EBB6CDE87 /* YGConfig.h */, + 5E89467B79F5AEA684CCD03E2E26E8CD /* YGEnums.cpp */, + 54419E0AFE78B1C1E3F0E33F8DCCB0D4 /* YGEnums.h */, + B62748FCB8AA588EF4146A7A670BEA5B /* YGFloatOptional.h */, + B0E607CD388A6EF6F47C1056271F105D /* YGLayout.cpp */, + 61976DA468A2E5DB64CD0A3450FBEE31 /* YGLayout.h */, + CEFF64BE17DA431B947FAF2F59C45554 /* YGMacros.h */, + 07E594E877E1F9E3658BFC8FC4381506 /* YGNode.cpp */, + D3C577DE9EA19FAAD3F409D681829FD7 /* YGNode.h */, + B1822EF5AE7B426E443FF51DA80C445C /* YGNodePrint.cpp */, + 48DBCDD7F88D72B627752289B841685E /* YGNodePrint.h */, + AD713AAFED28AF583BD2D64FE89BC5D8 /* YGStyle.cpp */, + 68F01B7C0C00084BBB6DFEC5FF1F3D1B /* YGStyle.h */, + 69C07DFADC33ADB0F48C471F4D398D37 /* YGValue.cpp */, + 45A19795EAC0B7536DE3AE5708DF3161 /* YGValue.h */, + 718030F226E89CC6787EFA1EEAAB6B33 /* Yoga.cpp */, + 23CC7846BAAAD731E9F7FE1200BA32AA /* Yoga.h */, + 72260382C11F2957645F698766C838C2 /* Yoga-internal.h */, + 822BB0E199AA8A31A359308C923BE3AA /* event */, + 4A2FAAA64229A258E22AEF293A6017F9 /* internal */, + 65C092509AB3160B74D81E849D1E48F2 /* Pod */, + B33CE6545DA022E972A8D7783453553D /* Support Files */, ); - name = CoreModulesHeaders; + name = Yoga; + path = "../../node_modules/react-native/ReactCommon/yoga"; sourceTree = ""; }; - E36136B830861F89EA63F11C19228FBF /* Pod */ = { + E29D3A5209CB3747E8E1C389D07AE44D /* React-RCTLinking */ = { isa = PBXGroup; children = ( - F157DB0418B85BCCACED93D9097CD129 /* LICENSE */, - 3D315AA9686FAF4563ADF890F04514B9 /* react-native-keyboard-tracking-view.podspec */, - 623B59E59094EDB6125C09CF7DD3B0D0 /* README.md */, + 0820312A31421442ED09E1FB27E3C800 /* RCTLinkingManager.m */, + 8901910B52D0CD4819894CCA023756D0 /* Pod */, + C775E0CE765301AA0D5949C13E578D77 /* Support Files */, + ); + name = "React-RCTLinking"; + path = "../../node_modules/react-native/Libraries/LinkingIOS"; + sourceTree = ""; + }; + E6C01B7675164E245EDDFBC59CBE4EF7 /* Pod */ = { + isa = PBXGroup; + children = ( + 26431739B59EAEE190A600D578E6D300 /* LICENSE */, + 5A24236E658EEA9359CEE578A05ABCC5 /* README.md */, + 21B13E29AD05E5FD4DA629E81458446B /* RNImageCropPicker.podspec */, ); name = Pod; sourceTree = ""; }; - E609F63ED4963446072E957B0FB8E1FE /* Pod */ = { + E6C7E0B45F851F376CA4B86E11020A74 /* Support Files */ = { isa = PBXGroup; children = ( - A95A7AA02C7E77097114D2271065F69A /* LICENSE */, - 183E17793CC3E6929908ACF6BC97BA85 /* README.md */, - 3DD07EC973B3DFD29548A6F12F925AF2 /* RNFastImage.podspec */, + 0543B08B8F5F46C1C4CB6D107B9EA1C1 /* FBLazyVector.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; + sourceTree = ""; + }; + E6D267798D11167A7A9181428927C87C /* Nodes */ = { + isa = PBXGroup; + children = ( + CE79154F117485E04A02BF0BB2FBD4BA /* RCTAdditionAnimatedNode.m */, + 2BE5820639989CBF86497FADC01C51F3 /* RCTAnimatedNode.m */, + 8A9CF187EF6A44402D284557F5084EB8 /* RCTDiffClampAnimatedNode.m */, + 502D139D75DB561ABA2CA2FA7B4C8FEE /* RCTDivisionAnimatedNode.m */, + 44639F16D9241805FF9247D183D975FA /* RCTInterpolationAnimatedNode.m */, + E8BA406F1554548B86334FEEA49CD21A /* RCTModuloAnimatedNode.m */, + C6587216CEB798C1574D2D1E737805CB /* RCTMultiplicationAnimatedNode.m */, + A13DD808F30EFECEB6F8ABA4D0EA7474 /* RCTPropsAnimatedNode.m */, + A331EFE5A7BA06B55320D28505DA8D62 /* RCTStyleAnimatedNode.m */, + CE98B91B77E42906684C87AB8E0800E8 /* RCTSubtractionAnimatedNode.m */, + 4967F3875B9AFACFD314B94A3352D8DA /* RCTTrackingAnimatedNode.m */, + 9F12B5A886730CA701E2EBAE36994EC5 /* RCTTransformAnimatedNode.m */, + 41678AE01C98DEFDEC7EA8306AA69CD8 /* RCTValueAnimatedNode.m */, + ); + name = Nodes; + path = Nodes; + sourceTree = ""; + }; + E6E156B3332E4DACDA384601D3DB58CD /* RCTBlobHeaders */ = { + isa = PBXGroup; + children = ( + 9B6C8B68076FD1E21202C5BCD2F3EF78 /* RCTBlobManager.h */, + 1184C00DBE5F7A14064790275A9391F9 /* RCTFileReaderModule.h */, + ); + name = RCTBlobHeaders; + sourceTree = ""; + }; + E8598DD18E659916D2E9CBE2075762DB /* Pod */ = { + isa = PBXGroup; + children = ( + E279ED36192F6396844CD1D3AE31AE46 /* LICENSE */, + D18FF1C7D96E0D3AAE070E96C680B5FE /* README.md */, + A61B378236FC887757731EE2203BA845 /* RNReanimated.podspec */, ); name = Pod; sourceTree = ""; }; - E67994D1AE3F9B23BE5CA6DE4B6666CC /* React-cxxreact */ = { + E895048131BBE4CDE2476746D902A059 /* UMTaskManagerInterface */ = { isa = PBXGroup; children = ( - 151722630194C5B61305BEB330CD3991 /* CxxModule.h */, - 349B303B05BB20373D3EEB2EC8058087 /* CxxNativeModule.cpp */, - A7A153864847690E9E1EA47F14A4E9B6 /* CxxNativeModule.h */, - DB4EAA863CB8178BB1393C42EC98C6EC /* Instance.cpp */, - 4B68A1F97B6A2DF2AD5398B70C161CF5 /* Instance.h */, - 139BE722B29BBCD0FD678A2A7ADA9DC2 /* JsArgumentHelpers.h */, - F8A3D62CAF53EE715782552E7018A591 /* JsArgumentHelpers-inl.h */, - 296459A2F0650D21EE05089829080E39 /* JSBigString.cpp */, - A9F33D3DE3EB9CB3EE4F2E835C255478 /* JSBigString.h */, - A2B377C31C7DFD69197E8BA70B441C7E /* JSBundleType.cpp */, - 572093FC9BC0E35B3E1CC421E7805037 /* JSBundleType.h */, - 772388BC62373501BCBD91AE57706DFE /* JSDeltaBundleClient.cpp */, - B8208665A653F01D54059A73295FDE93 /* JSDeltaBundleClient.h */, - 11BA5D3DEF054551B8DD75DD855E021A /* JSExecutor.cpp */, - 7ACEC18CCEFDDABB1BEA6AE895BA54D1 /* JSExecutor.h */, - 5BA8583A3574AD249C5FD90D7D769E62 /* JSIndexedRAMBundle.cpp */, - C1DA022416709A5A4586EAF553193626 /* JSIndexedRAMBundle.h */, - 03915CA7C6FA1417CC0D88F12E484E7F /* JSModulesUnbundle.h */, - BF4A954F5F1AEB45D11A42BA42FD62FB /* MessageQueueThread.h */, - B3389700D11046964CE7368501A915C4 /* MethodCall.cpp */, - D499B4F692DAC8B5F904AEB64CA1397F /* MethodCall.h */, - 4CD8FC8ACBD058D65E3A2E2E8E1663A7 /* ModuleRegistry.cpp */, - 7784FF227D491030A468168FD275B896 /* ModuleRegistry.h */, - 1FC228DCB91A34659E2250BE767BB717 /* NativeModule.h */, - 717EAE690E17417ACDE59E0F29B45D6D /* NativeToJsBridge.cpp */, - 398785D588862DA343BE481C045AC431 /* NativeToJsBridge.h */, - 5F4870412EFD472EE8964494A24A22A4 /* RAMBundleRegistry.cpp */, - 2505A603353357EC3883B83BC0707463 /* RAMBundleRegistry.h */, - 35820A009633ADC6BD8A782CD543A6DE /* ReactMarker.cpp */, - 6210EDE02A96E7ED3A46A4019479BD8F /* ReactMarker.h */, - C9D511B84C427CC29548E68483C6B16E /* RecoverableError.h */, - 14EF95A81351FA86BB81D0A1FE3A622D /* SharedProxyCxxModule.h */, - 546B69D5A5BC0C979B0F87F1EFA9F63F /* SystraceSection.h */, - B63D34D64F1A4A3B05C953F0794C889B /* Pod */, - 1792A3CF9DC586CB1F3A41EF9FC1BF02 /* Support Files */, + 4BAAECC0BEF15D82E3962E2DDBC261B8 /* UMTaskConsumerInterface.h */, + 049710458E0FDC4F8F221EC78FF070DA /* UMTaskInterface.h */, + 7705E0CFEE2AB3EE339F6CC6E4E18281 /* UMTaskLaunchReason.h */, + 1997E7B52CDAEAE1B105E0692283DADA /* UMTaskManagerInterface.h */, + E298A4C4F98E3A5263D4CB82DEE411D6 /* UMTaskServiceInterface.h */, + 1A89D9AD4B14297D60BB576F76250C40 /* Pod */, + 7A8964BD95CBEEEB59A620878CD1826C /* Support Files */, ); - name = "React-cxxreact"; - path = "../../node_modules/react-native/ReactCommon/cxxreact"; + name = UMTaskManagerInterface; + path = "../../node_modules/unimodules-task-manager-interface/ios"; sourceTree = ""; }; - E8A300F2BDF2BB40438F5B985129E36B /* RNUserDefaults */ = { + E90284B991485316A986E5FB1DF32CDC /* analytics */ = { isa = PBXGroup; children = ( - 41E9E7440237953B48726A156EFB657E /* RNUserDefaults.h */, - 78404CE996B5D2B6621B283AFDF50EA4 /* RNUserDefaults.m */, - 9271F59FCB86DE4EA2A4125DCD2A0C3D /* Pod */, - AFE30170F3FC245E55C6938673A85017 /* Support Files */, + 6A2D3908B9858F2CCF886405E3FF5E1F /* RNFirebaseAnalytics.h */, + A73627628EFEE6D6322ECC3295712643 /* RNFirebaseAnalytics.m */, ); - name = RNUserDefaults; - path = "../../node_modules/rn-user-defaults"; + name = analytics; + path = RNFirebase/analytics; sourceTree = ""; }; E9445092F9EA92543F54235DFB964C04 /* Network */ = { @@ -11775,6 +11310,77 @@ name = Network; sourceTree = ""; }; + E9A4ED271E8F96640FF20315F2DD507D /* Recording */ = { + isa = PBXGroup; + children = ( + DF93D4B0A603CD0CF6CB0F2F77D43126 /* BSG_KSCrash.h */, + 62823C0EE64253C9C2D22C7DC7268CF8 /* BSG_KSCrash.m */, + 2ECE54435AD5DB72830CE00AB61B4E70 /* BSG_KSCrashAdvanced.h */, + 514E0D016C1BE2F8E682DF87C7BB3240 /* BSG_KSCrashC.c */, + 82AA097205FBBC44C4B707D0448061EC /* BSG_KSCrashC.h */, + AB2489B797C034EA15440E2359F3B894 /* BSG_KSCrashContext.h */, + 6EE294603FDA5FE8E479D40E580BFCD5 /* BSG_KSCrashDoctor.h */, + 9128B0A6BBC4FA4FC3C0558E586FE4F5 /* BSG_KSCrashDoctor.m */, + 2BBD63C212911F5113769ED657A04A00 /* BSG_KSCrashReport.c */, + D2A08675E7AE166CE5245BAB36CD6FC5 /* BSG_KSCrashReport.h */, + 4E54A85CB4B798EF35CB5F1903DDFB5A /* BSG_KSCrashReportFields.h */, + 555B4366F2A241A2A3387D5C99717498 /* BSG_KSCrashReportStore.h */, + C3F6808A0964F33A10D3F334501ABD86 /* BSG_KSCrashReportStore.m */, + 7918836174A9A268DF3E61CB96E07382 /* BSG_KSCrashReportVersion.h */, + 02FBB5E3C8DE09C5BFFA96D906912258 /* BSG_KSCrashState.h */, + 6A4EE097A0C337F137E5092EEFD7EB51 /* BSG_KSCrashState.m */, + F1808C91B566577A489B240322947C38 /* BSG_KSCrashType.c */, + AB1BACD3937D40014ACF5DA3EB4AD9F1 /* BSG_KSCrashType.h */, + BA1A41E19C1DFD7E97E6D3A55723A0E3 /* BSG_KSSystemCapabilities.h */, + 52CBD8A933AC48227993F3E6E086E2D9 /* BSG_KSSystemInfo.h */, + 34F4B73A4F25B12976065C5DC4E93505 /* BSG_KSSystemInfo.m */, + D6BF450B1CF01327AAEFF3843EB2693E /* BSG_KSSystemInfoC.h */, + 2D0ED285167E80156E050384AB5AFAA5 /* Sentry */, + B9E4151A894ABA82EE7C33FD47B70408 /* Tools */, + ); + name = Recording; + path = Recording; + sourceTree = ""; + }; + E9C46F0530C455A69D1E8AC9DD78E579 /* Text */ = { + isa = PBXGroup; + children = ( + 7FA11A77806199EF2A7B33609893BBBB /* NSTextStorage+FontScaling.h */, + 99FCAAA12DAD18758896A64F4FEE3AB8 /* RCTTextShadowView.h */, + 29E131BBE173EA23E9407F05606F398E /* RCTTextView.h */, + F0E6F18BD52E0CF9769F64BBFEAE8487 /* RCTTextViewManager.h */, + ); + name = Text; + path = Libraries/Text/Text; + sourceTree = ""; + }; + EA087189CFBA14B5D6F38530087DC387 /* RNImageCropPicker */ = { + isa = PBXGroup; + children = ( + 63A9BE97ECA80E9C5D89BD55205F5CB9 /* Compression.h */, + 654E140137C15F968944867C04CC2522 /* Compression.m */, + 5208F48E163A362731821F358702E567 /* ImageCropPicker.h */, + E70AEED73E5DE6CF2AE2300263552226 /* ImageCropPicker.m */, + E1586535F11C552CD5FCA9E225D102FC /* UIImage+Resize.h */, + 9E60ECE7BBB4802FC81C5E70D6943F0A /* UIImage+Resize.m */, + E6C01B7675164E245EDDFBC59CBE4EF7 /* Pod */, + 78E390A3A596C0388CE10D8A09C812EB /* Support Files */, + ); + name = RNImageCropPicker; + path = "../../node_modules/react-native-image-crop-picker"; + sourceTree = ""; + }; + EA1D6739F5B1DF78A7FC98EE6054749E /* Support Files */ = { + isa = PBXGroup; + children = ( + 85A07CA7ED436F78F9DB5DB894080D46 /* RNReanimated.xcconfig */, + 45FB1312D81FEEB70794428B63278243 /* RNReanimated-dummy.m */, + 15E35949C149563314A62BD6B45E5570 /* RNReanimated-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNReanimated"; + sourceTree = ""; + }; EA71A16AAA06C5A9060A52A0625004B2 /* Reachability */ = { isa = PBXGroup; children = ( @@ -11786,13 +11392,40 @@ name = Reachability; sourceTree = ""; }; - EB52E40A7FC329076B3D1CBF59CBB30E /* vendor */ = { + EB5360BD739E3E5103000078B801D570 /* SurfaceHostingView */ = { isa = PBXGroup; children = ( - 097DFFA6052A36185EEDF3C4B8F7BAA9 /* bugsnag-cocoa */, + 10FF28A7F6F22A3B7399C451705D661E /* RCTSurfaceHostingProxyRootView.h */, + 0B6DF641E271B5C0C994E22FB503DDC0 /* RCTSurfaceHostingProxyRootView.mm */, + 4F47E31FF51A1B94473D5BF45014F06A /* RCTSurfaceHostingView.h */, + F106414321C52BC0328541629B8B29DD /* RCTSurfaceHostingView.mm */, + F5837167B5F75D49720A052BB368408E /* RCTSurfaceSizeMeasureMode.h */, + 9CEFD3DCD0332BD62EBE8135EF52B900 /* RCTSurfaceSizeMeasureMode.mm */, ); - name = vendor; - path = cocoa/vendor; + name = SurfaceHostingView; + path = SurfaceHostingView; + sourceTree = ""; + }; + EB5C398A21C14E3344F61BAD84CDAFCE /* Pod */ = { + isa = PBXGroup; + children = ( + 2EB8797110E4857929706711EA088B63 /* UMPermissionsInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + EBA61C37156700AD40BDE29A27CC1573 /* BugsnagReactNative */ = { + isa = PBXGroup; + children = ( + 420BAB1491BAE6EF3DAB7AD4DCAD83C2 /* BugsnagReactNative.h */, + 17BF2BE7CA5ED6426D6B0787EBBFABDF /* BugsnagReactNative.m */, + F4F98144AF66CB9B38C8844833C32284 /* Core */, + AB5F630503CEE34D20A831EB77BC8442 /* Pod */, + 9A62AE547036F5F99BC115E4394E13C4 /* Support Files */, + BAB8C5E018E5EF6FC8AC379C77B47AFD /* vendor */, + ); + name = BugsnagReactNative; + path = "../../node_modules/bugsnag-react-native"; sourceTree = ""; }; EBC6360089DC35E8644767DA0CB3E997 /* encode */ = { @@ -11802,6 +11435,66 @@ name = encode; sourceTree = ""; }; + EC94EADF73ECC0E2401AD7A4780CB857 /* VirtualText */ = { + isa = PBXGroup; + children = ( + AF76970552CBF5D498B4B5ABE92861A3 /* RCTVirtualTextShadowView.h */, + B1F435392ADE74924F22A15846C00814 /* RCTVirtualTextViewManager.h */, + ); + name = VirtualText; + path = Libraries/Text/VirtualText; + sourceTree = ""; + }; + EE28FFC8C472FE476C57714799722BA1 /* Support Files */ = { + isa = PBXGroup; + children = ( + CCBCD1ECB8F92058FCF51464F3E09844 /* React-jsinspector.xcconfig */, + 8884711445A12C0B14C2DF437F3EEFD4 /* React-jsinspector-dummy.m */, + B0DF74789020BB03508CE510AED7AA99 /* React-jsinspector-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; + sourceTree = ""; + }; + EEF907437D27809B7CA53F1AAD787320 /* messaging */ = { + isa = PBXGroup; + children = ( + 53D69DCFC390F696D399C4B414606A91 /* RNFirebaseMessaging.h */, + 3D52DC6400A4CBBEB06A90984AF56712 /* RNFirebaseMessaging.m */, + ); + name = messaging; + path = RNFirebase/messaging; + sourceTree = ""; + }; + EF06B98637154181EC86FE652C4FA1BF /* Pod */ = { + isa = PBXGroup; + children = ( + B643A16AD5CB2A5D046C31C69211A8A8 /* React-RCTVibration.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + EF15C051CE8400AA00912ED805EF5920 /* Pod */ = { + isa = PBXGroup; + children = ( + 1E1B04FB75B5395E6DD1C24EBF16BA92 /* LICENSE */, + ECECCA3D20B6BDA3040997E7EE61D10B /* react-native-orientation-locker.podspec */, + 01BFD6D0D50BEDF0F30E43CB8998CB4F /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + EF32D11CFBA4E8AEEE9A1149B473AC7A /* Support Files */ = { + isa = PBXGroup; + children = ( + C97BD572963C9686094E01478F35B7F1 /* RNUserDefaults.xcconfig */, + 9F3320F558C62ECF22D6E07B490B492B /* RNUserDefaults-dummy.m */, + 383CF765070D30DD46546B01374CB118 /* RNUserDefaults-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNUserDefaults"; + sourceTree = ""; + }; F038AFA88C682FC871513D0263B294D3 /* boost-for-react-native */ = { isa = PBXGroup; children = ( @@ -11811,53 +11504,139 @@ path = "boost-for-react-native"; sourceTree = ""; }; - F1ACB20AFA0265D8E295526FD563D6B2 /* FBLazyVector */ = { + F06D764E0284EB598C20B1CF6AA72316 /* Transitioning */ = { isa = PBXGroup; children = ( - 50DFFAE8BD2E6DE0104D66EF05C40FE7 /* FBLazyIterator.h */, - A1126C3C4D6F98638C77C21862E71991 /* FBLazyVector.h */, - 66DD84E852CDC9EA545387FF5C7A3B21 /* Pod */, - A7D242E617AEF504379C172B8EF82806 /* Support Files */, + F99A39C227A6240858090253465A5496 /* RCTConvert+REATransition.h */, + 1CFF7D36BBFE7BA1BD9A53678FA8A3B1 /* RCTConvert+REATransition.m */, + 3751ED84B089653927EE0C3BD844C300 /* REAAllTransitions.h */, + A86B86337D02147402852F004802F71A /* REAAllTransitions.m */, + 16B9E7C7E39B38F721D1296C3C14BB49 /* REATransition.h */, + B40E4EF58D07B711871FFFF02676D5B7 /* REATransition.m */, + 07577BE443FD96F28A10F0CEBA169AD3 /* REATransitionAnimation.h */, + 891CFF73D9F0694CA8DCBB9731EB8986 /* REATransitionAnimation.m */, + 20C407A2DF0A8582F2F15FE345DF3003 /* REATransitionManager.h */, + E0A1BE111F61B60F675C339CF757757A /* REATransitionManager.m */, + AF29E10D6D7FEC4BAE560AF2B8758531 /* REATransitionValues.h */, + 13AC280CB2D4B839693796D4804F301A /* REATransitionValues.m */, ); - name = FBLazyVector; - path = "../../node_modules/react-native/Libraries/FBLazyVector"; + name = Transitioning; + path = ios/Transitioning; sourceTree = ""; }; - F20E88DD27CDCCB12A3749527173A324 /* BaseText */ = { + F095D80BB34A61EF98655673AB306B73 /* Resources */ = { isa = PBXGroup; children = ( - 3D3281F26BD110B14306F4A4C3B598EB /* RCTBaseTextShadowView.h */, - A5C5ADDEC5949E17C0C7CA5BB0EB911F /* RCTBaseTextViewManager.h */, + 8846EF73C9F5348EFE23C6E90629DC3E /* AntDesign.ttf */, + F4FAAA98DA6FAE29391031279B2E7583 /* Entypo.ttf */, + 564EB237CE936A1ADC69025192568E74 /* EvilIcons.ttf */, + 6F36D6D016BD397C4302C86665A64170 /* Feather.ttf */, + F7C160F8560865B7A599CF658C29362E /* FontAwesome.ttf */, + 741A2BD2AD319967AC58422919B1D19C /* FontAwesome5_Brands.ttf */, + 3C288B263BD39751170813CFC05BB879 /* FontAwesome5_Regular.ttf */, + E18AD20128B69DC2D9A91F91108EEE60 /* FontAwesome5_Solid.ttf */, + A99F20EBCE64A1EEA830814C13F18F99 /* Fontisto.ttf */, + 21B9C25370E9E04BE35B22AB44B1C7EF /* Foundation.ttf */, + 80ACCD9CC0EFD9D9FAB24D64D400BEB6 /* Ionicons.ttf */, + 3E4074968980EA96D38F2AEB9B16FAE6 /* MaterialCommunityIcons.ttf */, + 0E576EAA14F52DC065DAF31DEC11CAB3 /* MaterialIcons.ttf */, + 0F86B5528C35E531863188CBC48E351B /* Octicons.ttf */, + 8E06226E65F20929C45682417875E4A0 /* SimpleLineIcons.ttf */, + 71515DD6775D4126C0A7D4B06909FDED /* Zocial.ttf */, ); - name = BaseText; - path = Libraries/Text/BaseText; + name = Resources; sourceTree = ""; }; - F3FCE254FA39B3BEBA1FFFA1D715F01A /* RNGestureHandler */ = { + F186A0A80F48592C66302F725A4BEC1B /* EXAppLoaderProvider */ = { isa = PBXGroup; children = ( - DF52A7476EF833C7CB94B0B1A3AFDCFF /* RNGestureHandler.h */, - 15C5E1C43335136229A04020666A12F1 /* RNGestureHandler.m */, - 2E92666389D22761A623949728B7FFC3 /* RNGestureHandlerButton.h */, - 797AB64E8456717E70370CEDBA49D4A9 /* RNGestureHandlerButton.m */, - B95400480330F81F79600264A3A7A3EF /* RNGestureHandlerDirection.h */, - 5CB2EFDE4F32232132E630716E718B0A /* RNGestureHandlerEvents.h */, - 1A9850902B2324332C3208692F49F11A /* RNGestureHandlerEvents.m */, - EEE2ADF260DC6B0C67C10B80ECDFFDF4 /* RNGestureHandlerManager.h */, - 331D203E413583EC7B1137D6FFF0D3FE /* RNGestureHandlerManager.m */, - 19F6F6BC5950405AB9FDAF7CBC9A37A5 /* RNGestureHandlerModule.h */, - 3EFDE12C3C7223B26A416B790A70B846 /* RNGestureHandlerModule.m */, - E8CC0C1D6B6939ABA8743AAE9D52F1E4 /* RNGestureHandlerRegistry.h */, - 6EDC726C9B8A3F9099BDC1C62A1D9334 /* RNGestureHandlerRegistry.m */, - 6E46C842C2CCD6A4293D72E70864BCA7 /* RNGestureHandlerState.h */, - AB79250AEDD2A4AF1BB903AEE67739D6 /* RNRootViewGestureRecognizer.h */, - 63B989D6201A9C53182E84B30A1A6339 /* RNRootViewGestureRecognizer.m */, - 7DC5A08FC8CEC004058370E18C173FC3 /* Handlers */, - 476F04DF73B5BF0EA0B7E3783A4EC21F /* Pod */, - 0F40E7953D029122183EA92C32C2349B /* Support Files */, + 4D0EC6831411EEB8A8213C4238F8CA1D /* EXAppLoaderProvider.h */, + 528773AFBCEA42047EB6F0E82F212864 /* EXAppLoaderProvider.m */, + BE512648F280AF1B44F65A9012C11A56 /* Interfaces */, + 873BA8B6CF0A01EC05FCCD0995033F40 /* Pod */, + 031006DC9D39D21D60AE4B672B95091C /* Support Files */, ); - name = RNGestureHandler; - path = "../../node_modules/react-native-gesture-handler"; + name = EXAppLoaderProvider; + path = "../../node_modules/expo-app-loader-provider/ios"; + sourceTree = ""; + }; + F19A2A8A7B7C2F7638355FFCFD209840 /* RCTSettingsHeaders */ = { + isa = PBXGroup; + children = ( + 4A40F56B2854F60A4752CF1C9494C1B9 /* RCTSettingsManager.h */, + ); + name = RCTSettingsHeaders; + sourceTree = ""; + }; + F41D27CCF23045603E78345AB7951FFB /* React-Core */ = { + isa = PBXGroup; + children = ( + 957A9C1ACA7277FF1305C15B7E3F1E7D /* CoreModulesHeaders */, + 94B6D0C8116FC6956A0C7CD19FA5BFC4 /* Default */, + DC638F5160FCAA734082F3EB19EA0B41 /* DevSupport */, + 7D6DAD9BDC2AB17AEBD390FCEE143065 /* Pod */, + 07A16BA1CF5BED2CCA3A57E86843E2BE /* RCTActionSheetHeaders */, + 3C054CB30B4FAEE030C670A926919A59 /* RCTAnimationHeaders */, + E6E156B3332E4DACDA384601D3DB58CD /* RCTBlobHeaders */, + 198B298FB24873B1FDF8CDF2D04460B4 /* RCTImageHeaders */, + FF7F42081F3B1D49E1C27BD74F323D66 /* RCTLinkingHeaders */, + 35A90260E0A3601543B2CCD85B5B6708 /* RCTNetworkHeaders */, + F19A2A8A7B7C2F7638355FFCFD209840 /* RCTSettingsHeaders */, + BE00FAF0CBD2E4D1652C8986299FEAF3 /* RCTTextHeaders */, + FEBEBDD6B9EA857A85FD4E4EAE5473D8 /* RCTVibrationHeaders */, + DC617AD771802B571C4AD6EAF97CEC2A /* RCTWebSocket */, + 161C71101A52CB2EA89701C94C0AA630 /* Support Files */, + ); + name = "React-Core"; + path = "../../node_modules/react-native"; + sourceTree = ""; + }; + F4369B5D916E3A341AA40BEC4B3D1B53 /* RNScreens */ = { + isa = PBXGroup; + children = ( + EDAA4916ACE76B6A069F9ED3C4ED339F /* RNSScreen.h */, + 2B237DD7886D1276B43D93DD6D6227AF /* RNSScreen.m */, + 730986CBED7A03B02DAAD3CB7CBFFB05 /* RNSScreenContainer.h */, + 45A41C6C7105C7C090FEA14850032BBE /* RNSScreenContainer.m */, + 9D5AF6B43CFA93DEBD14614EBFA674FE /* RNSScreenStack.h */, + 6194FD1CEA962047434F7CD0840F0B3F /* RNSScreenStack.m */, + 47155E3446D20E771443CE350B3B2C19 /* RNSScreenStackHeaderConfig.h */, + D8849FF2FAA7B4ADE1401764D456AC4F /* RNSScreenStackHeaderConfig.m */, + F67C3945B841AEDF080FCB37E943C874 /* Pod */, + 9437D9C3DDE287DB16B6C1C15EE8BCD4 /* Support Files */, + ); + name = RNScreens; + path = "../../node_modules/react-native-screens"; + sourceTree = ""; + }; + F478F99164218B2101AC58E6057180A6 /* Support Files */ = { + isa = PBXGroup; + children = ( + 291E5809BEED9259178A0FA957B359D9 /* RCTTypeSafety.xcconfig */, + E89FA65752DFF12DB8FF3620228BE5F8 /* RCTTypeSafety-dummy.m */, + A64C30AF935C0A5558AB286730AF3C24 /* RCTTypeSafety-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; + sourceTree = ""; + }; + F4F98144AF66CB9B38C8844833C32284 /* Core */ = { + isa = PBXGroup; + children = ( + ); + name = Core; + sourceTree = ""; + }; + F6093BEB6091392A92590D948465F618 /* FBReactNativeSpec */ = { + isa = PBXGroup; + children = ( + 90064060BB25376D466498BB22259FBC /* FBReactNativeSpec.h */, + 6B7793B4F35FA95A3ABCB95271121067 /* FBReactNativeSpec-generated.mm */, + AF862D1A8D3C4E68C9DA59D4AA1C0DBA /* Pod */, + 59A8D4BC88C6FF4A62F163B403AA7F0D /* Support Files */, + ); + name = FBReactNativeSpec; + path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; sourceTree = ""; }; F62F96D621E70EDB2BDD8FA4757A7F42 /* Support Files */ = { @@ -11869,52 +11648,72 @@ path = "../Target Support Files/GoogleAppMeasurement"; sourceTree = ""; }; - F6F29A376E24C72EC24FC34C4004B7DB /* Singleline */ = { + F65F1FCDCBCC5D3AE5AB899CB62D1BA3 /* Nodes */ = { isa = PBXGroup; children = ( - 8E9548AC9F45E0BF904B4434099635A2 /* RCTSinglelineTextInputView.m */, - 57AA80394B12EA09B73F02C901B209C9 /* RCTSinglelineTextInputViewManager.m */, - 93C28E4D3968AF460FD01926C80CB924 /* RCTUITextField.m */, - ); - name = Singleline; - path = Singleline; - sourceTree = ""; - }; - F7C4696C0EFC32CA1767BAA3487FCD43 /* SafeAreaView */ = { - isa = PBXGroup; - children = ( - 195E4A5DBA8DED4A64D268AB05C74423 /* RCTSafeAreaShadowView.h */, - 793FE83E57B1545E7FA1AA3649EF1854 /* RCTSafeAreaShadowView.m */, - EFDF740620933B4841AD58A53BAEC7A3 /* RCTSafeAreaView.h */, - 09854C0B3D010768EA30AD0D570BF074 /* RCTSafeAreaView.m */, - FF3246FE28E33D7A28FF5A2C26ADD2AC /* RCTSafeAreaViewLocalData.h */, - 5F9D125D122E0C9558F71F9175DD5D28 /* RCTSafeAreaViewLocalData.m */, - 5C09DE05756B527F34066B000593BE8D /* RCTSafeAreaViewManager.h */, - B179558C32472D04EF2F08B82B3DE3E9 /* RCTSafeAreaViewManager.m */, - ); - name = SafeAreaView; - path = SafeAreaView; - sourceTree = ""; - }; - F821A03CB5EDF48D9D1EE9D5358C8A54 /* Nodes */ = { - isa = PBXGroup; - children = ( - E10AAF26D2BF5079CDA145FFC3030730 /* RCTAdditionAnimatedNode.h */, - F078F24ACD9A1D9BC8095075A2E070A5 /* RCTAnimatedNode.h */, - 395A5863E133BCA6099A6523C1014220 /* RCTDiffClampAnimatedNode.h */, - 6E09133F69B207B7ED5F79BF8F9E0913 /* RCTDivisionAnimatedNode.h */, - E358966C3DFA031055AF8A397211BFC7 /* RCTInterpolationAnimatedNode.h */, - 19FA048101B217FAEE16A806AF276316 /* RCTModuloAnimatedNode.h */, - 1F15FF636DC92CB7A2ABAB6A21DF7854 /* RCTMultiplicationAnimatedNode.h */, - 398CD556F8B631C62A717D5FBAD01522 /* RCTPropsAnimatedNode.h */, - 6F799420D931BF01E22BC2B37A32CB07 /* RCTStyleAnimatedNode.h */, - A806CF553D1C88A35B4769741C4FE655 /* RCTSubtractionAnimatedNode.h */, - 568323E31B4DC8CE5019B9C73AD200D2 /* RCTTrackingAnimatedNode.h */, - 7DBCAFB283FF9E3D7A34B8C67FE01E86 /* RCTTransformAnimatedNode.h */, - F259D669A90EBD510CCAE2B7B7446935 /* RCTValueAnimatedNode.h */, + FD8919E809C87FE25026647AC644A90B /* REAAlwaysNode.h */, + C9E713F50EF0A4980AF38416D683468D /* REAAlwaysNode.m */, + 283DAE7E7C078A748285F6E5DDC6B489 /* REABezierNode.h */, + B40D423A829C4CAE468061B860B9F55D /* REABezierNode.m */, + FA3BE52D5B6B778A172B4ABEF91CDA5E /* REABlockNode.h */, + E788ED0D0E971350B6AA43A6E9EA1C8D /* REABlockNode.m */, + 56669636ECF6C60B7CFB58F98AD71D66 /* REACallFuncNode.h */, + 3DC693D103150FEFF9C68DEB994CBE35 /* REACallFuncNode.m */, + DFE6F4AE4A52E0402C95624B31731A16 /* REAClockNodes.h */, + FF21F2F302A776515EE5EF5560F277CC /* REAClockNodes.m */, + E6AD35E2827330F6D0FDDA7A31D290E6 /* REAConcatNode.h */, + 7927368F0CB7A2A76765B5111B9FD877 /* REAConcatNode.m */, + FCAA8376DED59C1A32771B7C0FCB62B4 /* REACondNode.h */, + 06E5464CE38D349D9F878E77068C3BDD /* REACondNode.m */, + C5C21E43A2EA60995ED257C9872F617F /* READebugNode.h */, + 14C24448DD9483B8F20956A6E8111BC0 /* READebugNode.m */, + 336769B7563A1B1DCC963621A000BDB9 /* REAEventNode.h */, + 58FFE1B9B4806FB71C38CBBC6739CF31 /* REAEventNode.m */, + F2CD426134D4E904003CC3897BC3E4CC /* REAFunctionNode.h */, + 5C3F1D97844E88437D05D57D6CD71824 /* REAFunctionNode.m */, + 38CDD663F2229741EFDE605F49D55F74 /* REAJSCallNode.h */, + 18CE38BE2770B57EAA2A6566473E5D64 /* REAJSCallNode.m */, + BDE6E262234A5B14E7A484374795580D /* REANode.h */, + 21848CA295A5871520AB6B6D9165D3CD /* REANode.m */, + F190B64A2D63DAF1E694C5F3D806C8E5 /* REAOperatorNode.h */, + 46D44A32F0EB4AF27997E7A836AF2409 /* REAOperatorNode.m */, + 5244DFCF5A940640FC0A13601331116B /* REAParamNode.h */, + 2DDCF5DC5900ABC24A22BD88B27AB2CB /* REAParamNode.m */, + 7BDC91519F1ED4F6AEDAADB17C5A4FDE /* REAPropsNode.h */, + 4085B6FA8C44FE634A2DB999BF874CC0 /* REAPropsNode.m */, + 0C530D77EB7818C7B66D52A0E2D32F9D /* REASetNode.h */, + 2190F81AA03361ECA2D6C94FF2E95F90 /* REASetNode.m */, + 67E1C6993CD58D6C27C7696155B6B0A2 /* REAStyleNode.h */, + 0110C6251B29DF2D5A7919AB676C8FBC /* REAStyleNode.m */, + C82027183D5FAE25C74A7F14B79D1AA9 /* REATransformNode.h */, + DFC4812CE6BA6F03A4828EA600CD1D1E /* REATransformNode.m */, + 144544B37718F5DFA20D7004986219FC /* REAValueNode.h */, + 1218312F176527661BAEBEB2855444F3 /* REAValueNode.m */, ); name = Nodes; - path = Libraries/NativeAnimation/Nodes; + path = ios/Nodes; + sourceTree = ""; + }; + F67C3945B841AEDF080FCB37E943C874 /* Pod */ = { + isa = PBXGroup; + children = ( + BA692097DDF46B1E925F3A62F09565D3 /* LICENSE */, + 8FD65F49243D49B3364CE4617C039811 /* README.md */, + B477AFBD91242BCC0812FC76FDF2F269 /* RNScreens.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + F6DAB2D1E921041E12670AAD379C83AF /* EXHaptics */ = { + isa = PBXGroup; + children = ( + 955D7DFC004CCBDCA460799CA05F6C04 /* EXHapticsModule.h */, + 3FB6B0D132877CF3361A6436313E5619 /* EXHapticsModule.m */, + C7C4EE3C28CD5A1ACC1DCE9B67D24B91 /* Pod */, + 11467BACF9BC2CC93789B20AB0D02A07 /* Support Files */, + ); + name = EXHaptics; + path = "../../node_modules/expo-haptics/ios"; sourceTree = ""; }; F854DC978F5F9901A5B7A54936FFF33D /* mux */ = { @@ -11931,6 +11730,34 @@ name = mux; sourceTree = ""; }; + F885A308EB492EB907B3D8D25E264600 /* Pod */ = { + isa = PBXGroup; + children = ( + 467DBAD1636C5C358F12CA4A0E3CFBA6 /* LICENSE */, + 325F9AD7D037B0E843A24E55F295E4CD /* react-native-keyboard-input.podspec */, + 3506099201F98E1F037CE96A460AAB96 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + F8B2BED2EA17302214F17E0E40626F21 /* Pod */ = { + isa = PBXGroup; + children = ( + FB1AF4CE8DB6FF59DB022D2F559157EB /* React-RCTBlob.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + F8D67F47F1036A158C06BA57E504A8A0 /* RNFetchBlob */ = { + isa = PBXGroup; + children = ( + 6318E4099A584F4D43F9DAC3EE1F943B /* RNFetchBlob.h */, + F5EE07D4FF7C481EA57281ABF12FE6C5 /* RNFetchBlob.m */, + ); + name = RNFetchBlob; + path = ios/RNFetchBlob; + sourceTree = ""; + }; F9327C96739B49464E6B8130C2F142C1 /* Support Files */ = { isa = PBXGroup; children = ( @@ -11949,25 +11776,117 @@ path = "../Target Support Files/Firebase"; sourceTree = ""; }; - F95FDFE5356327B254C7D81F1404D8A2 /* Pod */ = { + F9CA889B5CB2E84E70982614CD766A5E /* Support Files */ = { isa = PBXGroup; children = ( - FCCFDBA0C51CF7E7245A1A17DD323356 /* FBReactNativeSpec.podspec */, + F5A6EF7877284C70D47CA945BD6ED2CE /* RNGestureHandler.xcconfig */, + 52E1132DF7C00A30BF68B69D98F050CC /* RNGestureHandler-dummy.m */, + CD04E51D86BB4E5F81EE41DDE5BA4063 /* RNGestureHandler-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNGestureHandler"; sourceTree = ""; }; - FAA05AEF2F944196638DC65E7AE34D17 /* Support Files */ = { + FA7578C3AA70C34FCF89766B717CCFF0 /* CxxModule */ = { isa = PBXGroup; children = ( - 1211D425FBEE9DCF93BEA6EB97E0F77F /* EXWebBrowser.xcconfig */, - 85A23C75CB4400E90E923E0CC075A75E /* EXWebBrowser-dummy.m */, - DAD0AAA0CE228A80C43121A88A1DD229 /* EXWebBrowser-prefix.pch */, + 5779614F1165F296705D5FD393E39B60 /* DispatchMessageQueueThread.h */, + 12DB2BF5A4BB79C25434C6447445D7D0 /* RCTCxxMethod.h */, + A32507C9D76151FE299DB8B28FD56011 /* RCTCxxMethod.mm */, + 812EB72D39D58EC67F1D198219C875DE /* RCTCxxModule.h */, + 4CE9E319DBD115CBABDF32645507EC8C /* RCTCxxModule.mm */, + ECDA3645A898A8276498D93C1190AD6B /* RCTCxxUtils.h */, + AF8A9CBAEEECA935A9171CA8E13DAC11 /* RCTCxxUtils.mm */, + F98E1DEFE3A940C12562B76C495E364E /* RCTNativeModule.h */, + FC7A02454BC02E2504060136A6FCD201 /* RCTNativeModule.mm */, + ); + name = CxxModule; + path = React/CxxModule; + sourceTree = ""; + }; + FBD803FBCB5790A0C017D5B6750136DD /* Support Files */ = { + isa = PBXGroup; + children = ( + 9C09086111353589A5DAC90B3E9F80E4 /* React-cxxreact.xcconfig */, + 46C1A629706A7A7377A90F7FF05E92BC /* React-cxxreact-dummy.m */, + F9D1D3FCFF86056D9C66800FEEFC06B0 /* React-cxxreact-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; + sourceTree = ""; + }; + FC8CB42543B8AAB6DB6BCB44A8324BF1 /* Support Files */ = { + isa = PBXGroup; + children = ( + F1B38F47FD8ADDEB16D29405006445DF /* React.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React"; + sourceTree = ""; + }; + FDCCDAD0667AC7EC273BD2A5A4E3095B /* react-native-jitsi-meet */ = { + isa = PBXGroup; + children = ( + 777307D855D4921B8B3DA30B4BFB6043 /* RNJitsiMeetView.h */, + F19BCB5E384F48FB9A57967B08C70F4F /* RNJitsiMeetView.m */, + 8375F69358B3F33DAE5652BAB8B7FCA5 /* RNJitsiMeetViewManager.h */, + 5D7C64A9E80DF537ABA85966CF90017B /* RNJitsiMeetViewManager.m */, + BFA96C05E594587DDADD1CE1605602FF /* Pod */, + 0D2E46E8DFCDCE3FF9997C65CB500766 /* Support Files */, + ); + name = "react-native-jitsi-meet"; + path = "../../node_modules/react-native-jitsi-meet"; + sourceTree = ""; + }; + FEBEBDD6B9EA857A85FD4E4EAE5473D8 /* RCTVibrationHeaders */ = { + isa = PBXGroup; + children = ( + 638CCE0BC7029CD374CA72DED5D873D9 /* RCTVibration.h */, + ); + name = RCTVibrationHeaders; + sourceTree = ""; + }; + FF7F42081F3B1D49E1C27BD74F323D66 /* RCTLinkingHeaders */ = { + isa = PBXGroup; + children = ( + 4C6F14FE5674A24CE56D53EDBD32640F /* RCTLinkingManager.h */, + ); + name = RCTLinkingHeaders; + sourceTree = ""; + }; + FFA2D81094008E5DC54AB64DD745BE81 /* Support Files */ = { + isa = PBXGroup; + children = ( + D976ACE9A0F79565855CDA712FD9AAC2 /* React-RCTAnimation.xcconfig */, + 5280BB5B3FE17AD8B5CF1928ACA583F6 /* React-RCTAnimation-dummy.m */, + 64E6C4A8ABD387FEDF28A3365C932D51 /* React-RCTAnimation-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; + sourceTree = ""; + }; + FFA5DB6348D27D0CB2F79F5F804E8E5E /* Support Files */ = { + isa = PBXGroup; + children = ( + F62F4A4BBFDD3FE3F0A229A612F2C9FD /* EXWebBrowser.xcconfig */, + AE6EC439C25D0A82CA82156AD5EEE148 /* EXWebBrowser-dummy.m */, + 6D52E3D6629D7DCDF7C2E633BDDFB3CA /* EXWebBrowser-prefix.pch */, ); name = "Support Files"; path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; sourceTree = ""; }; + FFCEB001A7EA1036A53CA103378B12D0 /* Support Files */ = { + isa = PBXGroup; + children = ( + E7C848FF3ABA2C35DBAD13A5D7F7C85B /* RNFirebase.xcconfig */, + 6C07C15B7F0C2D6C1ACE5FFD4AF40A5B /* RNFirebase-dummy.m */, + 34CA70CFAAF734F9B413ED26AF9A565E /* RNFirebase-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNFirebase"; + sourceTree = ""; + }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ @@ -11979,6 +11898,17 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 03AEDABDB215F6382C2A7B34B71627BC /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + BF0B999AD90767EC0F5911A1FCC0E249 /* FFFastImageSource.h in Headers */, + 73B66CA537D75EAEC7AA15EFB4281366 /* FFFastImageView.h in Headers */, + F66A36CBF9154237D67ADE57BF46077D /* FFFastImageViewManager.h in Headers */, + 4430569F3E84B1F22368A37034A12C38 /* RCTConvert+FFFastImage.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 04F91B2CB9FF943E35EFBC7576EE9F5A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -11986,11 +11916,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 06EF9416DCBFF556F2660B48297E87EB /* Headers */ = { + 069676235B3A14510E3240EB4FC795EE /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 04393445980EFF1EFC5A8DA68D6A1444 /* RNDocumentPicker.h in Headers */, + 78F2D3E258BE2CA611731445F337D6E9 /* KeyboardTrackingViewManager.h in Headers */, + B4ED9D24026C8748415A9A0E86F9DFE9 /* ObservingInputAccessoryView.h in Headers */, + EBB315C78D1F1D6E671461C723D0AEA6 /* UIResponder+FirstResponder.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12053,22 +11985,83 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 09D9D5C1372EBB68ED28AD0FA6E69EDD /* Headers */ = { + 0BFF0D889E4E5FDC9F1B076BF30D59A5 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 64923721BD562B3674943E640F4F5396 /* ReactNativeShareExtension.h in Headers */, + 4E8F029F47000CBA03672364EF5E3351 /* NSBezierPath+RoundedCorners.h in Headers */, + A712234B9A7A5984D6D8DF3B373BF3E8 /* NSButton+WebCache.h in Headers */, + 442933B0BCA72284899C8F62B2924540 /* NSData+ImageContentType.h in Headers */, + 829AB544D5632D7C444A13B57AEE4C9F /* NSImage+Compatibility.h in Headers */, + 8F40F8E91AF47A8CE35FE966A7E4F767 /* SDAnimatedImage.h in Headers */, + 7A7FB20030460975DBD48FA2D446C441 /* SDAnimatedImageRep.h in Headers */, + 06BA91CA53DABE644A260B9DEC83C5CB /* SDAnimatedImageView+WebCache.h in Headers */, + 4682E0139F8D33BE32F6FE05D0A36065 /* SDAnimatedImageView.h in Headers */, + 05A6801D4A6EBA2EDA73ADA05EC9E3EA /* SDAsyncBlockOperation.h in Headers */, + 3DF82780CF55F81F013EBCC8EC0D8636 /* SDDiskCache.h in Headers */, + 12F061F4A5F336BD545C9FD71095804E /* SDImageAPNGCoder.h in Headers */, + 50CD9CD928E858B3E489C36D1C3B5D8A /* SDImageAPNGCoderInternal.h in Headers */, + 1301B055E3B7F73D9E2A7E3760CF8C3F /* SDImageAssetManager.h in Headers */, + 5F893C23163105DD1120AB46B1F06E95 /* SDImageCache.h in Headers */, + 3AFDD151E5107534D74663949B3864F1 /* SDImageCacheConfig.h in Headers */, + F82697836D9AE99150F75C1B7B0774F0 /* SDImageCacheDefine.h in Headers */, + AEC280D821AB359C87BCCAA4A4D87401 /* SDImageCachesManager.h in Headers */, + 165C347657B7E89878BEE13DFC66884B /* SDImageCachesManagerOperation.h in Headers */, + 3C0C44CA17AA10A05AB42DA617FE2306 /* SDImageCoder.h in Headers */, + EE3FAFD07B502D3D10E589EB1F49A62A /* SDImageCoderHelper.h in Headers */, + 8D0F057AE881259557A6AA0E3A2E0530 /* SDImageCodersManager.h in Headers */, + 842D83DACEB91DA0700B8A1E4A0A0CC9 /* SDImageFrame.h in Headers */, + 042E510AB7B8B3A6FCFD45D2ECD4C3E2 /* SDImageGIFCoder.h in Headers */, + 66BCA4E1A7DC44EE98D3FF1D1744F5CC /* SDImageGIFCoderInternal.h in Headers */, + 19A150A023F610AD3C2ADB6237C3AB9D /* SDImageGraphics.h in Headers */, + F85A019D0A3889F3461D4DDA9C44FFA4 /* SDImageIOCoder.h in Headers */, + A4D1AC72E2F6BDACD5C201246CBBCC90 /* SDImageLoader.h in Headers */, + 0B5D18E46AAC74FB7BE5B84EDB8B9E6B /* SDImageLoadersManager.h in Headers */, + 35B224070CE7AB10F237DF265273F07D /* SDImageTransformer.h in Headers */, + 711FF77D7CDFB3570001A7AB723737CE /* SDInternalMacros.h in Headers */, + 30914BF6EBA4A680F93F061C1DADB29B /* SDMemoryCache.h in Headers */, + A56C50CEC7725897661EFBAD374DA115 /* SDmetamacros.h in Headers */, + 6E65F0987F2C575C2F7B62E21EA29F13 /* SDWeakProxy.h in Headers */, + EBDFC15B5E2A8280B3DBC83194407A70 /* SDWebImage.h in Headers */, + C3818C6FE9834032A85AD7B3A90CC64F /* SDWebImageCacheKeyFilter.h in Headers */, + 6FE90C9F9C673C6B799AD612E9B10074 /* SDWebImageCacheSerializer.h in Headers */, + A3411BDF8205A778C85663247380FC37 /* SDWebImageCompat.h in Headers */, + 1F213A396F09701C10F49BFA0DFABD50 /* SDWebImageDefine.h in Headers */, + 369B3B50FEDEB672D5A25634765E6DE5 /* SDWebImageDownloader.h in Headers */, + 4C4300CE48D312E626040A39FD5F977D /* SDWebImageDownloaderConfig.h in Headers */, + C242CC955318D5219A87E0926CA4517E /* SDWebImageDownloaderOperation.h in Headers */, + 53D62A70A8AE75416E2E40EC6824300A /* SDWebImageDownloaderRequestModifier.h in Headers */, + 51A7AF9FA103DC476D1C29436B83E374 /* SDWebImageError.h in Headers */, + 14458A225BB772B05F20DE15A5B1C745 /* SDWebImageIndicator.h in Headers */, + C541CD171EC65FEA09C77EE0960A4117 /* SDWebImageManager.h in Headers */, + BDFA7F65D8559361150F26D91DB04966 /* SDWebImageOperation.h in Headers */, + 4950C7D57CBFE821D8622906BAC7F5EB /* SDWebImageOptionsProcessor.h in Headers */, + 317F317351263F3E0B8D2BE1D386963D /* SDWebImagePrefetcher.h in Headers */, + B8DC823E24D623D3FDC3F640788107AA /* SDWebImageTransition.h in Headers */, + 08D62F9615F13D27E69A22D105D29E0D /* UIButton+WebCache.h in Headers */, + F1D070493E5656BE9FC5AB629099172B /* UIColor+HexString.h in Headers */, + 1302F8D1E083CDE6A66BA61D881FAF97 /* UIImage+ForceDecode.h in Headers */, + 28A1031159B38198922BAE52BBB278FB /* UIImage+GIF.h in Headers */, + 59C3E7066177B223E3A9B3D152B11E02 /* UIImage+MemoryCacheCost.h in Headers */, + 79FEF77F2B50481498F13E270FA06498 /* UIImage+Metadata.h in Headers */, + 77DEE4A9F5F1BF10930B258677445AC7 /* UIImage+MultiFormat.h in Headers */, + A1EF1A44275F86776A7D9711767D32F9 /* UIImage+Transform.h in Headers */, + 346221F6C6531271BEE337C4A880BFB0 /* UIImageView+HighlightedWebCache.h in Headers */, + 6AC01B956D5D44F3D08EB935A928DC56 /* UIImageView+WebCache.h in Headers */, + 75505B0473CE52D1EC6FD0662927D4EE /* UIView+WebCache.h in Headers */, + 6D5CA15D3A9F16A3C1696E64BE2791B2 /* UIView+WebCacheOperation.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0F75E14589C1EFA680E01E144A086EEA /* Headers */ = { + 0DA08FF22A60F56BE8BCEAF12229BA21 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 19667B2AF3BC9388AB07AD070805114E /* FFFastImageSource.h in Headers */, - D059E0456AA975EBB02A49850923CD72 /* FFFastImageView.h in Headers */, - D31DAFDE1EBE7DE99C33F2B39B6D480E /* FFFastImageViewManager.h in Headers */, - 11804481D37D71AA9A17C664BC304796 /* RCTConvert+FFFastImage.h in Headers */, + 0F458CD48019F190BF2EE9F1B310C40D /* RNCUIWebView.h in Headers */, + 8AC5698C17D587B15B82ED4ADF4D30E6 /* RNCUIWebViewManager.h in Headers */, + C937B1637142756FF666A7F4D311BD08 /* RNCWKProcessPoolManager.h in Headers */, + 6203436AACAFD327B7D94BB6D356DFBF /* RNCWKWebView.h in Headers */, + 7509BF17FEA74D4B07021F4BB62EB49F /* RNCWKWebViewManager.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12107,15 +12100,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 171F2AAFBDA7B77CC339311F7CD2E5AF /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 7F2BD806FB73919DBA35064DACA92472 /* RNJitsiMeetView.h in Headers */, - CA2ACF096B925F393A307C974B5ED3E8 /* RNJitsiMeetViewManager.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 185DD29022EAAD68032CF96A0D80032A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -12125,6 +12109,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 187828AD1065FB97181977FB33605912 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + A63FB356D9F55E74A4EFD49D8D269C52 /* DeviceUID.h in Headers */, + 395E9867F38532BF9DA3280956498F87 /* RNDeviceInfo.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 1D8B6318F5AAA17AE352DD76B0029C8F /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -12142,74 +12135,29 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 239E3C733DA5E9D409EC06EBF3C07828 /* Headers */ = { + 202AA95677AFB0234038EB528BCAA48D /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 1F070BC5024E5B63B2FEE2832D5D4BB8 /* BannerComponent.h in Headers */, - 33C3124704C1D163F80C66BBB861A65C /* NativeExpressComponent.h in Headers */, - 3894505DCB2DF56B52A3B48ED7D12034 /* RCTConvert+UIBackgroundFetchResult.h in Headers */, - AA2B0CAEF7220F8526DAA0B6C60C44DB /* RNFirebase.h in Headers */, - FCD8E3CFEB879A205C27DA21CFCAC974 /* RNFirebaseAdMob.h in Headers */, - BD276549DA595DEA112D5EC6CAA137BE /* RNFirebaseAdMobBannerManager.h in Headers */, - 1C53EB9F06B5D2210A10592BEE56BC20 /* RNFirebaseAdMobInterstitial.h in Headers */, - CF2403AFE48D7CED68DA0B11EBFCC59F /* RNFirebaseAdMobNativeExpressManager.h in Headers */, - D12BF3D9EE5C8504A4E0A79361F462E0 /* RNFirebaseAdMobRewardedVideo.h in Headers */, - 0328758DCDEE3B4C06952E0131D2FE95 /* RNFirebaseAnalytics.h in Headers */, - 98626D45D73808F5F9D0129E377E8751 /* RNFirebaseAuth.h in Headers */, - B5244A908660A2CC6694E901758453F7 /* RNFirebaseCrashlytics.h in Headers */, - 4837BDBA63362D7ABDEC3F2CC2D825C3 /* RNFirebaseDatabase.h in Headers */, - 1354DE64A7F16D09D33C3D39D9FF94C5 /* RNFirebaseDatabaseReference.h in Headers */, - E0F71C5044C2C4686B10CBEC4B4575F6 /* RNFirebaseEvents.h in Headers */, - DB9C09502895B74039AD19E9CF4055BF /* RNFirebaseFirestore.h in Headers */, - 6E796D4A11C7CBF2EE4CB9D202FCE9F9 /* RNFirebaseFirestoreCollectionReference.h in Headers */, - 28E9F1BB04EAEBDD4C0A890332EC77A9 /* RNFirebaseFirestoreDocumentReference.h in Headers */, - BEAF20563158B572CCD0ABF34FB28117 /* RNFirebaseFunctions.h in Headers */, - 72D6492D149516E3ABE5E287691D1182 /* RNFirebaseInstanceId.h in Headers */, - 06067BDC9DAC53D2573C17D2F20EDCA3 /* RNFirebaseLinks.h in Headers */, - CF4B16E4DFFC133E1C0593C3B60694D4 /* RNFirebaseMessaging.h in Headers */, - E81751718AB94E4E89871F0E3F767AA6 /* RNFirebaseNotifications.h in Headers */, - 2BA314D25CF4133F355A3236C0C85825 /* RNFirebasePerformance.h in Headers */, - BFB43903D388E2C5BAABDF63DDA29593 /* RNFirebaseRemoteConfig.h in Headers */, - 4CD04F5852E72205B1A72794B37CFDAE /* RNFirebaseStorage.h in Headers */, - 42C541CDF4C323D58807DE443CB1CBD5 /* RNFirebaseUtil.h in Headers */, + D6F91C8EF14721DC18121C0A00F2C00D /* SDImageWebPCoder.h in Headers */, + 8BE187447DC42D9B8C88D6E2BF5F6139 /* SDWebImageWebPCoder.h in Headers */, + 06930D83E74555DE9617A7065C1172CC /* UIImage+WebP.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 243BE848B91C9E9446A00CE6AECA177B /* Headers */ = { + 2143EACB77FDFEFD921A4697BA48336F /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 10D10DCD876A29A396DB792CCBC904D4 /* RCTConvert+RNNotifications.h in Headers */, - 80A90CD919B2B48773D864EF170C9DAC /* RNBridgeModule.h in Headers */, - F612CA0953F06CDBD2EC4D8DA28F5A6E /* RNCommandsHandler.h in Headers */, - 920B90E6A3A2871D8C38BA412F6970AF /* RNEventEmitter.h in Headers */, - FBE6C1B1483DEE5558F02CDC526F717D /* RNNotificationCenter.h in Headers */, - E97B898677F48FFC8AB1F0C889EC8266 /* RNNotificationCenterListener.h in Headers */, - 27C2C46B57E24D17CC4200B4B56ED6F7 /* RNNotificationEventHandler.h in Headers */, - F7858445FD362785F6B82B2AA90D615A /* RNNotificationParser.h in Headers */, - 6D9AC7F4E7907FD379B9441EB51BC46A /* RNNotifications.h in Headers */, - 6D11C841CC533D91B06FF4EDA76711E4 /* RNNotificationsStore.h in Headers */, - 1CE706B5A58CC3335C7F03B49845902B /* RNNotificationUtils.h in Headers */, - AB2DF9D8AFA2AA495F4C18D293F51A63 /* RNPushKit.h in Headers */, - 880139AB323156492DCA8B199F96DC5A /* RNPushKitEventHandler.h in Headers */, - A747D00921E5C8459DFF2004FF05D98E /* RNPushKitEventListener.h in Headers */, + CC5557FB1662E0F790AE7202DDF44EDD /* Orientation.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 28FC6557D0CAC76D6ADE5ADB53022733 /* Headers */ = { + 26AFE17C9D7632017671AB64D50FF7D5 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 1660F08DD13F32EC688C2DFAFF75F800 /* QBAlbumCell.h in Headers */, - 5969CACC9847943362447CA98EDB728F /* QBAlbumsViewController.h in Headers */, - ECD778287219C1B53C42D368EB53AC16 /* QBAssetCell.h in Headers */, - CFB15690A8AA7AEAA6089C995EE25A41 /* QBAssetsViewController.h in Headers */, - 04BFE4627266D77C3F96FB5F07D55410 /* QBCheckmarkView.h in Headers */, - 045C4CD4059A66ACD05A5FCB11A6A3E5 /* QBImagePickerController.h in Headers */, - 0548CA0C8CFD258A56BA645041F00187 /* QBSlomoIconView.h in Headers */, - 163179658167651DB2ACDD2E785C6360 /* QBVideoIconView.h in Headers */, - 25E4A6EB4C92D8310DD25E69ED20BC63 /* QBVideoIndicatorView.h in Headers */, + 756C704F3468D971059E9D9E6F2A4AD4 /* RNLocalize.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12487,112 +12435,117 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3653926A62F6EC79E5C7D9DEA96993CD /* Headers */ = { + 305150B125FF4281ACE67E22E8B1FFD3 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 40264737B93C0C0EB8EC39A614B36250 /* DeviceUID.h in Headers */, - BB9F952256366A5F371F3878694AE44B /* RNDeviceInfo.h in Headers */, + 7B47B5C1E117C44D046318E3D42BD8D6 /* BannerComponent.h in Headers */, + B67CE29038B7DCB160F3DBF14D9B159B /* NativeExpressComponent.h in Headers */, + 2DD88BB1449E72F02E3B37E8F7D4D41D /* RCTConvert+UIBackgroundFetchResult.h in Headers */, + 3BE95ECF0CEDE952DE7EC6A5E31961A8 /* RNFirebase.h in Headers */, + EC35B0A1FB34DA8646484C0D21C0DDC8 /* RNFirebaseAdMob.h in Headers */, + 43AB3456754BFBAB36302675C1F024FA /* RNFirebaseAdMobBannerManager.h in Headers */, + 4BA880BD319A702FCC7C4B193CBDEF3A /* RNFirebaseAdMobInterstitial.h in Headers */, + 5F6279992AFB146BF2BE1DE2FA807B1E /* RNFirebaseAdMobNativeExpressManager.h in Headers */, + FF14CF6139F33E3337BF5D772369F291 /* RNFirebaseAdMobRewardedVideo.h in Headers */, + 5E127C7E9E2B3786E9E37204858EB0D5 /* RNFirebaseAnalytics.h in Headers */, + FC37ED605930506D625B8462E7164877 /* RNFirebaseAuth.h in Headers */, + D3204BCC8FC561DCA4B1C49092426FC3 /* RNFirebaseCrashlytics.h in Headers */, + 745F8A401022814F8ADC2FC6A74AC43C /* RNFirebaseDatabase.h in Headers */, + CABB9D0D3C317CE3ED463CCB991EF9B3 /* RNFirebaseDatabaseReference.h in Headers */, + 180788C4BFF07B368B773E100D069B33 /* RNFirebaseEvents.h in Headers */, + E0564AB539B435E69120A1274D90EC4B /* RNFirebaseFirestore.h in Headers */, + D445888D4E4F09447067816A7EE107DC /* RNFirebaseFirestoreCollectionReference.h in Headers */, + 88C80D8900DD191B23C09295A1A411CC /* RNFirebaseFirestoreDocumentReference.h in Headers */, + 843C5C971393E98ADA0A22473480760D /* RNFirebaseFunctions.h in Headers */, + 2B308AE04FC4208E860752D4338E73D3 /* RNFirebaseInstanceId.h in Headers */, + 214EC2564186B97D27AEBA7850AC50FC /* RNFirebaseLinks.h in Headers */, + 65D1DC471DE56E0ADEB3C5CEDE68F150 /* RNFirebaseMessaging.h in Headers */, + CABCE5A528698C4994E71C5F739EC415 /* RNFirebaseNotifications.h in Headers */, + AD274B1478D7130D4EDD4B3DB34A50F5 /* RNFirebasePerformance.h in Headers */, + 4DE362F3947B0C00289BA2CB44436E1A /* RNFirebaseRemoteConfig.h in Headers */, + 419B3687A0EE5BD6AA2446011C690EDD /* RNFirebaseStorage.h in Headers */, + 82BBD6475B1A213B38450FF96A13CF6C /* RNFirebaseUtil.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3AA8E84C5F8EB99E96E39B7DA1B46E3A /* Headers */ = { + 30A49116137AC2CD9C5D70F38EBCAEDA /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 68E76BCBAB48EAB43038D4508AD83530 /* RNVectorIconsManager.h in Headers */, + F87A3BF95E7446B5B99766E9C302829A /* CGGeometry+RSKImageCropper.h in Headers */, + 4EA2CD2903EFE4281F532299310D324F /* RSKImageCropper.h in Headers */, + 5A3483B2F62B1233A0E3B1542A4D227F /* RSKImageCropViewController+Protected.h in Headers */, + 0672627714725F5F4B31A77D8B19E42F /* RSKImageCropViewController.h in Headers */, + 06BE59C306831426832003BCDF9B0D7E /* RSKImageScrollView.h in Headers */, + BC8082294AC06051F7A4F5F4EF7F0834 /* RSKInternalUtility.h in Headers */, + 0A61A0280672629511105BDE8539B978 /* RSKTouchView.h in Headers */, + 26339DDF8281477EDF4062465BACA4E0 /* UIApplication+RSKImageCropper.h in Headers */, + 22F89F1EA04063E1DD855B1A2BDE0EA6 /* UIImage+RSKImageCropper.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 41E718F6B1E83222D0DA4F4DA7CD208F /* Headers */ = { + 30EDF8271849EE453046EF50843E94B4 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - B41F1A4E0E49D3C3BEB13C83D5FB3BEF /* NSBezierPath+RoundedCorners.h in Headers */, - 3B2531A3DD9A35DC8D9E07C1250BA583 /* NSButton+WebCache.h in Headers */, - 98376979329336BC66814458E982E522 /* NSData+ImageContentType.h in Headers */, - 9B7F715EFD137258EDD0A8712D147896 /* NSImage+Compatibility.h in Headers */, - 3D4905CE02B1796A568B89A85E763D14 /* SDAnimatedImage.h in Headers */, - 8165A93C887226725BD1907D99BFBA3A /* SDAnimatedImageRep.h in Headers */, - 8B9EC40F9CB55AF6A8C2973209ADFCEC /* SDAnimatedImageView+WebCache.h in Headers */, - F5189EFD458A62DEF72D7E2F6F7AA091 /* SDAnimatedImageView.h in Headers */, - C5210B2C28473C93EA3F11B1DD9AC6B5 /* SDAsyncBlockOperation.h in Headers */, - 3334E3A05B6DAE2B18D02F6BB4FA7322 /* SDDiskCache.h in Headers */, - 2D003D98658B84C7CECF961D2E7ABB5B /* SDImageAPNGCoder.h in Headers */, - 38CAD508071C312156F80B948C390908 /* SDImageAPNGCoderInternal.h in Headers */, - 0C31663D41331AF2C33A40807C4AB3F3 /* SDImageAssetManager.h in Headers */, - B945AB087D8D6E2608E66580E9994827 /* SDImageCache.h in Headers */, - 6FB986CFB85EC99DD203D0036FB14B76 /* SDImageCacheConfig.h in Headers */, - 57E2EBBA4D1A3ECA699FAE40C503D4B9 /* SDImageCacheDefine.h in Headers */, - 48C14AF03F7CEE04CE8745503D747C4A /* SDImageCachesManager.h in Headers */, - 09978C52A1330304D412B2668C1FAE83 /* SDImageCachesManagerOperation.h in Headers */, - 9C45F3097C1685B43083EEB2191E2BE8 /* SDImageCoder.h in Headers */, - 28A47025426535E614BDAACCCB858EC5 /* SDImageCoderHelper.h in Headers */, - 81438D773BE32EE9408DA114072190C2 /* SDImageCodersManager.h in Headers */, - BA1E41B59AA0DAD96FBD5235CFAD0C90 /* SDImageFrame.h in Headers */, - EF1BE7F86C4AA723F0A681128BA913BC /* SDImageGIFCoder.h in Headers */, - B811F4FBA429067098400FE870026741 /* SDImageGIFCoderInternal.h in Headers */, - 37D06A8A0068C2499AF862603F0E612A /* SDImageGraphics.h in Headers */, - 897618C39265BD7DD7247F79C208828C /* SDImageIOCoder.h in Headers */, - 2F1295F7C7B8AA2E0215E549E4B7D466 /* SDImageLoader.h in Headers */, - BDC2D29C30B3E9A3EF34D55B80D54FE3 /* SDImageLoadersManager.h in Headers */, - 5665B0FD0C271AEB151BF1DA9795B21F /* SDImageTransformer.h in Headers */, - 9E3F8B8E980D44D65D8AB818DB9D0E22 /* SDInternalMacros.h in Headers */, - 9DD2BF0D6A0759F49F517CCE6F829C8E /* SDMemoryCache.h in Headers */, - BE993A685EECE3B11E0FF7841D65611D /* SDmetamacros.h in Headers */, - 98DEE891E74FAA254F5C3AABBACF66AF /* SDWeakProxy.h in Headers */, - BD18C13BD149A6754A7C328ADC72941F /* SDWebImage.h in Headers */, - BE9DF936D83A02F4767B74219C15C402 /* SDWebImageCacheKeyFilter.h in Headers */, - 18BB4F466636C9FB0564F18D288616C5 /* SDWebImageCacheSerializer.h in Headers */, - D3322B079FE708200EDBACA185570B50 /* SDWebImageCompat.h in Headers */, - A4D08ACD1EDE1F71F05DD430CCF9D3A6 /* SDWebImageDefine.h in Headers */, - 3083CCD755C128DF2AB3E5CFAD11B939 /* SDWebImageDownloader.h in Headers */, - 9D02336A01A532998ACD33E13D64E0C0 /* SDWebImageDownloaderConfig.h in Headers */, - C84F8ECB66D5B56F0FD4C2D26681A3AA /* SDWebImageDownloaderOperation.h in Headers */, - F5F74B20906F0BC0F93FFC4945E39AC1 /* SDWebImageDownloaderRequestModifier.h in Headers */, - 1F3122542D948540510818D10F666FEA /* SDWebImageError.h in Headers */, - 290623CDE9DB6D8BA46EFA545419A4F9 /* SDWebImageIndicator.h in Headers */, - 5715DC185B6518882C79D46C59E75303 /* SDWebImageManager.h in Headers */, - 4211E1148427EF7EE1B911960D1A6D7B /* SDWebImageOperation.h in Headers */, - 3F7CD3645A388BA65D793568348A4E43 /* SDWebImageOptionsProcessor.h in Headers */, - 5BA8580B31EA2CDD88C944A4E2D5218E /* SDWebImagePrefetcher.h in Headers */, - 2A0F62B088676EBA50DB1F571EB3857A /* SDWebImageTransition.h in Headers */, - A5999206D272135F114630F2DA22BB29 /* UIButton+WebCache.h in Headers */, - 9CA36998F09CD94866575EA5498A40DE /* UIColor+HexString.h in Headers */, - 7317B40CB3A8A0CFFD15A59BFC59C304 /* UIImage+ForceDecode.h in Headers */, - E89874C356646DA984E25716857BD008 /* UIImage+GIF.h in Headers */, - 82224F93B10B178593D007E5A68F8FF2 /* UIImage+MemoryCacheCost.h in Headers */, - 1C8AFBE6A95EC8792CDC4D84C56EEA01 /* UIImage+Metadata.h in Headers */, - 3AC27E4838AA5B5C9616AF55AA33D7FE /* UIImage+MultiFormat.h in Headers */, - B915BC2636A86740C6BB7F1F19062478 /* UIImage+Transform.h in Headers */, - 7D1589A8948B1939840F47E127148579 /* UIImageView+HighlightedWebCache.h in Headers */, - A3A0FE96343D00499AA143E78358C52C /* UIImageView+WebCache.h in Headers */, - 245CF4D2EF3B0D323F8FAA39025C176F /* UIView+WebCache.h in Headers */, - 569B2C265512E273E8400FEDFF14CA21 /* UIView+WebCacheOperation.h in Headers */, + 4BEB2F85653476BD049A68038D7779F2 /* Compression.h in Headers */, + CEA62BF927443E9C17E52A13E3AC36C1 /* ImageCropPicker.h in Headers */, + 9C627964726A53116F4C89946FE65B82 /* UIImage+Resize.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4CDF48A6132F2C56EB75287443E0D96A /* Headers */ = { + 39C0A163BD67925989CBEC18FBADB1F8 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - C1876F13CBE14A33CE52A8E262B1AFA1 /* RNFlingHandler.h in Headers */, - 5F357E5B66B624F873EB65A5009CE47E /* RNForceTouchHandler.h in Headers */, - 1E04020A79576837265C2E85342B6637 /* RNGestureHandler.h in Headers */, - 4632986A104DC1EA5FAB18CC815B1D9E /* RNGestureHandlerButton.h in Headers */, - 5720624D4B3ADE206287F4ABDB5C24AA /* RNGestureHandlerDirection.h in Headers */, - 4E1045DA909D08D6B9F2CDC2825445FC /* RNGestureHandlerEvents.h in Headers */, - 8F98A9853EEF28C20D7A16B2C0265B7F /* RNGestureHandlerManager.h in Headers */, - 47C50EFF2382C5E5912BFEFEAC80FBFA /* RNGestureHandlerModule.h in Headers */, - 4E5AA705753E0D10E17E10B1CA2C842B /* RNGestureHandlerRegistry.h in Headers */, - CB74B1C066E5B01A33182A68A74B6808 /* RNGestureHandlerState.h in Headers */, - 8B4EDC8F787D8C2B92EDD3DF71352F2F /* RNLongPressHandler.h in Headers */, - BF00767729C44F61AB749B2437ECF00C /* RNNativeViewHandler.h in Headers */, - 7120FE19E3692AE27614B02AEE3330EE /* RNPanHandler.h in Headers */, - 77AD9460D53CB483F7E51FF86FA1535D /* RNPinchHandler.h in Headers */, - CF3EFBCDE534B6B24BF1E4599510A76C /* RNRootViewGestureRecognizer.h in Headers */, - 8B2A0AB5241F9525A79DA9CEF1A2E954 /* RNRotationHandler.h in Headers */, - AD62B8FE96BCBB88E2DDF1A71EA69459 /* RNTapHandler.h in Headers */, + 398216CA89DB4D19E75576F65F1C9A2D /* RNFlingHandler.h in Headers */, + 5EC89420418DDBBCA3DAD0AB146A052C /* RNForceTouchHandler.h in Headers */, + F019A4847E7D297D6E3E9638E55E3C37 /* RNGestureHandler.h in Headers */, + 05F1BCB4DE325D5DC2A39D0DD916E1EF /* RNGestureHandlerButton.h in Headers */, + 1022ED4E2E9E0A2B126D728901BA499E /* RNGestureHandlerDirection.h in Headers */, + B31CD0738D82D0522E9C83D882E03189 /* RNGestureHandlerEvents.h in Headers */, + 01E3296F23431878EE8DBA8146D4DCEB /* RNGestureHandlerManager.h in Headers */, + DA8C387EE4EF6B4384DD7468046C80FD /* RNGestureHandlerModule.h in Headers */, + 8A2E928AD77641900A8ACE4C4CFA1E07 /* RNGestureHandlerRegistry.h in Headers */, + 6A15E5F4933916001AFD257AC5B29A1B /* RNGestureHandlerState.h in Headers */, + E027BB1783A267300840EC554FC08C90 /* RNLongPressHandler.h in Headers */, + 469496A4CA5DD1B476B64E3FBB700161 /* RNNativeViewHandler.h in Headers */, + 4F92546677BE166D9D58C6F17C336F9A /* RNPanHandler.h in Headers */, + 9043B2D3BBD4A6EBA058D4EB4B2F98F2 /* RNPinchHandler.h in Headers */, + F152A6FF625ECBE6A0D4079810D9E1F2 /* RNRootViewGestureRecognizer.h in Headers */, + 296B737800FD484F10E3364A3E046C37 /* RNRotationHandler.h in Headers */, + D08C6F69F27666C4BA2E172D33C0DB5E /* RNTapHandler.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 39E0AC2D63FD017011A304730464F13D /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 11BC6CDFC3A17E472F4100A18B4985FB /* IOS7Polyfill.h in Headers */, + 698B2D16FCF5E12A1AEF1EADEAEB109E /* RNFetchBlob.h in Headers */, + C70537C53C34538D2857F90F153A29A5 /* RNFetchBlobConst.h in Headers */, + 04C49A9A2936DBEB4D5A18A7EB4D34F8 /* RNFetchBlobFS.h in Headers */, + A0A9805973D107A3AE03D182A3A1F7EA /* RNFetchBlobNetwork.h in Headers */, + 13CFA178BFF69DF2177FA3A3707C48FF /* RNFetchBlobProgress.h in Headers */, + 1A6C6EDB5B6D699B735CB7430E83E5A1 /* RNFetchBlobReqBuilder.h in Headers */, + 998FBDAF9CDE335B0D3711382CB1A645 /* RNFetchBlobRequest.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4590D1B7FD0E81A6270FF721845A3263 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 49230E3F7C9D1F5B34ED1F6653C52EFC /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 1B68B0F873DB40781C12061BE667E2A1 /* RNDocumentPicker.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12624,13 +12577,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4E283E685473776BAB61D3BF296A5309 /* Headers */ = { + 4F6EF5F457768D213F43FDD1F07EFF72 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 9E8D86EEF78286491077C58C4319AA8D /* Compression.h in Headers */, - 4FB74F8F0C7A3F03E52B7ED0B7108EC5 /* ImageCropPicker.h in Headers */, - 26FC5B4BBEF2650E15EEAD7614893F50 /* UIImage+Resize.h in Headers */, + 9BA9DE0A4FBB2114482FF1303AD3EF4B /* ReactNativeShareExtension.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12662,19 +12613,10 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5C2C0C043F3AE5D76D7CF98AE195113D /* Headers */ = { + 5F92FF7D07FC27B50AD07B15ACAC4BBD /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 33C68646A35FFA7A9964553CD0B5AE7E /* CGGeometry+RSKImageCropper.h in Headers */, - 276F1C6EE252BE6B491DF6BBF8DAF6D2 /* RSKImageCropper.h in Headers */, - A7A5542511C900F52AC1B44C7AEF85EF /* RSKImageCropViewController+Protected.h in Headers */, - 4E47AAAD7F23D2AC2E7B1947240E0711 /* RSKImageCropViewController.h in Headers */, - 91C6AE23BE26870687264BB6561D2D8F /* RSKImageScrollView.h in Headers */, - EA29E2DA93184511120C2A9E7DF3752D /* RSKInternalUtility.h in Headers */, - 37573ED9F7ABF41FD250BDD25A3B7B1B /* RSKTouchView.h in Headers */, - 654D121317BB160879402214BDA319E5 /* UIApplication+RSKImageCropper.h in Headers */, - 504ACB2269C6117DCFC43F35556884BA /* UIImage+RSKImageCropper.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12696,57 +12638,18 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6BCC27946955A168ACE72C3F52212A5A /* Headers */ = { + 6D19E0EA8D19DFDC4A13C50651AEB57C /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 2B7F6AA00309882B88DDA2A40A9A87D7 /* Orientation.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6F19F5F2E7DC3FC0C9144E657035EB89 /* Headers */ = { + 778E6924469FA8F95391ED08C51C7DDB /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 1368AB64D44C2C8EBFDA4319646DBC99 /* AudioRecorderManager.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6FA8179B65247A736F9CA4C50BFB75B2 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - F8FFCCEFBD562D855F3011CC6EAF469E /* IOS7Polyfill.h in Headers */, - EF266A3FC5FBB4F66F020658F58489F1 /* RNFetchBlob.h in Headers */, - 9CA41726B97C49B6AC1035961204FE9E /* RNFetchBlobConst.h in Headers */, - C948AE2B905BBFE432D9E4193E21E863 /* RNFetchBlobFS.h in Headers */, - C6E17A77127824F4100665659017DC8D /* RNFetchBlobNetwork.h in Headers */, - 6E2E77315D9F40E7E3F4C34327468B56 /* RNFetchBlobProgress.h in Headers */, - 64AFF6CA26961512224C877D3AC15DC7 /* RNFetchBlobReqBuilder.h in Headers */, - 2E56DFB8C1133F93BC20B3CA906023D4 /* RNFetchBlobRequest.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 704A3410F39F7472BCC2855FC0D5C9C8 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - F72F84288FCC9A3127DFC8997D9E16F6 /* RNSScreen.h in Headers */, - 94E7D41917AB5C74D40BE94174E1D4BC /* RNSScreenContainer.h in Headers */, - 3A3992E2DEAF711D7E548A03E8445961 /* RNSScreenStack.h in Headers */, - 3D6FAFE9933382B6D2BF7C56C083C974 /* RNSScreenStackHeaderConfig.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 725C71A94CE99DD710382CE76FDCAB7E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - B40B7DE0A91A1C941A9879C938E47A0F /* RNCUIWebView.h in Headers */, - 8AA624EBE6D8181F8A2539332EE2A019 /* RNCUIWebViewManager.h in Headers */, - 5B57F4D0A4D4DB8F9D628FF069B1F4EC /* RNCWKProcessPoolManager.h in Headers */, - EC218F5531BF60384278FEC8209F932A /* RNCWKWebView.h in Headers */, - F94EA358AECA340FB2FFEDF7DFC16D8E /* RNCWKWebViewManager.h in Headers */, + E497753603A03C75821AF582991D8F61 /* RNUserDefaults.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12827,37 +12730,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 7F2D564A6B4A574790BE531DA55AA21B /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 4660C5FAE8881E9009A260FEE9C8FBA8 /* RNUserDefaults.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8106FF71D8916ABA63B265EC92731C38 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 83649B9A2BC802C041E8EE74739ED5CC /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 83F5048DA9453AC1B030D3FEA7E878D3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 11081EDF8D76C6E9178717FD9A1E0DA0 /* RNCSafeAreaView.h in Headers */, - 68A7AA629A26241F8759D2DAFDEE680A /* RNCSafeAreaViewManager.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 89C68E4127297AAB36A30F848FAF3423 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -12867,17 +12739,24 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 8D390029B708568640FFEE599745891B /* Headers */ = { + 8E6ADF3467240E0B656DA91793C6CF70 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - EA9550B4AE376CDAEDA13D1850367E6D /* Color+Interpolation.h in Headers */, - 867B34B657B44C3D63B45D3A3B18DA83 /* LNAnimator.h in Headers */, - 2CA635EAC5CEB15C2C25C95EA422D268 /* LNInterpolable.h in Headers */, - E92FA1E42FAFFC44FD5A8CD2ABF3610A /* LNInterpolation.h in Headers */, - FB7F0DF7CA2940F0A26C74AC93A7A1D5 /* NSValue+Interpolation.h in Headers */, - 513E7E347D4D515397DFFD2F00084E6E /* RCTCustomInputController.h in Headers */, - 569DF954E11A7EB07D7A15FD77E50B17 /* RCTCustomKeyboardViewController.h in Headers */, + BD1861ABD08E99DA48A4BE65C072437E /* RCTConvert+RNNotifications.h in Headers */, + E104345B26D010F0EF3271C1FD85097D /* RNBridgeModule.h in Headers */, + 6B5BF2F5DFEB5BCC1F0B601FB69D4B61 /* RNCommandsHandler.h in Headers */, + 6A7901D5438782D99EB32AD95AEC6F6F /* RNEventEmitter.h in Headers */, + 3B72BF5FC30C007BEC9A3127DFE5F467 /* RNNotificationCenter.h in Headers */, + 8022D5C496701EA42FBECEE66644EE95 /* RNNotificationCenterListener.h in Headers */, + 1D17CD40B7E48EF10472047F0FBDD573 /* RNNotificationEventHandler.h in Headers */, + 382713909DA41D4E461C8CCE04DED953 /* RNNotificationParser.h in Headers */, + 5FBF988050AF716B9FAB37A30073D005 /* RNNotifications.h in Headers */, + F46353E39D50C93AA76E18F52910B39E /* RNNotificationsStore.h in Headers */, + 2B4939DE5FD2554B20274F87ABAB3B82 /* RNNotificationUtils.h in Headers */, + 4A02699F57A1E4AC27952C7A1CF7440B /* RNPushKit.h in Headers */, + 999FC5F496B026571EC6B14A034D209E /* RNPushKitEventHandler.h in Headers */, + 71198F17B3DEE933A0C34D2CACC93AD4 /* RNPushKitEventListener.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12897,27 +12776,37 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 922857EDDBC99C3F44189D50483F9B4B /* Headers */ = { + 97F310669DAAD3FE5CB4A56648BC6D0F /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 5F5C796CF66FD9C4F874D4E91B30D7AA /* RNSplashScreen.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 9B545D16BD579B5EC35929EB1244FDB4 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 0BF1D3040C4AA7F6DB03D4701639F97A /* UMBridgeModule.h in Headers */, - 6EEE024FC170587CCABBA893793DA0D5 /* UMModuleRegistryAdapter.h in Headers */, - 6C9136BAC4C4CF4F42855DA934446168 /* UMNativeModulesProxy.h in Headers */, - F6F4AD4C3125E14FB7AB991CEEC44D2C /* UMReactFontManager.h in Headers */, - 55EA3B3035F4095615F1223B8C6E247E /* UMReactLogHandler.h in Headers */, - 23B2A75FB27428D20EB1F244D06A47FE /* UMReactNativeAdapter.h in Headers */, - 7E43F692E64E101B52817BC5B68D8E6B /* UMReactNativeEventEmitter.h in Headers */, - 50B8184AB566570DF641594A67FDA7CB /* UMViewManagerAdapter.h in Headers */, - FAA4F0FD5CBEB0112F0AC3F69EEF996C /* UMViewManagerAdapterClassesRegistry.h in Headers */, + B8B42FD5C70E21484DA33C68C2E0A1C6 /* RCTConvert+REATransition.h in Headers */, + 184F9AEBEF57B3CAA4A402A62A631ED9 /* REAAllTransitions.h in Headers */, + F18C6A42BBB20C687A600E94A3EE947F /* REAAlwaysNode.h in Headers */, + 5B7FA7BE3E1F99E93599529C872DBBFC /* REABezierNode.h in Headers */, + F2A3087B710107E8CB64DAB0531FD50D /* REABlockNode.h in Headers */, + 25407695DB500DD87235884421DF360D /* REACallFuncNode.h in Headers */, + A8264F2A2D4914201C40B91100B7C2BE /* REAClockNodes.h in Headers */, + 4550C54119E07298B81AEE01322E161B /* REAConcatNode.h in Headers */, + B0ACE29A69DC1F07E9F6DDFB138F4955 /* REACondNode.h in Headers */, + 27D5509048B564CA523E2A0F2A2BA5BC /* READebugNode.h in Headers */, + C1E183CCF0FE5E7BA17519F7D8DBE714 /* REAEventNode.h in Headers */, + C84A07935DDDCA77CB8D1C0D8C0E7787 /* REAFunctionNode.h in Headers */, + A1941A826F689FA16724D3C0CEB50724 /* REAJSCallNode.h in Headers */, + 04CED01005570B76BAD3EFBBB0BF88D9 /* REAModule.h in Headers */, + AF0FFD08DBF08FDBBB31E9A2D9827874 /* REANode.h in Headers */, + 3ECC831D5A00F19E3A8362C2E5F29A1D /* REANodesManager.h in Headers */, + FA21263FE4761F60D9918267E1F4BF39 /* REAOperatorNode.h in Headers */, + EACC0556D8730EE9B6A66DA5C669E1E1 /* REAParamNode.h in Headers */, + A41DEDBF062AFD04FBB39D84A983272D /* REAPropsNode.h in Headers */, + 62AC4838477BDAB0ADE018869EB462C9 /* REASetNode.h in Headers */, + 16943AA8A7CFF7E7A58D9C1DFC9A71CE /* REAStyleNode.h in Headers */, + 0CE75A7EF7CF2D560BA3A48546BBF0C1 /* REATransformNode.h in Headers */, + B73A9E09AE20B315197ED28B306E6ED4 /* REATransition.h in Headers */, + 1688DCE7B7E497C99B4C3D7C60BF066F /* REATransitionAnimation.h in Headers */, + 8DFB3D919F98A9929F9D98A33D9B6F92 /* REATransitionManager.h in Headers */, + 31DCF3C5777AE4C676E7D9C5BC268AFB /* REATransitionValues.h in Headers */, + E24F9A620D46F9B6C5DB1889BBDB6ECA /* REAValueNode.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12939,10 +12828,17 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - AA0FE7FC046F0034A703DEDF82DFC2E4 /* Headers */ = { + A84B91E2C91B97EB967B2571C6B592B9 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + 66A4A7D00F1E4E2BCBFC150FAEB60E11 /* Color+Interpolation.h in Headers */, + F64B035CC44755FC76B2E3A55B9E5A63 /* LNAnimator.h in Headers */, + 9A02C7D10BC6C19C23E53FBC64E1ECFF /* LNInterpolable.h in Headers */, + 4361072A88F52DDD840BC58643BC5F68 /* LNInterpolation.h in Headers */, + 746A438AFE2400D25E5AD34D3EA23FE0 /* NSValue+Interpolation.h in Headers */, + 819D0F93428068B08237C1383A8FFEF8 /* RCTCustomInputController.h in Headers */, + 795B1CBAF4B0CBBE30C8A0BE544C16EA /* RCTCustomKeyboardViewController.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -12994,13 +12890,31 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - BE921756E6C77B97130CE129E7F48B77 /* Headers */ = { + BC1E7EA917E364B83C6EDB08D57A51AE /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 5430AB8B59825CA8017ED5B8666EC767 /* SDImageWebPCoder.h in Headers */, - 5E0E1E9B716583795F2515FA33088733 /* SDWebImageWebPCoder.h in Headers */, - C6348ED361DC67FF6FFBD2ED2F9032BD /* UIImage+WebP.h in Headers */, + 50B26DB63FD09FFC7F27BE72B9E29E24 /* RCTVideo.h in Headers */, + 3BFD0FE33F7819DE244CBE645010C632 /* RCTVideoManager.h in Headers */, + FED6001F88D8B73042B733F0C9EF741F /* RCTVideoPlayerViewController.h in Headers */, + D7EB87D0FB19A22450DFD9D023957035 /* RCTVideoPlayerViewControllerDelegate.h in Headers */, + 64ED3A5FAA7E4FFB06957894BCEC67DC /* UIView+FindUIViewController.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BEF64974223DB730E7477047F1474CBF /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 3435DCE8EEAFAF5538A2B4F6ABD01592 /* QBAlbumCell.h in Headers */, + AF8FD141A5FEB2589C65CB1252690EE1 /* QBAlbumsViewController.h in Headers */, + AD19DA25FCF49041BAC3ABA2D00FC9C7 /* QBAssetCell.h in Headers */, + F6364C12D6C96C83555D89696DF2534F /* QBAssetsViewController.h in Headers */, + 7D2C70695A3A8E32A12C640BF348CF6E /* QBCheckmarkView.h in Headers */, + 4D698FF67C959030F1AFB8C8AE998DA4 /* QBImagePickerController.h in Headers */, + 9EAF96097F7C9D6864B180F7C1355EDF /* QBSlomoIconView.h in Headers */, + 3E549B8B47A4E9622A5358E9C70F8F2D /* QBVideoIconView.h in Headers */, + CC75D2243F7E6AFECF4997EF059D0223 /* QBVideoIndicatorView.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -13019,37 +12933,19 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C0D94E483D8D12B5B68E944F24C53DB0 /* Headers */ = { + C1B27701A0164BBF247A723DC0C7F792 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - BBFA9C5E02F11EE6E15F694B5B4FF2BC /* RCTConvert+REATransition.h in Headers */, - EB90F49572FBE7152331AD8FA01BCE2F /* REAAllTransitions.h in Headers */, - 01D49D3F4E537E8BDF817F5F70A6D2D3 /* REAAlwaysNode.h in Headers */, - 788433CC790A9524243F8920E6A93DAB /* REABezierNode.h in Headers */, - C8111CB0F89A9A47B2B3336FF875F0FD /* REABlockNode.h in Headers */, - F2C0812928C5E01CCA9B976576980B8F /* REACallFuncNode.h in Headers */, - A49BB6315D9B001445F2CE0ED1DACAD9 /* REAClockNodes.h in Headers */, - C5DA6C22DDF2E76DCBB7FDD4099523AA /* REAConcatNode.h in Headers */, - D0DB08923A931DE8F4141F802AB703F8 /* REACondNode.h in Headers */, - 360F4CE181F4FF694358137F8D59BB8F /* READebugNode.h in Headers */, - AD5A9C4E3B05004DD94EF8B0BA3C82F1 /* REAEventNode.h in Headers */, - 3F2EAF75059CC2BAF3264353BFCD2175 /* REAFunctionNode.h in Headers */, - 165AD4C66442BC6C754CD39022C3A920 /* REAJSCallNode.h in Headers */, - D781309A5FBF63A5BEB15409A649F5A6 /* REAModule.h in Headers */, - 5E21847867E116743840CD6CD81C62B2 /* REANode.h in Headers */, - D9FE7CF0C3725D75B1A126E981A19368 /* REANodesManager.h in Headers */, - 7B64E56982CD7C9C7729CFB57B7ED281 /* REAOperatorNode.h in Headers */, - 35D548EAC08B3EDC7C0E66A6D99A2AE1 /* REAParamNode.h in Headers */, - 1DF9FDAAB8CA9BF26D403D102C0C4920 /* REAPropsNode.h in Headers */, - 71E4F9EDFE94295A9F52BC65469C4937 /* REASetNode.h in Headers */, - 9D132646828F497BE8AF8BA790284D5A /* REAStyleNode.h in Headers */, - 0605304A641A7BF59DC42F696CFFBC7E /* REATransformNode.h in Headers */, - 58E7D43C3F1C656961F136BAD271DA54 /* REATransition.h in Headers */, - E0492F32D95ECE78F57AF2F627EBB5A5 /* REATransitionAnimation.h in Headers */, - E192A63505460960A83D9B1CFADEE8AB /* REATransitionManager.h in Headers */, - 4830B2CDFE04E42074D246D7192A431D /* REATransitionValues.h in Headers */, - 52AC193A72E9AA0A819B663789C00AC7 /* REAValueNode.h in Headers */, + E038A8B1A450AC9DA147B0189FD28E9D /* UMBridgeModule.h in Headers */, + FBFCA9621362CC0797EFDDCE64F1ADB6 /* UMModuleRegistryAdapter.h in Headers */, + 744F6FE700AC897DC7D1755A132AEBF2 /* UMNativeModulesProxy.h in Headers */, + ABB47A42B6AC5FCC66D51004653F1350 /* UMReactFontManager.h in Headers */, + A3B90C63A7501F3F979CE7E695C5CF75 /* UMReactLogHandler.h in Headers */, + 0403DEC7295C6F119D4B8D851F01B7DD /* UMReactNativeAdapter.h in Headers */, + DA4A515A46C261023212C348BD2B3CD3 /* UMReactNativeEventEmitter.h in Headers */, + 637F48B06CDCBCD6F22F7839F61B70EB /* UMViewManagerAdapter.h in Headers */, + 716BD76790D5CEA0DC5765DEEED78171 /* UMViewManagerAdapterClassesRegistry.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -13075,19 +12971,28 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D0711008E3610A8AFE82645AF643894D /* Headers */ = { + D023FB39E9306540E125887122B82A3F /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 981B4DF825879C29CEF8E54CBBFA8043 /* RNLocalize.h in Headers */, + 04D42867F97350CF5A02761D6EEB308B /* RNSplashScreen.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - D0EFE36DFF115B7E280BF3DAD57CABF6 /* Headers */ = { + D6B4E0E84EEAADB330EA7A899DB683FE /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 04867FDAA390FC4BD76585B49B1C7A11 /* RNBackgroundTimer.h in Headers */, + 68B0BD6F55FCCC49D648C321BD7D623A /* RNJitsiMeetView.h in Headers */, + 07FE930F69FFC0E43C6C2DB7B3AFBC28 /* RNJitsiMeetViewManager.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D76E6034DDA113318FB910278CABFFED /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + D50517B878EA523C1179E31ABD24152C /* RNBackgroundTimer.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -13106,6 +13011,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + DCF71F970A88D1C39D2FE2BFE719012E /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 6CB2A53FFE8F661C8CE4FE65ED6EF44A /* AudioRecorderManager.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; E0B3B0501FC1FA8FE407155AED6A8C39 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -13252,16 +13165,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F016E81832608065D64A6B87AC170CF3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 2D0E6D123577C774F4AF94A6242FF578 /* KeyboardTrackingViewManager.h in Headers */, - E7432C3409D9D7C6284AEF1312B2554A /* ObservingInputAccessoryView.h in Headers */, - 1DC297CF28DEBE78DCE069FF44918267 /* UIResponder+FirstResponder.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; F3AF543F4BB145D6C681ABABE0582226 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -13307,15 +13210,22 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - FF622B5A9668C4F89360AE1E58EA3FDE /* Headers */ = { + F8FA7D43FC9AABDE14D2B4B9FE6F151F /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 3371B63BCFF08BC15347772E86702AD5 /* RCTVideo.h in Headers */, - B04BDF11B7C6415CCE10788068C33F1D /* RCTVideoManager.h in Headers */, - 0D6026024DBACC6D7B0908BD40F7BD7F /* RCTVideoPlayerViewController.h in Headers */, - E0B1464630BA7BAD3CB0EC15FA46DFFD /* RCTVideoPlayerViewControllerDelegate.h in Headers */, - D61BF091135FB8C7638C155386132BD7 /* UIView+FindUIViewController.h in Headers */, + 595D85046F929FF13BCCE683D0805A6D /* RNSScreen.h in Headers */, + D9962F5C0C9C3EBE39511FC3B26AAC92 /* RNSScreenContainer.h in Headers */, + D6A7D6407BD62DAE7B2747257F51E86F /* RNSScreenStack.h in Headers */, + 811F9D1679A5BB13D632F247E4C89162 /* RNSScreenStackHeaderConfig.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FF3A34D764FD92B5DB2D72B25EEB8793 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 84CEC174E821208CA9C957603D18652E /* RNVectorIconsManager.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -13338,7 +13248,7 @@ ); name = "React-RCTImage"; productName = "React-RCTImage"; - productReference = B62C361531A11D304C4E01B938A90C95 /* libReact-RCTImage.a */; + productReference = DACEA80519903C23ED463542B32F17C4 /* libReact-RCTImage.a */; productType = "com.apple.product-type.library.static"; }; 01B53B6A43CBD6D4022A361BBFCCE665 /* FirebaseCore */ = { @@ -13358,7 +13268,7 @@ ); name = FirebaseCore; productName = FirebaseCore; - productReference = 774D3BC7734E6A2EAAA21E4B11D5A811 /* libFirebaseCore.a */; + productReference = A610DFF0E0BE7C475685FA8DE3DBCF0C /* libFirebaseCore.a */; productType = "com.apple.product-type.library.static"; }; 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */ = { @@ -13375,42 +13285,167 @@ ); name = UMCore; productName = UMCore; - productReference = 1EFD8B407C4DD0EA6C5DFE03070884FC /* libUMCore.a */; + productReference = 08F2757358C92ECAD0E9B56A8B4C8F59 /* libUMCore.a */; productType = "com.apple.product-type.library.static"; }; - 04C5C3D37D3EB282EFD1E2A2122B9429 /* QBImagePickerController-QBImagePicker */ = { + 01CEACD13A714D099CDB2BC08C2FB324 /* Pods-RocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = 95130D2A7CF190452EE25F5A06EC9C05 /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */; + buildConfigurationList = 93436B5786A8C55065FBA52F0FB6FD93 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; buildPhases = ( - 5850A6128655255E06A9647034C28C2C /* Sources */, - CD19E060C5ADD9F0BA45F9545AD18088 /* Frameworks */, - C138210D0CB6DA16619D1C1B324B12E1 /* Resources */, + 4590D1B7FD0E81A6270FF721845A3263 /* Headers */, + 63C5F7C64B91541FB8FD2306B1B23263 /* Sources */, + C84EF20AF4BA0C5E4C1DA53D0E3D3CCF /* Frameworks */, ); buildRules = ( ); dependencies = ( + D94FADCFC445FBEC0799DA57DA798642 /* PBXTargetDependency */, + 7065AEE45A12E094ED4C7D5D3A036325 /* PBXTargetDependency */, + B7135466D5C85B67B466081FDACA5D8B /* PBXTargetDependency */, + 67A340FD5EBB70FB76DD90293166533F /* PBXTargetDependency */, + C0246C4CE36C8B93B788805407995A1A /* PBXTargetDependency */, + 9CA79C2DC64564F22D5EF7967532900B /* PBXTargetDependency */, + 6851E804B6B061DEAB88CF5926E323D8 /* PBXTargetDependency */, + D3ABCE8BCA581FB9AB939EEE93C78D24 /* PBXTargetDependency */, + A55322FA0E8F95E66FDAA2B6EBC31A7F /* PBXTargetDependency */, + D9B3DF78F7841782F749FFFDFC775641 /* PBXTargetDependency */, + 31A6F2C3057ABC7058DBA68744858A86 /* PBXTargetDependency */, + 136BDDBD90D3BC0D863641CFD290DB39 /* PBXTargetDependency */, + 6C233080056CA0587E6A088D716F7D9B /* PBXTargetDependency */, + D76EAD368E6B8B7CB5F604BFF8BB9AA3 /* PBXTargetDependency */, + 5E402033FC3292FE90442670DA269302 /* PBXTargetDependency */, + 6BE1CA3969D6DFC8031EAA6EEDE5EE21 /* PBXTargetDependency */, + D8767E25CAB340E8739F7A42933892C6 /* PBXTargetDependency */, + 1E45AB489596D93DC3261DC2D39737E1 /* PBXTargetDependency */, + BE53F54183A98F2E96C1166664B6A0B4 /* PBXTargetDependency */, + 36630567F7DFB198EC71C39899198785 /* PBXTargetDependency */, + FB1AD1C311E8D02DE894204A82EA9462 /* PBXTargetDependency */, + F457E64EA84EAEB04F17FDC9DD68F460 /* PBXTargetDependency */, + 210B52D5DE653497CDD4B1EF0A11C866 /* PBXTargetDependency */, + A70995D6AA4205C9AE5F3C22A24E1407 /* PBXTargetDependency */, + CABB4C9C9CD95FD141C1F4FB5CD78730 /* PBXTargetDependency */, + A00BE7D5A1F21A9B9D3E8515C5434A11 /* PBXTargetDependency */, + 944B96AAD3BA5BD053BEF4A936FF97A0 /* PBXTargetDependency */, + 068E842C8A7F492EC930E9FCA7B6FFC9 /* PBXTargetDependency */, + D572E911EAC37535E66067652F5DD130 /* PBXTargetDependency */, + 9E38E1CBF0D5044B621736B49D869DBC /* PBXTargetDependency */, + B3138C869D19037E8C156AAA28E47D27 /* PBXTargetDependency */, + E85E7E3BBFE6407EF0E8671765E691C5 /* PBXTargetDependency */, + DE0AACB352BBE70C14AB02F6A6CBF999 /* PBXTargetDependency */, + 44ECC4945B4CF177D18DA45C44829276 /* PBXTargetDependency */, + 438222CEE808A6141FECC468D39409A1 /* PBXTargetDependency */, + E45499EC85164E6DD8F26DB7959EABE4 /* PBXTargetDependency */, + 9098544BEE6E7C852A6FF06E8FE04A94 /* PBXTargetDependency */, + 5A6DD553AA8BE778319A4194C48DAF46 /* PBXTargetDependency */, + 947265B05CD534C6754538402954011E /* PBXTargetDependency */, + E9A0431E565FB572E44DFD12613FA8C6 /* PBXTargetDependency */, + 03545B818023373FA969C793AE38803B /* PBXTargetDependency */, + 644C9CD277F154C2F3C2F3DF931B127C /* PBXTargetDependency */, + E6B983663E6EF7E4021294C9F0D5CD76 /* PBXTargetDependency */, + 80B9F00CAD0F4AFF666549E32F0334F1 /* PBXTargetDependency */, + 9307EB014165F8AF38B43F1326F60328 /* PBXTargetDependency */, + AF4E08619C709EDA5BBA2F306FBD75A8 /* PBXTargetDependency */, + B799757B91952D8B0658B75D47A69A77 /* PBXTargetDependency */, + B8C2B676095EB766BE87ECD76C2518E4 /* PBXTargetDependency */, + A1F87FDB6F11707034423916F6327AD4 /* PBXTargetDependency */, + 53B8AF00DF9C6E1B5E065229B057F36F /* PBXTargetDependency */, + CA7C27F2625F09AD64EE979AE4463F0A /* PBXTargetDependency */, + 888D746DC933ABC43FC64D0738D35D23 /* PBXTargetDependency */, + 4F92B6F19494228F398990118F632FD0 /* PBXTargetDependency */, + 5B5216EA131DE0EC4355CA2D3E1D753B /* PBXTargetDependency */, + 93E932F33790F0F9047B74EDE865523B /* PBXTargetDependency */, + 91972E82A7F88ABAC35F6D8AF19B5A43 /* PBXTargetDependency */, + CCDE6F9F4F7811D2906F4747D514405D /* PBXTargetDependency */, + 55F8E90A7CC57A522852D08AF3A417B7 /* PBXTargetDependency */, + 776043E43EC5BB50AD868FF04C225C68 /* PBXTargetDependency */, + BEF99443AA77A3849CDD0E7A9866D4E2 /* PBXTargetDependency */, + 16B770DCB3A505CF6BB2A3AD8A1890FA /* PBXTargetDependency */, + 5222A0B968F4648623340BEA03A4529D /* PBXTargetDependency */, + DC2D6D5D04569084677C0B7ED6B48788 /* PBXTargetDependency */, + 1AEF406AD1CEA8E952AABE97D486B487 /* PBXTargetDependency */, + 92CB3D9998A1CEF2703D359B724A0B0E /* PBXTargetDependency */, + E3173A63A27FFCA4EAB28EC80B92645D /* PBXTargetDependency */, + 8BD92BF87C75D6C861B4EB6A511B7BEB /* PBXTargetDependency */, + D0A30E609794C8C61F765EFD443D6E7D /* PBXTargetDependency */, + BEDFBB1EA759BA466CCACFAB3078EB2F /* PBXTargetDependency */, + E50FD8450D5033AC7DAD0069B6B9F7C1 /* PBXTargetDependency */, + 5AC733F3B99934F18897CCE7DF0AAD88 /* PBXTargetDependency */, + 61829E5FD2193E9807321A281BEC45A4 /* PBXTargetDependency */, + 9A9C8C007EF92EFD07A049BB8EE8DD5B /* PBXTargetDependency */, + 588FC96A7752D048EB0EBB7DE5C83BDD /* PBXTargetDependency */, + FCE4366FAECA0CCADD1CAFAB7109418F /* PBXTargetDependency */, + 9C2294FB3F9071D9AE0142E120866E4D /* PBXTargetDependency */, + AE49DDB5F148BF99B7C9C5E894056A8D /* PBXTargetDependency */, + FF7F1D03F6EAD1E44BCFD1108B18FCBA /* PBXTargetDependency */, + 5B2262DE2B4B4F49B8C7E39A7861AD1B /* PBXTargetDependency */, + 0636630BEB1E5DBE07A6F657DD764567 /* PBXTargetDependency */, + B64E540032B38133FC1B6E20A2EC86F2 /* PBXTargetDependency */, + 3EA6533190BAFEA513334FEAF8F22314 /* PBXTargetDependency */, + 47089073BC2C53E1C224253A5B21905A /* PBXTargetDependency */, + BF27720B0CFD36FED37DE547EDC5A88E /* PBXTargetDependency */, + F66CA8C9317B62770D810D6F0043185E /* PBXTargetDependency */, + 89402879C4CBE18F0997DD2B81A33664 /* PBXTargetDependency */, + 0DCB49B8C375DB7BDBC185AB8B9FAB0C /* PBXTargetDependency */, + 717E1ABA439729B533DB162C3F062E25 /* PBXTargetDependency */, ); - name = "QBImagePickerController-QBImagePicker"; - productName = "QBImagePickerController-QBImagePicker"; - productReference = 7767AAE46DE9FC6C676FFAEF7734AF52 /* QBImagePicker.bundle */; - productType = "com.apple.product-type.bundle"; + name = "Pods-RocketChatRN"; + productName = "Pods-RocketChatRN"; + productReference = EEF40665F46FB3797440A917AF5C07C5 /* libPods-RocketChatRN.a */; + productType = "com.apple.product-type.library.static"; }; - 0D5E898FF62B3A40F7C391BA01E3A076 /* react-native-webview */ = { + 06DEC3D70695800506D48892FE4C06C4 /* react-native-jitsi-meet */ = { isa = PBXNativeTarget; - buildConfigurationList = 10C085B9206683B696F332301B4FA06E /* Build configuration list for PBXNativeTarget "react-native-webview" */; + buildConfigurationList = 8042940547B51A6B850A564D0A61A212 /* Build configuration list for PBXNativeTarget "react-native-jitsi-meet" */; buildPhases = ( - 725C71A94CE99DD710382CE76FDCAB7E /* Headers */, - 2D1A19DF3654D9738F8D552253F6B88F /* Sources */, - EFB77EF20B196EA0B3521F0697373A1B /* Frameworks */, + D6B4E0E84EEAADB330EA7A899DB683FE /* Headers */, + 72066AA767A8DF8E3DA3CF71969EB07B /* Sources */, + 329CD3FEFD7012AEB924D8F0A059E0E1 /* Frameworks */, ); buildRules = ( ); dependencies = ( - DEA1267E87C6879FFE78B7D2503CBDD2 /* PBXTargetDependency */, + 9786AED5E829A4BAB70FFC36CE6B4842 /* PBXTargetDependency */, + A443293B09145EA23D030CC5611357C6 /* PBXTargetDependency */, ); - name = "react-native-webview"; - productName = "react-native-webview"; - productReference = BC71266EE396E0AF9465AA30A2656959 /* libreact-native-webview.a */; + name = "react-native-jitsi-meet"; + productName = "react-native-jitsi-meet"; + productReference = FBBF17E1989733CF8EEB82221A9A299A /* libreact-native-jitsi-meet.a */; + productType = "com.apple.product-type.library.static"; + }; + 0A839CF1E1DC111261AED3D86F9A04B0 /* react-native-keyboard-tracking-view */ = { + isa = PBXNativeTarget; + buildConfigurationList = 59A09408AEA098A49F38D290B9E029B1 /* Build configuration list for PBXNativeTarget "react-native-keyboard-tracking-view" */; + buildPhases = ( + 069676235B3A14510E3240EB4FC795EE /* Headers */, + 75936E8EEDDEAA21F02F3F32FCFA70E2 /* Sources */, + 938A282777DB04289778D5D033447B37 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 6350D825073A99A32A816A16B78C4968 /* PBXTargetDependency */, + ); + name = "react-native-keyboard-tracking-view"; + productName = "react-native-keyboard-tracking-view"; + productReference = C1F5C672F45E668D82E457808A2990C3 /* libreact-native-keyboard-tracking-view.a */; + productType = "com.apple.product-type.library.static"; + }; + 0E27C1D2919A1336E4EED2093FE67ADC /* RNScreens */ = { + isa = PBXNativeTarget; + buildConfigurationList = 238ADF0776D24AC685B96E012945E847 /* Build configuration list for PBXNativeTarget "RNScreens" */; + buildPhases = ( + F8FA7D43FC9AABDE14D2B4B9FE6F151F /* Headers */, + C3AE5E6E1831CD6680126E64EA43A829 /* Sources */, + A3A30198A7972B6B0824BC3F85B8C3EB /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 7678AC52F85EFB518404449D3A9731A4 /* PBXTargetDependency */, + ); + name = RNScreens; + productName = RNScreens; + productReference = 77D98E1479E96A1B403182C9C22AD207 /* libRNScreens.a */; productType = "com.apple.product-type.library.static"; }; 115FC7605B6A0F6044A879F6EEB7DD99 /* React-jsinspector */ = { @@ -13427,7 +13462,7 @@ ); name = "React-jsinspector"; productName = "React-jsinspector"; - productReference = 8B58B0BFBCFAC01FB1151D82A93B1338 /* libReact-jsinspector.a */; + productReference = DA5783422343FC461A172E9D4CB314D9 /* libReact-jsinspector.a */; productType = "com.apple.product-type.library.static"; }; 123D4D7AC3D41ABC0675B1DB3613066E /* RCTTypeSafety */ = { @@ -13448,7 +13483,25 @@ ); name = RCTTypeSafety; productName = RCTTypeSafety; - productReference = 09D8A137651A52A46AF870A7D9436A23 /* libRCTTypeSafety.a */; + productReference = 29D68C01B7BB771D070839C48F2C7780 /* libRCTTypeSafety.a */; + productType = "com.apple.product-type.library.static"; + }; + 1D8ED4A20867A7DBE943508D13C7FCB6 /* RNAudio */ = { + isa = PBXNativeTarget; + buildConfigurationList = C4A19EAFEA575BBB2A8E411D62219AB5 /* Build configuration list for PBXNativeTarget "RNAudio" */; + buildPhases = ( + DCF71F970A88D1C39D2FE2BFE719012E /* Headers */, + 1B69B1511459416D77FD34A48A63867F /* Sources */, + 192A46BB4F825672EB39443B8A7C2E26 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 6D4EE579ABEDDB993D3A67B1D5A1697E /* PBXTargetDependency */, + ); + name = RNAudio; + productName = RNAudio; + productReference = 62ACAC5E7A06BE7F1B445F549B65DF73 /* libRNAudio.a */; productType = "com.apple.product-type.library.static"; }; 1F22396CB543506E7EA28A47A30E9727 /* GoogleDataTransport */ = { @@ -13465,44 +13518,25 @@ ); name = GoogleDataTransport; productName = GoogleDataTransport; - productReference = 8522D1311D8A8EEB05EB5FF97D616AD3 /* libGoogleDataTransport.a */; + productReference = A404097E148F1819281A337650A82A85 /* libGoogleDataTransport.a */; productType = "com.apple.product-type.library.static"; }; - 2805838904E98AA8807CBFDCC32F2AE0 /* react-native-splash-screen */ = { + 2423D1FB7F3F91E20CF12466E84D7586 /* QBImagePickerController-QBImagePicker */ = { isa = PBXNativeTarget; - buildConfigurationList = C21B3D278B86E2D142EBEF9ACCE573FE /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */; + buildConfigurationList = 8914A21B1ED80123762D9B27D951BD4F /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */; buildPhases = ( - 922857EDDBC99C3F44189D50483F9B4B /* Headers */, - CF574EEFBBD3ABAB7E0D85CF05579C1E /* Sources */, - 77491BBC24C50126A7E4AE9E68860A51 /* Frameworks */, + 49996D66EBE28631F1B259F9DA73300A /* Sources */, + A3BD170F3892930FE000EF30E902628D /* Frameworks */, + 62835BD0654F6E36AFDD931502B46254 /* Resources */, ); buildRules = ( ); dependencies = ( - C40E60E74C9CE7BD690092547770BA14 /* PBXTargetDependency */, ); - name = "react-native-splash-screen"; - productName = "react-native-splash-screen"; - productReference = 36F5679F1EB6B81D48E293BC8C0DC39A /* libreact-native-splash-screen.a */; - productType = "com.apple.product-type.library.static"; - }; - 29853B24544C7926C2BFC70C42760675 /* QBImagePickerController */ = { - isa = PBXNativeTarget; - buildConfigurationList = 48C9C29125190813F974C0352AB9AC90 /* Build configuration list for PBXNativeTarget "QBImagePickerController" */; - buildPhases = ( - 28FC6557D0CAC76D6ADE5ADB53022733 /* Headers */, - 450E6674506F10BB73DFA77DCE09AFF5 /* Sources */, - 6FF9DDB98B04FD6A441C110D1E3DC40B /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 70B1A1A13698238F8C6EE3E16FB889E5 /* PBXTargetDependency */, - ); - name = QBImagePickerController; - productName = QBImagePickerController; - productReference = CAE0ACF9C9C3F738A9F297AE3BDACC72 /* libQBImagePickerController.a */; - productType = "com.apple.product-type.library.static"; + name = "QBImagePickerController-QBImagePicker"; + productName = "QBImagePickerController-QBImagePicker"; + productReference = 7C292364A20E94A203C3C11FD7B564F2 /* QBImagePicker.bundle */; + productType = "com.apple.product-type.bundle"; }; 2A99896D65A33A482D2D82FC436F823D /* FBReactNativeSpec */ = { isa = PBXNativeTarget; @@ -13524,27 +13558,25 @@ ); name = FBReactNativeSpec; productName = FBReactNativeSpec; - productReference = F60224A2FA0ECB20CB39284C596433FC /* libFBReactNativeSpec.a */; + productReference = 3C7C5D42DD5948AB3DD0AEEBFA0DBCF9 /* libFBReactNativeSpec.a */; productType = "com.apple.product-type.library.static"; }; - 2CBADBAF1891263102225816D0B97AA0 /* RNFastImage */ = { + 2E1B62D66A7097B06E8963437D5909DB /* QBImagePickerController */ = { isa = PBXNativeTarget; - buildConfigurationList = 6B70FA091F781615CF895EFC025463C8 /* Build configuration list for PBXNativeTarget "RNFastImage" */; + buildConfigurationList = 4C53423CD6A904E6C6DF800A7B7D590C /* Build configuration list for PBXNativeTarget "QBImagePickerController" */; buildPhases = ( - 0F75E14589C1EFA680E01E144A086EEA /* Headers */, - 940C8387B121E0070D3CDEAAC2FEEF9C /* Sources */, - 810B22E04954064782EBE6776E3F2B81 /* Frameworks */, + BEF64974223DB730E7477047F1474CBF /* Headers */, + 92D2F8AAD9B5D96AD22BEF010A833C09 /* Sources */, + EE1F3C37ACAF5EFD0568E299ABE080B9 /* Frameworks */, ); buildRules = ( ); dependencies = ( - F1B3892342AFB58F3250E17650873C90 /* PBXTargetDependency */, - E0E17772A640FEEB7F9C5D77A73845DF /* PBXTargetDependency */, - 2BCC4C093E3928C3242A933BAC9D2206 /* PBXTargetDependency */, + 6ADD6F1C7CC96B8B55121B70ED0D5A1F /* PBXTargetDependency */, ); - name = RNFastImage; - productName = RNFastImage; - productReference = 5F86DAA21566953F371995177BF826DC /* libRNFastImage.a */; + name = QBImagePickerController; + productName = QBImagePickerController; + productReference = 5767849105DF5DF08A153E973779C2F7 /* libQBImagePickerController.a */; productType = "com.apple.product-type.library.static"; }; 2E2ABA11C27993D4CDD5DA270C4B75F1 /* React-RCTBlob */ = { @@ -13564,43 +13596,25 @@ ); name = "React-RCTBlob"; productName = "React-RCTBlob"; - productReference = DFDC71CC528CD516EBE0949D4046A3A7 /* libReact-RCTBlob.a */; + productReference = FE497DC1D03BBC1524B08585DFBC018E /* libReact-RCTBlob.a */; productType = "com.apple.product-type.library.static"; }; - 303D154AC7C4E1DB362014D843A75377 /* react-native-document-picker */ = { + 354080E72782177DBAB3CCEC8A61DF26 /* rn-fetch-blob */ = { isa = PBXNativeTarget; - buildConfigurationList = 68168B429953B570BE8C2E93254702BB /* Build configuration list for PBXNativeTarget "react-native-document-picker" */; + buildConfigurationList = 7796DE8843CE657A11CFAFC925CF4887 /* Build configuration list for PBXNativeTarget "rn-fetch-blob" */; buildPhases = ( - 06EF9416DCBFF556F2660B48297E87EB /* Headers */, - 47E9AD35E52D8988DE422D1F1ECB5ECB /* Sources */, - C88593AB5E0A4A18E78511B9A5538AAB /* Frameworks */, + 39E0AC2D63FD017011A304730464F13D /* Headers */, + 6683F7C72E39C3E5701755F294ADF18F /* Sources */, + 2865E77511619A76182CB1CA82DB5C48 /* Frameworks */, ); buildRules = ( ); dependencies = ( - F918EF0985A642841A22D94182AB2394 /* PBXTargetDependency */, + 22368FFF9038F476E519957225D0900D /* PBXTargetDependency */, ); - name = "react-native-document-picker"; - productName = "react-native-document-picker"; - productReference = 25FD868EF5C2D69F6FF1B430E63FC231 /* libreact-native-document-picker.a */; - productType = "com.apple.product-type.library.static"; - }; - 31642F9D9703DB0EE0ECE8EE477DE676 /* rn-extensions-share */ = { - isa = PBXNativeTarget; - buildConfigurationList = FFB0E381B19C5A3DBC4371DCF41884A3 /* Build configuration list for PBXNativeTarget "rn-extensions-share" */; - buildPhases = ( - 09D9D5C1372EBB68ED28AD0FA6E69EDD /* Headers */, - BD6B48F533C83981C51974C5815F0F25 /* Sources */, - 170278C4C0C03F180C951BB42E36F805 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 9A28C74034F532AE9C6CE24587A7588F /* PBXTargetDependency */, - ); - name = "rn-extensions-share"; - productName = "rn-extensions-share"; - productReference = E97360910423F8A02F061200764D98F4 /* librn-extensions-share.a */; + name = "rn-fetch-blob"; + productName = "rn-fetch-blob"; + productReference = 84227D0A32CFFFEE02E7558663BF3682 /* librn-fetch-blob.a */; productType = "com.apple.product-type.library.static"; }; 3C6A9BF574C3488966C92C6A9B93CA8C /* FirebaseInstanceID */ = { @@ -13619,43 +13633,7 @@ ); name = FirebaseInstanceID; productName = FirebaseInstanceID; - productReference = BA0501686230C169300BEAC0CFDF99EF /* libFirebaseInstanceID.a */; - productType = "com.apple.product-type.library.static"; - }; - 41B2EC6C9E2D84CDC87C341E2314557C /* RSKImageCropper */ = { - isa = PBXNativeTarget; - buildConfigurationList = 7D417ED62277C350F4C6BFA2BB1D44B4 /* Build configuration list for PBXNativeTarget "RSKImageCropper" */; - buildPhases = ( - 5C2C0C043F3AE5D76D7CF98AE195113D /* Headers */, - F649E5E5F5FD61E7CABAD2B7FDEE72DA /* Sources */, - 5E956293EABF3BA46E458B45E770C21B /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = RSKImageCropper; - productName = RSKImageCropper; - productReference = A672EAB82A86B0F23AF82F0F78F972C0 /* libRSKImageCropper.a */; - productType = "com.apple.product-type.library.static"; - }; - 4205FEEC138F0BD3914F1371913BA87B /* SDWebImageWebPCoder */ = { - isa = PBXNativeTarget; - buildConfigurationList = BA6C5ADEA255E6C4BCC41BA025203FAD /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder" */; - buildPhases = ( - BE921756E6C77B97130CE129E7F48B77 /* Headers */, - 8641A32478488A27F424D9143684B58D /* Sources */, - 82BE2448043FC2B2BA3DC5B4B80C5117 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 8D0D00A72032D24EB24DFA0BC81EDBED /* PBXTargetDependency */, - 051685E236BAC97DB146593A7D4F798D /* PBXTargetDependency */, - ); - name = SDWebImageWebPCoder; - productName = SDWebImageWebPCoder; - productReference = 5AE46C4D8BE44CFD170DB603316B972B /* libSDWebImageWebPCoder.a */; + productReference = 7109CEA655580ED91B75F927D0F3982E /* libFirebaseInstanceID.a */; productType = "com.apple.product-type.library.static"; }; 426398FA61DF648ECF7C6897DFAC6E8E /* FirebaseCoreDiagnostics */ = { @@ -13675,7 +13653,7 @@ ); name = FirebaseCoreDiagnostics; productName = FirebaseCoreDiagnostics; - productReference = 3D3E1A3EDFA4B5FA204815C239797E8B /* libFirebaseCoreDiagnostics.a */; + productReference = 820EEE156D19F1273871393F2850D75B /* libFirebaseCoreDiagnostics.a */; productType = "com.apple.product-type.library.static"; }; 427A5566E42596B2649019D00AA80F10 /* libwebp */ = { @@ -13692,64 +13670,42 @@ ); name = libwebp; productName = libwebp; - productReference = 65D6BAECB13B97CC1CF3A596399BA248 /* liblibwebp.a */; + productReference = 808E8AF2269D05C21D3D9C6352A7F413 /* liblibwebp.a */; productType = "com.apple.product-type.library.static"; }; - 462F2792E1383810DA255DC15CB8F942 /* RNFirebase */ = { + 42BD655FCD2598C4D25D7B895932A77F /* react-native-background-timer */ = { isa = PBXNativeTarget; - buildConfigurationList = D996D4364BADDB0ACDBAC5945F4D1D30 /* Build configuration list for PBXNativeTarget "RNFirebase" */; + buildConfigurationList = 9A8E61E9E1EF22694027936DC5BAA527 /* Build configuration list for PBXNativeTarget "react-native-background-timer" */; buildPhases = ( - 239E3C733DA5E9D409EC06EBF3C07828 /* Headers */, - A082AD0B019CA2EF3BA53C291C88B579 /* Sources */, - 30BE494D61C97489CD34E971F4FF3CE0 /* Frameworks */, + D76E6034DDA113318FB910278CABFFED /* Headers */, + E7037D1330C50F93DBC4C80DF85CA156 /* Sources */, + B38B94F395F4D44F2E9798E642962781 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 027FCFE8D4668B3BE320E38F95B86D0F /* PBXTargetDependency */, - F67A8B31AE56B60980E14653E7DE25B7 /* PBXTargetDependency */, - E5DC24544CC6C329CD76322519ED0BFB /* PBXTargetDependency */, - B2491E0B95839EFF4C8338C78906A805 /* PBXTargetDependency */, + 5C8C08D809183E873F9D67FD582298E7 /* PBXTargetDependency */, ); - name = RNFirebase; - productName = RNFirebase; - productReference = F07935B83A1279A78510B6FF8E94E4EF /* libRNFirebase.a */; + name = "react-native-background-timer"; + productName = "react-native-background-timer"; + productReference = E3E9D8FA14DFD596D27F9BB39C8D6DF6 /* libreact-native-background-timer.a */; productType = "com.apple.product-type.library.static"; }; - 48A082BED63E227E6247A0541D876B43 /* rn-fetch-blob */ = { + 4DDE5693A87611C05EBF117455A2FB9F /* RSKImageCropper */ = { isa = PBXNativeTarget; - buildConfigurationList = 8E99185841B3934943FCFB61B778A1B4 /* Build configuration list for PBXNativeTarget "rn-fetch-blob" */; + buildConfigurationList = D07DBCF3C4E14EF6BD11AE749E3559B4 /* Build configuration list for PBXNativeTarget "RSKImageCropper" */; buildPhases = ( - 6FA8179B65247A736F9CA4C50BFB75B2 /* Headers */, - A392BAD4DAEE1843DE63AED07AF99009 /* Sources */, - 06E6987B524335FC3617A4E322CD68A8 /* Frameworks */, + 30A49116137AC2CD9C5D70F38EBCAEDA /* Headers */, + 8163BB4CC7545290E648ED81BEC4B725 /* Sources */, + F5CD5392DB2070C7C20849B56F328115 /* Frameworks */, ); buildRules = ( ); dependencies = ( - B2F857484B783EA57EB3B4B0C49FF1CF /* PBXTargetDependency */, ); - name = "rn-fetch-blob"; - productName = "rn-fetch-blob"; - productReference = 5257976D35ED1ED6929F44302C576FD0 /* librn-fetch-blob.a */; - productType = "com.apple.product-type.library.static"; - }; - 49A20CD2A4D337B7A85D4498997FD6ED /* react-native-video */ = { - isa = PBXNativeTarget; - buildConfigurationList = 070C3D2DBD15207EF9F9A8D8488CA319 /* Build configuration list for PBXNativeTarget "react-native-video" */; - buildPhases = ( - FF622B5A9668C4F89360AE1E58EA3FDE /* Headers */, - 2CFA664E90108021F9AB8079682F0452 /* Sources */, - 359068122D4E9C11612CC38C63A4D1D7 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 447992CB3F3C464CA633286AEF34552D /* PBXTargetDependency */, - ); - name = "react-native-video"; - productName = "react-native-video"; - productReference = 2C977B894F8AB4087D3133C1CDA6073B /* libreact-native-video.a */; + name = RSKImageCropper; + productName = RSKImageCropper; + productReference = 02BB86289FF53E3C45D13C3A1B115EFA /* libRSKImageCropper.a */; productType = "com.apple.product-type.library.static"; }; 4ECE1108F140208A729A83BC94FAA150 /* EXAppLoaderProvider */ = { @@ -13766,69 +13722,43 @@ ); name = EXAppLoaderProvider; productName = EXAppLoaderProvider; - productReference = F55CDF019ACA2217732F35553D42466C /* libEXAppLoaderProvider.a */; + productReference = 460991AC1BE5B75FEBBA47638A4138A1 /* libEXAppLoaderProvider.a */; productType = "com.apple.product-type.library.static"; }; - 5285479282A796511D8530E65EC983DF /* RNImageCropPicker */ = { + 52B496375B47BE24C88A169CA30D0DEA /* react-native-webview */ = { isa = PBXNativeTarget; - buildConfigurationList = F78A97622D69931DB48F198C9BC90DCA /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */; + buildConfigurationList = AD2A942F78A1A29119F8BE40A0A214D5 /* Build configuration list for PBXNativeTarget "react-native-webview" */; buildPhases = ( - 4E283E685473776BAB61D3BF296A5309 /* Headers */, - 5B687A4292712B349779E42996CC6F9B /* Sources */, - 810AB987E0BA619CB2E0E634158AD9AF /* Frameworks */, + 0DA08FF22A60F56BE8BCEAF12229BA21 /* Headers */, + 833CF4D3BD6919F9F5C540277C99A66F /* Sources */, + 4893A645B393FAE52653F2C9E542610E /* Frameworks */, ); buildRules = ( ); dependencies = ( - E9EAD15677A4F5488B474FE1E781CA59 /* PBXTargetDependency */, - AA57F8D6414ED11C63036DD247A57ABA /* PBXTargetDependency */, - 6B86BB43A6E15E186F912C6C98C2C1B9 /* PBXTargetDependency */, - EC2B4F3184EC2510B43FB5F304FE9EB3 /* PBXTargetDependency */, + F164958AA709D14A90A2037CD16E40D8 /* PBXTargetDependency */, ); - name = RNImageCropPicker; - productName = RNImageCropPicker; - productReference = 9684911C233FAF0E0748FA1664366AE1 /* libRNImageCropPicker.a */; + name = "react-native-webview"; + productName = "react-native-webview"; + productReference = FCC22059E462192D9B273B945DC2A9B9 /* libreact-native-webview.a */; productType = "com.apple.product-type.library.static"; }; - 541B734EAEC62BA761D4C886EF4FC968 /* React-CoreModules */ = { + 586C843030CBA8901E569AB3D2F76867 /* react-native-orientation-locker */ = { isa = PBXNativeTarget; - buildConfigurationList = A8AEE226A4C2A4E14B547C41676D3639 /* Build configuration list for PBXNativeTarget "React-CoreModules" */; + buildConfigurationList = 473481C5B0CF711932287F9B9AEA2483 /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */; buildPhases = ( - 8106FF71D8916ABA63B265EC92731C38 /* Headers */, - D0D87141EAECF89DE4E07AB17F355856 /* Sources */, - DAEB9FC5321BD04C105F295444952F78 /* Frameworks */, + 2143EACB77FDFEFD921A4697BA48336F /* Headers */, + F3FD78230AA83D2C91B06E46B6C9EF5F /* Sources */, + 288ABC21F1D06F9CB82B2CB966FE04A2 /* Frameworks */, ); buildRules = ( ); dependencies = ( - FE8AAAFC02ED78FF130B52CB64CBBF20 /* PBXTargetDependency */, - C99C68F3577BB88F7DEE3616F7E8CB5D /* PBXTargetDependency */, - ECDEFD42AF28721FAC71AB6CF4058715 /* PBXTargetDependency */, - 61EF6CE5EBAD9E81E7179EDC2B724FA1 /* PBXTargetDependency */, - 828E6C131898ED93B938266ED53A822F /* PBXTargetDependency */, - BB9EEE60A6212EC2E9D65FA586EA3C9A /* PBXTargetDependency */, + 0100CA9D355DBFBE2509BC2021531D35 /* PBXTargetDependency */, ); - name = "React-CoreModules"; - productName = "React-CoreModules"; - productReference = AE5D5924E9524D24B4C78999594601F8 /* libReact-CoreModules.a */; - productType = "com.apple.product-type.library.static"; - }; - 5670B9D7F60A308B44938F9FAB576F8E /* react-native-safe-area-context */ = { - isa = PBXNativeTarget; - buildConfigurationList = 63633849C2F8C556E146A5D8921817EC /* Build configuration list for PBXNativeTarget "react-native-safe-area-context" */; - buildPhases = ( - 83F5048DA9453AC1B030D3FEA7E878D3 /* Headers */, - E51E3AFB102389A62A81475F2EF6ECFA /* Sources */, - F3E080F8CB256B044677EB0BD6D2B8A3 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - A799F082B00504FE449D28EA163E86E4 /* PBXTargetDependency */, - ); - name = "react-native-safe-area-context"; - productName = "react-native-safe-area-context"; - productReference = 0D06F4B4361CF3BC16E2F9F0631362E1 /* libreact-native-safe-area-context.a */; + name = "react-native-orientation-locker"; + productName = "react-native-orientation-locker"; + productReference = 97C923AA0AA7EF31C4233AF4848FD432 /* libreact-native-orientation-locker.a */; productType = "com.apple.product-type.library.static"; }; 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */ = { @@ -13845,25 +13775,7 @@ ); name = nanopb; productName = nanopb; - productReference = 6C8671A0DC50529C47D3FFB143FF3AFE /* libnanopb.a */; - productType = "com.apple.product-type.library.static"; - }; - 59D7DEBEE2A5AFB4A70211E96873E983 /* react-native-background-timer */ = { - isa = PBXNativeTarget; - buildConfigurationList = 459DA3A28CEE3ABB7FF14795DF7AA113 /* Build configuration list for PBXNativeTarget "react-native-background-timer" */; - buildPhases = ( - D0EFE36DFF115B7E280BF3DAD57CABF6 /* Headers */, - A02C69208757216B2866C39CE6C99297 /* Sources */, - 709E98DCF00A95E8D4549528463EF7BF /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 95360361A466C5A4CA9C1CED3C0C1659 /* PBXTargetDependency */, - ); - name = "react-native-background-timer"; - productName = "react-native-background-timer"; - productReference = 06620BAA9B290FC2C0A843500D0A7E9F /* libreact-native-background-timer.a */; + productReference = AA5207268C70A330051FE675E3CC119C /* libnanopb.a */; productType = "com.apple.product-type.library.static"; }; 5B1BA8B3E53682DD179F7BFF8F2C8B75 /* EXHaptics */ = { @@ -13881,25 +13793,25 @@ ); name = EXHaptics; productName = EXHaptics; - productReference = 9A03947CE2339B9152C4A4C8F7F2FE73 /* libEXHaptics.a */; + productReference = D0E211E286336B914A2B19295E3B9225 /* libEXHaptics.a */; productType = "com.apple.product-type.library.static"; }; - 5C9A8A893D5CFCE5F284C62E8BD0F139 /* react-native-keyboard-input */ = { + 5B9C887470B06C308DB225E189F87B0E /* RNDeviceInfo */ = { isa = PBXNativeTarget; - buildConfigurationList = 3CD4DEC6B1AA7D3A576ADB1435D38BD3 /* Build configuration list for PBXNativeTarget "react-native-keyboard-input" */; + buildConfigurationList = 31CAE9EFF52FDB55F7F4DF6C2050382A /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */; buildPhases = ( - 8D390029B708568640FFEE599745891B /* Headers */, - 6AAD175F1B5EBCFC591D2CB9041D4262 /* Sources */, - 1E0AB82A7EF5BF69E0CEE4F2C1768C57 /* Frameworks */, + 187828AD1065FB97181977FB33605912 /* Headers */, + 6D341C9AACE2B507466D82192D1271DF /* Sources */, + 3EFA10597286A79C3B1B7317D71DA962 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 66B25117551341ED1B378796C2F38708 /* PBXTargetDependency */, + F16B30E65BC13AC2000D9923BE957A93 /* PBXTargetDependency */, ); - name = "react-native-keyboard-input"; - productName = "react-native-keyboard-input"; - productReference = 8FCAA2817AE3F8AC3B8230897287EBF7 /* libreact-native-keyboard-input.a */; + name = RNDeviceInfo; + productName = RNDeviceInfo; + productReference = B2C3C50842C99465084B59724BB1F888 /* libRNDeviceInfo.a */; productType = "com.apple.product-type.library.static"; }; 60F43D68BD7290E1B24C3BE7B3382AD3 /* React-RCTNetwork */ = { @@ -13917,7 +13829,7 @@ ); name = "React-RCTNetwork"; productName = "React-RCTNetwork"; - productReference = CB9535677DE7DF46883CE340FD0A5CFD /* libReact-RCTNetwork.a */; + productReference = D4D6A0329CD649D0C075E993F930BFBA /* libReact-RCTNetwork.a */; productType = "com.apple.product-type.library.static"; }; 63CF4D4E74D1771681263724253E1E79 /* GoogleDataTransportCCTSupport */ = { @@ -13936,7 +13848,7 @@ ); name = GoogleDataTransportCCTSupport; productName = GoogleDataTransportCCTSupport; - productReference = CBF682EEE52E0BFF5D740021D12EB670 /* libGoogleDataTransportCCTSupport.a */; + productReference = 00538E6400D6DE497F2355C3CDA9468C /* libGoogleDataTransportCCTSupport.a */; productType = "com.apple.product-type.library.static"; }; 64E78828D8355514B3B6BE78FAE7806E /* React-RCTSettings */ = { @@ -13954,27 +13866,7 @@ ); name = "React-RCTSettings"; productName = "React-RCTSettings"; - productReference = 1CE007DD64EEDCD841D50DB3C8FDCC67 /* libReact-RCTSettings.a */; - productType = "com.apple.product-type.library.static"; - }; - 6CAFCD3C8DDBA20EE5B4794529B7FDED /* UMReactNativeAdapter */ = { - isa = PBXNativeTarget; - buildConfigurationList = 7AA08BF8D72007401DA9EBEEB23BFB39 /* Build configuration list for PBXNativeTarget "UMReactNativeAdapter" */; - buildPhases = ( - 9B545D16BD579B5EC35929EB1244FDB4 /* Headers */, - 1A9D239F2777D665DDCCB9291BCC29AF /* Sources */, - 44BF86729CD8674F9D5341D3D5869F4D /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 7274C1891844934B8ABFD9FD2F633474 /* PBXTargetDependency */, - 282D1C1C871AF76F5A2D5ED4BE7EEE10 /* PBXTargetDependency */, - F5F59696E2D5F63C2285B4D884C6680A /* PBXTargetDependency */, - ); - name = UMReactNativeAdapter; - productName = UMReactNativeAdapter; - productReference = 2072E5E02215B6D6FDC9547BA30AB058 /* libUMReactNativeAdapter.a */; + productReference = 021223F4CB3D713C8F939055BC00D673 /* libReact-RCTSettings.a */; productType = "com.apple.product-type.library.static"; }; 6DE003F64B133830B9AB9321298DAAC2 /* ReactCommon */ = { @@ -13997,26 +13889,7 @@ ); name = ReactCommon; productName = ReactCommon; - productReference = 024A7DA4C02ECDB852F8CBEB55DD8579 /* libReactCommon.a */; - productType = "com.apple.product-type.library.static"; - }; - 6EA8C542D237B6C3582C6CD2CF9DBA96 /* react-native-jitsi-meet */ = { - isa = PBXNativeTarget; - buildConfigurationList = CDCED51DC2461132113FD2D18334EEB3 /* Build configuration list for PBXNativeTarget "react-native-jitsi-meet" */; - buildPhases = ( - 171F2AAFBDA7B77CC339311F7CD2E5AF /* Headers */, - 853272F721EA9819F4779D2C68D0F352 /* Sources */, - BD8E98DB954B3074273975997CC1E632 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 24481622D34901DF3AAB089B09F0F8F2 /* PBXTargetDependency */, - 11DA113239D97D91EF30F7EEFD5E1742 /* PBXTargetDependency */, - ); - name = "react-native-jitsi-meet"; - productName = "react-native-jitsi-meet"; - productReference = FE2852FAE58D7B22076BE01E6A658084 /* libreact-native-jitsi-meet.a */; + productReference = EC977BDF60F0D8FD5CA3971CDBEF3EA0 /* libReactCommon.a */; productType = "com.apple.product-type.library.static"; }; 7135140B597489F3FE9D0A6D1FADD9C7 /* React-RCTActionSheet */ = { @@ -14034,25 +13907,132 @@ ); name = "React-RCTActionSheet"; productName = "React-RCTActionSheet"; - productReference = EFF331495097C1F9A56015604BE276B5 /* libReact-RCTActionSheet.a */; + productReference = C96A5AC4864557B5EC8617A856C2886E /* libReact-RCTActionSheet.a */; productType = "com.apple.product-type.library.static"; }; - 726A1DAA8BA43A59037E6DD0759CCBCA /* RNUserDefaults */ = { + 72831AB9D90A45024AFD8489D0CEB6C3 /* RNFirebase */ = { isa = PBXNativeTarget; - buildConfigurationList = A77DE463FFC1EB3495103572A2873FDC /* Build configuration list for PBXNativeTarget "RNUserDefaults" */; + buildConfigurationList = 28165CB636DFBF2C71BA7CB1D8D58427 /* Build configuration list for PBXNativeTarget "RNFirebase" */; buildPhases = ( - 7F2D564A6B4A574790BE531DA55AA21B /* Headers */, - A6F0714B77BCEE260A1A08E48AF5B04B /* Sources */, - CC40332BC92069738A3F8F6DE6A2F542 /* Frameworks */, + 305150B125FF4281ACE67E22E8B1FFD3 /* Headers */, + F7B774774A1FE5253547A8BA92235BF1 /* Sources */, + 8CF1FEC117EC8E94BDFC47B3A7074B6E /* Frameworks */, ); buildRules = ( ); dependencies = ( - 28C4038936136FCB75B2837B3124D252 /* PBXTargetDependency */, + 5BAA03ADEEA50793F23E7CD3983E680E /* PBXTargetDependency */, + 930A6DE757E76F546AB58A876EE3BEAA /* PBXTargetDependency */, + 8DA74C007FAE49B3AB8BD134924A91F4 /* PBXTargetDependency */, + 554D4A2D63444F310700BF60FDBEC545 /* PBXTargetDependency */, ); - name = RNUserDefaults; - productName = RNUserDefaults; - productReference = 240CCE1E86C9C2BB3EBA19810C8DA0A2 /* libRNUserDefaults.a */; + name = RNFirebase; + productName = RNFirebase; + productReference = 86006669CAEC9F6B941A80CC032DC0CF /* libRNFirebase.a */; + productType = "com.apple.product-type.library.static"; + }; + 734EC5EBBA74D964EF7403F45ECFAD2D /* Pods-ShareRocketChatRN */ = { + isa = PBXNativeTarget; + buildConfigurationList = 1093E0DF7EB7D85FDD6397B68E891208 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; + buildPhases = ( + 5F92FF7D07FC27B50AD07B15ACAC4BBD /* Headers */, + 3E0375161A4C97F21897F70DBBF50015 /* Sources */, + 135DFAF142A14BF96714707FA8F4EF77 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + FA85B61CAF68776136ECF399989CC9C3 /* PBXTargetDependency */, + BAFCDF0AD092D05FE06FFDC8862414EE /* PBXTargetDependency */, + DBA4115988DE7E3296773F6CF9BC1B06 /* PBXTargetDependency */, + 6C33FF42CB5AB88C73AED6CF477EC8E6 /* PBXTargetDependency */, + ACCE80A5027A23A21AB5DDF060D40FC2 /* PBXTargetDependency */, + C7E294EEA4B149009F6DA7176C2BAF0E /* PBXTargetDependency */, + D4F59459536E2EDF233B5EFE32C3860B /* PBXTargetDependency */, + 5F78886F6223E09A28EBD4276937D25D /* PBXTargetDependency */, + 8995391C752773F5E2B16422A1E30848 /* PBXTargetDependency */, + DF9F80D112354C9D28B8D3FFDAD491E4 /* PBXTargetDependency */, + B3D9CEEC0D2A70C1BD5D14A732A1D6E7 /* PBXTargetDependency */, + 44761A891A6C03CDA744BAEDFC905E03 /* PBXTargetDependency */, + 226F4A335791ADF7FB0F7538A12567C9 /* PBXTargetDependency */, + 9EA537495D950AF67143A0A00EF5BD01 /* PBXTargetDependency */, + 3C3AE12228495D5CBF0ED20B7F650013 /* PBXTargetDependency */, + CC1B1F82FA54C8AA35CCBC7DB03D785B /* PBXTargetDependency */, + 9D99AB10F409D68B8FE623C138A7E00A /* PBXTargetDependency */, + 442B4D18ADEBBA7C62C8687A835DE042 /* PBXTargetDependency */, + 1C779A7E2464D9C5312306174A25F825 /* PBXTargetDependency */, + 0587EFF54B631C2D6B689B42E5DBBF87 /* PBXTargetDependency */, + 9D78AC1EC7B706BAC4B1A2027B8BE8E0 /* PBXTargetDependency */, + 73387D624963D286E47F433D5C2162F8 /* PBXTargetDependency */, + 24CBF3FB94140FA638C9AFCEC715070D /* PBXTargetDependency */, + B12B1A67B5817A2C89B57D7E1475D45E /* PBXTargetDependency */, + 6DAAF97E297425CB09CA8EACA7F50CC9 /* PBXTargetDependency */, + 85298C12D917FE0D5F7BB330D8B17268 /* PBXTargetDependency */, + C869EAB6E723103C25D815C83EF3F2EC /* PBXTargetDependency */, + 585D06A4E3C6BB1039EB1891173F6B23 /* PBXTargetDependency */, + ECEAF5ABF0967C5D3813D99898567AD1 /* PBXTargetDependency */, + 644AF3B0258A0ABEFE898D19C26B8584 /* PBXTargetDependency */, + 1383E610C83FEFA11CDEFD3273B293C0 /* PBXTargetDependency */, + F59B395458AC6E3D5779F66F42AFC4A4 /* PBXTargetDependency */, + 069171D6714F3094C1A8EB205BE29E0D /* PBXTargetDependency */, + 1E3BF02B0D58ED109471A13AF22C4278 /* PBXTargetDependency */, + 9359A2A75749126D7D997811E06F0ACB /* PBXTargetDependency */, + 4357C205FE6BB45646E6BFBA9E8CF708 /* PBXTargetDependency */, + 415EF3BEC42492E0537CB5AD514551F0 /* PBXTargetDependency */, + 1950EACF4CE0F4E0A3DFCA926B72584C /* PBXTargetDependency */, + 1C4A21D285A3D0172D2B81A91157AF4D /* PBXTargetDependency */, + 53EC1864708FD10379959854BB1181B3 /* PBXTargetDependency */, + 31FD4AC390AB07FE9F28C5170E946DA8 /* PBXTargetDependency */, + 76212534600AC2691B8480810723A713 /* PBXTargetDependency */, + E29B0EEC557D466E5EA1FCC2C9234330 /* PBXTargetDependency */, + 60B056629A5A31A32C8BEF22314F657E /* PBXTargetDependency */, + D72034E20933B8FD82D55DE27DF2AAA2 /* PBXTargetDependency */, + 22AFBB30FAEB620D148F6694A8D8A3D4 /* PBXTargetDependency */, + E3E8AE9300A1B751D612DD473CFE058D /* PBXTargetDependency */, + 19E43934AD9E289FA0DE203877A11798 /* PBXTargetDependency */, + 697EA30F9EDF9A358507AC6086B61816 /* PBXTargetDependency */, + 3A58803112D04DFB6FE3F27B4027833B /* PBXTargetDependency */, + 926C9988B7B8E2DF4ECB1D1D1A900CF7 /* PBXTargetDependency */, + A198C7E8B0F5ADE28D6C3ABF8D10DB9A /* PBXTargetDependency */, + CD666B7725A053CB6C3C6F5C6E28AACD /* PBXTargetDependency */, + 5F2F2B7473886220CD449AB2AE14A3A9 /* PBXTargetDependency */, + 2E70AD0F00788838AB81D06DD117B25D /* PBXTargetDependency */, + A41C90737DB1159F48A7149F9CC9CA8B /* PBXTargetDependency */, + 208C2F2ADD08BF8C795BB9105F54BAA5 /* PBXTargetDependency */, + C6FED24BE250D854B2FF2688A6009E08 /* PBXTargetDependency */, + F5C3A5B15F94110EB03CC4A026C5DB7F /* PBXTargetDependency */, + 184C88C6B6A7B6CC2271DBBFC8E4107E /* PBXTargetDependency */, + 3F64E898537C3DBEFDEF9E786BB2B14E /* PBXTargetDependency */, + 155F36C9ED16F0F07C8916C85BE54814 /* PBXTargetDependency */, + 32E6310DB549809923C3D3028034341C /* PBXTargetDependency */, + 5CC8F3ACD5FE16ECAD9B34FAD752B86C /* PBXTargetDependency */, + 1339EBD669900D9DAEA9BDBE15B5A062 /* PBXTargetDependency */, + B8E06E7A5D5ED403947A809D3612D4B3 /* PBXTargetDependency */, + 35D7AF45E35C5ECA3615E87FF52D8176 /* PBXTargetDependency */, + 87B9A470244CA0D9C95478DA3F7818EA /* PBXTargetDependency */, + 153961C4551A0B121117187361AC7513 /* PBXTargetDependency */, + ); + name = "Pods-ShareRocketChatRN"; + productName = "Pods-ShareRocketChatRN"; + productReference = C6BC80FBF3C55A6B59C978DF008D2DE3 /* libPods-ShareRocketChatRN.a */; + productType = "com.apple.product-type.library.static"; + }; + 743B4DEB68D23793521F266C0241382A /* RNVectorIcons */ = { + isa = PBXNativeTarget; + buildConfigurationList = 75DAD50F775EB61B643EC47428B09092 /* Build configuration list for PBXNativeTarget "RNVectorIcons" */; + buildPhases = ( + FF3A34D764FD92B5DB2D72B25EEB8793 /* Headers */, + C72AED49C03DB977CBBEDBB8460954B5 /* Sources */, + 8B3E7988F932C74A7CE6F1431E939268 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + BA2BEDDB1162BF498FB412026D430EE7 /* PBXTargetDependency */, + ); + name = RNVectorIcons; + productName = RNVectorIcons; + productReference = C20A11A46DA88C93478EB17745182247 /* libRNVectorIcons.a */; productType = "com.apple.product-type.library.static"; }; 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */ = { @@ -14076,7 +14056,25 @@ ); name = "React-Core"; productName = "React-Core"; - productReference = 3E9F48B26088013B625FBD61C19A0A37 /* libReact-Core.a */; + productReference = 709BFF4EAF2CDF772CFC20DDC685AB63 /* libReact-Core.a */; + productType = "com.apple.product-type.library.static"; + }; + 7771CBBD8DE87850E7FDC2BAA331122F /* react-native-notifications */ = { + isa = PBXNativeTarget; + buildConfigurationList = DA26E2F5C5BF12C88FBD522F9E286D3E /* Build configuration list for PBXNativeTarget "react-native-notifications" */; + buildPhases = ( + 8E6ADF3467240E0B656DA91793C6CF70 /* Headers */, + 7F1B7E8C0D5FCB3036CF23542B70F457 /* Sources */, + D309C0D2C3A05A6DE2127D2E561E3771 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 1EEE70D3E2DFEFB5916350FE20F8AB4B /* PBXTargetDependency */, + ); + name = "react-native-notifications"; + productName = "react-native-notifications"; + productReference = 41A5423EBB1880BAF6F9267E5B15F7D6 /* libreact-native-notifications.a */; productType = "com.apple.product-type.library.static"; }; 78321EAB31E9FCC75DFA950389835085 /* Folly */ = { @@ -14096,25 +14094,7 @@ ); name = Folly; productName = Folly; - productReference = CED89ECA78AFB932B7320D7D5667B82B /* libFolly.a */; - productType = "com.apple.product-type.library.static"; - }; - 7971E9EDE82F3534DAC43ADF07514C4D /* RNAudio */ = { - isa = PBXNativeTarget; - buildConfigurationList = D9FE69B4A5061B2A3D39458594F6CA5C /* Build configuration list for PBXNativeTarget "RNAudio" */; - buildPhases = ( - 6F19F5F2E7DC3FC0C9144E657035EB89 /* Headers */, - 2A12F936471A5FC9CB676E80B356546B /* Sources */, - 472FFBA8A2FAFC233F632887CE021EE1 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 115B0092A8DE7EB464330C9BD70D837B /* PBXTargetDependency */, - ); - name = RNAudio; - productName = RNAudio; - productReference = 8436F77BAD643A5138290011692C0F83 /* libRNAudio.a */; + productReference = 2A7F743FD292127E00F2E9D5E75F7BB1 /* libFolly.a */; productType = "com.apple.product-type.library.static"; }; 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */ = { @@ -14131,7 +14111,7 @@ ); name = glog; productName = glog; - productReference = 417D87CE168CA4EC2CF9A1914C4B2170 /* libglog.a */; + productReference = AE42EF954CD85BF69907E5C1DC217CCC /* libglog.a */; productType = "com.apple.product-type.library.static"; }; 7F28D4475D7DAD9903F7E6044DD921C1 /* React-RCTAnimation */ = { @@ -14149,166 +14129,106 @@ ); name = "React-RCTAnimation"; productName = "React-RCTAnimation"; - productReference = 20C67792A66D004A09D448B9D690472C /* libReact-RCTAnimation.a */; + productReference = D2623C93B9C015E9A8F1571FD31B16E6 /* libReact-RCTAnimation.a */; productType = "com.apple.product-type.library.static"; }; - 87A5FD7A6049AF157764B6079B1EE113 /* Pods-ShareRocketChatRN */ = { + 82BA924F838C30601D2A813EA338492A /* React-CoreModules */ = { isa = PBXNativeTarget; - buildConfigurationList = C5ECADC183AE410249AF185DE4228666 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; + buildConfigurationList = 471A981FDB643FAE9CD1B2BB6EB15F69 /* Build configuration list for PBXNativeTarget "React-CoreModules" */; buildPhases = ( - 83649B9A2BC802C041E8EE74739ED5CC /* Headers */, - C003D5F1C61F62C761EBC4A01CD9EF0C /* Sources */, - 311B69243ACC1A445A49C1E41FFACC8A /* Frameworks */, + 6D19E0EA8D19DFDC4A13C50651AEB57C /* Headers */, + 74839A656D51ACFC038FD6652AC16783 /* Sources */, + 606B6655F431A6AE5BB11530F9B9DB7E /* Frameworks */, ); buildRules = ( ); dependencies = ( - 2E7EAB242B5F88107AD325CDE19C187F /* PBXTargetDependency */, - F9750D2015AF5F151789D7F54014883D /* PBXTargetDependency */, - 7BB476FDD56F2F9841DC412F9485F2CC /* PBXTargetDependency */, - 1EAEE3F7845CC99840BD4700E55D863C /* PBXTargetDependency */, - 7AA5D1984723EAEE2A7ABB0B00E9354A /* PBXTargetDependency */, - 91923F01BC5F4F33CB459D9E9F6FC125 /* PBXTargetDependency */, - 85D55D44395997DBD864114035469164 /* PBXTargetDependency */, - 3B744425A42F1D534E6E5BBCBBC26AA0 /* PBXTargetDependency */, - F3845A3945B87A3E443B9C82403962D8 /* PBXTargetDependency */, - 1AF149C990AB35D9AA4DDD40A5FD9FB4 /* PBXTargetDependency */, - E303DA15E20B92DB53A51BF883990AA5 /* PBXTargetDependency */, - 66564559BB0247F2E8CF767F085F4A70 /* PBXTargetDependency */, - 7B8A53BB54417224A99AF2BAD77359C2 /* PBXTargetDependency */, - 5D4C2EDAC517E5C8A8AA84B5BCE37D03 /* PBXTargetDependency */, - 21C536EDECB0F0B33DF9C4AB4DCFAE59 /* PBXTargetDependency */, - E13A639C7AB075F0490718556C7B9EF4 /* PBXTargetDependency */, - 2239BD2F333D79B229B69073EB7A182F /* PBXTargetDependency */, - 0FF2FD92D107CDF4058D0A019973899D /* PBXTargetDependency */, - 7283726E48F557C2D7D1ADA67822B895 /* PBXTargetDependency */, - F5FA972FCE42426A56E733024924FB61 /* PBXTargetDependency */, - 30F598528DA794CDCF6C6CAB42189C30 /* PBXTargetDependency */, - 3D12896141A1605BBEC4367F5740F2BD /* PBXTargetDependency */, - 0547531FE34D9AB0CC19277B0810983D /* PBXTargetDependency */, - 55D5C576F3F6EBEDFE08B2E40B3258F4 /* PBXTargetDependency */, - 84B7085E72748E1DE6C84605C791CD5B /* PBXTargetDependency */, - 48942E9C881BE23E998E111F4FAC65B8 /* PBXTargetDependency */, - 022357800F0CBB3A4B378B792A191D19 /* PBXTargetDependency */, - 2F5B617F629DD3F86BF921E0398CB5ED /* PBXTargetDependency */, - 3CABE84DCAFD9464A99AC5D53760FE25 /* PBXTargetDependency */, - E6E56064745D4107841E20AB9FD52F84 /* PBXTargetDependency */, - FF6F28960BF082C89D69B5EC97A55C90 /* PBXTargetDependency */, - 260A1165A4C61996C4CF2F8633AB9607 /* PBXTargetDependency */, - 6F52E2D7298C4B55C6F71040A996330A /* PBXTargetDependency */, - DAC05C6F05A3A55A14668D2B3616F691 /* PBXTargetDependency */, - 2DF98146EE417F6C625E80D80462B237 /* PBXTargetDependency */, - C650B8A1B62BC64CB99E5D0A72E8BB9D /* PBXTargetDependency */, - 4515A115900D37153268E435E83780C3 /* PBXTargetDependency */, - 7E3EFB2474BB87D3D01FBEE24BC69C7A /* PBXTargetDependency */, - 6D7FE63441A8D6E0C8171778323C288E /* PBXTargetDependency */, - 692D767B0A606354DBE2AB3FAC028203 /* PBXTargetDependency */, - 91C3ED1A4CF6FF0234F197B648574CB2 /* PBXTargetDependency */, - EAAEB92087F1948E0E4BE45D0B79890C /* PBXTargetDependency */, - 2A1A2A5FA40AAF05B6217AE5EB09E3C7 /* PBXTargetDependency */, - 31F451B014D9A6AFD123896A07BF1950 /* PBXTargetDependency */, - 6D38EEB5CA443B7208779A031D309D05 /* PBXTargetDependency */, - A430D3D197C5D0FBE12CF3C32AF6F199 /* PBXTargetDependency */, - DA3D3E91DD9001C4750051C601ADDF30 /* PBXTargetDependency */, - 059CA19E9B3515E16228546E3BC8397E /* PBXTargetDependency */, - 1709A2B72BBCBC329BBF20650838C6DC /* PBXTargetDependency */, - EE9DF3E78A42627F3052A1281CED9579 /* PBXTargetDependency */, - DBA20ED0631BCA057C58DBA255071133 /* PBXTargetDependency */, - 483D377D3E849075737AAC1DD4561409 /* PBXTargetDependency */, - 0F11FCBC19099064FA76C1BEACAB5878 /* PBXTargetDependency */, - 2EEA6A88D2C8E44B874509A49F1945D2 /* PBXTargetDependency */, - D9FDDCA6DD330279208E452293951533 /* PBXTargetDependency */, - 4B9A9D2B9C36BE519396BDD343583764 /* PBXTargetDependency */, - 00F88E0E7A5F42F8366685F9001A3583 /* PBXTargetDependency */, - C26C30ACB749908AE4BF5F8BF432DCE3 /* PBXTargetDependency */, - B366B5FB3DBBD0B2611FC22F35093655 /* PBXTargetDependency */, - C6CD31B79D213EBC388F4AEBB8926ACF /* PBXTargetDependency */, - 2683C8BC403E910536C655E36F2FD846 /* PBXTargetDependency */, - AC3C2440F6DD131B01F086D7A82E1EDE /* PBXTargetDependency */, - 8C841BFD91A8649B4B6DAC5682F0A8DD /* PBXTargetDependency */, - 4D003A6627D0F0EEFA07881467F2E0A6 /* PBXTargetDependency */, - 5EC3B40103FFE6ED453B58E2EC40B819 /* PBXTargetDependency */, - B3423CD2CB66A337CFCA02BD2E76EF7D /* PBXTargetDependency */, - 16DB0C132D1F09822FDF35BA860B7035 /* PBXTargetDependency */, - 2D5FA30A8D2D3D0407A1C95C0CA33E6D /* PBXTargetDependency */, - 74CD1B1AB8E14AD043834D609DB6D596 /* PBXTargetDependency */, - 8DA6871F75EC2390D4874510AEB2C1D4 /* PBXTargetDependency */, + 10E882CFEBFF99221BCA7A10CEE2EF1C /* PBXTargetDependency */, + CB7E8EB747CBA0EAC4BCC3FB33CD4632 /* PBXTargetDependency */, + A08CC873CE13E33D866F21E27CCC0068 /* PBXTargetDependency */, + 9CAF2798C8AEA8082EC6279CF92B9F1C /* PBXTargetDependency */, + 1C7231832A786B44CF40BC64469B2B52 /* PBXTargetDependency */, + C95C7A0835CD05C514D4FC7E39A82BF6 /* PBXTargetDependency */, ); - name = "Pods-ShareRocketChatRN"; - productName = "Pods-ShareRocketChatRN"; - productReference = BA76D51CB685A8D3D845F08992BF57C8 /* libPods-ShareRocketChatRN.a */; + name = "React-CoreModules"; + productName = "React-CoreModules"; + productReference = 918FAA25B981FC2328B54C5EC159E438 /* libReact-CoreModules.a */; productType = "com.apple.product-type.library.static"; }; - 880920CE33AF3DE5A35090F9234DE5C7 /* RNLocalize */ = { + 864F908B842632C53102364B908D850D /* react-native-video */ = { isa = PBXNativeTarget; - buildConfigurationList = 17FC378407A048291E3EF3D5DB377139 /* Build configuration list for PBXNativeTarget "RNLocalize" */; + buildConfigurationList = E31508D2C5A22533BD1AC133FCF89574 /* Build configuration list for PBXNativeTarget "react-native-video" */; buildPhases = ( - D0711008E3610A8AFE82645AF643894D /* Headers */, - A5A7DF42D1BCCB2905B0486F7A209A3B /* Sources */, - F27070FBC2BD7A41CCF28E56A90B3E35 /* Frameworks */, + BC1E7EA917E364B83C6EDB08D57A51AE /* Headers */, + 065134B9280D1300BCDBBC36506B4492 /* Sources */, + 8BEB698AEAD02F532FFF875B6B2B4692 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 9838942E27B10C17C8281C9A6195127D /* PBXTargetDependency */, + B2177753B91240A69037AE2C62C6C431 /* PBXTargetDependency */, ); - name = RNLocalize; - productName = RNLocalize; - productReference = 00D13666115C44ED93A89482C8D18ACB /* libRNLocalize.a */; + name = "react-native-video"; + productName = "react-native-video"; + productReference = 3EC540D240E3AB36FE683E1FBCD785BF /* libreact-native-video.a */; productType = "com.apple.product-type.library.static"; }; - 8E266A85C21F3B00E0A4951D5F0E09DC /* react-native-keyboard-tracking-view */ = { + 93C5B1FB74974DD045F6674ABFFDD408 /* react-native-keyboard-input */ = { isa = PBXNativeTarget; - buildConfigurationList = 51E2205C62290A0FBE68C75D026CC09E /* Build configuration list for PBXNativeTarget "react-native-keyboard-tracking-view" */; + buildConfigurationList = 806906A37B99E94F69F11C9EB57FDBFB /* Build configuration list for PBXNativeTarget "react-native-keyboard-input" */; buildPhases = ( - F016E81832608065D64A6B87AC170CF3 /* Headers */, - BFE4BEC2EA9E41A0AB0FA9369F3D61AD /* Sources */, - D4046E7611126E9599A99CFC06396A8C /* Frameworks */, + A84B91E2C91B97EB967B2571C6B592B9 /* Headers */, + AFCA2B8AFD28ED3623FB799F457CEE11 /* Sources */, + 5137E9B29ADF12A8450C66BDD4631174 /* Frameworks */, ); buildRules = ( ); dependencies = ( - D638FF8A5983D2ED384A77641D607381 /* PBXTargetDependency */, + DDA9E9C57534B6419B6E84DF77C3F18E /* PBXTargetDependency */, ); - name = "react-native-keyboard-tracking-view"; - productName = "react-native-keyboard-tracking-view"; - productReference = 04B71057546640A46BBB688900760369 /* libreact-native-keyboard-tracking-view.a */; + name = "react-native-keyboard-input"; + productName = "react-native-keyboard-input"; + productReference = 8E721A81A43A372A9667A58B44C84384 /* libreact-native-keyboard-input.a */; productType = "com.apple.product-type.library.static"; }; - 96BC9B706EE73069F199C64E2D477638 /* RNDeviceInfo */ = { + 97F64487E3A3BD041F3D7CC6460EA688 /* UMReactNativeAdapter */ = { isa = PBXNativeTarget; - buildConfigurationList = 9A20A8DFE215D7CE89985A0F15A1F97D /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */; + buildConfigurationList = C47A574960218FD6F25ED61F1E6ADAB0 /* Build configuration list for PBXNativeTarget "UMReactNativeAdapter" */; buildPhases = ( - 3653926A62F6EC79E5C7D9DEA96993CD /* Headers */, - 9D873A1984C8ACDCB568858EA14494E7 /* Sources */, - C638EC16CE02DB43D1CC41349588FCBE /* Frameworks */, + C1B27701A0164BBF247A723DC0C7F792 /* Headers */, + EB10DF5A3D2E457D1B48130461606F76 /* Sources */, + 8A2B774A73B408E296022927E7E912B9 /* Frameworks */, ); buildRules = ( ); dependencies = ( - FA3F954C9059F93294B256629B35BE20 /* PBXTargetDependency */, + 0511F7808017C3BD3BEFCF19EDD98211 /* PBXTargetDependency */, + 80F60A4601D82CC9C75F28464ABB92A8 /* PBXTargetDependency */, + A6ECAA2C4096BD8B1A2E3E0DCAEDDB6E /* PBXTargetDependency */, ); - name = RNDeviceInfo; - productName = RNDeviceInfo; - productReference = FDA7A6F69EB7C8A8B899369C8124C509 /* libRNDeviceInfo.a */; + name = UMReactNativeAdapter; + productName = UMReactNativeAdapter; + productReference = 450F873C9449D773F8A6A196FF5DACFE /* libUMReactNativeAdapter.a */; productType = "com.apple.product-type.library.static"; }; - 998EB74379168C52658B6543889D239F /* RNGestureHandler */ = { + 98F57C9A3FB6F5E9C1D7242BBE675E8D /* RNFastImage */ = { isa = PBXNativeTarget; - buildConfigurationList = 206BAFF487038B478A236A517A3ECA77 /* Build configuration list for PBXNativeTarget "RNGestureHandler" */; + buildConfigurationList = 156B45C4E08F7101AB4768F7F8CF85E5 /* Build configuration list for PBXNativeTarget "RNFastImage" */; buildPhases = ( - 4CDF48A6132F2C56EB75287443E0D96A /* Headers */, - 18BDB9B3E2DAEF37CEADA771F87D5AB6 /* Sources */, - 801340E640F4D6DE8131E0143F698015 /* Frameworks */, + 03AEDABDB215F6382C2A7B34B71627BC /* Headers */, + 0DD389EAA57B291ACA61000E9AAAB5AA /* Sources */, + 10269FF106A58B22D9E19EDB078CFC99 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 3532449454719B3C7D5117A53BB76BBC /* PBXTargetDependency */, + F4BFBDA074F6F315236D0F3B778DD030 /* PBXTargetDependency */, + B854EFA790A494D99A1080C635EA7F90 /* PBXTargetDependency */, + 3B973E5E205DFD47CD35484149579FCB /* PBXTargetDependency */, ); - name = RNGestureHandler; - productName = RNGestureHandler; - productReference = 6FEB1C239B3B874EAB1FDFAF2AA954C6 /* libRNGestureHandler.a */; + name = RNFastImage; + productName = RNFastImage; + productReference = 1432AC107EEC71614DBC990356D446B8 /* libRNFastImage.a */; productType = "com.apple.product-type.library.static"; }; 9F219ED43F3AEA000562B9BCFD624DDD /* React-cxxreact */ = { @@ -14330,113 +14250,25 @@ ); name = "React-cxxreact"; productName = "React-cxxreact"; - productReference = 30550BF834830A430953570C26BA34BB /* libReact-cxxreact.a */; + productReference = 409FF0807B37ED4A9D2CCEF42F1D0F74 /* libReact-cxxreact.a */; productType = "com.apple.product-type.library.static"; }; - A1493789C31DFF041EDC0C5BE13BA00E /* Pods-RocketChatRN */ = { + A3E6473348261FF8E0036D77598A7883 /* react-native-splash-screen */ = { isa = PBXNativeTarget; - buildConfigurationList = 4FD8ABF192F536CF48EC99E965C99926 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; + buildConfigurationList = C9F75F1D30711A9F1A3956D3BDDDE3EE /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */; buildPhases = ( - AA0FE7FC046F0034A703DEDF82DFC2E4 /* Headers */, - DAAEC2A1739A1C7494D56166723B7A5B /* Sources */, - 350EAE20AD8050FED3F31EBAF7787178 /* Frameworks */, + D023FB39E9306540E125887122B82A3F /* Headers */, + 249AAE4E9B23040116CA5441FBA57779 /* Sources */, + F7E238D6ED628807081958F6DB260F36 /* Frameworks */, ); buildRules = ( ); dependencies = ( - F8D7A7B90721DD47BBB8F84CA97864DB /* PBXTargetDependency */, - A18F570DA6DB94963102B4652FAF1465 /* PBXTargetDependency */, - D20E08D360A1A07AB94C55C6127B2A59 /* PBXTargetDependency */, - EFD58D7B0138EF29D267667549351279 /* PBXTargetDependency */, - CB624A81E66D31C29325EF9E0FA73FB5 /* PBXTargetDependency */, - 88EED09F9CE56D7AFDF6314635728513 /* PBXTargetDependency */, - A911633961FED00ECE94BF0DD2495CD6 /* PBXTargetDependency */, - 3C7A960DB07D9FAE19DA1493FDFE9CBD /* PBXTargetDependency */, - 861DA4733F0DCFB776687F8C9172CE73 /* PBXTargetDependency */, - 3341BADE6D83DCC42A083C300DA4896C /* PBXTargetDependency */, - 127EBDAA85AC0CBAEF9885CFB760AC66 /* PBXTargetDependency */, - 19196FC39BBF508BBBD28D4B2F0602F0 /* PBXTargetDependency */, - 0C1BB8BB1AA01F5EFD24446FAE391B46 /* PBXTargetDependency */, - F667E156BC875DE89814EEE4DD528A56 /* PBXTargetDependency */, - AEC5F191349F61BFDDBFD9072F9489CC /* PBXTargetDependency */, - E3C8C94F2088AEB7C4B369DE6EC71C69 /* PBXTargetDependency */, - C808017611E68B6B203316730537EC7F /* PBXTargetDependency */, - 105D67ABE0B948ABA47638054A184856 /* PBXTargetDependency */, - 982803FC612CFA98AD66D0C1B5A74B1C /* PBXTargetDependency */, - F1300DCDB7534157F1BFC9D85E9FB4C4 /* PBXTargetDependency */, - 1B7B1B1AA99B968BB3BB143D588C0001 /* PBXTargetDependency */, - 933D7C0070FD454F00B9C7BA454DC48F /* PBXTargetDependency */, - 42507EBEAC85A65B580F17B5337B27DD /* PBXTargetDependency */, - 5A8F00FEA5F081FB37264BD19C0E6BAB /* PBXTargetDependency */, - 13C8FF771DE6CFB38DB706515ADCBBD3 /* PBXTargetDependency */, - DB79BCF263EE1A9A834AA68A646F9DE5 /* PBXTargetDependency */, - 6D2211B396641BD61C1B8AEF2D4400D4 /* PBXTargetDependency */, - 0ADA1070D55EE4A4E61E9FE5B3CACE71 /* PBXTargetDependency */, - EE532DE935852331C5DD41FF978413A5 /* PBXTargetDependency */, - 692D0DCDF31FADD44E592EB82C34FB4A /* PBXTargetDependency */, - A0944219995841FB4B242FE2FC77F435 /* PBXTargetDependency */, - 9A9CF3E2584C408724BE6A5BBCCAE440 /* PBXTargetDependency */, - 10AFAFC12C5EEDF6DBE1E849D8BE378D /* PBXTargetDependency */, - F63A3D0E4DEA0154C58F254A65478DB6 /* PBXTargetDependency */, - DB29908C6EC5E435D3F27CD50D421BF1 /* PBXTargetDependency */, - 9704E20FFE8214BD2B4AFB3071770729 /* PBXTargetDependency */, - 7CFFE3D51C0A05147EDF179B4E565A37 /* PBXTargetDependency */, - 8AC7A6B39FD48881F27B003D06E46DE6 /* PBXTargetDependency */, - 668F227058C448F7CB2BBEDB9FEC4350 /* PBXTargetDependency */, - 73408288A5D0F38AE1EA5A1E25B0D6B8 /* PBXTargetDependency */, - BE0A2BD20D5DEAF403DCB6275A77D475 /* PBXTargetDependency */, - 7C7AECFD7A893BA59A1453DB5D3E1F86 /* PBXTargetDependency */, - 69485F1C11C48922666F69A92EDE9EAD /* PBXTargetDependency */, - 7E922BF4BE46475C51040CD3AD15BCB9 /* PBXTargetDependency */, - F9FD79C931EB270D5FBA77233A851845 /* PBXTargetDependency */, - 0BBB2F42FBB202B8EEFAAA05CE599481 /* PBXTargetDependency */, - 7830BB79FD737B9E5ABF52EB79B1CF55 /* PBXTargetDependency */, - 8D1CDFEB7196B7DDEC81FA1A97E81082 /* PBXTargetDependency */, - CADD05F4CFC6889DA727D8B59B2C78F6 /* PBXTargetDependency */, - 84C075C726718FBA14837BF4923BD756 /* PBXTargetDependency */, - 50ABFBC5DD2376A588105CAF9FE8F608 /* PBXTargetDependency */, - BAFA13F1F5BACE700D6884F385198CD9 /* PBXTargetDependency */, - DC09E645F575EDF5C5ECCCF10EA8868D /* PBXTargetDependency */, - F797D52C02A9F83A2C8088387AA36FBE /* PBXTargetDependency */, - 226964CE527CAC55D172ACECCC3FFDDF /* PBXTargetDependency */, - 019BB0701B923AE76AB551A764A328F0 /* PBXTargetDependency */, - FEA0BE8BDED9888CF4FDE8375637503C /* PBXTargetDependency */, - 10D2E6E9C432620E35B0745372A7D4CA /* PBXTargetDependency */, - 01429C9363999989631A990BF5CAA820 /* PBXTargetDependency */, - BAFDAD118DE46A6C53DCAE4C9FE333C2 /* PBXTargetDependency */, - D996059EBD01B6F1260554CFCCFDDA1F /* PBXTargetDependency */, - 1E8CFE1CE0FD4E607920ACE106891CB9 /* PBXTargetDependency */, - 112651CED4E4DDA9507D5D99DA1BCD4F /* PBXTargetDependency */, - CE42D50AD2D39A1B9EF36F32D721CB35 /* PBXTargetDependency */, - AD3B76819D12D8528725A8DE70F53A78 /* PBXTargetDependency */, - 5282FF97E82A4335501CADEC59C03A5E /* PBXTargetDependency */, - E442C855C1352413BF8F8202B1DE82EE /* PBXTargetDependency */, - 0E8DB6C05604DAAD3802A6CF737C3BC3 /* PBXTargetDependency */, - 79641BD0AC13A7C88F06424E8C2B9254 /* PBXTargetDependency */, - F83DA3AA51FB8775E3B9496BB2F9CDC7 /* PBXTargetDependency */, - 6294EB61D4100AC86E9DA276F764DBB5 /* PBXTargetDependency */, - 8780AE7F273D9B914164A9DCB00D24B2 /* PBXTargetDependency */, - 76C6955C4F4FF70FF1D77D52C6814A9A /* PBXTargetDependency */, - 6EAC526BA359998E4F750ADE69DC4907 /* PBXTargetDependency */, - 025310CCCB782578CE6541C629E1C240 /* PBXTargetDependency */, - E582F6E4A9B45BE5F882F09B07EE0FB1 /* PBXTargetDependency */, - 89CE6084B00329379BBA073CA0DCE79A /* PBXTargetDependency */, - 8AF045EED00F9D295E6DEAA8F22B94AD /* PBXTargetDependency */, - 8AB8F7668342350F5EC33128DAFE3EB5 /* PBXTargetDependency */, - B51606501226BF76CE9AEE6315166CC6 /* PBXTargetDependency */, - 0F340A4DAF6080567ACC6A09944F899B /* PBXTargetDependency */, - D8DEBB6FCD76C392ACE976F38D213E1B /* PBXTargetDependency */, - C621A4CCA9DE94AEF2712E2228851A9C /* PBXTargetDependency */, - 2D6E24A9FD878655049B92744FCAFAF2 /* PBXTargetDependency */, - C179764057DD5037E61AB375505938F6 /* PBXTargetDependency */, - 29CF2477D9D65933015BBC24280D10EB /* PBXTargetDependency */, - 5099B432E1E79F3E66F327CC42126453 /* PBXTargetDependency */, - 780357C4EB8CC3F4FA4FCE85077CD879 /* PBXTargetDependency */, - 5EDBCC152ABA3FDADB89A482952EB4F9 /* PBXTargetDependency */, + 926954F99CD6A3B92161995EA11E01CB /* PBXTargetDependency */, ); - name = "Pods-RocketChatRN"; - productName = "Pods-RocketChatRN"; - productReference = 0D7E44E269126782618E5EA42143C5EC /* libPods-RocketChatRN.a */; + name = "react-native-splash-screen"; + productName = "react-native-splash-screen"; + productReference = 8E180F9558C8D0F98BBFA9A8F4F5DC55 /* libreact-native-splash-screen.a */; productType = "com.apple.product-type.library.static"; }; A486E5AB43C3327005F1C0B986A448C0 /* EXConstants */ = { @@ -14455,7 +14287,7 @@ ); name = EXConstants; productName = EXConstants; - productReference = 9104D6E90869CF4DD9F81824D2415D5F /* libEXConstants.a */; + productReference = 356FE3E71CD3DEFCAC4909FF82DACCE4 /* libEXConstants.a */; productType = "com.apple.product-type.library.static"; }; A954214FEA55463925B6F6E3A27B6016 /* EXAV */ = { @@ -14474,7 +14306,25 @@ ); name = EXAV; productName = EXAV; - productReference = 6DEA9914C54EB495C743EE6B7123C5FC /* libEXAV.a */; + productReference = 196B0A88499EC4B56090AF686E8DD239 /* libEXAV.a */; + productType = "com.apple.product-type.library.static"; + }; + AC9FFACDCABA4A7F5721FB719571B81A /* RNReanimated */ = { + isa = PBXNativeTarget; + buildConfigurationList = 3AE61207ECD7BD36FEC281284BEE2E72 /* Build configuration list for PBXNativeTarget "RNReanimated" */; + buildPhases = ( + 97F310669DAAD3FE5CB4A56648BC6D0F /* Headers */, + 9B8C424F098B38F8393E918BC55543BB /* Sources */, + EBA4FEE7F3800EACA0EE15AA7127279A /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + BA18856760C8B8250D94780919462880 /* PBXTargetDependency */, + ); + name = RNReanimated; + productName = RNReanimated; + productReference = 122AAEB338DC8B736B63DB63AD613A00 /* libRNReanimated.a */; productType = "com.apple.product-type.library.static"; }; B11E238094137347E8790BFEB1BEF01F /* EXWebBrowser */ = { @@ -14492,42 +14342,7 @@ ); name = EXWebBrowser; productName = EXWebBrowser; - productReference = 3520A6863EFA9777DEAE6B7D7B21E5BE /* libEXWebBrowser.a */; - productType = "com.apple.product-type.library.static"; - }; - B143863673452F4D5E000E2997B3651F /* react-native-notifications */ = { - isa = PBXNativeTarget; - buildConfigurationList = 0F966F9889B90159F3E330BA2B30E733 /* Build configuration list for PBXNativeTarget "react-native-notifications" */; - buildPhases = ( - 243BE848B91C9E9446A00CE6AECA177B /* Headers */, - CD94454C1206B53999C6013D1DC2D9CC /* Sources */, - 512FECE551E7D2CD859A428BA8E2A389 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 07DA9012E24350FF950D831F5EE52273 /* PBXTargetDependency */, - ); - name = "react-native-notifications"; - productName = "react-native-notifications"; - productReference = 235836769D9E02E0AA10037437BF043B /* libreact-native-notifications.a */; - productType = "com.apple.product-type.library.static"; - }; - B413ECF06F2CDCADFB85C45E9A5FEA2C /* SDWebImage */ = { - isa = PBXNativeTarget; - buildConfigurationList = 546311A234B6A3F415FB4EFF20C25293 /* Build configuration list for PBXNativeTarget "SDWebImage" */; - buildPhases = ( - 41E718F6B1E83222D0DA4F4DA7CD208F /* Headers */, - 1CE6A0ED9A050179B887A6D8DDE81DC0 /* Sources */, - 3016E4A7F7FF2B3037AA83EE2261F07D /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = SDWebImage; - productName = SDWebImage; - productReference = 6E05E07DB306A19A19C8EC64818DC828 /* libSDWebImage.a */; + productReference = CDCE878B34213960A39C86D72769BD67 /* libEXWebBrowser.a */; productType = "com.apple.product-type.library.static"; }; B81CA3A3A63C0085E4085060FE4DD9FF /* React-jsiexecutor */ = { @@ -14549,7 +14364,25 @@ ); name = "React-jsiexecutor"; productName = "React-jsiexecutor"; - productReference = 0D982FF377AD4A1F8AD82E06DC8C7CAE /* libReact-jsiexecutor.a */; + productReference = 8D3111EE7181EC6A88D9C468462900B4 /* libReact-jsiexecutor.a */; + productType = "com.apple.product-type.library.static"; + }; + B84B55116AE8D2FC32258CFFF2972E1A /* rn-extensions-share */ = { + isa = PBXNativeTarget; + buildConfigurationList = E6FE4EABCBC21D903BE5028CF0BDC6B4 /* Build configuration list for PBXNativeTarget "rn-extensions-share" */; + buildPhases = ( + 4F6EF5F457768D213F43FDD1F07EFF72 /* Headers */, + 8B651CF45112F6C4C7008F4B1014E963 /* Sources */, + 24B4BCD997742976F79030BBBD932F56 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 44DDF138EBBF9078AFA9A41FDF7F0488 /* PBXTargetDependency */, + ); + name = "rn-extensions-share"; + productName = "rn-extensions-share"; + productReference = 3BCF90E27230C0A61CC068752BDE4D38 /* librn-extensions-share.a */; productType = "com.apple.product-type.library.static"; }; BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */ = { @@ -14566,25 +14399,7 @@ ); name = GoogleUtilities; productName = GoogleUtilities; - productReference = B4BBD3F4DCBF4684D97C369EE4AE97AC /* libGoogleUtilities.a */; - productType = "com.apple.product-type.library.static"; - }; - BC730040B89735D99427DBE0EDAA828E /* RNScreens */ = { - isa = PBXNativeTarget; - buildConfigurationList = B3E6EC86890E7B7B0F1B83F7CAAC527B /* Build configuration list for PBXNativeTarget "RNScreens" */; - buildPhases = ( - 704A3410F39F7472BCC2855FC0D5C9C8 /* Headers */, - F4BC00C54AAE58A1C404A29E178687A8 /* Sources */, - 7F9E94531105CC4EB39E5220F789A5B0 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 483D665D429831AC4485901129CC91B0 /* PBXTargetDependency */, - ); - name = RNScreens; - productName = RNScreens; - productReference = 069E9AAC32DF981B33640FE83825701D /* libRNScreens.a */; + productReference = AFB872DDD998C244AC1FF5DEF2A6CF00 /* libGoogleUtilities.a */; productType = "com.apple.product-type.library.static"; }; BD7B2D8FF0ABCB89D01F6E21D5364678 /* React-RCTVibration */ = { @@ -14602,7 +14417,64 @@ ); name = "React-RCTVibration"; productName = "React-RCTVibration"; - productReference = 7A69CAD3BDA83AE301555B162C333302 /* libReact-RCTVibration.a */; + productReference = 7007E5BD63700535A791FC56F083BFA9 /* libReact-RCTVibration.a */; + productType = "com.apple.product-type.library.static"; + }; + BF4AABB64D09DEB00ECF19B09D06CCD8 /* RNImageCropPicker */ = { + isa = PBXNativeTarget; + buildConfigurationList = 018DAECA8F15EA1F012B027EA675E2BE /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */; + buildPhases = ( + 30EDF8271849EE453046EF50843E94B4 /* Headers */, + 05029FC324637F0980CAC79BF11BABBB /* Sources */, + 2C47705138CB6B365AC2DDC8E28598E2 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + D53A5D9E3973E6187A91E282F65F1575 /* PBXTargetDependency */, + A89B435084EC23B13C580E5B225F12EE /* PBXTargetDependency */, + 8500F96B2D974EC6D2DA69B1CA615F7E /* PBXTargetDependency */, + 72FFA1BB912281719230C1A7CA408B2B /* PBXTargetDependency */, + ); + name = RNImageCropPicker; + productName = RNImageCropPicker; + productReference = 08EA89A726A317A7E4C39434BC66C2E1 /* libRNImageCropPicker.a */; + productType = "com.apple.product-type.library.static"; + }; + BF663682387D1F23ADF217037A1593FD /* RNLocalize */ = { + isa = PBXNativeTarget; + buildConfigurationList = 48EAB0CB839D0B2C26418E9ECFB0D514 /* Build configuration list for PBXNativeTarget "RNLocalize" */; + buildPhases = ( + 26AFE17C9D7632017671AB64D50FF7D5 /* Headers */, + 3DA4D2BB3A25CE17469AFA0C5BDA74BA /* Sources */, + F7498C7BA263C5FBCCE77DC270AB9212 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 0714DAF79B8B1682AC2CC1B8961FC201 /* PBXTargetDependency */, + ); + name = RNLocalize; + productName = RNLocalize; + productReference = F834CCAD795E977DBB19041BCF8F27BD /* libRNLocalize.a */; + productType = "com.apple.product-type.library.static"; + }; + C044C5A98E3D4C78D88D46C8E6C24CE1 /* RNUserDefaults */ = { + isa = PBXNativeTarget; + buildConfigurationList = EA5C25E1165730DD6B6906B9ADA5DF1D /* Build configuration list for PBXNativeTarget "RNUserDefaults" */; + buildPhases = ( + 778E6924469FA8F95391ED08C51C7DDB /* Headers */, + DEC2D3C7CE5662F062A13AA9B3F0AC4D /* Sources */, + 6B0452B313FFE8313B50AC0DDA781936 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 5DB6FF94FD7588F94A31054304FFC488 /* PBXTargetDependency */, + ); + name = RNUserDefaults; + productName = RNUserDefaults; + productReference = 884DDCF8ABAE6E290FFBEE88290F6038 /* libRNUserDefaults.a */; productType = "com.apple.product-type.library.static"; }; C2F81329D3C42F2D872A4B80180545BC /* React-RCTLinking */ = { @@ -14620,25 +14492,25 @@ ); name = "React-RCTLinking"; productName = "React-RCTLinking"; - productReference = 09FF962CAF88BBC18D852C27F967045D /* libReact-RCTLinking.a */; + productReference = DB550C0B57182EB7ECF71B581CB8332D /* libReact-RCTLinking.a */; productType = "com.apple.product-type.library.static"; }; - CD87ED5DE5F49418BF7FB90FCF9C2713 /* RNVectorIcons */ = { + D49B9B80A7B1F27C491DFA81E54E6CF7 /* react-native-document-picker */ = { isa = PBXNativeTarget; - buildConfigurationList = 285E5ED64BB9E5B7CD6AE9B104285C45 /* Build configuration list for PBXNativeTarget "RNVectorIcons" */; + buildConfigurationList = 8423216EE15DF7B773E9D80E94A47423 /* Build configuration list for PBXNativeTarget "react-native-document-picker" */; buildPhases = ( - 3AA8E84C5F8EB99E96E39B7DA1B46E3A /* Headers */, - A2CE883AF593A8F96A1F0545C1183038 /* Sources */, - 6E2F812E50EFA245B3242D2B16A54E25 /* Frameworks */, + 49230E3F7C9D1F5B34ED1F6653C52EFC /* Headers */, + FFE5F2FECF71D9A59DBABC8212950224 /* Sources */, + 9E3FCDC116387EDA7420257D1B04F1D3 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 62C32A5BC7E0D69847C1E4FE131F70DE /* PBXTargetDependency */, + E9B9018CC01581CFF9F3DD6A762B3867 /* PBXTargetDependency */, ); - name = RNVectorIcons; - productName = RNVectorIcons; - productReference = F584F64EB858EF704C5DA703F0F9C141 /* libRNVectorIcons.a */; + name = "react-native-document-picker"; + productName = "react-native-document-picker"; + productReference = 3D187B29FF40E909C7B00649D02DD8D7 /* libreact-native-document-picker.a */; productType = "com.apple.product-type.library.static"; }; E07EA1A35FBB3A986F484EB01CDD5527 /* EXPermissions */ = { @@ -14657,25 +14529,7 @@ ); name = EXPermissions; productName = EXPermissions; - productReference = 77D3515313915883A91B4D382D37D81D /* libEXPermissions.a */; - productType = "com.apple.product-type.library.static"; - }; - E0B018EB633DDF12D963E58CA1CDB18E /* react-native-orientation-locker */ = { - isa = PBXNativeTarget; - buildConfigurationList = 8B2AD48159F26B53BDEE52A44D8DF1C2 /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */; - buildPhases = ( - 6BCC27946955A168ACE72C3F52212A5A /* Headers */, - 0B83267575DC7B7C1594137DE29AE45B /* Sources */, - AEBA4839075C1F35A975D9AE800C88E2 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - BAB6220AA947409F406FC9E68F0A6A6D /* PBXTargetDependency */, - ); - name = "react-native-orientation-locker"; - productName = "react-native-orientation-locker"; - productReference = 934FAD7BD442FCC32A88864EC43DB732 /* libreact-native-orientation-locker.a */; + productReference = D0280C22D66CA99355BCC526A3BA164F /* libEXPermissions.a */; productType = "com.apple.product-type.library.static"; }; E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */ = { @@ -14692,7 +14546,7 @@ ); name = DoubleConversion; productName = DoubleConversion; - productReference = 659A269762C07BCCCD06B381625F24C2 /* libDoubleConversion.a */; + productReference = 0C1845B037EBFB2AF0EBE8D51A83F789 /* libDoubleConversion.a */; productType = "com.apple.product-type.library.static"; }; E452F4CD4F8AB641BD2444C7AC91FA2B /* BugsnagReactNative */ = { @@ -14710,7 +14564,7 @@ ); name = BugsnagReactNative; productName = BugsnagReactNative; - productReference = 578BA57E573FD4A55295FA5E25CC58DD /* libBugsnagReactNative.a */; + productReference = E2306D5FB2F49E75665AE8E3911A4754 /* libBugsnagReactNative.a */; productType = "com.apple.product-type.library.static"; }; E49E330A27425F89DE89516B2F50AAE9 /* React-RCTText */ = { @@ -14728,25 +14582,61 @@ ); name = "React-RCTText"; productName = "React-RCTText"; - productReference = 508C8E5B4FBC388D865BC713B4CDB0E7 /* libReact-RCTText.a */; + productReference = CE32FD9AAE872F96034704AEF28E8F62 /* libReact-RCTText.a */; productType = "com.apple.product-type.library.static"; }; - F4A43BC5CC1CE68C79792AEBBCE9C138 /* RNReanimated */ = { + E90B06E472DDA9583C2227DCEBFF5145 /* SDWebImageWebPCoder */ = { isa = PBXNativeTarget; - buildConfigurationList = 4FC235758377341D9622237BC1C6C48E /* Build configuration list for PBXNativeTarget "RNReanimated" */; + buildConfigurationList = 6B508EF9B32FC114716836E87532616E /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder" */; buildPhases = ( - C0D94E483D8D12B5B68E944F24C53DB0 /* Headers */, - 1CCC7CD972E5FD6CB55798BB4190C67B /* Sources */, - 8CFFE99D85FBEC982FE9C12BDB6FBD69 /* Frameworks */, + 202AA95677AFB0234038EB528BCAA48D /* Headers */, + FC7F3EA1D1726999AB027F1E64FB6D7D /* Sources */, + 4CC05941F3243820A59EA6DBD09125F8 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 4664CA0F9169FBCD42F642AA7A870A40 /* PBXTargetDependency */, + A00B5A4C770E702BC030F968308589DD /* PBXTargetDependency */, + 8026D966B6A7F9090CE3BF7D28278921 /* PBXTargetDependency */, ); - name = RNReanimated; - productName = RNReanimated; - productReference = 6B72BBBD460676E45ED8FD674F815B8F /* libRNReanimated.a */; + name = SDWebImageWebPCoder; + productName = SDWebImageWebPCoder; + productReference = ECE10FC2BF38F1BB875A7D45C9856E5C /* libSDWebImageWebPCoder.a */; + productType = "com.apple.product-type.library.static"; + }; + EB1AFC730F005065E951DE8E8F6826B4 /* SDWebImage */ = { + isa = PBXNativeTarget; + buildConfigurationList = 1E8A6483332E273CFEB815B3FD74A8E5 /* Build configuration list for PBXNativeTarget "SDWebImage" */; + buildPhases = ( + 0BFF0D889E4E5FDC9F1B076BF30D59A5 /* Headers */, + 83364DC902AB7BC0CB4FBAE7A8117BC3 /* Sources */, + DD5858A8BC66B8601AE70F4BF5285321 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SDWebImage; + productName = SDWebImage; + productReference = 301567460D8660C931BC4A8ACB8330DB /* libSDWebImage.a */; + productType = "com.apple.product-type.library.static"; + }; + EE96A92842C7DB9F8DD7593EC0B8D0FE /* RNGestureHandler */ = { + isa = PBXNativeTarget; + buildConfigurationList = 4325D36F23371ECA920CFB1522658F4C /* Build configuration list for PBXNativeTarget "RNGestureHandler" */; + buildPhases = ( + 39C0A163BD67925989CBEC18FBADB1F8 /* Headers */, + 3491F3A4B0FF9F38D1CC977B523739ED /* Sources */, + 297CFACE54023F56F6CE738A4330D150 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 6604A959D33451F3A3405EE14B7EFE15 /* PBXTargetDependency */, + ); + name = RNGestureHandler; + productName = RNGestureHandler; + productReference = 03793EA509CD256464C56FDB7BB6DBC4 /* libRNGestureHandler.a */; productType = "com.apple.product-type.library.static"; }; F7236D5BFD42DBEDF2652D4E47992BD2 /* React-jsi */ = { @@ -14767,7 +14657,7 @@ ); name = "React-jsi"; productName = "React-jsi"; - productReference = 32484BFF36488CC96783EF792DF22A50 /* libReact-jsi.a */; + productReference = 91EA25725FFF249D140E775D023F0228 /* libReact-jsi.a */; productType = "com.apple.product-type.library.static"; }; FD0F4E74C14C4B5B552686BD9576466F /* EXFileSystem */ = { @@ -14786,7 +14676,7 @@ ); name = EXFileSystem; productName = EXFileSystem; - productReference = CB82849F1F6FC462F3A50E932BC8C0EC /* libEXFileSystem.a */; + productReference = C1C9D0C8BFC7D88D5A31B398B7A85378 /* libEXFileSystem.a */; productType = "com.apple.product-type.library.static"; }; FEC7CEE99C30C1292EC32D7E006E4E85 /* Yoga */ = { @@ -14803,7 +14693,7 @@ ); name = Yoga; productName = Yoga; - productReference = D6938FD59A2A273E2C6B63F1BC024D35 /* libYoga.a */; + productReference = 51AC96BADB4666318F48A67EE9D1E934 /* libYoga.a */; productType = "com.apple.product-type.library.static"; }; /* End PBXNativeTarget section */ @@ -14823,7 +14713,7 @@ en, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = 983471F60B05255D89C4BF1672A379C5 /* Products */; + productRefGroup = 475A3A43E890DBD5493F0236FA4CE5BA /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -14856,30 +14746,29 @@ 21B91730AA56171E7B635E8AFB2A7F3E /* JitsiMeetSDK */, 427A5566E42596B2649019D00AA80F10 /* libwebp */, 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */, - A1493789C31DFF041EDC0C5BE13BA00E /* Pods-RocketChatRN */, - 87A5FD7A6049AF157764B6079B1EE113 /* Pods-ShareRocketChatRN */, - 29853B24544C7926C2BFC70C42760675 /* QBImagePickerController */, - 04C5C3D37D3EB282EFD1E2A2122B9429 /* QBImagePickerController-QBImagePicker */, + 01CEACD13A714D099CDB2BC08C2FB324 /* Pods-RocketChatRN */, + 734EC5EBBA74D964EF7403F45ECFAD2D /* Pods-ShareRocketChatRN */, + 2E1B62D66A7097B06E8963437D5909DB /* QBImagePickerController */, + 2423D1FB7F3F91E20CF12466E84D7586 /* QBImagePickerController-QBImagePicker */, 9D255DD73ADD1E4565B5CCB665433053 /* RCTRequired */, 123D4D7AC3D41ABC0675B1DB3613066E /* RCTTypeSafety */, 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */, 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */, - 541B734EAEC62BA761D4C886EF4FC968 /* React-CoreModules */, + 82BA924F838C30601D2A813EA338492A /* React-CoreModules */, 9F219ED43F3AEA000562B9BCFD624DDD /* React-cxxreact */, F7236D5BFD42DBEDF2652D4E47992BD2 /* React-jsi */, B81CA3A3A63C0085E4085060FE4DD9FF /* React-jsiexecutor */, 115FC7605B6A0F6044A879F6EEB7DD99 /* React-jsinspector */, - 59D7DEBEE2A5AFB4A70211E96873E983 /* react-native-background-timer */, - 303D154AC7C4E1DB362014D843A75377 /* react-native-document-picker */, - 6EA8C542D237B6C3582C6CD2CF9DBA96 /* react-native-jitsi-meet */, - 5C9A8A893D5CFCE5F284C62E8BD0F139 /* react-native-keyboard-input */, - 8E266A85C21F3B00E0A4951D5F0E09DC /* react-native-keyboard-tracking-view */, - B143863673452F4D5E000E2997B3651F /* react-native-notifications */, - E0B018EB633DDF12D963E58CA1CDB18E /* react-native-orientation-locker */, - 5670B9D7F60A308B44938F9FAB576F8E /* react-native-safe-area-context */, - 2805838904E98AA8807CBFDCC32F2AE0 /* react-native-splash-screen */, - 49A20CD2A4D337B7A85D4498997FD6ED /* react-native-video */, - 0D5E898FF62B3A40F7C391BA01E3A076 /* react-native-webview */, + 42BD655FCD2598C4D25D7B895932A77F /* react-native-background-timer */, + D49B9B80A7B1F27C491DFA81E54E6CF7 /* react-native-document-picker */, + 06DEC3D70695800506D48892FE4C06C4 /* react-native-jitsi-meet */, + 93C5B1FB74974DD045F6674ABFFDD408 /* react-native-keyboard-input */, + 0A839CF1E1DC111261AED3D86F9A04B0 /* react-native-keyboard-tracking-view */, + 7771CBBD8DE87850E7FDC2BAA331122F /* react-native-notifications */, + 586C843030CBA8901E569AB3D2F76867 /* react-native-orientation-locker */, + A3E6473348261FF8E0036D77598A7883 /* react-native-splash-screen */, + 864F908B842632C53102364B908D850D /* react-native-video */, + 52B496375B47BE24C88A169CA30D0DEA /* react-native-webview */, 7135140B597489F3FE9D0A6D1FADD9C7 /* React-RCTActionSheet */, 7F28D4475D7DAD9903F7E6044DD921C1 /* React-RCTAnimation */, 2E2ABA11C27993D4CDD5DA270C4B75F1 /* React-RCTBlob */, @@ -14890,62 +14779,88 @@ E49E330A27425F89DE89516B2F50AAE9 /* React-RCTText */, BD7B2D8FF0ABCB89D01F6E21D5364678 /* React-RCTVibration */, 6DE003F64B133830B9AB9321298DAAC2 /* ReactCommon */, - 31642F9D9703DB0EE0ECE8EE477DE676 /* rn-extensions-share */, - 48A082BED63E227E6247A0541D876B43 /* rn-fetch-blob */, - 7971E9EDE82F3534DAC43ADF07514C4D /* RNAudio */, - 96BC9B706EE73069F199C64E2D477638 /* RNDeviceInfo */, - 2CBADBAF1891263102225816D0B97AA0 /* RNFastImage */, - 462F2792E1383810DA255DC15CB8F942 /* RNFirebase */, - 998EB74379168C52658B6543889D239F /* RNGestureHandler */, - 5285479282A796511D8530E65EC983DF /* RNImageCropPicker */, - 880920CE33AF3DE5A35090F9234DE5C7 /* RNLocalize */, - F4A43BC5CC1CE68C79792AEBBCE9C138 /* RNReanimated */, - BC730040B89735D99427DBE0EDAA828E /* RNScreens */, - 726A1DAA8BA43A59037E6DD0759CCBCA /* RNUserDefaults */, - CD87ED5DE5F49418BF7FB90FCF9C2713 /* RNVectorIcons */, - 41B2EC6C9E2D84CDC87C341E2314557C /* RSKImageCropper */, - B413ECF06F2CDCADFB85C45E9A5FEA2C /* SDWebImage */, - 4205FEEC138F0BD3914F1371913BA87B /* SDWebImageWebPCoder */, - 00A1152257C714469E09BE277AC19E70 /* UMBarCodeScannerInterface */, - 874E2550FB0B01C8D0337694A6A60B49 /* UMCameraInterface */, + B84B55116AE8D2FC32258CFFF2972E1A /* rn-extensions-share */, + 354080E72782177DBAB3CCEC8A61DF26 /* rn-fetch-blob */, + 1D8ED4A20867A7DBE943508D13C7FCB6 /* RNAudio */, + 5B9C887470B06C308DB225E189F87B0E /* RNDeviceInfo */, + 98F57C9A3FB6F5E9C1D7242BBE675E8D /* RNFastImage */, + 72831AB9D90A45024AFD8489D0CEB6C3 /* RNFirebase */, + EE96A92842C7DB9F8DD7593EC0B8D0FE /* RNGestureHandler */, + BF4AABB64D09DEB00ECF19B09D06CCD8 /* RNImageCropPicker */, + BF663682387D1F23ADF217037A1593FD /* RNLocalize */, + AC9FFACDCABA4A7F5721FB719571B81A /* RNReanimated */, + 0E27C1D2919A1336E4EED2093FE67ADC /* RNScreens */, + C044C5A98E3D4C78D88D46C8E6C24CE1 /* RNUserDefaults */, + 743B4DEB68D23793521F266C0241382A /* RNVectorIcons */, + 4DDE5693A87611C05EBF117455A2FB9F /* RSKImageCropper */, + EB1AFC730F005065E951DE8E8F6826B4 /* SDWebImage */, + E90B06E472DDA9583C2227DCEBFF5145 /* SDWebImageWebPCoder */, + 18CEE6DA46F6A35B632E30ABDA5F0368 /* UMBarCodeScannerInterface */, + E9F5838E12E25D54BF4A88364E6D55AB /* UMCameraInterface */, 458293E00EF1C1F42778F9425AD34AA4 /* UMConstantsInterface */, 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */, - A9B4B98188B0E2FD6E1A5661E21B6BEC /* UMFaceDetectorInterface */, + 576DA68F0B73651A1A5891E1E575843A /* UMFaceDetectorInterface */, 7825F222F53EF434DE74A6C6FAF290E9 /* UMFileSystemInterface */, - 392A9C558B900FB520CA2EF39651DB54 /* UMFontInterface */, - C92C2B867A1BE634174A3C47980091BC /* UMImageLoaderInterface */, + 69A8731022935CD8A0051D815C1867A8 /* UMFontInterface */, + C539BA294CDADF056F9D91ECDAFC2FF6 /* UMImageLoaderInterface */, 5C53A3A5621162049D9B4399173FAD68 /* UMPermissionsInterface */, - 6CAFCD3C8DDBA20EE5B4794529B7FDED /* UMReactNativeAdapter */, - 86D7BBC6168AFCB7AE1798FE9AD97E10 /* UMSensorsInterface */, - 9EEC085848ECAC465F5B376A4C29A4EC /* UMTaskManagerInterface */, + 97F64487E3A3BD041F3D7CC6460EA688 /* UMReactNativeAdapter */, + 0F1510CA64D3BD5A32C5357D5CB788FD /* UMSensorsInterface */, + 828EDF29E4284793D2B3360CBCFFD7A7 /* UMTaskManagerInterface */, FEC7CEE99C30C1292EC32D7E006E4E85 /* Yoga */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - C138210D0CB6DA16619D1C1B324B12E1 /* Resources */ = { + 62835BD0654F6E36AFDD931502B46254 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 37D12DBA9250E79329F84490C2ED65B9 /* de.lproj in Resources */, - 2E12BB5A24E6D17091504210CEFE2EE1 /* en.lproj in Resources */, - C98D61FA61340EDDCBF9A317051EF5C9 /* es.lproj in Resources */, - 2C83F8C70F93C8127749DE41E4BFFE91 /* ja.lproj in Resources */, - ADD9AB670AE978846E04C58C7762ECF4 /* QBImagePicker.storyboard in Resources */, - BC1BD90CF447DEDF3107AD7C8F0AC1E7 /* zh-Hans.lproj in Resources */, + 5D36C63A37E823B89AAB569ED5ED35FA /* de.lproj in Resources */, + C2B30862E5A04B45BB4CA5AF70899963 /* en.lproj in Resources */, + 74784B99C1D415BBD5E340C94790771D /* es.lproj in Resources */, + AF26D3721EC5B32FD3C4296FF0E9B3A2 /* ja.lproj in Resources */, + 12EAAB51DD60C1566B3144F0C3682C5B /* QBImagePicker.storyboard in Resources */, + B5F9CF4280F9F25C03855C5C4C2E6908 /* zh-Hans.lproj in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 0B83267575DC7B7C1594137DE29AE45B /* Sources */ = { + 05029FC324637F0980CAC79BF11BABBB /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F41E900084FA21592977FF007C82DE8A /* Orientation.m in Sources */, - A7A026D25F6FD92C8F49D7E06BD8FF1B /* react-native-orientation-locker-dummy.m in Sources */, + 415A1D61E8F06727B6AA3BEA94C9FB67 /* Compression.m in Sources */, + C3A95DB9763C9376D012DEB5338A507C /* ImageCropPicker.m in Sources */, + B9DB5D7FCC93DC54E4E7846B29589F67 /* RNImageCropPicker-dummy.m in Sources */, + 4B7D376C88AAA9EEE1BC5EA7E81239F9 /* UIImage+Resize.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 065134B9280D1300BCDBBC36506B4492 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 813979E524DE1FB65D5C77C4DC999DEC /* RCTVideo.m in Sources */, + 986352EF8FC0F7AA7FB688747682E76D /* RCTVideoManager.m in Sources */, + B9BA03782C529AAE1D395BDB2AD1BF2D /* RCTVideoPlayerViewController.m in Sources */, + E83F2B21A9BA6422B24618C9BB1584A3 /* react-native-video-dummy.m in Sources */, + 95483100E9100741D75C9EA5E0C7AA3D /* UIView+FindUIViewController.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0DD389EAA57B291ACA61000E9AAAB5AA /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + CC4A7D31CE59889AC9FEF68BC9C0071E /* FFFastImageSource.m in Sources */, + 0FE4E1BB172C833072EE01A4D5021059 /* FFFastImageView.m in Sources */, + AB5088155ED951C7FD8AAF83A8E9D712 /* FFFastImageViewManager.m in Sources */, + F587C46ED76DCE6F8C5A2A6446F8C0C9 /* RCTConvert+FFFastImage.m in Sources */, + 96C83EFFA6F79A96FEE6BED5EF788142 /* RNFastImage-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -14984,141 +14899,12 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 18BDB9B3E2DAEF37CEADA771F87D5AB6 /* Sources */ = { + 1B69B1511459416D77FD34A48A63867F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 9D7A2611F36B7955207444B5443A47EE /* RNFlingHandler.m in Sources */, - D135449B164D38311EC7CC87128FBDC1 /* RNForceTouchHandler.m in Sources */, - 73049461ADD258899179139C9863A3BF /* RNGestureHandler-dummy.m in Sources */, - 51679B12D6DCCE711F03F551E52D6A9F /* RNGestureHandler.m in Sources */, - 54F82B8C1F0C7543143C8606F851C861 /* RNGestureHandlerButton.m in Sources */, - 78DE67B45F339DA196BB808123929918 /* RNGestureHandlerEvents.m in Sources */, - 87DF5F5C3A81BFB97E558154835A7721 /* RNGestureHandlerManager.m in Sources */, - FF6407EABDABB2C54224A6FF6FA76999 /* RNGestureHandlerModule.m in Sources */, - D9866C49B1DCDD25140412F9A726EF29 /* RNGestureHandlerRegistry.m in Sources */, - 5F42A288B16A5ACA9FD5EB9080CB6A57 /* RNLongPressHandler.m in Sources */, - 4D4215373234F525515C4B90FB909F20 /* RNNativeViewHandler.m in Sources */, - EF33936FDE78675F7E18FB6B98582C9A /* RNPanHandler.m in Sources */, - C7212782077EA2A5E279D3BEFBEAFF8F /* RNPinchHandler.m in Sources */, - FC1BC59CD18DF2F705CDC607AD5A9BC7 /* RNRootViewGestureRecognizer.m in Sources */, - CCA47F72CE8777C00306E5A9F9833A27 /* RNRotationHandler.m in Sources */, - 786D43389C40CF3C88DDC9236259B1C1 /* RNTapHandler.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 1A9D239F2777D665DDCCB9291BCC29AF /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 9A6E9BAB59FA74125780FA1DC4844EF4 /* UMModuleRegistryAdapter.m in Sources */, - E870EE028585BED0FA91824824202524 /* UMNativeModulesProxy.m in Sources */, - 2B8706AFEBA56B16FF391E01B81D2269 /* UMReactFontManager.m in Sources */, - 3AD20DDE3412D157292046E18BAF6BF1 /* UMReactLogHandler.m in Sources */, - A31C52F4721B38C99C9BC7A6A64E7847 /* UMReactNativeAdapter-dummy.m in Sources */, - 44EA54AAFF1F64DBE3072B8D1812418A /* UMReactNativeAdapter.m in Sources */, - 74C4457E703A0221A86BC51224C34F34 /* UMReactNativeEventEmitter.m in Sources */, - 1DA909A04665B668DFF9B85357C6B059 /* UMViewManagerAdapter.m in Sources */, - A0B50A62EAAC30EBEA3F8F613C49C05A /* UMViewManagerAdapterClassesRegistry.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 1CCC7CD972E5FD6CB55798BB4190C67B /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 99FA8D90B34730925CF4BA8C9893801D /* RCTConvert+REATransition.m in Sources */, - C9B36A281AF292593D7AC552EF255DB2 /* REAAllTransitions.m in Sources */, - 34427820C80AFC44664E60000D28F255 /* REAAlwaysNode.m in Sources */, - 7D7955B85A6F121668375E01460DAEBF /* REABezierNode.m in Sources */, - 0ABC577506D0088968AE59872E942F81 /* REABlockNode.m in Sources */, - C0981B0267F4BCF2D6333CB15CED7096 /* REACallFuncNode.m in Sources */, - FD5DFACE1B34CCB1615ED9AC00BAA554 /* REAClockNodes.m in Sources */, - 6AD787070E9F50E05FE1BAE47074CA29 /* REAConcatNode.m in Sources */, - FF59005A1DD93925414CEEF74AE1A8E3 /* REACondNode.m in Sources */, - 645D1CBA960966B8B12DEE4B27FBFC0D /* READebugNode.m in Sources */, - E55021EB9B2A6EDFB019D0D699C44DC5 /* REAEventNode.m in Sources */, - 75239529D9A61FE779143E836E4C4EAC /* REAFunctionNode.m in Sources */, - 2D6958CEE9B32061DF2136222B5B82BE /* REAJSCallNode.m in Sources */, - C83174A67DB582522A9251CABF784C55 /* REAModule.m in Sources */, - 7D8644970A1D687E8DE490D081CDDBC5 /* REANode.m in Sources */, - FCAD8ED69DEBCEE3F037EE691D368C39 /* REANodesManager.m in Sources */, - 555C96D572170356B9BEB1823F3D0BD0 /* REAOperatorNode.m in Sources */, - 580D54D7C2205BD1D610FF3F526ACB10 /* REAParamNode.m in Sources */, - 401EC25DFDB5E510EAB23B611354C21B /* REAPropsNode.m in Sources */, - 9D1B7D7C384422E5F9AC1AFB05B0673A /* REASetNode.m in Sources */, - FD17116B52C64A0E9C5741A4F4635D79 /* REAStyleNode.m in Sources */, - 579AB54AE83E0BFD455AE2FBA3441A1D /* REATransformNode.m in Sources */, - 5EF356ACED46204A70FCA25F1671A225 /* REATransition.m in Sources */, - 2D8BB2B921F3490DAD4B5241FC824145 /* REATransitionAnimation.m in Sources */, - 1C1554A37747D7499BD377FAA9E50D24 /* REATransitionManager.m in Sources */, - A062043FC607B07FAA0728CD52647A6D /* REATransitionValues.m in Sources */, - D0EA3962EC9A57BA8A260983B63CEC0D /* REAValueNode.m in Sources */, - EE7C51FDCFC419BA93E71E670E223023 /* RNReanimated-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 1CE6A0ED9A050179B887A6D8DDE81DC0 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 5350B6EFDA136CA48815A7BFCE49E4A1 /* NSBezierPath+RoundedCorners.m in Sources */, - A602AA8293A289F43D9A18AFB17E770B /* NSButton+WebCache.m in Sources */, - E074C7DCF9FB91E42D39654684BF0A29 /* NSData+ImageContentType.m in Sources */, - F4C65C76BA74C87BFF6CE6ACFFEBBDD0 /* NSImage+Compatibility.m in Sources */, - B049DD8BCF695212F5AD90B8B67F4258 /* SDAnimatedImage.m in Sources */, - F80AAF3FA3447E8E8438606490A61D63 /* SDAnimatedImageRep.m in Sources */, - 61C31E9A82D6E552394CD1B1A1E0C181 /* SDAnimatedImageView+WebCache.m in Sources */, - 5B1FFEC3DCD784AF75853AAEA0515FC6 /* SDAnimatedImageView.m in Sources */, - 33428870389843BF79428AEDCD7AEFD1 /* SDAsyncBlockOperation.m in Sources */, - 8A1536B0BB44EB52B90F994FE7C03CFB /* SDDiskCache.m in Sources */, - 11EC5A86AE278A96E8EF6BF5E47C58E4 /* SDImageAPNGCoder.m in Sources */, - AE7DFDF9C67FD8AAF3A3E5046353CCCC /* SDImageAssetManager.m in Sources */, - B034EC9A1620FE8A43A1D62184C02697 /* SDImageCache.m in Sources */, - 7DF6EE30D791A79DA94E4D4E0B96A2A7 /* SDImageCacheConfig.m in Sources */, - 66D8BF5DB0ED4161A11F83B0B4F3DB42 /* SDImageCacheDefine.m in Sources */, - 1126108A0D49153194E71E545AF82C89 /* SDImageCachesManager.m in Sources */, - 93975F2A43C8B6A57CF4585534F15702 /* SDImageCachesManagerOperation.m in Sources */, - 0D03773A91DBE52FA4D4AB012AF0570C /* SDImageCoder.m in Sources */, - 065DD53618F66BAC0045B00AA125E6A2 /* SDImageCoderHelper.m in Sources */, - 97E08713886A4A374835B115230D389B /* SDImageCodersManager.m in Sources */, - 453BBE36F66DA2B77B6A4AABF0C19F86 /* SDImageFrame.m in Sources */, - C405F2473286108E46E154DE389EF3AB /* SDImageGIFCoder.m in Sources */, - 300ACDBD332F8F4BE41870A9DC765987 /* SDImageGraphics.m in Sources */, - C8CF47214D9370780DF282709233F2C1 /* SDImageIOCoder.m in Sources */, - 223DA4ECF08214E912C7BDD77B4CA54F /* SDImageLoader.m in Sources */, - 0863557C2EC08B1457257F987FA3E683 /* SDImageLoadersManager.m in Sources */, - A554A0E915AE9038056801F95122E188 /* SDImageTransformer.m in Sources */, - 801BA1A20B42239767B084DB6B851E23 /* SDInternalMacros.m in Sources */, - 02F4E7ECCD1C9380DB0A163B3045BC1D /* SDMemoryCache.m in Sources */, - C7EF92A4691697BE21EC4FDCB179DA55 /* SDWeakProxy.m in Sources */, - 6245184C3F3F969F1DD63C625C3173CD /* SDWebImage-dummy.m in Sources */, - DEB6004153AB4913A2E6B35EB1BEBD21 /* SDWebImageCacheKeyFilter.m in Sources */, - 042B360D67BC392236DF27909620BDB1 /* SDWebImageCacheSerializer.m in Sources */, - 83A7598AFBC9F9F40C6D6AE20D2D6A57 /* SDWebImageCompat.m in Sources */, - 1624131AAB4DF8C589CCE5543139FDCA /* SDWebImageDefine.m in Sources */, - 060FB4C682E1BCC5C38D9C093A0D68AC /* SDWebImageDownloader.m in Sources */, - E4CE6086EA05A42D63F70A0174BD44B6 /* SDWebImageDownloaderConfig.m in Sources */, - CD8537AECA54B05E645C65629306705D /* SDWebImageDownloaderOperation.m in Sources */, - 896B05EFDB2025BCE55812B2A7033E55 /* SDWebImageDownloaderRequestModifier.m in Sources */, - 349A42986C56EA0C8FD5DAE5292293B5 /* SDWebImageError.m in Sources */, - B69B5C3335C5B61D37F8047AC4CDE4C1 /* SDWebImageIndicator.m in Sources */, - 4CB94C74E021C81CF64B0E2CD753533A /* SDWebImageManager.m in Sources */, - 1545AAE381671B55F1D0747BD5246565 /* SDWebImageOptionsProcessor.m in Sources */, - AA9F8D854A546813EECDBC68A01F1B55 /* SDWebImagePrefetcher.m in Sources */, - 38DE5C7EC8B865828A2C55DDA20DC4D2 /* SDWebImageTransition.m in Sources */, - 4FD18DAAC52AF555FFFAFB81E6A7A59E /* UIButton+WebCache.m in Sources */, - C6A042C95745BB0B6DF16A0CBC9A3B70 /* UIColor+HexString.m in Sources */, - D84224686031BF787820EE35F6F97E9C /* UIImage+ForceDecode.m in Sources */, - C758972A92A8F8BE8A116D87D7FA2B6C /* UIImage+GIF.m in Sources */, - 5E28D114FBF2B19397D976DFE3BD3D67 /* UIImage+MemoryCacheCost.m in Sources */, - 3A6D6636D6B7431EAAA30B3666A3916E /* UIImage+Metadata.m in Sources */, - 5686961AE8248819AEDE2B72C28A3D8E /* UIImage+MultiFormat.m in Sources */, - 9CE010BED3CFFFE64A74A8E8A39CCDF3 /* UIImage+Transform.m in Sources */, - 748F9A036CB366852DF989F8C9E7A4A0 /* UIImageView+HighlightedWebCache.m in Sources */, - 5184F2C9010915B64F59C26BBF1D1106 /* UIImageView+WebCache.m in Sources */, - 0D7EC153341E4C5A3E467664EABC0A3B /* UIView+WebCache.m in Sources */, - B84FD29B2E0A9C2F3714D67342A4A34F /* UIView+WebCacheOperation.m in Sources */, + 9EE096AB3039E309BE9F295CCC7527FE /* AudioRecorderManager.m in Sources */, + F777CB36A3DB922C16D4E0DF9E869D02 /* RNAudio-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -15151,6 +14937,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 249AAE4E9B23040116CA5441FBA57779 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0D25E0439F577A20878487ED34A7674D /* react-native-splash-screen-dummy.m in Sources */, + 9FF37705DD6F36F8D0B31B5DCCF161F3 /* RNSplashScreen.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 292310AC1ACDD8EBFEF69008F27A606E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -15184,15 +14979,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 2A12F936471A5FC9CB676E80B356546B /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 560DC5FDCC5F3B6EC9E0A614FF70DF07 /* AudioRecorderManager.m in Sources */, - 4D32A6CCA77396C2A9F756475D7086C7 /* RNAudio-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 2CDE3F0CCE65CA820AFCA93C67376E79 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -15202,31 +14988,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 2CFA664E90108021F9AB8079682F0452 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 85527E4C0F86A8DA7C04CAEB07E66EB0 /* RCTVideo.m in Sources */, - E9C4E0ADC34CE4CD1415EBACBA46190B /* RCTVideoManager.m in Sources */, - 471C0136D16465639B176B26A70F9895 /* RCTVideoPlayerViewController.m in Sources */, - A2D312CDE2CA43873C1C0E190F7DBC14 /* react-native-video-dummy.m in Sources */, - 3F4C77BB07E74CBD3EEBF7B3070657C6 /* UIView+FindUIViewController.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 2D1A19DF3654D9738F8D552253F6B88F /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 90E94C04A7E0488C23AB65A24878F13B /* react-native-webview-dummy.m in Sources */, - 04329BCFD16DB8227B31295FDF6D12F7 /* RNCUIWebView.m in Sources */, - FBC1CF7007BBE748220B4ADF7BA8C6A3 /* RNCUIWebViewManager.m in Sources */, - 887CB065B3EDD6200222884879217DEF /* RNCWKProcessPoolManager.m in Sources */, - FDDB016245FCDC35E87D4FED5CBB5B4A /* RNCWKWebView.m in Sources */, - 0B8C6A8222BCBAD1BB47A2FBB5E67E23 /* RNCWKWebViewManager.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 31BEF1753048A4A40945BE9582F700C9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -15255,6 +15016,29 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 3491F3A4B0FF9F38D1CC977B523739ED /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 6963328DDFC9434C2CEA20638C4526A9 /* RNFlingHandler.m in Sources */, + 6A0D2748750478853A7971544FB2360D /* RNForceTouchHandler.m in Sources */, + CF3406D791E19891BB828FCE9638F000 /* RNGestureHandler-dummy.m in Sources */, + 3367B5E34D0DBAA5AEA10C99C612E241 /* RNGestureHandler.m in Sources */, + F5B0A1D10B21B41373A367AC3A1572AE /* RNGestureHandlerButton.m in Sources */, + C3B18638E36B914CED4C0B2A8633B019 /* RNGestureHandlerEvents.m in Sources */, + 337562C487B9E34D6DE140597FBBEA0C /* RNGestureHandlerManager.m in Sources */, + C733BC88163BEF1A8F0C336871708485 /* RNGestureHandlerModule.m in Sources */, + 689F5AEB8C37AA795EDF57DE860770B3 /* RNGestureHandlerRegistry.m in Sources */, + DEA6E00F5D99B6BA8F80C9B63103C86B /* RNLongPressHandler.m in Sources */, + B0C09BB7F88322A34648183983BEB7AE /* RNNativeViewHandler.m in Sources */, + 2A7A8253FBDC3B1262EBDBD9CD028984 /* RNPanHandler.m in Sources */, + E93C93B563929FA6F35750D095DC6D42 /* RNPinchHandler.m in Sources */, + 0C8B30504506B3EEA25F1D7199EF6C05 /* RNRootViewGestureRecognizer.m in Sources */, + C6FE9F098ADDCD0A85E2BB5765A561CD /* RNRotationHandler.m in Sources */, + 2AB52CCC40B0A20A5F5068FF4F9A7A97 /* RNTapHandler.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 35C9679D52E2954B009CEECE76FE02D5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -15275,29 +15059,27 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 450E6674506F10BB73DFA77DCE09AFF5 /* Sources */ = { + 3DA4D2BB3A25CE17469AFA0C5BDA74BA /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - ECD4964B93D20D97D23A2B65ABBCB01D /* QBAlbumCell.m in Sources */, - C204A79EE76C7899C25CEFECC0319A0D /* QBAlbumsViewController.m in Sources */, - D5A02C8F5068443894D6E5036DD791C6 /* QBAssetCell.m in Sources */, - B6DE0EA13984E418BB71E9C66CB27791 /* QBAssetsViewController.m in Sources */, - B32243CCA74E8A6D7B41976EBBADB34E /* QBCheckmarkView.m in Sources */, - 0D0E08952A55ADEF9B799F0FE8168D9E /* QBImagePickerController-dummy.m in Sources */, - D5ABC2CBB30B9BD0D41AAB8E417E6927 /* QBImagePickerController.m in Sources */, - 52C3364EF02A8F271D95D5A184391032 /* QBSlomoIconView.m in Sources */, - 8457E650244444D1AB52B20F9118C672 /* QBVideoIconView.m in Sources */, - 8158FD3496CF1F4B9B686F7D45CB01EB /* QBVideoIndicatorView.m in Sources */, + 54D4F6C2F89B67BA585309B8959B2238 /* RNLocalize-dummy.m in Sources */, + D3D3950E865EED7F402B6FEC3CEFCC22 /* RNLocalize.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 47E9AD35E52D8988DE422D1F1ECB5ECB /* Sources */ = { + 3E0375161A4C97F21897F70DBBF50015 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + CB6860CC7CCE1A8235426BB0D7A8C408 /* Pods-ShareRocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 49996D66EBE28631F1B259F9DA73300A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 71A6A6CF25B2236EA8C71282FC82E952 /* react-native-document-picker-dummy.m in Sources */, - F310BE74BE413923D66180BC9D7DB03D /* RNDocumentPicker.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -15349,13 +15131,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5850A6128655255E06A9647034C28C2C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 59150DE2947CCE694080A8BB8DA6CA8A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -15509,17 +15284,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5B687A4292712B349779E42996CC6F9B /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - AD47CE5C5BB9EE1563C6666B5FD1D05D /* Compression.m in Sources */, - 09E2BACD05B732C4F6DFAD63236E9ADA /* ImageCropPicker.m in Sources */, - 999E5AA9B81CB7D9F51034F208889222 /* RNImageCropPicker-dummy.m in Sources */, - D029307FF7175CC7E798A53A5329044A /* UIImage+Resize.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 5C64A6B2A994E17969AD615953A94573 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -15684,16 +15448,26 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6AAD175F1B5EBCFC591D2CB9041D4262 /* Sources */ = { + 63C5F7C64B91541FB8FD2306B1B23263 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F94A277A7B2E54EB64472F6CCF63FE68 /* Color+Interpolation.m in Sources */, - 9BAA1751FA036A5A6F99C578D4C8EC4C /* LNAnimator.m in Sources */, - 8EB62CE7DA186C62D6122B9A44417281 /* LNInterpolable.m in Sources */, - 3C9B615C35CAF8AB3D4C7728DD1EB147 /* RCTCustomInputController.m in Sources */, - 22E0A4D28F178D6A4EF7C9166419819D /* RCTCustomKeyboardViewController.m in Sources */, - B972C9D25813D77FB9AD4ED9EC505F1D /* react-native-keyboard-input-dummy.m in Sources */, + 135CAD5107C8A76102F86956026C226E /* Pods-RocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 6683F7C72E39C3E5701755F294ADF18F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BC9FAE508B76E1CFD09E5D0DC614549B /* rn-fetch-blob-dummy.m in Sources */, + 51B1537EA9A2774DFAA5C9CCE30C1AD7 /* RNFetchBlob.m in Sources */, + F461A6CD6DDA2A3B94B6A7DF3025FAC0 /* RNFetchBlobConst.m in Sources */, + 3A6B6F3DC9C032C621427568501BB58D /* RNFetchBlobFS.m in Sources */, + EB95D5462B66C8CF8FA836B71DC20022 /* RNFetchBlobNetwork.m in Sources */, + E8E90EE4CBF2FF2E51D99D1F64BBC0CF /* RNFetchBlobProgress.m in Sources */, + AF022183DB5643AA88BA1630D660D050 /* RNFetchBlobReqBuilder.m in Sources */, + 15AC52CEC15E566EE5B2BC8C2AA552D0 /* RNFetchBlobRequest.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -15720,6 +15494,51 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 6D341C9AACE2B507466D82192D1271DF /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E39BDCD2741BFD90D1A0824A14908949 /* DeviceUID.m in Sources */, + 6D82A28EC10650BD00BA5932A280A416 /* RNDeviceInfo-dummy.m in Sources */, + 37567371A8063B507807E269926FFD79 /* RNDeviceInfo.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 72066AA767A8DF8E3DA3CF71969EB07B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 7E99C537DA1860FCF8A01749AF2170A1 /* react-native-jitsi-meet-dummy.m in Sources */, + 6A08091FDB521988F9EDCC9723456CA4 /* RNJitsiMeetView.m in Sources */, + 9AB4F6875C92E1798A304A926741343B /* RNJitsiMeetViewManager.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 74839A656D51ACFC038FD6652AC16783 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + D7F108D103506455129DE40090117A9A /* CoreModulesPlugins.mm in Sources */, + 8C7889755432A664D720800616832C66 /* RCTExceptionsManager.mm in Sources */, + 5B67AD91E66C582B344475F4947E8C97 /* RCTImageEditingManager.m in Sources */, + A57FBA38708D3D49E038F09E3190E0D6 /* RCTImageLoader.mm in Sources */, + 5B0C95E7BF3ADBE459D5E0C31135175D /* RCTImageStoreManager.m in Sources */, + E7621D8D8EBCA46BE9FBC7B1DB679578 /* RCTPlatform.mm in Sources */, + B14F855C65B222E64F60DADE67D8F328 /* React-CoreModules-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 75936E8EEDDEAA21F02F3F32FCFA70E2 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 7831753803D3307385C9EE8489298C10 /* KeyboardTrackingViewManager.m in Sources */, + 6D809E0A2AFBF0B3E07F94273FC75917 /* ObservingInputAccessoryView.m in Sources */, + 5E8B4454F4BDC73640CC19E4CBC814CE /* react-native-keyboard-tracking-view-dummy.m in Sources */, + 778A5738B819A022DED1FE00F7C74ABF /* UIResponder+FirstResponder.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 7A21E9BB5F78DA34C6E6E6A61EE7A09E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -15744,6 +15563,28 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 7F1B7E8C0D5FCB3036CF23542B70F457 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 79782026EB4A7CFD97D18887D4A69187 /* RCTConvert+RNNotifications.m in Sources */, + 1DE82197ED50976304DE843A50E1FFA0 /* react-native-notifications-dummy.m in Sources */, + D7D7CD8789416D45E1DF082CE613AB6A /* RNBridgeModule.m in Sources */, + 0A8D18089419F6AB4EE1A1D25EF185D2 /* RNCommandsHandler.m in Sources */, + 790B06A400EAEF418D89FA213589513E /* RNEventEmitter.m in Sources */, + 74FBF6D41E92A7AF6B12A11DDA54DBF1 /* RNNotificationCenter.m in Sources */, + 8B27DF2F5D797272544439898E34E729 /* RNNotificationCenterListener.m in Sources */, + 97E790A3FC1FA90CA1CCA5B216E62821 /* RNNotificationEventHandler.m in Sources */, + DE727A9FF9D83EE77DD68BFF31C0B154 /* RNNotificationParser.m in Sources */, + 3FE34810EC8E7C6F6D4C43797EE287D5 /* RNNotifications.m in Sources */, + A496FF8B0833F966E8C4B8DACA462DDB /* RNNotificationsStore.m in Sources */, + 7927B8A57D7C0B8F77737CB047B3209C /* RNNotificationUtils.m in Sources */, + 0387046D62434788B32E1F10C4F5AEC6 /* RNPushKit.m in Sources */, + FE2D0D5ECFB51090655892E854841D8C /* RNPushKitEventHandler.m in Sources */, + 2F8CB5BBEDD63D2BCE8349B1E6EF736A /* RNPushKitEventListener.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 806638F5A0EDF2DC21E8AED6308618C9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -15758,35 +15599,121 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 853272F721EA9819F4779D2C68D0F352 /* Sources */ = { + 8163BB4CC7545290E648ED81BEC4B725 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 996E068909443195C72D4CC3501ABDC6 /* react-native-jitsi-meet-dummy.m in Sources */, - D1B10F4264708A8505127D347E0AAF69 /* RNJitsiMeetView.m in Sources */, - A38317FADF375FCEB9F1E391DF5B6903 /* RNJitsiMeetViewManager.m in Sources */, + 0BD1FDD30C33313EC0F871D7D42B6609 /* CGGeometry+RSKImageCropper.m in Sources */, + FC75E77295BBFB0847AD3C907CD14E86 /* RSKImageCropper-dummy.m in Sources */, + B93DB7B6014BD4CFE1D1BAE72F4CFE81 /* RSKImageCropViewController.m in Sources */, + AFDFDFFCA805C92A81F86DEA7679902D /* RSKImageScrollView.m in Sources */, + 038963D60B4F377F74F832BB95ECB625 /* RSKInternalUtility.m in Sources */, + 7C7CADD66F525289C297AE184A6FDF5D /* RSKTouchView.m in Sources */, + 5789E04C07883D3AD048CF4E89B500D3 /* UIApplication+RSKImageCropper.m in Sources */, + 0919A5995AF8D80A374A0EB1301D0777 /* UIImage+RSKImageCropper.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8641A32478488A27F424D9143684B58D /* Sources */ = { + 83364DC902AB7BC0CB4FBAE7A8117BC3 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F63E9D62AE46B52D476D9C19BD12384D /* SDImageWebPCoder.m in Sources */, - 1D5577E2CEA3D6D0C9FF26D1002133C3 /* SDWebImageWebPCoder-dummy.m in Sources */, - 6DA0FDF01E36A0086FEF24EBB996C56E /* UIImage+WebP.m in Sources */, + CA7077D134A2BEF1B76EFD8464D7170F /* NSBezierPath+RoundedCorners.m in Sources */, + 5ADD911E10B63E8FC05A01004C3540DB /* NSButton+WebCache.m in Sources */, + B42156B732ECB50C8C3D80656704AE49 /* NSData+ImageContentType.m in Sources */, + FCD05FA1FD387EE214716C5DF6B22F15 /* NSImage+Compatibility.m in Sources */, + C721BD6A873D84D49CDD78FD37099BD5 /* SDAnimatedImage.m in Sources */, + 6D3F9876A7B825A3F91F52967D03CB4F /* SDAnimatedImageRep.m in Sources */, + ED6133B6222E081FC679CBDE1EA4ADFB /* SDAnimatedImageView+WebCache.m in Sources */, + 9831CCEEDA0AACB20231D40C03DACDD0 /* SDAnimatedImageView.m in Sources */, + C676CCDB48EA3F533621A7DC149748EF /* SDAsyncBlockOperation.m in Sources */, + 310E3BD54847E2E10F7E89925580B296 /* SDDiskCache.m in Sources */, + F73FA153F050570AE522EEF850B8D52F /* SDImageAPNGCoder.m in Sources */, + 07DD886A3B6C302DC540E880451B8C1B /* SDImageAssetManager.m in Sources */, + 3B765C62CF94BA0069CB9CE33FEBEBE8 /* SDImageCache.m in Sources */, + ABE81D6839086AEE70A51A5594D0CFE0 /* SDImageCacheConfig.m in Sources */, + 6FF758D08BB2E224DB1665885D61A5D5 /* SDImageCacheDefine.m in Sources */, + A26C65DA4E90553ED01198F57B94D9D6 /* SDImageCachesManager.m in Sources */, + BA9B9F43FA5E794B386F4D8FE15B4E82 /* SDImageCachesManagerOperation.m in Sources */, + 72494C26A7F05205DA1CBFA4606E546F /* SDImageCoder.m in Sources */, + F35A872F3BA1F729B506C0713062EEFE /* SDImageCoderHelper.m in Sources */, + D06DCB5DD3A58961A8E8AF6124156DCF /* SDImageCodersManager.m in Sources */, + 68A7DB696C4216A15AE38A20288DE2B4 /* SDImageFrame.m in Sources */, + 26C28223CAC9672D32891C06401D447E /* SDImageGIFCoder.m in Sources */, + A0B21A8FFC448CA07A0173E8065DBA4F /* SDImageGraphics.m in Sources */, + 7265F7B20B99F28D87B5BB1C4DDC3B35 /* SDImageIOCoder.m in Sources */, + 713D5224D5B84D236054CC91E7529C94 /* SDImageLoader.m in Sources */, + 22C2D66683CF0C604D05BA7601355D1A /* SDImageLoadersManager.m in Sources */, + D970D9CBA98D3E5730F5DB4753F5C6D8 /* SDImageTransformer.m in Sources */, + 98A532821AB98B62050BDF90003E9C51 /* SDInternalMacros.m in Sources */, + 8D42EE01C40816C2E740C026F7632029 /* SDMemoryCache.m in Sources */, + C40FD81E5D11B4DA2C7D81B13481887C /* SDWeakProxy.m in Sources */, + 6E4A80096B0B2DB15D266966F413266D /* SDWebImage-dummy.m in Sources */, + B978750E310B1EFC8978F3069655AD8D /* SDWebImageCacheKeyFilter.m in Sources */, + 8863BCB634FC78A220CEF2C4A8D502CC /* SDWebImageCacheSerializer.m in Sources */, + FB4AB320A3A091BA11CB74F37DDCDA88 /* SDWebImageCompat.m in Sources */, + 1BA6E6A24E87466688F0B831D7EB563B /* SDWebImageDefine.m in Sources */, + 78756A15BD7FAFFC65DC14928C77CA27 /* SDWebImageDownloader.m in Sources */, + 412D7EDE677541415E721E69A4AF4D22 /* SDWebImageDownloaderConfig.m in Sources */, + AFAC1BCF2C50C04F7A4E16EEA743BFAE /* SDWebImageDownloaderOperation.m in Sources */, + 308C68231DF020391981C639B9479D3D /* SDWebImageDownloaderRequestModifier.m in Sources */, + 5B8D70A5FDA1638D26417A9E1496F90F /* SDWebImageError.m in Sources */, + BE43CA9847677066725416E42DC62AA2 /* SDWebImageIndicator.m in Sources */, + 9427D44CC1F4CD3C12004EFE5480EB10 /* SDWebImageManager.m in Sources */, + 500F161147E3065DAED82A78399F4A1B /* SDWebImageOptionsProcessor.m in Sources */, + 05F1CF758D876B4C0E3F396645C339E8 /* SDWebImagePrefetcher.m in Sources */, + 92C2AEF73A677FAA099C9FEE64DFAA10 /* SDWebImageTransition.m in Sources */, + B7222026AE68D842EFF653D9C697C8AA /* UIButton+WebCache.m in Sources */, + CC016D11CB0B903371D47E4C999262E7 /* UIColor+HexString.m in Sources */, + 91359B220D66AA1F73007FA3F3D46F5F /* UIImage+ForceDecode.m in Sources */, + 3A05F957841DF8E40F3F912B22F6B427 /* UIImage+GIF.m in Sources */, + 0C1934AE17A9EFB6D9ED06938990C63E /* UIImage+MemoryCacheCost.m in Sources */, + BE8A4D47ACCF56722EDCACB3F75344EA /* UIImage+Metadata.m in Sources */, + 53387FD06762E2FBC84D8FF4C435EB9E /* UIImage+MultiFormat.m in Sources */, + 5D45E31CA233C20BE0B66629C2CC9FCC /* UIImage+Transform.m in Sources */, + 6A37F100601DE67590E35A3D25D821D1 /* UIImageView+HighlightedWebCache.m in Sources */, + DD930A4AA46CFF94437EB53FC9AD23A6 /* UIImageView+WebCache.m in Sources */, + C24B361D2E53B6FC074295653682C2C4 /* UIView+WebCache.m in Sources */, + 92B17D558A523FEFDBDFC18946D5B0D2 /* UIView+WebCacheOperation.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 940C8387B121E0070D3CDEAAC2FEEF9C /* Sources */ = { + 833CF4D3BD6919F9F5C540277C99A66F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 33D36CD4F5C0FFF36474095F79C37130 /* FFFastImageSource.m in Sources */, - ABC98EE345FDDE750005777CCCF68D06 /* FFFastImageView.m in Sources */, - 8FECA6702233F091518FE35B9946E2F9 /* FFFastImageViewManager.m in Sources */, - AE7FEE951368CE6570DA22D040F3C0CA /* RCTConvert+FFFastImage.m in Sources */, - 06E2E887B814FF754A7BAA70540BF60D /* RNFastImage-dummy.m in Sources */, + C75B97A18A335BD8F694E89D55AB022B /* react-native-webview-dummy.m in Sources */, + 129C8C3A5ADA3DF757562B919E58A0B2 /* RNCUIWebView.m in Sources */, + F6DBAD3838DD63791170710A09C3DE1F /* RNCUIWebViewManager.m in Sources */, + 4452BBEA7188E0E6BE79B3B7368E017E /* RNCWKProcessPoolManager.m in Sources */, + 0D4A75038095ED5680F82D9D5E5D245E /* RNCWKWebView.m in Sources */, + F6777677EA9EEFCC41327FB7A3A573DF /* RNCWKWebViewManager.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 8B651CF45112F6C4C7008F4B1014E963 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 3ED2D1ECE68A7F9D6EBD7286DF05D64D /* ReactNativeShareExtension.m in Sources */, + 7C2A67008A35621FBF38CB9C2D078C22 /* rn-extensions-share-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 92D2F8AAD9B5D96AD22BEF010A833C09 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BF729FDC14286C669FBC8B838D63EAE0 /* QBAlbumCell.m in Sources */, + AAFF072BFB3AD8990391E4781B0ABDFB /* QBAlbumsViewController.m in Sources */, + 1FDF48C866CFCF03993FFF72133A70D5 /* QBAssetCell.m in Sources */, + 6D1922AD2D5B53AE36209F7737739C13 /* QBAssetsViewController.m in Sources */, + 1CF4D54E266674B85FEE51F85A316F04 /* QBCheckmarkView.m in Sources */, + 04353AF56EB6D3320214CCA496047903 /* QBImagePickerController-dummy.m in Sources */, + EF0E83F7909A2744CF3999F264F04D63 /* QBImagePickerController.m in Sources */, + 03F89720B7D55FBEC1FE95EFF50DB80E /* QBSlomoIconView.m in Sources */, + 6989C980A34E97C31964B28A28B12E51 /* QBVideoIconView.m in Sources */, + 8CCB58F61CCBA457A9F9AC2F2BD1760F /* QBVideoIndicatorView.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -15819,56 +15746,38 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 9D873A1984C8ACDCB568858EA14494E7 /* Sources */ = { + 9B8C424F098B38F8393E918BC55543BB /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 0B7D4B03B747FC7496075CF5C3F1EE7F /* DeviceUID.m in Sources */, - 17B40CD2612124B8893EFFFD6CA8CC1A /* RNDeviceInfo-dummy.m in Sources */, - 1243F19C7BFBE155D98A3B40D0EA3E5E /* RNDeviceInfo.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A02C69208757216B2866C39CE6C99297 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - CB2C38012174E108527B110642E6F83E /* react-native-background-timer-dummy.m in Sources */, - 876837248C26744303C968C537600017 /* RNBackgroundTimer.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A082AD0B019CA2EF3BA53C291C88B579 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 40DF0EAA19733ABC634FE7A739E38392 /* BannerComponent.m in Sources */, - B6A68DB256FBBB8C836320B6F6B6FC72 /* NativeExpressComponent.m in Sources */, - B18BFCBF123C8BB3F0833317CB2ACF7E /* RCTConvert+UIBackgroundFetchResult.m in Sources */, - 63DEF5208CD7762EF53C76EE6436D183 /* RNFirebase-dummy.m in Sources */, - 0A4E0B89C9B88662FE775302D33EB923 /* RNFirebase.m in Sources */, - 5A4B49AD1E026D4CD9FD7A750F9B614D /* RNFirebaseAdMob.m in Sources */, - 6D19B2B283036AFA055D9D8F34E166DE /* RNFirebaseAdMobBannerManager.m in Sources */, - F39012C84F8349F0C9A57E2201A60363 /* RNFirebaseAdMobInterstitial.m in Sources */, - D732EC744418E40B68FD9AA13FF0886B /* RNFirebaseAdMobNativeExpressManager.m in Sources */, - B624497A75884DC02E99FB820379790B /* RNFirebaseAdMobRewardedVideo.m in Sources */, - 143B5ABD40A50046D46D8C6DC8C1CEFB /* RNFirebaseAnalytics.m in Sources */, - 8840DA01963F101CF90D87A3F13CCDD2 /* RNFirebaseAuth.m in Sources */, - E677CFA6B6E2340D543A441673184C1D /* RNFirebaseCrashlytics.m in Sources */, - 8BC0269A74DD47B38189F02A1A5E8B91 /* RNFirebaseDatabase.m in Sources */, - 8AEAECE87A41AAFC9191A5E0367F8870 /* RNFirebaseDatabaseReference.m in Sources */, - D8860A4F7049B2901B2ACB3B52252245 /* RNFirebaseFirestore.m in Sources */, - E5A419C242215ADEA54A0D357C8894A1 /* RNFirebaseFirestoreCollectionReference.m in Sources */, - BD55A36C37E88AB7E769463168B6BB26 /* RNFirebaseFirestoreDocumentReference.m in Sources */, - 0A64B89016CF92D3CFDFEDBBC0D7E611 /* RNFirebaseFunctions.m in Sources */, - 69625D349BD9A4F3C8CD4F3D996C8499 /* RNFirebaseInstanceId.m in Sources */, - E4A2384718D6430DBDC5945694FB389D /* RNFirebaseLinks.m in Sources */, - 2959BCE52C5C958B87BFF36B8785C3FE /* RNFirebaseMessaging.m in Sources */, - 00DD029D9FFE923EE61E3ECB558508D9 /* RNFirebaseNotifications.m in Sources */, - F15F7B4AA7787C38746E56B283519A11 /* RNFirebasePerformance.m in Sources */, - E3DF79D928558E4A5FE4A376AD5F57FD /* RNFirebaseRemoteConfig.m in Sources */, - 06E99FF8FFD64885E98FB7BE3E1411F0 /* RNFirebaseStorage.m in Sources */, - E1646E6B6F9FA609E070CE29E2DCC9FC /* RNFirebaseUtil.m in Sources */, + 8A222A382DE9E434A7D147C66D2595D7 /* RCTConvert+REATransition.m in Sources */, + A7B4081CFE560DF41929CD190B0E18D7 /* REAAllTransitions.m in Sources */, + 2E13FCA153AB796D1228E0CBFF9EB4E2 /* REAAlwaysNode.m in Sources */, + 187FF875F0C794DE627651247D173EAD /* REABezierNode.m in Sources */, + A2D8BC4F024E788E74788958DB114D6D /* REABlockNode.m in Sources */, + 78EF4351C660BF653179E4C345408F04 /* REACallFuncNode.m in Sources */, + 4B1D722D19B02DFF66FE43AE54A71453 /* REAClockNodes.m in Sources */, + 0F1D8EA70A6794A97031303082FD6D8F /* REAConcatNode.m in Sources */, + BF75905BF7E2950305718479E7F164DE /* REACondNode.m in Sources */, + FD58F98FE779F52A533CA57F4F2D3C0E /* READebugNode.m in Sources */, + 5862B0C376C9AACA0211FC764A66B7F1 /* REAEventNode.m in Sources */, + 1AFF0768CC152004C63C2E99578BFD63 /* REAFunctionNode.m in Sources */, + 0A58E84A00DFBFB68C13BF63701194DD /* REAJSCallNode.m in Sources */, + A39BEC2BD0ADCF594EAC8A5BF30A4F94 /* REAModule.m in Sources */, + 48E13BAD190035A4BAC59193F9FD58CC /* REANode.m in Sources */, + 6CB39C8B4A6830D3E5B5AD7D62A3257B /* REANodesManager.m in Sources */, + 6FBD05BF831AA760226002C4ADDE10D3 /* REAOperatorNode.m in Sources */, + 4DE7D9DA27745ED5D4097B385EC00AC4 /* REAParamNode.m in Sources */, + AD508BA5069D63AEFF15EA839B5BB84C /* REAPropsNode.m in Sources */, + 444ED64B3900960D287E3A90ADA16C77 /* REASetNode.m in Sources */, + 67CD6D758532BEE373D126154D26A0A3 /* REAStyleNode.m in Sources */, + FA4FA85B9A88C0FD3FB359BC27F174EB /* REATransformNode.m in Sources */, + 538FD29A5AF83965FBA0A0A3D22B46ED /* REATransition.m in Sources */, + 0F4853B280A08B9C36F9DF91FA6E4C94 /* REATransitionAnimation.m in Sources */, + E634411D2ADEBE157C0B9F1CE5245BA7 /* REATransitionManager.m in Sources */, + 189A8C608A6738A91A287587BC342EB2 /* REATransitionValues.m in Sources */, + 4059B077FA6EFA4E5D4F941082D41326 /* REAValueNode.m in Sources */, + D7C72219BFF46D3BF6B9D3C56A382981 /* RNReanimated-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -15881,48 +15790,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A2CE883AF593A8F96A1F0545C1183038 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - AF7CAABA18B600F01751B1E687EDB319 /* RNVectorIcons-dummy.m in Sources */, - 017009469D420574A8A0BB76B938D7DD /* RNVectorIconsManager.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A392BAD4DAEE1843DE63AED07AF99009 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 165127C5127DCF0D10FC07C7C04B790F /* rn-fetch-blob-dummy.m in Sources */, - ABEF209DBC95C08DBDC89ED050E0CDE5 /* RNFetchBlob.m in Sources */, - 9418BD629A6F1D66A2F46DFC41A8C587 /* RNFetchBlobConst.m in Sources */, - 0AC094C2DD2C7A03524F94D9170B45E8 /* RNFetchBlobFS.m in Sources */, - 1B547D9DE1A9D2A00A1A742C0FB83C6C /* RNFetchBlobNetwork.m in Sources */, - 376C172C245EC00D128A6E5FA19ABB40 /* RNFetchBlobProgress.m in Sources */, - 04602CEA9D16A0E074C5E71B7ABCBCA2 /* RNFetchBlobReqBuilder.m in Sources */, - 37C980320A374E60A0810A5542BFA6D9 /* RNFetchBlobRequest.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A5A7DF42D1BCCB2905B0486F7A209A3B /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 628788990C11155BDEF1DC2A9E827574 /* RNLocalize-dummy.m in Sources */, - 0431C7B8B423E1384C34ED0F6FD72AAA /* RNLocalize.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A6F0714B77BCEE260A1A08E48AF5B04B /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - EF4EFCD48E8361B9CAFA578D4809D9B0 /* RNUserDefaults-dummy.m in Sources */, - 0942CE119D9407053FF9E3108ABEC59B /* RNUserDefaults.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; AC62277605943194DBA7373B1710D840 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -15953,6 +15820,19 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + AFCA2B8AFD28ED3623FB799F457CEE11 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 09A3D21541EBBB35E2008C65CD61562D /* Color+Interpolation.m in Sources */, + 7C89C234A3184FD5F79B0B7858B84CBE /* LNAnimator.m in Sources */, + AD88DEDA8565688B7C3E17153C316CE8 /* LNInterpolable.m in Sources */, + 662FBD091B641AD64A0EEC25AA4CF07D /* RCTCustomInputController.m in Sources */, + 6FC04935571C21478EC157B715438951 /* RCTCustomKeyboardViewController.m in Sources */, + B797753627C0FEF13D81AB9DEC73B859 /* react-native-keyboard-input-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; B53F6EED305935D2B2365FE6336F4F34 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -15975,31 +15855,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - BD6B48F533C83981C51974C5815F0F25 /* Sources */ = { + C3AE5E6E1831CD6680126E64EA43A829 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 84D5392B1A75CD70EFBA80BA685A24E1 /* ReactNativeShareExtension.m in Sources */, - 27ED1A33392FE505A9DB60184847A07B /* rn-extensions-share-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - BFE4BEC2EA9E41A0AB0FA9369F3D61AD /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - CF16ECB74F58626866645AB470E27C36 /* KeyboardTrackingViewManager.m in Sources */, - D5DB1807AEDB7D577CAE0EB8B4DE8D78 /* ObservingInputAccessoryView.m in Sources */, - AD3AAEB463169A1BFF8E5E268764213A /* react-native-keyboard-tracking-view-dummy.m in Sources */, - E97C98B7DAE1EE7AAE1B291B6610BC17 /* UIResponder+FirstResponder.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C003D5F1C61F62C761EBC4A01CD9EF0C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 47024666AF3CCFAC4B025694F479B741 /* Pods-ShareRocketChatRN-dummy.m in Sources */, + 95577CE9DC0BAAF6EC37C1288ED1C00C /* RNScreens-dummy.m in Sources */, + 4DE8E4E744184DBE2CD473A8C7013B46 /* RNSScreen.m in Sources */, + 2B44D303C1043476B54B0307CFB7E1C4 /* RNSScreenContainer.m in Sources */, + 4247FDE6A7860133AEF354B9A10F46C4 /* RNSScreenStack.m in Sources */, + D7363537E5B2BE48278077E2AAB7DB45 /* RNSScreenStackHeaderConfig.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -16019,6 +15883,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + C72AED49C03DB977CBBEDBB8460954B5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0134B0060B3F4A5947134CBB740B9072 /* RNVectorIcons-dummy.m in Sources */, + DBFE9FF3F1580DA80CF64B2AD984D1E8 /* RNVectorIconsManager.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; CA0FB66C62877F04817FE44FC751D4EF /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -16032,51 +15905,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - CD94454C1206B53999C6013D1DC2D9CC /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 885CF319B84AFD4047319828541855D6 /* RCTConvert+RNNotifications.m in Sources */, - 3790CFEEEF7E1753E6A3D4FC9590EE99 /* react-native-notifications-dummy.m in Sources */, - 3C844C18E89E90139CEE252DA26D514D /* RNBridgeModule.m in Sources */, - E19F3619BB1917C37F480F1F1E850735 /* RNCommandsHandler.m in Sources */, - 25B010F1DD663281F2EAA9987E56EA83 /* RNEventEmitter.m in Sources */, - E52C5698DC8436CF7DD989EB3C5AE320 /* RNNotificationCenter.m in Sources */, - BC221FABDABFF1AA87EE3837A72679BF /* RNNotificationCenterListener.m in Sources */, - F40B5D035FE9D7A1AEEAD8B6F67E223F /* RNNotificationEventHandler.m in Sources */, - CD40A57CE72E84CDB2F267E3FF7A79E5 /* RNNotificationParser.m in Sources */, - 72A39C877D50E4BEA0F3125E9AB143B4 /* RNNotifications.m in Sources */, - 18AB077AC7B258FAA8E541F126DFE6C4 /* RNNotificationsStore.m in Sources */, - 0DBC991B8C983391A0E9DA9F0BA8D581 /* RNNotificationUtils.m in Sources */, - 77FF9BB47342E906B8686B495917F32A /* RNPushKit.m in Sources */, - EADAD1AB9B0255A369038C54B9D8B84C /* RNPushKitEventHandler.m in Sources */, - CE9D1C2B09383CAF44B7C8CFCF19E64A /* RNPushKitEventListener.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - CF574EEFBBD3ABAB7E0D85CF05579C1E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4F21F4385A4F5EF1CD99CB0A87076CAE /* react-native-splash-screen-dummy.m in Sources */, - 9963AA363125A7918D0144B66F5D097F /* RNSplashScreen.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D0D87141EAECF89DE4E07AB17F355856 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 2A8C06DCC95B747BD3355C8AF57B8500 /* CoreModulesPlugins.mm in Sources */, - 95BCEB87FFDF3B51A1B01518D1CEC889 /* RCTExceptionsManager.mm in Sources */, - CF5E5A5356BC791E25EF0A5E93306880 /* RCTImageEditingManager.m in Sources */, - E243839B7832562E47C7F92C1A0FBA11 /* RCTImageLoader.mm in Sources */, - CBF5590FA2C49F571D496E7CB0A81829 /* RCTImageStoreManager.m in Sources */, - 91C15B75F2EE203EA03430B4896BE640 /* RCTPlatform.mm in Sources */, - F484495CD0EFDFA73A14E885D93EDFAF /* React-CoreModules-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; D70D5356BA8A50A87DC4FCAF84E1EEF7 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -16122,11 +15950,12 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - DAAEC2A1739A1C7494D56166723B7A5B /* Sources */ = { + DEC2D3C7CE5662F062A13AA9B3F0AC4D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - AF595DAB9D60ABB10860CC5B6618FE77 /* Pods-RocketChatRN-dummy.m in Sources */, + B6435778C9CD17E5119C42E0DEF5BD88 /* RNUserDefaults-dummy.m in Sources */, + E90D89D913D23E6081C58A765F3DC2BF /* RNUserDefaults.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -16155,16 +15984,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E51E3AFB102389A62A81475F2EF6ECFA /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 3AF47D5592AFAAA33AFFE89BF3D6E0BC /* react-native-safe-area-context-dummy.m in Sources */, - A1AF06FAC1DD80E3E7178DBAD4BE2247 /* RNCSafeAreaView.m in Sources */, - 21056E9C887858C6A22148463C3A8A83 /* RNCSafeAreaViewManager.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; E6C0B4FF7699BF83E047760E4FE30007 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -16174,6 +15993,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + E7037D1330C50F93DBC4C80DF85CA156 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 7B8479CBAB465FDB5E5A183D79269CA5 /* react-native-background-timer-dummy.m in Sources */, + 328F4C888823EB806500B05A2CF90C7C /* RNBackgroundTimer.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; EA44CA5B3AC8CC7F921450555E69BB74 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -16190,30 +16018,72 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F4BC00C54AAE58A1C404A29E178687A8 /* Sources */ = { + EB10DF5A3D2E457D1B48130461606F76 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 90007F0ED3DEFCAB8AF1D75D79940D55 /* RNScreens-dummy.m in Sources */, - F582F487C0AB8EE44091B9F15FE3C63B /* RNSScreen.m in Sources */, - F342B7911E737C5F8954C3010F717BA9 /* RNSScreenContainer.m in Sources */, - 7530B9B32DBFEB2F4C79083FC1D58972 /* RNSScreenStack.m in Sources */, - 84F44E243C959452DA1ED32EBAF1A314 /* RNSScreenStackHeaderConfig.m in Sources */, + B008ADEBB4CF38279CB0C78ABD752ABF /* UMModuleRegistryAdapter.m in Sources */, + 973784968413BB9308E233CA2512A8EF /* UMNativeModulesProxy.m in Sources */, + FD5F40B44072A8D3E767851006F32937 /* UMReactFontManager.m in Sources */, + 1BE8F2D6456C1018F95ECC3E379ABA25 /* UMReactLogHandler.m in Sources */, + 88A32154F34FEF17860B42BA471D5C29 /* UMReactNativeAdapter-dummy.m in Sources */, + 638CEFB487E5F9D7E8D66C1FEE5C7DCA /* UMReactNativeAdapter.m in Sources */, + 061FE084F4B936A4DB6858EE9EF6A7BE /* UMReactNativeEventEmitter.m in Sources */, + 535C3529F613EF1C9F771E8ED8E1C833 /* UMViewManagerAdapter.m in Sources */, + 535C97A48D6422570B25F65D60A76B39 /* UMViewManagerAdapterClassesRegistry.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - F649E5E5F5FD61E7CABAD2B7FDEE72DA /* Sources */ = { + F3FD78230AA83D2C91B06E46B6C9EF5F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 306C4CFB3C9CF728AB2EE81C2BD0F3EE /* CGGeometry+RSKImageCropper.m in Sources */, - F1B17A175F7554DF8312DF9A5C732AED /* RSKImageCropper-dummy.m in Sources */, - 195A20D80C4EAA5A2C319382357FE065 /* RSKImageCropViewController.m in Sources */, - 8D768CD75903B52924A31E9C576E8CDB /* RSKImageScrollView.m in Sources */, - 9047B551488146C5F386432C42229B2A /* RSKInternalUtility.m in Sources */, - 23E0713F60EEADA643D63B1AFDB7A653 /* RSKTouchView.m in Sources */, - 7CAEFB5C526733012F28D11B3F18BF7D /* UIApplication+RSKImageCropper.m in Sources */, - BACE4FC8C19B79C9B6D1F7D63BFAF57B /* UIImage+RSKImageCropper.m in Sources */, + C5D8C1855FA91D5A667298ED2500952B /* Orientation.m in Sources */, + C4B3103B8805E253238FE1D1A9924713 /* react-native-orientation-locker-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F7B774774A1FE5253547A8BA92235BF1 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BAA16ECB1EA31F1E5CD745A86C8EABB5 /* BannerComponent.m in Sources */, + D86C3B91E4E3C0C7AC7738F355805577 /* NativeExpressComponent.m in Sources */, + 42130750228185A9EE97B08A51897B99 /* RCTConvert+UIBackgroundFetchResult.m in Sources */, + F7C337F3A172D4076B531EDA90507B70 /* RNFirebase-dummy.m in Sources */, + DD459A309FDE3AD6B6E0958684A9C991 /* RNFirebase.m in Sources */, + 8E7641CCD61C201FE0E7B7C31B803614 /* RNFirebaseAdMob.m in Sources */, + 3E54F7DB97FEB6BCD18C3F926D0ECDD6 /* RNFirebaseAdMobBannerManager.m in Sources */, + 2D465D6D29E2E7185E09C95FEEB97F54 /* RNFirebaseAdMobInterstitial.m in Sources */, + 38E4F29F7E182622CC2215957C62841F /* RNFirebaseAdMobNativeExpressManager.m in Sources */, + 544FF2E6AE51D35128BE5078CE197DF4 /* RNFirebaseAdMobRewardedVideo.m in Sources */, + 2CF29C03A890E6C1671A7BAD90ADEFC1 /* RNFirebaseAnalytics.m in Sources */, + 6A7893ACD4924F81F6774A55884CCB24 /* RNFirebaseAuth.m in Sources */, + B6900486138E7775C632F7751EDC426C /* RNFirebaseCrashlytics.m in Sources */, + 6B831BB0A9883DA0B6EC69C7BC01C8BB /* RNFirebaseDatabase.m in Sources */, + FF459DD785E30E0BB835B687FB7872C6 /* RNFirebaseDatabaseReference.m in Sources */, + F8FB6EF79109094E20648C02C1AF70D5 /* RNFirebaseFirestore.m in Sources */, + BC262B655003436CB6D8AAB91B4B9C26 /* RNFirebaseFirestoreCollectionReference.m in Sources */, + 3842AAF12EEDE99ED4C4FB6BC98845AB /* RNFirebaseFirestoreDocumentReference.m in Sources */, + 943BB824B50B2E7F576F43C4B11F3FAF /* RNFirebaseFunctions.m in Sources */, + C6E217026BE6CE05A87DFE1FF928532E /* RNFirebaseInstanceId.m in Sources */, + 3ED3FB625207598D554CF1DEB893D351 /* RNFirebaseLinks.m in Sources */, + 50E764695210585A24387DBE433CD9C2 /* RNFirebaseMessaging.m in Sources */, + 32F4DA4E6EBA407A5878774FF15EC82F /* RNFirebaseNotifications.m in Sources */, + BB4BA0C2D66AAA500D8F5DD46CE86DA4 /* RNFirebasePerformance.m in Sources */, + A5245F8132375FC9C92D2D5BE5D94868 /* RNFirebaseRemoteConfig.m in Sources */, + BB8E14BFF237C231C5CE75B4A5ED45F8 /* RNFirebaseStorage.m in Sources */, + F0DC12692AA0EE5463A30FC644AE38AE /* RNFirebaseUtil.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FC7F3EA1D1726999AB027F1E64FB6D7D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BDACF30D2C09E7903937EE57532B4CCD /* SDImageWebPCoder.m in Sources */, + 34283063F0F4280D8B9914E642BE5690 /* SDWebImageWebPCoder-dummy.m in Sources */, + FADE2F045119FB3BFEF532BF3A9D0851 /* UIImage+WebP.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -16290,44 +16160,29 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + FFE5F2FECF71D9A59DBABC8212950224 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 85352C34EA357F9E8590AEE100DDFFEE /* react-native-document-picker-dummy.m in Sources */, + 03ADF1EDB86C89BDD7F71BAEB50D34A4 /* RNDocumentPicker.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 00F88E0E7A5F42F8366685F9001A3583 /* PBXTargetDependency */ = { + 0100CA9D355DBFBE2509BC2021531D35 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */; - targetProxy = C8215B63C9236A65221D7F13F45954D3 /* PBXContainerItemProxy */; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 410E4B4A7CDC13067A4103256B2299B3 /* PBXContainerItemProxy */; }; - 01429C9363999989631A990BF5CAA820 /* PBXTargetDependency */ = { + 03545B818023373FA969C793AE38803B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 4205FEEC138F0BD3914F1371913BA87B /* SDWebImageWebPCoder */; - targetProxy = DA1EB8D776D8B78F8DB975361AA25A6A /* PBXContainerItemProxy */; - }; - 019BB0701B923AE76AB551A764A328F0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsinspector"; - target = 115FC7605B6A0F6044A879F6EEB7DD99 /* React-jsinspector */; - targetProxy = EFFB7E985C3A70C463061C441AF6AD63 /* PBXContainerItemProxy */; - }; - 022357800F0CBB3A4B378B792A191D19 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 5285479282A796511D8530E65EC983DF /* RNImageCropPicker */; - targetProxy = 92FD61E91E1E3EED07CA3D2496AB0AE0 /* PBXContainerItemProxy */; - }; - 025310CCCB782578CE6541C629E1C240 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libwebp; - target = 427A5566E42596B2649019D00AA80F10 /* libwebp */; - targetProxy = 63472110D76F8EABA8376978EEF3C0DE /* PBXContainerItemProxy */; - }; - 027FCFE8D4668B3BE320E38F95B86D0F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Crashlytics; - target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; - targetProxy = C22C4C9E94B568255EE73CB0CD41A3A8 /* PBXContainerItemProxy */; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 169B93721A6A4AE650CB52E20B9EA0FE /* PBXContainerItemProxy */; }; 03C5D1361123B1B19A913F4F89661FDB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16335,17 +16190,11 @@ target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; targetProxy = 46123FA0B5C451A00D38BB12B40AD23A /* PBXContainerItemProxy */; }; - 051685E236BAC97DB146593A7D4F798D /* PBXTargetDependency */ = { + 0511F7808017C3BD3BEFCF19EDD98211 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libwebp; - target = 427A5566E42596B2649019D00AA80F10 /* libwebp */; - targetProxy = 0B1E2FB6F4F1F60A29D62A4E1E2E7BFD /* PBXContainerItemProxy */; - }; - 0547531FE34D9AB0CC19277B0810983D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 96BC9B706EE73069F199C64E2D477638 /* RNDeviceInfo */; - targetProxy = C58EC5D9FEE97FF4ED0B99DAF1175F9E /* PBXContainerItemProxy */; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 1C5E7A188F881ED278B51645347C18CE /* PBXContainerItemProxy */; }; 0555D1C625BBB49874C5D51A85239D93 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16353,17 +16202,35 @@ target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; targetProxy = 5D5E2D283A970E01BA8A2BC60FE99815 /* PBXContainerItemProxy */; }; - 059CA19E9B3515E16228546E3BC8397E /* PBXTargetDependency */ = { + 0587EFF54B631C2D6B689B42E5DBBF87 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = B81CA3A3A63C0085E4085060FE4DD9FF /* React-jsiexecutor */; - targetProxy = 66B43A11C08294E92BDC03B7AA6E78F3 /* PBXContainerItemProxy */; + name = RCTRequired; + target = 9D255DD73ADD1E4565B5CCB665433053 /* RCTRequired */; + targetProxy = D690E85019584ECF9E9362D24BC1A22A /* PBXContainerItemProxy */; }; - 07DA9012E24350FF950D831F5EE52273 /* PBXTargetDependency */ = { + 0636630BEB1E5DBE07A6F657DD764567 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-keyboard-input"; + target = 93C5B1FB74974DD045F6674ABFFDD408 /* react-native-keyboard-input */; + targetProxy = 14D357EFAD5116FB2654F159C9E5CBEE /* PBXContainerItemProxy */; + }; + 068E842C8A7F492EC930E9FCA7B6FFC9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTTypeSafety; + target = 123D4D7AC3D41ABC0675B1DB3613066E /* RCTTypeSafety */; + targetProxy = 33CAD1B6035EB384AF96BF910CDF33C9 /* PBXContainerItemProxy */; + }; + 069171D6714F3094C1A8EB205BE29E0D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RSKImageCropper; + target = 4DDE5693A87611C05EBF117455A2FB9F /* RSKImageCropper */; + targetProxy = 4F69783E7CBBB0B69D3EA72F000B8940 /* PBXContainerItemProxy */; + }; + 0714DAF79B8B1682AC2CC1B8961FC201 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 01753B6F63A1547E46BA3BED10955FD2 /* PBXContainerItemProxy */; + targetProxy = 8D0ED2B634E65F08A5658679BB2DF581 /* PBXContainerItemProxy */; }; 0A2175ED116FAC289DECBFEFE60364C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16371,59 +16238,17 @@ target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; targetProxy = 7886C00AD2D894DE9202D2ADC41E8DF5 /* PBXContainerItemProxy */; }; - 0ADA1070D55EE4A4E61E9FE5B3CACE71 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = 123D4D7AC3D41ABC0675B1DB3613066E /* RCTTypeSafety */; - targetProxy = AB6818F318F577AF077DCF4E85355F00 /* PBXContainerItemProxy */; - }; - 0BBB2F42FBB202B8EEFAAA05CE599481 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 2E2ABA11C27993D4CDD5DA270C4B75F1 /* React-RCTBlob */; - targetProxy = E97E14D7D57234733CF8331814552C96 /* PBXContainerItemProxy */; - }; - 0C1BB8BB1AA01F5EFD24446FAE391B46 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Fabric; - target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; - targetProxy = 3CC87F5D070D7E60DC0041F9DDA9401C /* PBXContainerItemProxy */; - }; 0D751055C363323C78854582E5CE9EEB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBLazyVector; target = 1CCF1D06CCFE0D0AB787DF0923C94D79 /* FBLazyVector */; targetProxy = EE98A4C80DE900CD0C9ED8195B4EF52D /* PBXContainerItemProxy */; }; - 0E8DB6C05604DAAD3802A6CF737C3BC3 /* PBXTargetDependency */ = { + 0DCB49B8C375DB7BDBC185AB8B9FAB0C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = 5C53A3A5621162049D9B4399173FAD68 /* UMPermissionsInterface */; - targetProxy = F91FE778B1E530B20BC631F54B46B484 /* PBXContainerItemProxy */; - }; - 0F11FCBC19099064FA76C1BEACAB5878 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Yoga; - target = FEC7CEE99C30C1292EC32D7E006E4E85 /* Yoga */; - targetProxy = 31BAF13362D888DD9295FE00120150E0 /* PBXContainerItemProxy */; - }; - 0F340A4DAF6080567ACC6A09944F899B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-keyboard-tracking-view"; - target = 8E266A85C21F3B00E0A4951D5F0E09DC /* react-native-keyboard-tracking-view */; - targetProxy = E19844E9D1783035F9606098C9F6D9B4 /* PBXContainerItemProxy */; - }; - 0FF2FD92D107CDF4058D0A019973899D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 21B91730AA56171E7B635E8AFB2A7F3E /* JitsiMeetSDK */; - targetProxy = 85683356E926F4BA7D3EB6F333EAEE48 /* PBXContainerItemProxy */; - }; - 105D67ABE0B948ABA47638054A184856 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreDiagnosticsInterop; - target = A1DA7160DD40C2F4C7332F30DE279FC2 /* FirebaseCoreDiagnosticsInterop */; - targetProxy = F123F4BEE4DB960FACDD46CC025D9192 /* PBXContainerItemProxy */; + name = "rn-extensions-share"; + target = B84B55116AE8D2FC32258CFFF2972E1A /* rn-extensions-share */; + targetProxy = E6BF0A6ECA704035B42A4D075FDD04BD /* PBXContainerItemProxy */; }; 106AD2347DA0EA0CA6F582B3412E3739 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16431,29 +16256,11 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = 96B240CD15FF840DD247422149331369 /* PBXContainerItemProxy */; }; - 10AFAFC12C5EEDF6DBE1E849D8BE378D /* PBXTargetDependency */ = { + 10E882CFEBFF99221BCA7A10CEE2EF1C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNGestureHandler; - target = 998EB74379168C52658B6543889D239F /* RNGestureHandler */; - targetProxy = D9765DD68335A199982208AAB833FFA9 /* PBXContainerItemProxy */; - }; - 10D2E6E9C432620E35B0745372A7D4CA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = B413ECF06F2CDCADFB85C45E9A5FEA2C /* SDWebImage */; - targetProxy = 598024E5B078B0C07B82450BCD18446A /* PBXContainerItemProxy */; - }; - 112651CED4E4DDA9507D5D99DA1BCD4F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; - targetProxy = CC0E7B35AA46BB10FFEB2473308CC5D8 /* PBXContainerItemProxy */; - }; - 115B0092A8DE7EB464330C9BD70D837B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 53377579DAD2BC2EBAE133A986F2F045 /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = 2A99896D65A33A482D2D82FC436F823D /* FBReactNativeSpec */; + targetProxy = FAA68C9925029F9DE945D590B68E2DBA /* PBXContainerItemProxy */; }; 11BB47F7EA1D94100004061A682344B8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16461,29 +16268,47 @@ target = 01B53B6A43CBD6D4022A361BBFCCE665 /* FirebaseCore */; targetProxy = 0ECB4C54EED84F5258E41AFD4657F11F /* PBXContainerItemProxy */; }; - 11DA113239D97D91EF30F7EEFD5E1742 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 66FF5DA65E7C8B025F5A7BA5030CAA95 /* PBXContainerItemProxy */; - }; - 127EBDAA85AC0CBAEF9885CFB760AC66 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBLazyVector; - target = 1CCF1D06CCFE0D0AB787DF0923C94D79 /* FBLazyVector */; - targetProxy = 5D95918C7F7B6F28B2776D1339BDF574 /* PBXContainerItemProxy */; - }; 13305B6FAD1B7BD9846E55FD8E8F73BB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTVibration"; target = BD7B2D8FF0ABCB89D01F6E21D5364678 /* React-RCTVibration */; targetProxy = 41C76CAFA02708C48FAD7EEDAF99436C /* PBXContainerItemProxy */; }; - 13C8FF771DE6CFB38DB706515ADCBBD3 /* PBXTargetDependency */ = { + 1339EBD669900D9DAEA9BDBE15B5A062 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 21B91730AA56171E7B635E8AFB2A7F3E /* JitsiMeetSDK */; - targetProxy = 538F1FA8B40A7FF624565FCFFBB615AA /* PBXContainerItemProxy */; + name = "react-native-splash-screen"; + target = A3E6473348261FF8E0036D77598A7883 /* react-native-splash-screen */; + targetProxy = 4E24840961F145B083EECF294B491951 /* PBXContainerItemProxy */; + }; + 136BDDBD90D3BC0D863641CFD290DB39 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = 2A99896D65A33A482D2D82FC436F823D /* FBReactNativeSpec */; + targetProxy = 1F78029557F008CAE1B4B1AA7047FA2C /* PBXContainerItemProxy */; + }; + 1383E610C83FEFA11CDEFD3273B293C0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNUserDefaults; + target = C044C5A98E3D4C78D88D46C8E6C24CE1 /* RNUserDefaults */; + targetProxy = 05EA7E5DCAB06470F0196E84E9D8678F /* PBXContainerItemProxy */; + }; + 153961C4551A0B121117187361AC7513 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "rn-fetch-blob"; + target = 354080E72782177DBAB3CCEC8A61DF26 /* rn-fetch-blob */; + targetProxy = 01862C862AAF286773660368B0AAC8D1 /* PBXContainerItemProxy */; + }; + 155F36C9ED16F0F07C8916C85BE54814 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-keyboard-tracking-view"; + target = 0A839CF1E1DC111261AED3D86F9A04B0 /* react-native-keyboard-tracking-view */; + targetProxy = F61CF64E825634E3D611A8DF20AFBF95 /* PBXContainerItemProxy */; + }; + 16B770DCB3A505CF6BB2A3AD8A1890FA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCameraInterface; + target = E9F5838E12E25D54BF4A88364E6D55AB /* UMCameraInterface */; + targetProxy = A33100C4A04BDB87794B8ED54A8D1642 /* PBXContainerItemProxy */; }; 16C7CAD40E83F256EB3B44CE2AF0428E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16491,53 +16316,71 @@ target = 017AB91E1D5AB2B6096ADC666B072208 /* React-RCTImage */; targetProxy = 163CBAEB4B1179F7E94CBFA9D9821391 /* PBXContainerItemProxy */; }; - 16DB0C132D1F09822FDF35BA860B7035 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-video"; - target = 49A20CD2A4D337B7A85D4498997FD6ED /* react-native-video */; - targetProxy = 728E5B9465362ECC36E9A3258F622F58 /* PBXContainerItemProxy */; - }; - 1709A2B72BBCBC329BBF20650838C6DC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsinspector"; - target = 115FC7605B6A0F6044A879F6EEB7DD99 /* React-jsinspector */; - targetProxy = 2D2B87423D6815FA65966D7BC6AFAE0E /* PBXContainerItemProxy */; - }; 17B0305E08C7EF9ED292AA9014450AF0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; targetProxy = 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */; }; - 19196FC39BBF508BBBD28D4B2F0602F0 /* PBXTargetDependency */ = { + 184C88C6B6A7B6CC2271DBBFC8E4107E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = 2A99896D65A33A482D2D82FC436F823D /* FBReactNativeSpec */; - targetProxy = AF3191E5F6F6F75C5111FA4B1FEB3D14 /* PBXContainerItemProxy */; + name = "react-native-jitsi-meet"; + target = 06DEC3D70695800506D48892FE4C06C4 /* react-native-jitsi-meet */; + targetProxy = DF693325DF15D441878D5F6310EE6C5A /* PBXContainerItemProxy */; }; - 1AF149C990AB35D9AA4DDD40A5FD9FB4 /* PBXTargetDependency */ = { + 1950EACF4CE0F4E0A3DFCA926B72584C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 426398FA61DF648ECF7C6897DFAC6E8E /* FirebaseCoreDiagnostics */; - targetProxy = 73367AB7321BF72F5B974588D1ADE69C /* PBXContainerItemProxy */; + name = "React-RCTAnimation"; + target = 7F28D4475D7DAD9903F7E6044DD921C1 /* React-RCTAnimation */; + targetProxy = CD774BA10B8A8D2A87DE417586FBA1FF /* PBXContainerItemProxy */; }; - 1B7B1B1AA99B968BB3BB143D588C0001 /* PBXTargetDependency */ = { + 19E43934AD9E289FA0DE203877A11798 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = 57B9E0A892EAB5C13D4AE7D4B1DE0C16 /* GoogleAppMeasurement */; - targetProxy = 29C8B4A2E8C3B025AD8694B7ADE2D951 /* PBXContainerItemProxy */; + name = "React-jsiexecutor"; + target = B81CA3A3A63C0085E4085060FE4DD9FF /* React-jsiexecutor */; + targetProxy = 38894F649DF1D5E7F110ECF10AA23480 /* PBXContainerItemProxy */; }; - 1E8CFE1CE0FD4E607920ACE106891CB9 /* PBXTargetDependency */ = { + 1AEF406AD1CEA8E952AABE97D486B487 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 458293E00EF1C1F42778F9425AD34AA4 /* UMConstantsInterface */; - targetProxy = 407448F7DA38C16B1116DDAD2B655180 /* PBXContainerItemProxy */; + name = UMFaceDetectorInterface; + target = 576DA68F0B73651A1A5891E1E575843A /* UMFaceDetectorInterface */; + targetProxy = 65A17445C11CF34293B33E1781E0FC41 /* PBXContainerItemProxy */; }; - 1EAEE3F7845CC99840BD4700E55D863C /* PBXTargetDependency */ = { + 1C4A21D285A3D0172D2B81A91157AF4D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBLazyVector; - target = 1CCF1D06CCFE0D0AB787DF0923C94D79 /* FBLazyVector */; - targetProxy = 8E9080C9418E9464F9F540F8C8EB0F09 /* PBXContainerItemProxy */; + name = "React-RCTBlob"; + target = 2E2ABA11C27993D4CDD5DA270C4B75F1 /* React-RCTBlob */; + targetProxy = B443719DF40CC0F7E5236AC2C97FE9F9 /* PBXContainerItemProxy */; + }; + 1C7231832A786B44CF40BC64469B2B52 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTImage"; + target = 017AB91E1D5AB2B6096ADC666B072208 /* React-RCTImage */; + targetProxy = 27FDAF160CAAA7095F61659954450855 /* PBXContainerItemProxy */; + }; + 1C779A7E2464D9C5312306174A25F825 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = QBImagePickerController; + target = 2E1B62D66A7097B06E8963437D5909DB /* QBImagePickerController */; + targetProxy = 7C2BBB5EBEA48BFEAA6CBD24F4E9FA24 /* PBXContainerItemProxy */; + }; + 1E3BF02B0D58ED109471A13AF22C4278 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 0D7B7AB8FD1FD4012E321B494F164B26 /* PBXContainerItemProxy */; + }; + 1E45AB489596D93DC3261DC2D39737E1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnosticsInterop; + target = A1DA7160DD40C2F4C7332F30DE279FC2 /* FirebaseCoreDiagnosticsInterop */; + targetProxy = DC3E26344CC0FE55CA47CA8F3E38389C /* PBXContainerItemProxy */; + }; + 1EEE70D3E2DFEFB5916350FE20F8AB4B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 62E29A3AFB2BA7FFB14A4A9576E17A35 /* PBXContainerItemProxy */; }; 1FF02E6358F1AC0AEF79C28A92C40889 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16545,29 +16388,41 @@ target = FEC7CEE99C30C1292EC32D7E006E4E85 /* Yoga */; targetProxy = EE4BC9CF9B64348CF6C23E39FF20BB64 /* PBXContainerItemProxy */; }; + 208C2F2ADD08BF8C795BB9105F54BAA5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */; + targetProxy = A67B08993E6AC1C592DFD0FD79D48299 /* PBXContainerItemProxy */; + }; 20C7FA8369BB9346866B48D4E4383A7C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = F7236D5BFD42DBEDF2652D4E47992BD2 /* React-jsi */; targetProxy = 3E9AE265557A98CB42FFD3D38570ED51 /* PBXContainerItemProxy */; }; - 21C536EDECB0F0B33DF9C4AB4DCFAE59 /* PBXTargetDependency */ = { + 210B52D5DE653497CDD4B1EF0A11C866 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 1F22396CB543506E7EA28A47A30E9727 /* GoogleDataTransport */; - targetProxy = B58BADA6BC60E37B7D13B63C0AB68006 /* PBXContainerItemProxy */; + name = GoogleDataTransportCCTSupport; + target = 63CF4D4E74D1771681263724253E1E79 /* GoogleDataTransportCCTSupport */; + targetProxy = BE9B4C25DC12D28269472810119717EA /* PBXContainerItemProxy */; }; - 2239BD2F333D79B229B69073EB7A182F /* PBXTargetDependency */ = { + 22368FFF9038F476E519957225D0900D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; - targetProxy = D7037A59DA44C117AC1403CF0E4CECE6 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; + targetProxy = AF877D982FF178B47384D659FEDCB328 /* PBXContainerItemProxy */; }; - 226964CE527CAC55D172ACECCC3FFDDF /* PBXTargetDependency */ = { + 226F4A335791ADF7FB0F7538A12567C9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = B81CA3A3A63C0085E4085060FE4DD9FF /* React-jsiexecutor */; - targetProxy = 9C3B5BE67731EB7C082D66B46D2BF5C6 /* PBXContainerItemProxy */; + name = Folly; + target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; + targetProxy = F8E98187D0C67D89C4A5555F2BB28635 /* PBXContainerItemProxy */; + }; + 22AFBB30FAEB620D148F6694A8D8A3D4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-cxxreact"; + target = 9F219ED43F3AEA000562B9BCFD624DDD /* React-cxxreact */; + targetProxy = B856D7210504C431D707D99B6CEF274F /* PBXContainerItemProxy */; }; 238D807E41814E2E52A54CE96C5D65FB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16575,18 +16430,18 @@ target = E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */; targetProxy = 76B0A5010EE1574433BB6DED35297BCE /* PBXContainerItemProxy */; }; - 24481622D34901DF3AAB089B09F0F8F2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 21B91730AA56171E7B635E8AFB2A7F3E /* JitsiMeetSDK */; - targetProxy = 05A6B3E889928B6B4415540E68607403 /* PBXContainerItemProxy */; - }; 24B55147C941BE9797F6BC794F57308C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCoreDiagnostics; target = 426398FA61DF648ECF7C6897DFAC6E8E /* FirebaseCoreDiagnostics */; targetProxy = 040622B4EF3FFAC25FCB8BED372F45F5 /* PBXContainerItemProxy */; }; + 24CBF3FB94140FA638C9AFCEC715070D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDeviceInfo; + target = 5B9C887470B06C308DB225E189F87B0E /* RNDeviceInfo */; + targetProxy = 78589F10D26118F2FB39782281E200DE /* PBXContainerItemProxy */; + }; 2559A81BC7753CC57D5A6C1E7CF8D5D9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; @@ -16599,18 +16454,6 @@ target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; targetProxy = 113CDDB809E5888DDC4ACE47ACB7FEB3 /* PBXContainerItemProxy */; }; - 260A1165A4C61996C4CF2F8633AB9607 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNVectorIcons; - target = CD87ED5DE5F49418BF7FB90FCF9C2713 /* RNVectorIcons */; - targetProxy = E5D2DC342A84FF81B98873598DD55BC5 /* PBXContainerItemProxy */; - }; - 2683C8BC403E910536C655E36F2FD846 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-keyboard-input"; - target = 5C9A8A893D5CFCE5F284C62E8BD0F139 /* react-native-keyboard-input */; - targetProxy = E4AEBE828832DA771A294DAFA1FE3C59 /* PBXContainerItemProxy */; - }; 273CB5CBEB79AE7F05D13DF11D988EB6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTNetwork"; @@ -16623,30 +16466,6 @@ target = 5C53A3A5621162049D9B4399173FAD68 /* UMPermissionsInterface */; targetProxy = F84AAAA2C19F25EDD3EC2AACB0E9E389 /* PBXContainerItemProxy */; }; - 282D1C1C871AF76F5A2D5ED4BE7EEE10 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; - targetProxy = CD81C9B75830834609C011EFF68D32DB /* PBXContainerItemProxy */; - }; - 28C4038936136FCB75B2837B3124D252 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = B000AEB41C5CA27A8C696054022901AA /* PBXContainerItemProxy */; - }; - 29CF2477D9D65933015BBC24280D10EB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-video"; - target = 49A20CD2A4D337B7A85D4498997FD6ED /* react-native-video */; - targetProxy = 3848FCFE885F55496D9BDADC46284399 /* PBXContainerItemProxy */; - }; - 2A1A2A5FA40AAF05B6217AE5EB09E3C7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 64E78828D8355514B3B6BE78FAE7806E /* React-RCTSettings */; - targetProxy = B6F0D249935644F00241A3351722B782 /* PBXContainerItemProxy */; - }; 2A1CB69B24FBA907CE8C8D3B923AABF7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-cxxreact"; @@ -16659,65 +16478,29 @@ target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; targetProxy = 7C53CB5C717DF2F107152E0C7B720455 /* PBXContainerItemProxy */; }; - 2BCC4C093E3928C3242A933BAC9D2206 /* PBXTargetDependency */ = { + 2E70AD0F00788838AB81D06DD117B25D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 4205FEEC138F0BD3914F1371913BA87B /* SDWebImageWebPCoder */; - targetProxy = D6CB9D4A41860B6E6F5772FFC62A8299 /* PBXContainerItemProxy */; + name = glog; + target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; + targetProxy = 74B1BB502B65344CCC7984C50FF888A0 /* PBXContainerItemProxy */; }; - 2D5FA30A8D2D3D0407A1C95C0CA33E6D /* PBXTargetDependency */ = { + 31A6F2C3057ABC7058DBA68744858A86 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-webview"; - target = 0D5E898FF62B3A40F7C391BA01E3A076 /* react-native-webview */; - targetProxy = 4647CA8FA84173C1B4A0D547DEC37782 /* PBXContainerItemProxy */; + name = FBLazyVector; + target = 1CCF1D06CCFE0D0AB787DF0923C94D79 /* FBLazyVector */; + targetProxy = 58F611DDE7402248146B84EF5471EC60 /* PBXContainerItemProxy */; }; - 2D6E24A9FD878655049B92744FCAFAF2 /* PBXTargetDependency */ = { + 31FD4AC390AB07FE9F28C5170E946DA8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-safe-area-context"; - target = 5670B9D7F60A308B44938F9FAB576F8E /* react-native-safe-area-context */; - targetProxy = 31CCCAC0A8A8FA62EFAB8E223133DCBA /* PBXContainerItemProxy */; + name = "React-RCTLinking"; + target = C2F81329D3C42F2D872A4B80180545BC /* React-RCTLinking */; + targetProxy = 81752EF8619B6A86AE5115D633EA4142 /* PBXContainerItemProxy */; }; - 2DF98146EE417F6C625E80D80462B237 /* PBXTargetDependency */ = { + 32E6310DB549809923C3D3028034341C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; - targetProxy = E3D512B98FCC40DA9EC8AB9555E9BF22 /* PBXContainerItemProxy */; - }; - 2E7EAB242B5F88107AD325CDE19C187F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = BugsnagReactNative; - target = E452F4CD4F8AB641BD2444C7AC91FA2B /* BugsnagReactNative */; - targetProxy = 650EADECE13A05F798586D7B42450DF4 /* PBXContainerItemProxy */; - }; - 2EEA6A88D2C8E44B874509A49F1945D2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; - targetProxy = D013B880AF3FFB4C5CABE553061F822A /* PBXContainerItemProxy */; - }; - 2F5B617F629DD3F86BF921E0398CB5ED /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNLocalize; - target = 880920CE33AF3DE5A35090F9234DE5C7 /* RNLocalize */; - targetProxy = 5EBF5014143DA760A29836CBEED11E26 /* PBXContainerItemProxy */; - }; - 30F598528DA794CDCF6C6CAB42189C30 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = 123D4D7AC3D41ABC0675B1DB3613066E /* RCTTypeSafety */; - targetProxy = 2B450C172AA0F350DBD77E070D8676C0 /* PBXContainerItemProxy */; - }; - 31F451B014D9A6AFD123896A07BF1950 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTText"; - target = E49E330A27425F89DE89516B2F50AAE9 /* React-RCTText */; - targetProxy = 5A5B607C13D7A42146E2913254797F4E /* PBXContainerItemProxy */; - }; - 3341BADE6D83DCC42A083C300DA4896C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXWebBrowser; - target = B11E238094137347E8790BFEB1BEF01F /* EXWebBrowser */; - targetProxy = 95F3DA5B8BBDD0A09E86319A85CD41F3 /* PBXContainerItemProxy */; + name = "react-native-notifications"; + target = 7771CBBD8DE87850E7FDC2BAA331122F /* react-native-notifications */; + targetProxy = BB005470C278DCB0BE493392023215D9 /* PBXContainerItemProxy */; }; 3492F04AC6C9C2C1529D076E7BE5C6C2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16725,11 +16508,17 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = D9B0BDCA002FEBFE383DFE024728D2F6 /* PBXContainerItemProxy */; }; - 3532449454719B3C7D5117A53BB76BBC /* PBXTargetDependency */ = { + 35D7AF45E35C5ECA3615E87FF52D8176 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = E6E26B63C1F2BBE037610257DBAECF8A /* PBXContainerItemProxy */; + name = "react-native-webview"; + target = 52B496375B47BE24C88A169CA30D0DEA /* react-native-webview */; + targetProxy = 590EE35A14CBE90B9E583131349DD49A /* PBXContainerItemProxy */; + }; + 36630567F7DFB198EC71C39899198785 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Folly; + target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; + targetProxy = 4ACCB8F6D435FF7050B8DBEDD7B16752 /* PBXContainerItemProxy */; }; 37D3EE15933CB03C5534DBBE0486F674 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16737,11 +16526,17 @@ target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; targetProxy = 16E39C41A1CBE1E8002EF54F741C1EB3 /* PBXContainerItemProxy */; }; - 3B744425A42F1D534E6E5BBCBBC26AA0 /* PBXTargetDependency */ = { + 3A58803112D04DFB6FE3F27B4027833B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = 232D00D8ED7797390FB38004DE01723B /* FirebaseAnalytics */; - targetProxy = 4AE8C69CE4711B8F8D2E8528D9E51F25 /* PBXContainerItemProxy */; + name = ReactCommon; + target = 6DE003F64B133830B9AB9321298DAAC2 /* ReactCommon */; + targetProxy = 3E83939548612349E299EAF0C40F5146 /* PBXContainerItemProxy */; + }; + 3B973E5E205DFD47CD35484149579FCB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImageWebPCoder; + target = E90B06E472DDA9583C2227DCEBFF5145 /* SDWebImageWebPCoder */; + targetProxy = AFF8E3C7D02087E2F1C6BECB8F686F3C /* PBXContainerItemProxy */; }; 3BDD26DF1C76A2717767412BFEFD633E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16749,47 +16544,71 @@ target = 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */; targetProxy = C6318E60C9E68C5F678F7ADDF357AED8 /* PBXContainerItemProxy */; }; - 3C7A960DB07D9FAE19DA1493FDFE9CBD /* PBXTargetDependency */ = { + 3C3AE12228495D5CBF0ED20B7F650013 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXHaptics; - target = 5B1BA8B3E53682DD179F7BFF8F2C8B75 /* EXHaptics */; - targetProxy = 353EFBDC69D88FB4AD779CC645DDE411 /* PBXContainerItemProxy */; + name = GoogleDataTransport; + target = 1F22396CB543506E7EA28A47A30E9727 /* GoogleDataTransport */; + targetProxy = B4C46365696ED39B1098740600727BF3 /* PBXContainerItemProxy */; }; - 3CABE84DCAFD9464A99AC5D53760FE25 /* PBXTargetDependency */ = { + 3EA6533190BAFEA513334FEAF8F22314 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNReanimated; - target = F4A43BC5CC1CE68C79792AEBBCE9C138 /* RNReanimated */; - targetProxy = 1144F98219283A58EFA7B0958F885D0E /* PBXContainerItemProxy */; + name = "react-native-notifications"; + target = 7771CBBD8DE87850E7FDC2BAA331122F /* react-native-notifications */; + targetProxy = 66B56979037679FAFB34EA5EE70B6DE3 /* PBXContainerItemProxy */; }; - 3D12896141A1605BBEC4367F5740F2BD /* PBXTargetDependency */ = { + 3F64E898537C3DBEFDEF9E786BB2B14E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNAudio; - target = 7971E9EDE82F3534DAC43ADF07514C4D /* RNAudio */; - targetProxy = A3F0575480E589C849D00FD77E2D8018 /* PBXContainerItemProxy */; + name = "react-native-keyboard-input"; + target = 93C5B1FB74974DD045F6674ABFFDD408 /* react-native-keyboard-input */; + targetProxy = 9489AC0AE11B0546607783B01BDFE5F8 /* PBXContainerItemProxy */; }; - 42507EBEAC85A65B580F17B5337B27DD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = 63CF4D4E74D1771681263724253E1E79 /* GoogleDataTransportCCTSupport */; - targetProxy = 4F1C3EF80BD2EF8ADBAB30E19B249D27 /* PBXContainerItemProxy */; - }; - 447992CB3F3C464CA633286AEF34552D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = C8BF850D501EB337D8ABAC1BEF4A4887 /* PBXContainerItemProxy */; - }; - 4515A115900D37153268E435E83780C3 /* PBXTargetDependency */ = { + 415EF3BEC42492E0537CB5AD514551F0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTActionSheet"; target = 7135140B597489F3FE9D0A6D1FADD9C7 /* React-RCTActionSheet */; - targetProxy = 4C57220799A0FB081EC79E103427B0FC /* PBXContainerItemProxy */; + targetProxy = C0CE7C66CF11D9A1C746D92AE4E34DD7 /* PBXContainerItemProxy */; }; - 4664CA0F9169FBCD42F642AA7A870A40 /* PBXTargetDependency */ = { + 4357C205FE6BB45646E6BFBA9E8CF708 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-CoreModules"; + target = 82BA924F838C30601D2A813EA338492A /* React-CoreModules */; + targetProxy = DE01E65BC79B2EB7D7EB82B68F3BB162 /* PBXContainerItemProxy */; + }; + 438222CEE808A6141FECC468D39409A1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNLocalize; + target = BF663682387D1F23ADF217037A1593FD /* RNLocalize */; + targetProxy = 1A045AAC4D970C589406DD45AFE7052D /* PBXContainerItemProxy */; + }; + 442B4D18ADEBBA7C62C8687A835DE042 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JitsiMeetSDK; + target = 21B91730AA56171E7B635E8AFB2A7F3E /* JitsiMeetSDK */; + targetProxy = 1B05F669995A405DC14F41D9DA61DF36 /* PBXContainerItemProxy */; + }; + 44761A891A6C03CDA744BAEDFC905E03 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstanceID; + target = 3C6A9BF574C3488966C92C6A9B93CA8C /* FirebaseInstanceID */; + targetProxy = 9812B12A035BCE8F08BE45937885C3A6 /* PBXContainerItemProxy */; + }; + 44DDF138EBBF9078AFA9A41FDF7F0488 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = EA5B396F0D6FE6E1C0B920D73C77510A /* PBXContainerItemProxy */; + targetProxy = 4AAD1C8AE540FD4896DE5C56848FC14E /* PBXContainerItemProxy */; + }; + 44ECC4945B4CF177D18DA45C44829276 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNImageCropPicker; + target = BF4AABB64D09DEB00ECF19B09D06CCD8 /* RNImageCropPicker */; + targetProxy = 233B46730B0B8D51E83160D1C111EAF1 /* PBXContainerItemProxy */; + }; + 47089073BC2C53E1C224253A5B21905A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-orientation-locker"; + target = 586C843030CBA8901E569AB3D2F76867 /* react-native-orientation-locker */; + targetProxy = 4939F78CA095D63B1B1ABE6DF7F97361 /* PBXContainerItemProxy */; }; 48076A1E02117E39C56513D1F085E022 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16797,24 +16616,6 @@ target = A1DA7160DD40C2F4C7332F30DE279FC2 /* FirebaseCoreDiagnosticsInterop */; targetProxy = BFD1349A73D002FF8BADA635DB23EA34 /* PBXContainerItemProxy */; }; - 483D377D3E849075737AAC1DD4561409 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 4205FEEC138F0BD3914F1371913BA87B /* SDWebImageWebPCoder */; - targetProxy = CECD28DC4EA6E299DD569A3E32CAD413 /* PBXContainerItemProxy */; - }; - 483D665D429831AC4485901129CC91B0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = A0C1C1A73999DD9B9CE443E4CB1285B7 /* PBXContainerItemProxy */; - }; - 48942E9C881BE23E998E111F4FAC65B8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNGestureHandler; - target = 998EB74379168C52658B6543889D239F /* RNGestureHandler */; - targetProxy = 526669C8CD3B119C384A23903EC1ED41 /* PBXContainerItemProxy */; - }; 49CF22411A18A28762E2D16FB32A5A96 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; @@ -16839,41 +16640,23 @@ target = F7236D5BFD42DBEDF2652D4E47992BD2 /* React-jsi */; targetProxy = D59A73644A58ECC04E1987DB3C8A1BC6 /* PBXContainerItemProxy */; }; - 4B9A9D2B9C36BE519396BDD343583764 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libwebp; - target = 427A5566E42596B2649019D00AA80F10 /* libwebp */; - targetProxy = E0933A16F41428D33A4E1BEEF689088C /* PBXContainerItemProxy */; - }; - 4D003A6627D0F0EEFA07881467F2E0A6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = E0B018EB633DDF12D963E58CA1CDB18E /* react-native-orientation-locker */; - targetProxy = BA224E31A5210BD3B071F4C7266A1A28 /* PBXContainerItemProxy */; - }; 4F7FBAA168FB752BC980C4CB37D4732D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMFileSystemInterface; target = 7825F222F53EF434DE74A6C6FAF290E9 /* UMFileSystemInterface */; targetProxy = 013C8C712E31279FB89EBADB1C1A4BC4 /* PBXContainerItemProxy */; }; - 5099B432E1E79F3E66F327CC42126453 /* PBXTargetDependency */ = { + 4F92B6F19494228F398990118F632FD0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-webview"; - target = 0D5E898FF62B3A40F7C391BA01E3A076 /* react-native-webview */; - targetProxy = 4DCED4269C4B954231BAE9946CE8306A /* PBXContainerItemProxy */; + name = "React-cxxreact"; + target = 9F219ED43F3AEA000562B9BCFD624DDD /* React-cxxreact */; + targetProxy = 47070FFC006371B5FA29EF1D95019BC5 /* PBXContainerItemProxy */; }; - 50ABFBC5DD2376A588105CAF9FE8F608 /* PBXTargetDependency */ = { + 5222A0B968F4648623340BEA03A4529D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTText"; - target = E49E330A27425F89DE89516B2F50AAE9 /* React-RCTText */; - targetProxy = 82F58A98AD8409DFC9B445DEFADF4841 /* PBXContainerItemProxy */; - }; - 5282FF97E82A4335501CADEC59C03A5E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFontInterface; - target = 392A9C558B900FB520CA2EF39651DB54 /* UMFontInterface */; - targetProxy = 1DAF27107B70BE374D629D58E63B656A /* PBXContainerItemProxy */; + name = UMConstantsInterface; + target = 458293E00EF1C1F42778F9425AD34AA4 /* UMConstantsInterface */; + targetProxy = BF2E44FE5B5F2B44C86E3AEDA99F40FB /* PBXContainerItemProxy */; }; 53B411A732F99F8D51E15B2CE451B1C2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16881,11 +16664,41 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = 8F8D97FDA93DF806279F1C90D2E34F62 /* PBXContainerItemProxy */; }; - 55D5C576F3F6EBEDFE08B2E40B3258F4 /* PBXTargetDependency */ = { + 53B8AF00DF9C6E1B5E065229B057F36F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFastImage; - target = 2CBADBAF1891263102225816D0B97AA0 /* RNFastImage */; - targetProxy = E696135B2BA8D8A20F27374A615F3A22 /* PBXContainerItemProxy */; + name = "React-RCTSettings"; + target = 64E78828D8355514B3B6BE78FAE7806E /* React-RCTSettings */; + targetProxy = 9AEE4E1C0374E0FB0D9DF0785F365141 /* PBXContainerItemProxy */; + }; + 53EC1864708FD10379959854BB1181B3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTImage"; + target = 017AB91E1D5AB2B6096ADC666B072208 /* React-RCTImage */; + targetProxy = C743BC26F05F587AAE595504308DBE3D /* PBXContainerItemProxy */; + }; + 554D4A2D63444F310700BF60FDBEC545 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = B689961D4C8C1AB9D95DA3D67E856D0B /* PBXContainerItemProxy */; + }; + 55F8E90A7CC57A522852D08AF3A417B7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImage; + target = EB1AFC730F005065E951DE8E8F6826B4 /* SDWebImage */; + targetProxy = 0A821EFFBB6E988CA18AD2BF0F3B3711 /* PBXContainerItemProxy */; + }; + 585D06A4E3C6BB1039EB1891173F6B23 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNLocalize; + target = BF663682387D1F23ADF217037A1593FD /* RNLocalize */; + targetProxy = EF1AF9F27F7E384E7F339C101AC08EE7 /* PBXContainerItemProxy */; + }; + 588FC96A7752D048EB0EBB7DE5C83BDD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = glog; + target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; + targetProxy = F4DCF8FADCC932E93CAEC6F63BCBA40B /* PBXContainerItemProxy */; }; 59AEDBDE41E6364F4378C6746F929E61 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16893,29 +16706,71 @@ target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; targetProxy = B4BACC19FD91FE9C750E2B7E26434F49 /* PBXContainerItemProxy */; }; - 5A8F00FEA5F081FB37264BD19C0E6BAB /* PBXTargetDependency */ = { + 5A6DD553AA8BE778319A4194C48DAF46 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; - targetProxy = 8AC0E42E705958BB550EDCD5C0F2570F /* PBXContainerItemProxy */; + name = RNUserDefaults; + target = C044C5A98E3D4C78D88D46C8E6C24CE1 /* RNUserDefaults */; + targetProxy = 052419460B529A6F471129F5DA173ED8 /* PBXContainerItemProxy */; }; - 5D4C2EDAC517E5C8A8AA84B5BCE37D03 /* PBXTargetDependency */ = { + 5AC733F3B99934F18897CCE7DF0AAD88 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = 57B9E0A892EAB5C13D4AE7D4B1DE0C16 /* GoogleAppMeasurement */; - targetProxy = D4492F3DE3BDF08330311A7F4099ED6E /* PBXContainerItemProxy */; + name = UMTaskManagerInterface; + target = 828EDF29E4284793D2B3360CBCFFD7A7 /* UMTaskManagerInterface */; + targetProxy = FCC058D0CA4752A087FA77B7577DE877 /* PBXContainerItemProxy */; }; - 5EC3B40103FFE6ED453B58E2EC40B819 /* PBXTargetDependency */ = { + 5B2262DE2B4B4F49B8C7E39A7861AD1B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-safe-area-context"; - target = 5670B9D7F60A308B44938F9FAB576F8E /* react-native-safe-area-context */; - targetProxy = FDCC5A4F5A6F1684D71FA56CFBFD65C1 /* PBXContainerItemProxy */; + name = "react-native-jitsi-meet"; + target = 06DEC3D70695800506D48892FE4C06C4 /* react-native-jitsi-meet */; + targetProxy = 944688FD34F85DE87DEA56A051431A65 /* PBXContainerItemProxy */; }; - 5EDBCC152ABA3FDADB89A482952EB4F9 /* PBXTargetDependency */ = { + 5B5216EA131DE0EC4355CA2D3E1D753B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 48A082BED63E227E6247A0541D876B43 /* rn-fetch-blob */; - targetProxy = B63A100A17154AAF1A70400619CEF4F8 /* PBXContainerItemProxy */; + name = "React-jsi"; + target = F7236D5BFD42DBEDF2652D4E47992BD2 /* React-jsi */; + targetProxy = 2FA294F60B6F656EC9D5EB8010A3F5F2 /* PBXContainerItemProxy */; + }; + 5BAA03ADEEA50793F23E7CD3983E680E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Crashlytics; + target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; + targetProxy = 223E81BC85EF569587F1ABD65F00AD79 /* PBXContainerItemProxy */; + }; + 5C8C08D809183E873F9D67FD582298E7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = EF6054A778F5C174B7EC13DEB699997A /* PBXContainerItemProxy */; + }; + 5CC8F3ACD5FE16ECAD9B34FAD752B86C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-orientation-locker"; + target = 586C843030CBA8901E569AB3D2F76867 /* react-native-orientation-locker */; + targetProxy = C17A50FCEF8A99FFD4A52426136DF4B2 /* PBXContainerItemProxy */; + }; + 5DB6FF94FD7588F94A31054304FFC488 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = D1567F6051D8F78DCC4E0969CAC09332 /* PBXContainerItemProxy */; + }; + 5E402033FC3292FE90442670DA269302 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = 232D00D8ED7797390FB38004DE01723B /* FirebaseAnalytics */; + targetProxy = 1357E9C6E8464595CB3971FD55F7AAD8 /* PBXContainerItemProxy */; + }; + 5F2F2B7473886220CD449AB2AE14A3A9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "boost-for-react-native"; + target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; + targetProxy = 10945DD5B2331770B1CE64A571F2DABF /* PBXContainerItemProxy */; + }; + 5F78886F6223E09A28EBD4276937D25D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = 232D00D8ED7797390FB38004DE01723B /* FirebaseAnalytics */; + targetProxy = 48BF8622A61AE1F0AF0C8D53F5FA94CE /* PBXContainerItemProxy */; }; 5FB63311A8172BDE287C5B0BC5C11578 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16923,23 +16778,41 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = D8A489DA96811A733E40A4B4C97CDC9D /* PBXContainerItemProxy */; }; - 61EF6CE5EBAD9E81E7179EDC2B724FA1 /* PBXTargetDependency */ = { + 60B056629A5A31A32C8BEF22314F657E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; - targetProxy = F373E1385F92E965706A8C631D804E0F /* PBXContainerItemProxy */; + name = "React-RCTText"; + target = E49E330A27425F89DE89516B2F50AAE9 /* React-RCTText */; + targetProxy = C1FDB4D927BD7D3F694A2CD945DCBA0E /* PBXContainerItemProxy */; }; - 6294EB61D4100AC86E9DA276F764DBB5 /* PBXTargetDependency */ = { + 61829E5FD2193E9807321A281BEC45A4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 9EEC085848ECAC465F5B376A4C29A4EC /* UMTaskManagerInterface */; - targetProxy = B0513E80C564067A3D162065B18BD7E5 /* PBXContainerItemProxy */; + name = Yoga; + target = FEC7CEE99C30C1292EC32D7E006E4E85 /* Yoga */; + targetProxy = 6A797037D5C82CA49C5802019331D5E4 /* PBXContainerItemProxy */; }; - 62C32A5BC7E0D69847C1E4FE131F70DE /* PBXTargetDependency */ = { + 6350D825073A99A32A816A16B78C4968 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 66BC240DA920A04A46313DB7AB9C2237 /* PBXContainerItemProxy */; + targetProxy = 1E18ED1B4A5349874A5F89CC347699EB /* PBXContainerItemProxy */; + }; + 644AF3B0258A0ABEFE898D19C26B8584 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNScreens; + target = 0E27C1D2919A1336E4EED2093FE67ADC /* RNScreens */; + targetProxy = A468FB6336CAC3CDFF5577582211E735 /* PBXContainerItemProxy */; + }; + 644C9CD277F154C2F3C2F3DF931B127C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; + targetProxy = B9ACF0A2F14038B570EE0B411FCAECAF /* PBXContainerItemProxy */; + }; + 6604A959D33451F3A3405EE14B7EFE15 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 2E0C862B9A9EE20025CBEF95F20FDFAB /* PBXContainerItemProxy */; }; 6621509AE5A3372F9B292A0AAEBB44EB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16947,47 +16820,29 @@ target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; targetProxy = 5A01D7A983FEAB270273E554A7DA4480 /* PBXContainerItemProxy */; }; - 66564559BB0247F2E8CF767F085F4A70 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstanceID; - target = 3C6A9BF574C3488966C92C6A9B93CA8C /* FirebaseInstanceID */; - targetProxy = A89AA0573D1BCC81A17717212DDCB15C /* PBXContainerItemProxy */; - }; - 668F227058C448F7CB2BBEDB9FEC4350 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNVectorIcons; - target = CD87ED5DE5F49418BF7FB90FCF9C2713 /* RNVectorIcons */; - targetProxy = FD1CAF4E4566CA857C6909CBEFC264FF /* PBXContainerItemProxy */; - }; - 66B25117551341ED1B378796C2F38708 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 3282290EDF382B60DA3F338D9D7018AE /* PBXContainerItemProxy */; - }; 66D5FD8E0BF5E9FB94CC81CA6D836F42 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTText"; target = E49E330A27425F89DE89516B2F50AAE9 /* React-RCTText */; targetProxy = 3AFCC674053FAF5DC8E87833CC15D1F1 /* PBXContainerItemProxy */; }; - 692D0DCDF31FADD44E592EB82C34FB4A /* PBXTargetDependency */ = { + 67A340FD5EBB70FB76DD90293166533F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 96BC9B706EE73069F199C64E2D477638 /* RNDeviceInfo */; - targetProxy = D5F03882116F71456CA72B53B309CDF8 /* PBXContainerItemProxy */; + name = EXAV; + target = A954214FEA55463925B6F6E3A27B6016 /* EXAV */; + targetProxy = 8864717D0077DE0FDBD4B057E8B52A4D /* PBXContainerItemProxy */; }; - 692D767B0A606354DBE2AB3FAC028203 /* PBXTargetDependency */ = { + 6851E804B6B061DEAB88CF5926E323D8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 017AB91E1D5AB2B6096ADC666B072208 /* React-RCTImage */; - targetProxy = C0F49C3C9F218D61FC7F6D7DCFE077A4 /* PBXContainerItemProxy */; + name = EXFileSystem; + target = FD0F4E74C14C4B5B552686BD9576466F /* EXFileSystem */; + targetProxy = 5263AD4A9DD368B4782778E412D8B21B /* PBXContainerItemProxy */; }; - 69485F1C11C48922666F69A92EDE9EAD /* PBXTargetDependency */ = { + 697EA30F9EDF9A358507AC6086B61816 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-CoreModules"; - target = 541B734EAEC62BA761D4C886EF4FC968 /* React-CoreModules */; - targetProxy = E29698D02AC946BB210AAB726BFE705D /* PBXContainerItemProxy */; + name = "React-jsinspector"; + target = 115FC7605B6A0F6044A879F6EEB7DD99 /* React-jsinspector */; + targetProxy = 213AD7C7B7A3599FB3A851F2AF78BA8F /* PBXContainerItemProxy */; }; 69F4F6FE10701C0907566E910C5BB6B8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -16995,11 +16850,29 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = A3F86DBAC5E1C8F0724C396F51BBECE7 /* PBXContainerItemProxy */; }; - 6B86BB43A6E15E186F912C6C98C2C1B9 /* PBXTargetDependency */ = { + 6ADD6F1C7CC96B8B55121B70ED0D5A1F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; - targetProxy = A47ECBE7850B3996A07E25CD70A7D4DE /* PBXContainerItemProxy */; + name = "QBImagePickerController-QBImagePicker"; + target = 2423D1FB7F3F91E20CF12466E84D7586 /* QBImagePickerController-QBImagePicker */; + targetProxy = CA5D8F6A3E7A1385F0FFD2AC8BE417FA /* PBXContainerItemProxy */; + }; + 6BE1CA3969D6DFC8031EAA6EEDE5EE21 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 01B53B6A43CBD6D4022A361BBFCCE665 /* FirebaseCore */; + targetProxy = 7F9603DE3CD05037592D96A53669C89A /* PBXContainerItemProxy */; + }; + 6C233080056CA0587E6A088D716F7D9B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Fabric; + target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; + targetProxy = 4A032BB66611274CFE0B8CEF80F4C9C7 /* PBXContainerItemProxy */; + }; + 6C33FF42CB5AB88C73AED6CF477EC8E6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBLazyVector; + target = 1CCF1D06CCFE0D0AB787DF0923C94D79 /* FBLazyVector */; + targetProxy = BF476CEE4FF0724590228DFAC12A0DC4 /* PBXContainerItemProxy */; }; 6C40FED36ADD7D57BED761F594CD832C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17007,59 +16880,41 @@ target = 64E78828D8355514B3B6BE78FAE7806E /* React-RCTSettings */; targetProxy = B89102853C0AA8B4E4660B0A341C408A /* PBXContainerItemProxy */; }; - 6D2211B396641BD61C1B8AEF2D4400D4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTRequired; - target = 9D255DD73ADD1E4565B5CCB665433053 /* RCTRequired */; - targetProxy = C623896093A0C6619085024694ECA4E2 /* PBXContainerItemProxy */; - }; - 6D38EEB5CA443B7208779A031D309D05 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = BD7B2D8FF0ABCB89D01F6E21D5364678 /* React-RCTVibration */; - targetProxy = 0702956FF57CE00439DD82C571A6CE90 /* PBXContainerItemProxy */; - }; - 6D7FE63441A8D6E0C8171778323C288E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 2E2ABA11C27993D4CDD5DA270C4B75F1 /* React-RCTBlob */; - targetProxy = 2DF1584774791DDCB393CF91AA431745 /* PBXContainerItemProxy */; - }; - 6EAC526BA359998E4F750ADE69DC4907 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; - targetProxy = A4506428B4FFF0802C539255D12A0B3B /* PBXContainerItemProxy */; - }; - 6F52E2D7298C4B55C6F71040A996330A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RSKImageCropper; - target = 41B2EC6C9E2D84CDC87C341E2314557C /* RSKImageCropper */; - targetProxy = B3000F0A14A037C9EE2905F34929B827 /* PBXContainerItemProxy */; - }; - 70B1A1A13698238F8C6EE3E16FB889E5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "QBImagePickerController-QBImagePicker"; - target = 04C5C3D37D3EB282EFD1E2A2122B9429 /* QBImagePickerController-QBImagePicker */; - targetProxy = C3ED9FBC19EF0118D2A2BD674C8DC652 /* PBXContainerItemProxy */; - }; - 7274C1891844934B8ABFD9FD2F633474 /* PBXTargetDependency */ = { + 6D4EE579ABEDDB993D3A67B1D5A1697E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = FCF7F314E2B8E449420B47EF6758456C /* PBXContainerItemProxy */; + targetProxy = 5764721824CD50AECC4E368F7D6967DC /* PBXContainerItemProxy */; }; - 7283726E48F557C2D7D1ADA67822B895 /* PBXTargetDependency */ = { + 6DAAF97E297425CB09CA8EACA7F50CC9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = QBImagePickerController; - target = 29853B24544C7926C2BFC70C42760675 /* QBImagePickerController */; - targetProxy = 792BECADD2B2A46B5CE164A06DA9E7E8 /* PBXContainerItemProxy */; + name = RNFirebase; + target = 72831AB9D90A45024AFD8489D0CEB6C3 /* RNFirebase */; + targetProxy = F7891F20AAB51CD2305E72D9E6C79A72 /* PBXContainerItemProxy */; }; - 73408288A5D0F38AE1EA5A1E25B0D6B8 /* PBXTargetDependency */ = { + 7065AEE45A12E094ED4C7D5D3A036325 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RSKImageCropper; - target = 41B2EC6C9E2D84CDC87C341E2314557C /* RSKImageCropper */; - targetProxy = C8559E7BDA177A0B95F329DB82853FA2 /* PBXContainerItemProxy */; + name = Crashlytics; + target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; + targetProxy = C899E28B81AB47B017BD54DCB0921091 /* PBXContainerItemProxy */; + }; + 717E1ABA439729B533DB162C3F062E25 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "rn-fetch-blob"; + target = 354080E72782177DBAB3CCEC8A61DF26 /* rn-fetch-blob */; + targetProxy = 2A8749BBA8B9E5FC46965CD4DB6321C7 /* PBXContainerItemProxy */; + }; + 72FFA1BB912281719230C1A7CA408B2B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTImage"; + target = 017AB91E1D5AB2B6096ADC666B072208 /* React-RCTImage */; + targetProxy = 1B8B9300C4E3FFA252539DEF7563C21B /* PBXContainerItemProxy */; + }; + 73387D624963D286E47F433D5C2162F8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNAudio; + target = 1D8ED4A20867A7DBE943508D13C7FCB6 /* RNAudio */; + targetProxy = A5D0D2C1C46F84BDC3A3679F43E7252A /* PBXContainerItemProxy */; }; 7461A63F993AB39EB67CB5B64395C17B /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17067,17 +16922,17 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = FC21EA40C24BBDB20C2BE4568BC0017C /* PBXContainerItemProxy */; }; - 74CD1B1AB8E14AD043834D609DB6D596 /* PBXTargetDependency */ = { + 76212534600AC2691B8480810723A713 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = 31642F9D9703DB0EE0ECE8EE477DE676 /* rn-extensions-share */; - targetProxy = 00BC223B3BFF18AD8A95DB2CC580D111 /* PBXContainerItemProxy */; + name = "React-RCTNetwork"; + target = 60F43D68BD7290E1B24C3BE7B3382AD3 /* React-RCTNetwork */; + targetProxy = 3C644EF417E45B39EC00BFEBDBE7CD77 /* PBXContainerItemProxy */; }; - 76C6955C4F4FF70FF1D77D52C6814A9A /* PBXTargetDependency */ = { + 7678AC52F85EFB518404449D3A9731A4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; - targetProxy = F0D677CB0F9102D1BC8441D5CF558B1C /* PBXContainerItemProxy */; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = E4AE7D1E6B31A9E687D20B31085D1025 /* PBXContainerItemProxy */; }; 76CA3BA17589A85E650786940D8E1853 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17085,11 +16940,11 @@ target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; targetProxy = AAC869672B6119FA01B23690C77B30FC /* PBXContainerItemProxy */; }; - 780357C4EB8CC3F4FA4FCE85077CD879 /* PBXTargetDependency */ = { + 776043E43EC5BB50AD868FF04C225C68 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = 31642F9D9703DB0EE0ECE8EE477DE676 /* rn-extensions-share */; - targetProxy = DAD12546461B165E8EF6E9C9B9B337AD /* PBXContainerItemProxy */; + name = SDWebImageWebPCoder; + target = E90B06E472DDA9583C2227DCEBFF5145 /* SDWebImageWebPCoder */; + targetProxy = C516917917E0AB9BD9E3AD7863A4FC86 /* PBXContainerItemProxy */; }; 781E92AB9AD5C64251E7E935A7F59919 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17097,24 +16952,6 @@ target = 123D4D7AC3D41ABC0675B1DB3613066E /* RCTTypeSafety */; targetProxy = 386C0EB352726BA92F7F015C2FB264EF /* PBXContainerItemProxy */; }; - 7830BB79FD737B9E5ABF52EB79B1CF55 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 017AB91E1D5AB2B6096ADC666B072208 /* React-RCTImage */; - targetProxy = D41F4FE2121B03DD770D3ABCAA0DB990 /* PBXContainerItemProxy */; - }; - 79641BD0AC13A7C88F06424E8C2B9254 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 6CAFCD3C8DDBA20EE5B4794529B7FDED /* UMReactNativeAdapter */; - targetProxy = 411E5BC9B0060579ACEE1C8B0C6CCD68 /* PBXContainerItemProxy */; - }; - 7AA5D1984723EAEE2A7ABB0B00E9354A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = 2A99896D65A33A482D2D82FC436F823D /* FBReactNativeSpec */; - targetProxy = 0B0A1D2C0C5A2E0D8595777CCE01AD5B /* PBXContainerItemProxy */; - }; 7AEC0D15EF11C1415A94D769184AD812 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseAnalytics; @@ -17127,53 +16964,29 @@ target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; targetProxy = 53E2A1BD19729C2293AB46582C686251 /* PBXContainerItemProxy */; }; - 7B8A53BB54417224A99AF2BAD77359C2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; - targetProxy = 4F397DB02CCA61F9AA9679F28C8C24E2 /* PBXContainerItemProxy */; - }; - 7BB476FDD56F2F9841DC412F9485F2CC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */; - targetProxy = F9DBC3934A374C51FCBDC2844ED0FADA /* PBXContainerItemProxy */; - }; - 7C7AECFD7A893BA59A1453DB5D3E1F86 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; - targetProxy = D85278CD78814127D44A13B1D24EF9FF /* PBXContainerItemProxy */; - }; - 7CFFE3D51C0A05147EDF179B4E565A37 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNScreens; - target = BC730040B89735D99427DBE0EDAA828E /* RNScreens */; - targetProxy = 6945B53A27BE9BA0B8A7C7A80B08DE93 /* PBXContainerItemProxy */; - }; - 7E3EFB2474BB87D3D01FBEE24BC69C7A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 7F28D4475D7DAD9903F7E6044DD921C1 /* React-RCTAnimation */; - targetProxy = 8650306CF479E44E1F57931A4E1AADAF /* PBXContainerItemProxy */; - }; - 7E922BF4BE46475C51040CD3AD15BCB9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 7135140B597489F3FE9D0A6D1FADD9C7 /* React-RCTActionSheet */; - targetProxy = 60E144C08E62E149ACCDA7FE7CC3713A /* PBXContainerItemProxy */; - }; 7F18628588E8CCA477702C17B6396824 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; target = E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */; targetProxy = 07B672E660093ADC2F1D1FA9D1271CF4 /* PBXContainerItemProxy */; }; - 828E6C131898ED93B938266ED53A822F /* PBXTargetDependency */ = { + 8026D966B6A7F9090CE3BF7D28278921 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 017AB91E1D5AB2B6096ADC666B072208 /* React-RCTImage */; - targetProxy = D273FE59687BB2842385F64FC4D840EF /* PBXContainerItemProxy */; + name = libwebp; + target = 427A5566E42596B2649019D00AA80F10 /* libwebp */; + targetProxy = DC84FCA893C2476DF6B83DA1E8D719F4 /* PBXContainerItemProxy */; + }; + 80B9F00CAD0F4AFF666549E32F0334F1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTActionSheet"; + target = 7135140B597489F3FE9D0A6D1FADD9C7 /* React-RCTActionSheet */; + targetProxy = 698B8F91D5922A2E37F6DD1024D608F6 /* PBXContainerItemProxy */; + }; + 80F60A4601D82CC9C75F28464ABB92A8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; + targetProxy = 4AEACCA9947B928CEE93E6504C63D1FB /* PBXContainerItemProxy */; }; 82DE4A10C611155EAA73BA712DF1D258 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17181,83 +16994,47 @@ target = A1DA7160DD40C2F4C7332F30DE279FC2 /* FirebaseCoreDiagnosticsInterop */; targetProxy = 729C920815C311E1D586861019E10612 /* PBXContainerItemProxy */; }; - 84B7085E72748E1DE6C84605C791CD5B /* PBXTargetDependency */ = { + 8500F96B2D974EC6D2DA69B1CA615F7E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFirebase; - target = 462F2792E1383810DA255DC15CB8F942 /* RNFirebase */; - targetProxy = 8622FCA6F2D6FA9B66CC6C7201FD0491 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; + targetProxy = 0E0B887A3FBB975E5F05AB1FD93372ED /* PBXContainerItemProxy */; }; - 84C075C726718FBA14837BF4923BD756 /* PBXTargetDependency */ = { + 85298C12D917FE0D5F7BB330D8B17268 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 64E78828D8355514B3B6BE78FAE7806E /* React-RCTSettings */; - targetProxy = 6D47D9569120DA0D2FBD214C2CC3826F /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = EE96A92842C7DB9F8DD7593EC0B8D0FE /* RNGestureHandler */; + targetProxy = 3EAE6DC73CF9A206E7E979992D502029 /* PBXContainerItemProxy */; }; - 85D55D44395997DBD864114035469164 /* PBXTargetDependency */ = { + 87B9A470244CA0D9C95478DA3F7818EA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 799B29F9D6DCE28B98CC259440382F20 /* Firebase */; - targetProxy = 33AD74CF20B152A430D4688994FD72CD /* PBXContainerItemProxy */; + name = "rn-extensions-share"; + target = B84B55116AE8D2FC32258CFFF2972E1A /* rn-extensions-share */; + targetProxy = 2B8FBC6AEBC73557360D4174B9DCE8EB /* PBXContainerItemProxy */; }; - 861DA4733F0DCFB776687F8C9172CE73 /* PBXTargetDependency */ = { + 888D746DC933ABC43FC64D0738D35D23 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXPermissions; - target = E07EA1A35FBB3A986F484EB01CDD5527 /* EXPermissions */; - targetProxy = B6F95B6DB6F7A9D43347C894CCC6B183 /* PBXContainerItemProxy */; + name = "React-RCTVibration"; + target = BD7B2D8FF0ABCB89D01F6E21D5364678 /* React-RCTVibration */; + targetProxy = 58F893A6A79E2CB875502153739DDD3E /* PBXContainerItemProxy */; }; - 8780AE7F273D9B914164A9DCB00D24B2 /* PBXTargetDependency */ = { + 89402879C4CBE18F0997DD2B81A33664 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Yoga; - target = FEC7CEE99C30C1292EC32D7E006E4E85 /* Yoga */; - targetProxy = B68EDAE1929F2491A8C3F3342802501C /* PBXContainerItemProxy */; + name = "react-native-webview"; + target = 52B496375B47BE24C88A169CA30D0DEA /* react-native-webview */; + targetProxy = 4DC50D5AF3FEF5740E48AC61F1C4F18C /* PBXContainerItemProxy */; }; - 88EED09F9CE56D7AFDF6314635728513 /* PBXTargetDependency */ = { + 8995391C752773F5E2B16422A1E30848 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXConstants; - target = A486E5AB43C3327005F1C0B986A448C0 /* EXConstants */; - targetProxy = AAF14454A369FD9F7C492FB03D63268A /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 01B53B6A43CBD6D4022A361BBFCCE665 /* FirebaseCore */; + targetProxy = 4B9F4A1566EF0ED66A077161D0D9138C /* PBXContainerItemProxy */; }; - 89CE6084B00329379BBA073CA0DCE79A /* PBXTargetDependency */ = { + 8BD92BF87C75D6C861B4EB6A511B7BEB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 59D7DEBEE2A5AFB4A70211E96873E983 /* react-native-background-timer */; - targetProxy = FBAC14FB6B7CB31EC67218A13337EDA0 /* PBXContainerItemProxy */; - }; - 8AB8F7668342350F5EC33128DAFE3EB5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = 6EA8C542D237B6C3582C6CD2CF9DBA96 /* react-native-jitsi-meet */; - targetProxy = A56A6635B247E3A3B8ECEADF8876B6E1 /* PBXContainerItemProxy */; - }; - 8AC7A6B39FD48881F27B003D06E46DE6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNUserDefaults; - target = 726A1DAA8BA43A59037E6DD0759CCBCA /* RNUserDefaults */; - targetProxy = 1C86A9B7AF45812CA2B5FCB5D2852E6C /* PBXContainerItemProxy */; - }; - 8AF045EED00F9D295E6DEAA8F22B94AD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = 303D154AC7C4E1DB362014D843A75377 /* react-native-document-picker */; - targetProxy = F5EC1F630165087F9F51E4D09EDECAE9 /* PBXContainerItemProxy */; - }; - 8C841BFD91A8649B4B6DAC5682F0A8DD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-notifications"; - target = B143863673452F4D5E000E2997B3651F /* react-native-notifications */; - targetProxy = 71093A90EC7D99542E57C67A4B1049CC /* PBXContainerItemProxy */; - }; - 8D0D00A72032D24EB24DFA0BC81EDBED /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = B413ECF06F2CDCADFB85C45E9A5FEA2C /* SDWebImage */; - targetProxy = 2C16ACE99BA4BEC6536A5484822AA1C8 /* PBXContainerItemProxy */; - }; - 8D1CDFEB7196B7DDEC81FA1A97E81082 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = C2F81329D3C42F2D872A4B80180545BC /* React-RCTLinking */; - targetProxy = 5A7017F02B869360B3E3A91F7AC688FF /* PBXContainerItemProxy */; + name = UMImageLoaderInterface; + target = C539BA294CDADF056F9D91ECDAFC2FF6 /* UMImageLoaderInterface */; + targetProxy = D31A5A5C4A7301CADE8F8F4DDD419CA8 /* PBXContainerItemProxy */; }; 8D5A8BF15CD510250550ACB106EF0C7D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17265,11 +17042,11 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = 0736F43E628DF211771775F69A163785 /* PBXContainerItemProxy */; }; - 8DA6871F75EC2390D4874510AEB2C1D4 /* PBXTargetDependency */ = { + 8DA74C007FAE49B3AB8BD134924A91F4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 48A082BED63E227E6247A0541D876B43 /* rn-fetch-blob */; - targetProxy = 573863441BE026C444FB86F0B28C0B77 /* PBXContainerItemProxy */; + name = Firebase; + target = 799B29F9D6DCE28B98CC259440382F20 /* Firebase */; + targetProxy = FE30F3929A4B17DDAA9B2CD32B2D653D /* PBXContainerItemProxy */; }; 8FDF5740DAB8FA07737CF3A3409154DD /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17277,35 +17054,77 @@ target = B81CA3A3A63C0085E4085060FE4DD9FF /* React-jsiexecutor */; targetProxy = C013798CC86616601286D9425D1E96EA /* PBXContainerItemProxy */; }; + 9098544BEE6E7C852A6FF06E8FE04A94 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNScreens; + target = 0E27C1D2919A1336E4EED2093FE67ADC /* RNScreens */; + targetProxy = DE5D991413DF357F142E6B3309F5DBA2 /* PBXContainerItemProxy */; + }; 90D88B1CA438DBF891A5226D8D8B5611 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-cxxreact"; target = 9F219ED43F3AEA000562B9BCFD624DDD /* React-cxxreact */; targetProxy = 1BA9FE8D4FA41AD95626F63DB8C9FBEA /* PBXContainerItemProxy */; }; - 91923F01BC5F4F33CB459D9E9F6FC125 /* PBXTargetDependency */ = { + 91972E82A7F88ABAC35F6D8AF19B5A43 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Fabric; - target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; - targetProxy = 609FD6BE42D591AB8F7D753800463D32 /* PBXContainerItemProxy */; + name = "React-jsinspector"; + target = 115FC7605B6A0F6044A879F6EEB7DD99 /* React-jsinspector */; + targetProxy = AFA9DD6BC2F56B8271E1A6F415AB7E57 /* PBXContainerItemProxy */; }; - 91C3ED1A4CF6FF0234F197B648574CB2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = C2F81329D3C42F2D872A4B80180545BC /* React-RCTLinking */; - targetProxy = DAE7C152EC9D2312AAE0D4FEC9C60594 /* PBXContainerItemProxy */; - }; - 933D7C0070FD454F00B9C7BA454DC48F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 1F22396CB543506E7EA28A47A30E9727 /* GoogleDataTransport */; - targetProxy = 361306A42FF5D37D2E1B3C80F1908F09 /* PBXContainerItemProxy */; - }; - 95360361A466C5A4CA9C1CED3C0C1659 /* PBXTargetDependency */ = { + 926954F99CD6A3B92161995EA11E01CB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = BD671032620645639B7C0923FD6C5743 /* PBXContainerItemProxy */; + targetProxy = 1C4A5EEC8AE6091FEF31F46A5F54F298 /* PBXContainerItemProxy */; + }; + 926C9988B7B8E2DF4ECB1D1D1A900CF7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImage; + target = EB1AFC730F005065E951DE8E8F6826B4 /* SDWebImage */; + targetProxy = 2F95A9444DF8D3D511E7C871C1A15022 /* PBXContainerItemProxy */; + }; + 92CB3D9998A1CEF2703D359B724A0B0E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFileSystemInterface; + target = 7825F222F53EF434DE74A6C6FAF290E9 /* UMFileSystemInterface */; + targetProxy = 56DE2F792AB886192CE63AD1A12083D1 /* PBXContainerItemProxy */; + }; + 9307EB014165F8AF38B43F1326F60328 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTAnimation"; + target = 7F28D4475D7DAD9903F7E6044DD921C1 /* React-RCTAnimation */; + targetProxy = 767982899D470DF11FA512019A4E7B6E /* PBXContainerItemProxy */; + }; + 930A6DE757E76F546AB58A876EE3BEAA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Fabric; + target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; + targetProxy = BF619C7E366B06683FFA9A0AF52E57A1 /* PBXContainerItemProxy */; + }; + 9359A2A75749126D7D997811E06F0ACB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; + targetProxy = 9F65BCC21955AC7FFB68B2DB6A11F1CE /* PBXContainerItemProxy */; + }; + 93E932F33790F0F9047B74EDE865523B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsiexecutor"; + target = B81CA3A3A63C0085E4085060FE4DD9FF /* React-jsiexecutor */; + targetProxy = 0370A90D17A9C60B7C6D4B9F3A8ACA07 /* PBXContainerItemProxy */; + }; + 944B96AAD3BA5BD053BEF4A936FF97A0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTRequired; + target = 9D255DD73ADD1E4565B5CCB665433053 /* RCTRequired */; + targetProxy = F572C3274FF0388DA026501513667F97 /* PBXContainerItemProxy */; + }; + 947265B05CD534C6754538402954011E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNVectorIcons; + target = 743B4DEB68D23793521F266C0241382A /* RNVectorIcons */; + targetProxy = B3C655E23C03EF30F03C012AA4A6B0A1 /* PBXContainerItemProxy */; }; 96DA387B98978C2974700F14ACFDEBCE /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17313,11 +17132,11 @@ target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; targetProxy = 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */; }; - 9704E20FFE8214BD2B4AFB3071770729 /* PBXTargetDependency */ = { + 9786AED5E829A4BAB70FFC36CE6B4842 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNReanimated; - target = F4A43BC5CC1CE68C79792AEBBCE9C138 /* RNReanimated */; - targetProxy = AEB22BD9061F2CF18A3FD6F653BF955F /* PBXContainerItemProxy */; + name = JitsiMeetSDK; + target = 21B91730AA56171E7B635E8AFB2A7F3E /* JitsiMeetSDK */; + targetProxy = F2A63AC8C2B3C93682D6D35797C615D5 /* PBXContainerItemProxy */; }; 97C83F1945FAF0077CFCAC91369259D7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17325,35 +17144,23 @@ target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; targetProxy = 6BD0984377EB6F1CDAF209D0EEAE7356 /* PBXContainerItemProxy */; }; - 982803FC612CFA98AD66D0C1B5A74B1C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstanceID; - target = 3C6A9BF574C3488966C92C6A9B93CA8C /* FirebaseInstanceID */; - targetProxy = 307E2EFEE04182478F55D9EE22DE4612 /* PBXContainerItemProxy */; - }; - 9838942E27B10C17C8281C9A6195127D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 154806E46BCAC13C4328C03CF0873402 /* PBXContainerItemProxy */; - }; - 9A28C74034F532AE9C6CE24587A7588F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 99BDE318EC72039DFF8CA1723B8D209F /* PBXContainerItemProxy */; - }; 9A6093C2C517B5FC29ACD2E96435EE49 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = 09C15A614E3100AD5CAA64B248FEA2B2 /* PBXContainerItemProxy */; }; - 9A9CF3E2584C408724BE6A5BBCCAE440 /* PBXTargetDependency */ = { + 9A9C8C007EF92EFD07A049BB8EE8DD5B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFirebase; - target = 462F2792E1383810DA255DC15CB8F942 /* RNFirebase */; - targetProxy = 70ECBA486A165FDCA6384E6B103074B8 /* PBXContainerItemProxy */; + name = "boost-for-react-native"; + target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; + targetProxy = DB3B9BA411F5E3BAD4C007A3D8D32630 /* PBXContainerItemProxy */; + }; + 9C2294FB3F9071D9AE0142E120866E4D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */; + targetProxy = C448A5C24E99779C98D71DDE1D9FE8DB /* PBXContainerItemProxy */; }; 9C390500C3C568F59A8589C455BFF4D5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17361,35 +17168,95 @@ target = 3C6A9BF574C3488966C92C6A9B93CA8C /* FirebaseInstanceID */; targetProxy = C6C35C61164D4136265E61ECEB28D38A /* PBXContainerItemProxy */; }; + 9CA79C2DC64564F22D5EF7967532900B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXConstants; + target = A486E5AB43C3327005F1C0B986A448C0 /* EXConstants */; + targetProxy = 28142F0A3AA066A7268567128010D3E8 /* PBXContainerItemProxy */; + }; + 9CAF2798C8AEA8082EC6279CF92B9F1C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; + targetProxy = D8A30878C445362FEA608949DF911C10 /* PBXContainerItemProxy */; + }; + 9D78AC1EC7B706BAC4B1A2027B8BE8E0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTTypeSafety; + target = 123D4D7AC3D41ABC0675B1DB3613066E /* RCTTypeSafety */; + targetProxy = 67ED359B2D4DD066EF468FF0C65BC7C6 /* PBXContainerItemProxy */; + }; + 9D99AB10F409D68B8FE623C138A7E00A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; + targetProxy = 3BE17F46C2A69521BEDBDD00A0A50802 /* PBXContainerItemProxy */; + }; + 9E38E1CBF0D5044B621736B49D869DBC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDeviceInfo; + target = 5B9C887470B06C308DB225E189F87B0E /* RNDeviceInfo */; + targetProxy = 694EF6F8A77E572BCB8132EE1A40F426 /* PBXContainerItemProxy */; + }; + 9EA537495D950AF67143A0A00EF5BD01 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = 57B9E0A892EAB5C13D4AE7D4B1DE0C16 /* GoogleAppMeasurement */; + targetProxy = 2495FC42DB57AD3AF7AD1583BA7CC752 /* PBXContainerItemProxy */; + }; 9FF2EAC462E085F8426E42810CD320B0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = EEC2A18D5D098BDAB781F34428BB77D1 /* PBXContainerItemProxy */; }; + A00B5A4C770E702BC030F968308589DD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImage; + target = EB1AFC730F005065E951DE8E8F6826B4 /* SDWebImage */; + targetProxy = 2840D4A5F9645E09FFCA891F58E7DCBC /* PBXContainerItemProxy */; + }; + A00BE7D5A1F21A9B9D3E8515C5434A11 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = QBImagePickerController; + target = 2E1B62D66A7097B06E8963437D5909DB /* QBImagePickerController */; + targetProxy = 3E4C1056740EB75C46BF5CF5369B4423 /* PBXContainerItemProxy */; + }; A023A88816EE55C0E7AC6D8323FAAF53 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "boost-for-react-native"; target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; targetProxy = 10B32C2C31A516CD0A0578144E20FD18 /* PBXContainerItemProxy */; }; - A0944219995841FB4B242FE2FC77F435 /* PBXTargetDependency */ = { + A08CC873CE13E33D866F21E27CCC0068 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFastImage; - target = 2CBADBAF1891263102225816D0B97AA0 /* RNFastImage */; - targetProxy = 8E04E32B43EF00E94635A2C7FB481BB9 /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = 123D4D7AC3D41ABC0675B1DB3613066E /* RCTTypeSafety */; + targetProxy = F3221A1E5337C342A225EE32D707BF14 /* PBXContainerItemProxy */; }; - A18F570DA6DB94963102B4652FAF1465 /* PBXTargetDependency */ = { + A198C7E8B0F5ADE28D6C3ABF8D10DB9A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Crashlytics; - target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; - targetProxy = F0F94BB39A1E49C06A06363A14081341 /* PBXContainerItemProxy */; + name = SDWebImageWebPCoder; + target = E90B06E472DDA9583C2227DCEBFF5145 /* SDWebImageWebPCoder */; + targetProxy = 07ADAF0D644FBD9A61280BD647EE87F4 /* PBXContainerItemProxy */; }; - A430D3D197C5D0FBE12CF3C32AF6F199 /* PBXTargetDependency */ = { + A1F87FDB6F11707034423916F6327AD4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 9F219ED43F3AEA000562B9BCFD624DDD /* React-cxxreact */; - targetProxy = 5C57A69987BFD032769D3DC7FD8BE175 /* PBXContainerItemProxy */; + name = "React-RCTNetwork"; + target = 60F43D68BD7290E1B24C3BE7B3382AD3 /* React-RCTNetwork */; + targetProxy = 65171C346B316FE83CE70E02D0526063 /* PBXContainerItemProxy */; + }; + A41C90737DB1159F48A7149F9CC9CA8B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libwebp; + target = 427A5566E42596B2649019D00AA80F10 /* libwebp */; + targetProxy = 9D7A46D590B788C61A8EDD48B6EA8FAA /* PBXContainerItemProxy */; + }; + A443293B09145EA23D030CC5611357C6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = AC3205597E947BFE63BE5B9164F45F78 /* PBXContainerItemProxy */; }; A5351590EF2D946171B0ECC1142DED94 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17403,29 +17270,35 @@ target = 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */; targetProxy = DF12C5D7BB68C2724D2F39A531F2A52A /* PBXContainerItemProxy */; }; + A55322FA0E8F95E66FDAA2B6EBC31A7F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXPermissions; + target = E07EA1A35FBB3A986F484EB01CDD5527 /* EXPermissions */; + targetProxy = 2A7932490BF02B7C378EAD94363DE810 /* PBXContainerItemProxy */; + }; A6291B132A310C334C56604E7BCF20C5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTNetwork"; target = 60F43D68BD7290E1B24C3BE7B3382AD3 /* React-RCTNetwork */; targetProxy = 3C63709D9A9E8BFEDDDB0EC6915A77BE /* PBXContainerItemProxy */; }; - A799F082B00504FE449D28EA163E86E4 /* PBXTargetDependency */ = { + A6ECAA2C4096BD8B1A2E3E0DCAEDDB6E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 79D2FF753EA36849FF4C1CB9AE5A4940 /* PBXContainerItemProxy */; + name = UMFontInterface; + target = 69A8731022935CD8A0051D815C1867A8 /* UMFontInterface */; + targetProxy = 5E03C9744EE1148CA3B5F55FD8769233 /* PBXContainerItemProxy */; }; - A911633961FED00ECE94BF0DD2495CD6 /* PBXTargetDependency */ = { + A70995D6AA4205C9AE5F3C22A24E1407 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXFileSystem; - target = FD0F4E74C14C4B5B552686BD9576466F /* EXFileSystem */; - targetProxy = CF9FEE422ECFFE4ECFA765E51C3158BB /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; + targetProxy = CADADA5ABF71FB9915267206456FED92 /* PBXContainerItemProxy */; }; - AA57F8D6414ED11C63036DD247A57ABA /* PBXTargetDependency */ = { + A89B435084EC23B13C580E5B225F12EE /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RSKImageCropper; - target = 41B2EC6C9E2D84CDC87C341E2314557C /* RSKImageCropper */; - targetProxy = C8EFE3E87617CC52C95777065C419BBB /* PBXContainerItemProxy */; + target = 4DDE5693A87611C05EBF117455A2FB9F /* RSKImageCropper */; + targetProxy = B476E9F3A18732262C855CCE16167C64 /* PBXContainerItemProxy */; }; AA9052A974DA4ECF27CC38A7633849E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17433,17 +17306,11 @@ target = 57B9E0A892EAB5C13D4AE7D4B1DE0C16 /* GoogleAppMeasurement */; targetProxy = BBDC7C661CA5567D3925BC0747CAAEC5 /* PBXContainerItemProxy */; }; - AC3C2440F6DD131B01F086D7A82E1EDE /* PBXTargetDependency */ = { + ACCE80A5027A23A21AB5DDF060D40FC2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-keyboard-tracking-view"; - target = 8E266A85C21F3B00E0A4951D5F0E09DC /* react-native-keyboard-tracking-view */; - targetProxy = 80C8A4D33E28356A64E8266B4E2D5C75 /* PBXContainerItemProxy */; - }; - AD3B76819D12D8528725A8DE70F53A78 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 7825F222F53EF434DE74A6C6FAF290E9 /* UMFileSystemInterface */; - targetProxy = 2386E3BCA6A02B48F5019688ACFF9FBB /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = 2A99896D65A33A482D2D82FC436F823D /* FBReactNativeSpec */; + targetProxy = 9C4BFA9E72CCEEF9595F452470E6A046 /* PBXContainerItemProxy */; }; AD8CC2C3AD641422282F5A8CD85BA0A7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17457,11 +17324,17 @@ target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; targetProxy = 5BE488B88EB1D7B8BFE4A63D278D4B18 /* PBXContainerItemProxy */; }; - AEC5F191349F61BFDDBFD9072F9489CC /* PBXTargetDependency */ = { + AE49DDB5F148BF99B7C9C5E894056A8D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = 232D00D8ED7797390FB38004DE01723B /* FirebaseAnalytics */; - targetProxy = 9538FB037AED6318BE3070E4C0C0D852 /* PBXContainerItemProxy */; + name = "react-native-background-timer"; + target = 42BD655FCD2598C4D25D7B895932A77F /* react-native-background-timer */; + targetProxy = 5FA42D7B301BE8515DF82C0CC22A56DA /* PBXContainerItemProxy */; + }; + AF4E08619C709EDA5BBA2F306FBD75A8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTBlob"; + target = 2E2ABA11C27993D4CDD5DA270C4B75F1 /* React-RCTBlob */; + targetProxy = ED8A1DEEABE59DE3C2480E42F65DBECE /* PBXContainerItemProxy */; }; B12997E3D5BE4F39EC03469A5CD99829 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17469,35 +17342,53 @@ target = 5C53A3A5621162049D9B4399173FAD68 /* UMPermissionsInterface */; targetProxy = 17299B3B10FACA862736181ECC44D9A8 /* PBXContainerItemProxy */; }; - B2491E0B95839EFF4C8338C78906A805 /* PBXTargetDependency */ = { + B12B1A67B5817A2C89B57D7E1475D45E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFastImage; + target = 98F57C9A3FB6F5E9C1D7242BBE675E8D /* RNFastImage */; + targetProxy = 2748CE6CF1C6A9B85A8C7BDA32033DB4 /* PBXContainerItemProxy */; + }; + B2177753B91240A69037AE2C62C6C431 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = C5AFFBD7AA17635F65921D4417E5405A /* PBXContainerItemProxy */; + targetProxy = FC601CDF49A6294BFD0DB8365E38EE11 /* PBXContainerItemProxy */; }; - B2F857484B783EA57EB3B4B0C49FF1CF /* PBXTargetDependency */ = { + B3138C869D19037E8C156AAA28E47D27 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; - targetProxy = 951B6E00EA2C2F077CF59C9CF2754EA2 /* PBXContainerItemProxy */; + name = RNFastImage; + target = 98F57C9A3FB6F5E9C1D7242BBE675E8D /* RNFastImage */; + targetProxy = EC668F73411F9793F4F0B6DDF3065EA0 /* PBXContainerItemProxy */; }; - B3423CD2CB66A337CFCA02BD2E76EF7D /* PBXTargetDependency */ = { + B3D9CEEC0D2A70C1BD5D14A732A1D6E7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-splash-screen"; - target = 2805838904E98AA8807CBFDCC32F2AE0 /* react-native-splash-screen */; - targetProxy = 0D5374255D00D4F4C86936F13815D0A4 /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnosticsInterop; + target = A1DA7160DD40C2F4C7332F30DE279FC2 /* FirebaseCoreDiagnosticsInterop */; + targetProxy = D07ABC7864592F457E6D56CAD9499D1B /* PBXContainerItemProxy */; }; - B366B5FB3DBBD0B2611FC22F35093655 /* PBXTargetDependency */ = { + B64E540032B38133FC1B6E20A2EC86F2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = 303D154AC7C4E1DB362014D843A75377 /* react-native-document-picker */; - targetProxy = 064073E0DEE5654DF011090C88331D45 /* PBXContainerItemProxy */; + name = "react-native-keyboard-tracking-view"; + target = 0A839CF1E1DC111261AED3D86F9A04B0 /* react-native-keyboard-tracking-view */; + targetProxy = 144C2BE4917AC98DD56450F812A849A1 /* PBXContainerItemProxy */; }; - B51606501226BF76CE9AEE6315166CC6 /* PBXTargetDependency */ = { + B7135466D5C85B67B466081FDACA5D8B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-keyboard-input"; - target = 5C9A8A893D5CFCE5F284C62E8BD0F139 /* react-native-keyboard-input */; - targetProxy = FB1582396EDB21F1071136C5FD377F4A /* PBXContainerItemProxy */; + name = DoubleConversion; + target = E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */; + targetProxy = 586569852C0CDBDFDB3496DD458398BB /* PBXContainerItemProxy */; + }; + B799757B91952D8B0658B75D47A69A77 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTImage"; + target = 017AB91E1D5AB2B6096ADC666B072208 /* React-RCTImage */; + targetProxy = FB9E4AF81BE1C7BFF2FBF6A93C6F7564 /* PBXContainerItemProxy */; + }; + B854EFA790A494D99A1080C635EA7F90 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImage; + target = EB1AFC730F005065E951DE8E8F6826B4 /* SDWebImage */; + targetProxy = 216C6BEA95AC084C7DE64252B7F0A35A /* PBXContainerItemProxy */; }; B89D2CB67178C93A2DFF80F628C7A710 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17505,23 +17396,35 @@ target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; targetProxy = 54A7BA384E80D5DB0269C827877FE175 /* PBXContainerItemProxy */; }; - BAB6220AA947409F406FC9E68F0A6A6D /* PBXTargetDependency */ = { + B8C2B676095EB766BE87ECD76C2518E4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTLinking"; + target = C2F81329D3C42F2D872A4B80180545BC /* React-RCTLinking */; + targetProxy = A5BD86184175BCF0BB16C151F3A07113 /* PBXContainerItemProxy */; + }; + B8E06E7A5D5ED403947A809D3612D4B3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-video"; + target = 864F908B842632C53102364B908D850D /* react-native-video */; + targetProxy = BCCD5FE08120A497452E1CCEED33305C /* PBXContainerItemProxy */; + }; + BA18856760C8B8250D94780919462880 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 408DFC4708A4EDA17A90B7F9D075BAE5 /* PBXContainerItemProxy */; + targetProxy = 93AD4905EECC68DE4DA5BE905E86A72A /* PBXContainerItemProxy */; }; - BAFA13F1F5BACE700D6884F385198CD9 /* PBXTargetDependency */ = { + BA2BEDDB1162BF498FB412026D430EE7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = BD7B2D8FF0ABCB89D01F6E21D5364678 /* React-RCTVibration */; - targetProxy = F653EFFE67848E75FADDAE5CB1CF6057 /* PBXContainerItemProxy */; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = D4E228806DE3388E0AE3C2A6EB3C9E06 /* PBXContainerItemProxy */; }; - BAFDAD118DE46A6C53DCAE4C9FE333C2 /* PBXTargetDependency */ = { + BAFCDF0AD092D05FE06FFDC8862414EE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 00A1152257C714469E09BE277AC19E70 /* UMBarCodeScannerInterface */; - targetProxy = 0D7F11315964CD691FC14BEBE4735783 /* PBXContainerItemProxy */; + name = Crashlytics; + target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; + targetProxy = 5EA56BDF4FE88BD4B113A10114CCE696 /* PBXContainerItemProxy */; }; BB0C888F9800A9CBBD7F9AB387D65080 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17529,47 +17432,59 @@ target = E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */; targetProxy = 95BD7607104E910918F88DD81F19B1C1 /* PBXContainerItemProxy */; }; - BB9EEE60A6212EC2E9D65FA586EA3C9A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = 6DE003F64B133830B9AB9321298DAAC2 /* ReactCommon */; - targetProxy = 5254FC944977CAB59565A8ACDE28F7EB /* PBXContainerItemProxy */; - }; BD9A27944522233DC0927B646379AEDA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; targetProxy = EF35D916FEB5C7D4563D576974DC8374 /* PBXContainerItemProxy */; }; - BE0A2BD20D5DEAF403DCB6275A77D475 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 4D6F727054299FD0134627D3D5380A3B /* PBXContainerItemProxy */; - }; BE4D192BDC3D265CD08A007327189550 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = F7236D5BFD42DBEDF2652D4E47992BD2 /* React-jsi */; targetProxy = 2A5330A27066B77F84440B5AAE0EB91C /* PBXContainerItemProxy */; }; + BE53F54183A98F2E96C1166664B6A0B4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstanceID; + target = 3C6A9BF574C3488966C92C6A9B93CA8C /* FirebaseInstanceID */; + targetProxy = EB2AFB2660500756764E5E27E54E713B /* PBXContainerItemProxy */; + }; BE70AB1116776A9F90A3C783B9F1769B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMConstantsInterface; target = 458293E00EF1C1F42778F9425AD34AA4 /* UMConstantsInterface */; targetProxy = 3CE12525FC73E81B8DC468274B077D13 /* PBXContainerItemProxy */; }; + BEDFBB1EA759BA466CCACFAB3078EB2F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMReactNativeAdapter; + target = 97F64487E3A3BD041F3D7CC6460EA688 /* UMReactNativeAdapter */; + targetProxy = 5FF7B488B609B255FFB33976CD27F18F /* PBXContainerItemProxy */; + }; + BEF99443AA77A3849CDD0E7A9866D4E2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMBarCodeScannerInterface; + target = 18CEE6DA46F6A35B632E30ABDA5F0368 /* UMBarCodeScannerInterface */; + targetProxy = 6026809C55A908A5D0E0DC91C727F216 /* PBXContainerItemProxy */; + }; + BF27720B0CFD36FED37DE547EDC5A88E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-splash-screen"; + target = A3E6473348261FF8E0036D77598A7883 /* react-native-splash-screen */; + targetProxy = 5DA2E1B829916F75D96CFA4566589951 /* PBXContainerItemProxy */; + }; BF9BF0CDEA697B8AF2D71C6FF954AC77 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTRequired; target = 9D255DD73ADD1E4565B5CCB665433053 /* RCTRequired */; targetProxy = 2C95DFFCB2EC326C56D43774DED19805 /* PBXContainerItemProxy */; }; - C179764057DD5037E61AB375505938F6 /* PBXTargetDependency */ = { + C0246C4CE36C8B93B788805407995A1A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-splash-screen"; - target = 2805838904E98AA8807CBFDCC32F2AE0 /* react-native-splash-screen */; - targetProxy = 8D75C42D08F4804173B2019961A8D1E6 /* PBXContainerItemProxy */; + name = EXAppLoaderProvider; + target = 4ECE1108F140208A729A83BC94FAA150 /* EXAppLoaderProvider */; + targetProxy = 49DBAF47EF3E1FF7076A2B59DF1AB54F /* PBXContainerItemProxy */; }; C217101135EFE0403239B5B2FC6C3632 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17577,47 +17492,29 @@ target = 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */; targetProxy = F2E57867E76DED400D1A4035EF3D8735 /* PBXContainerItemProxy */; }; - C26C30ACB749908AE4BF5F8BF432DCE3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 59D7DEBEE2A5AFB4A70211E96873E983 /* react-native-background-timer */; - targetProxy = 34010E47EAEB78CAC0EB090479EF4E8A /* PBXContainerItemProxy */; - }; - C40E60E74C9CE7BD690092547770BA14 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = F3E3385E2E3CE8C2EED8CB0B1CE786AD /* PBXContainerItemProxy */; - }; - C621A4CCA9DE94AEF2712E2228851A9C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = E0B018EB633DDF12D963E58CA1CDB18E /* react-native-orientation-locker */; - targetProxy = E376D2F4100E504488F77CE8E6775677 /* PBXContainerItemProxy */; - }; - C650B8A1B62BC64CB99E5D0A72E8BB9D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-CoreModules"; - target = 541B734EAEC62BA761D4C886EF4FC968 /* React-CoreModules */; - targetProxy = 6DC845E6A6B4FAE64897D6BA52979BD3 /* PBXContainerItemProxy */; - }; C685EEFD7FF4D4C3F16AD088F18AD053 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; targetProxy = FE8C7693079779C66A2B166BAD56A51E /* PBXContainerItemProxy */; }; - C6CD31B79D213EBC388F4AEBB8926ACF /* PBXTargetDependency */ = { + C6FED24BE250D854B2FF2688A6009E08 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = 6EA8C542D237B6C3582C6CD2CF9DBA96 /* react-native-jitsi-meet */; - targetProxy = 6724EC8D58175259C49E254E4FF5094B /* PBXContainerItemProxy */; + name = "react-native-background-timer"; + target = 42BD655FCD2598C4D25D7B895932A77F /* react-native-background-timer */; + targetProxy = 53740FCB2D6D2D2D596BED15D7CCC4EC /* PBXContainerItemProxy */; }; - C808017611E68B6B203316730537EC7F /* PBXTargetDependency */ = { + C7E294EEA4B149009F6DA7176C2BAF0E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 426398FA61DF648ECF7C6897DFAC6E8E /* FirebaseCoreDiagnostics */; - targetProxy = C8F62D526E5B74392C94FBDC95D6E5C0 /* PBXContainerItemProxy */; + name = Fabric; + target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; + targetProxy = 64389A0E488F597F305C37CBE5BACEF0 /* PBXContainerItemProxy */; + }; + C869EAB6E723103C25D815C83EF3F2EC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNImageCropPicker; + target = BF4AABB64D09DEB00ECF19B09D06CCD8 /* RNImageCropPicker */; + targetProxy = E55337EEAC61383D303A51D0B981D95E /* PBXContainerItemProxy */; }; C88567C1EA97046D4200985228F41BAC /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17625,11 +17522,11 @@ target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; targetProxy = 3DA6710AAE682E070695F228266936B7 /* PBXContainerItemProxy */; }; - C99C68F3577BB88F7DEE3616F7E8CB5D /* PBXTargetDependency */ = { + C95C7A0835CD05C514D4FC7E39A82BF6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Folly; - target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; - targetProxy = 5BADF1A77DEE44D96912922B416AF12E /* PBXContainerItemProxy */; + name = ReactCommon; + target = 6DE003F64B133830B9AB9321298DAAC2 /* ReactCommon */; + targetProxy = 2BDFE095EEDC668564F76B8074F1201E /* PBXContainerItemProxy */; }; C9CEFEFAAAEDB8CD947737FA56C849D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17643,17 +17540,17 @@ target = 01B53B6A43CBD6D4022A361BBFCCE665 /* FirebaseCore */; targetProxy = 455009ED9ED8F59E3D7880EA52A66B11 /* PBXContainerItemProxy */; }; - CADD05F4CFC6889DA727D8B59B2C78F6 /* PBXTargetDependency */ = { + CA7C27F2625F09AD64EE979AE4463F0A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 60F43D68BD7290E1B24C3BE7B3382AD3 /* React-RCTNetwork */; - targetProxy = A8568D7A3CCEFE6B3234872A607C5B4F /* PBXContainerItemProxy */; + name = "React-RCTText"; + target = E49E330A27425F89DE89516B2F50AAE9 /* React-RCTText */; + targetProxy = 90880149A37A3DD2F8F4BF12FE1678BB /* PBXContainerItemProxy */; }; - CB624A81E66D31C29325EF9E0FA73FB5 /* PBXTargetDependency */ = { + CABB4C9C9CD95FD141C1F4FB5CD78730 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAppLoaderProvider; - target = 4ECE1108F140208A729A83BC94FAA150 /* EXAppLoaderProvider */; - targetProxy = ADEE9393724862F8E36B8E736A17D31E /* PBXContainerItemProxy */; + name = JitsiMeetSDK; + target = 21B91730AA56171E7B635E8AFB2A7F3E /* JitsiMeetSDK */; + targetProxy = 75A73C0D34E5B4F48313043CD22B3D17 /* PBXContainerItemProxy */; }; CB67FB062DE8CAF07E20E144CB621739 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17661,17 +17558,35 @@ target = 01B53B6A43CBD6D4022A361BBFCCE665 /* FirebaseCore */; targetProxy = F6A14184DE3C02C257A7298719E4FD9B /* PBXContainerItemProxy */; }; + CB7E8EB747CBA0EAC4BCC3FB33CD4632 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Folly; + target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; + targetProxy = 8A748AC2634B888F13E2B5DE6C3C4B58 /* PBXContainerItemProxy */; + }; + CC1B1F82FA54C8AA35CCBC7DB03D785B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransportCCTSupport; + target = 63CF4D4E74D1771681263724253E1E79 /* GoogleDataTransportCCTSupport */; + targetProxy = 63D36758604A826BDF289EFA87CE2F83 /* PBXContainerItemProxy */; + }; CC72211E5223B63D0561752142275FE9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsinspector"; target = 115FC7605B6A0F6044A879F6EEB7DD99 /* React-jsinspector */; targetProxy = 33C3622012A6D55A8CCD64DE231CB8A0 /* PBXContainerItemProxy */; }; - CE42D50AD2D39A1B9EF36F32D721CB35 /* PBXTargetDependency */ = { + CCDE6F9F4F7811D2906F4747D514405D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = A9B4B98188B0E2FD6E1A5661E21B6BEC /* UMFaceDetectorInterface */; - targetProxy = 59F367BD96F9CF7A2013C195A737050B /* PBXContainerItemProxy */; + name = ReactCommon; + target = 6DE003F64B133830B9AB9321298DAAC2 /* ReactCommon */; + targetProxy = 47756DB874E4D60484417ADDBE8803E7 /* PBXContainerItemProxy */; + }; + CD666B7725A053CB6C3C6F5C6E28AACD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Yoga; + target = FEC7CEE99C30C1292EC32D7E006E4E85 /* Yoga */; + targetProxy = D737CCE0943BCE6439F16BEC1B33A42C /* PBXContainerItemProxy */; }; CE8B92E48AC185A2B85231FB94EF0309 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17685,65 +17600,71 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = 5C8A3E6AB1161E9CF7D5A8AC0368B080 /* PBXContainerItemProxy */; }; + D0A30E609794C8C61F765EFD443D6E7D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMPermissionsInterface; + target = 5C53A3A5621162049D9B4399173FAD68 /* UMPermissionsInterface */; + targetProxy = 38691D3DB41F50AFB05A8C2B2FF3C106 /* PBXContainerItemProxy */; + }; D0C999A431508F325E3286B2E73F5BA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; targetProxy = A94EF2BE3BB5C93DEBBBD89AA7A50736 /* PBXContainerItemProxy */; }; - D20E08D360A1A07AB94C55C6127B2A59 /* PBXTargetDependency */ = { + D3ABCE8BCA581FB9AB939EEE93C78D24 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DoubleConversion; - target = E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */; - targetProxy = FF39C50CBA8245BCDA849CC5AD001DA4 /* PBXContainerItemProxy */; + name = EXHaptics; + target = 5B1BA8B3E53682DD179F7BFF8F2C8B75 /* EXHaptics */; + targetProxy = BA36E3481256BAF60D12F370B802A3D6 /* PBXContainerItemProxy */; }; - D638FF8A5983D2ED384A77641D607381 /* PBXTargetDependency */ = { + D4F59459536E2EDF233B5EFE32C3860B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = A8C8C9DACBB23572454856B29D7A60A2 /* PBXContainerItemProxy */; + name = Firebase; + target = 799B29F9D6DCE28B98CC259440382F20 /* Firebase */; + targetProxy = E35677563961D74EB125C2ACCDCDCC3A /* PBXContainerItemProxy */; }; - D8DEBB6FCD76C392ACE976F38D213E1B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-notifications"; - target = B143863673452F4D5E000E2997B3651F /* react-native-notifications */; - targetProxy = 65C5110D0276AFD18E9033AFDF9266CB /* PBXContainerItemProxy */; - }; - D996059EBD01B6F1260554CFCCFDDA1F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCameraInterface; - target = 874E2550FB0B01C8D0337694A6A60B49 /* UMCameraInterface */; - targetProxy = 7674559018B5424C59ED4C97EB555252 /* PBXContainerItemProxy */; - }; - D9FDDCA6DD330279208E452293951533 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = 7CAB4058EBC116AE1A60D0CB0B1BFCC1 /* glog */; - targetProxy = D4512F04533ACC081BF60532A8EFE481 /* PBXContainerItemProxy */; - }; - DA3D3E91DD9001C4750051C601ADDF30 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = F7236D5BFD42DBEDF2652D4E47992BD2 /* React-jsi */; - targetProxy = CB013CC906EE8E79CB8F64A357594C4B /* PBXContainerItemProxy */; - }; - DAC05C6F05A3A55A14668D2B3616F691 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 289ED4ED15F1AF1FF9D14B45BAA76A52 /* PBXContainerItemProxy */; - }; - DB29908C6EC5E435D3F27CD50D421BF1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNLocalize; - target = 880920CE33AF3DE5A35090F9234DE5C7 /* RNLocalize */; - targetProxy = 713C9ED4CCBF854BCA4435D762875AF4 /* PBXContainerItemProxy */; - }; - DB79BCF263EE1A9A834AA68A646F9DE5 /* PBXTargetDependency */ = { + D53A5D9E3973E6187A91E282F65F1575 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = QBImagePickerController; - target = 29853B24544C7926C2BFC70C42760675 /* QBImagePickerController */; - targetProxy = 56CE97A9E5E7BB6762FA221A41C29716 /* PBXContainerItemProxy */; + target = 2E1B62D66A7097B06E8963437D5909DB /* QBImagePickerController */; + targetProxy = 4440721E044DFDEECABC2439E378EC5E /* PBXContainerItemProxy */; + }; + D572E911EAC37535E66067652F5DD130 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNAudio; + target = 1D8ED4A20867A7DBE943508D13C7FCB6 /* RNAudio */; + targetProxy = F2D959E6C4D3CA2ACBFA3C3BAA12AE05 /* PBXContainerItemProxy */; + }; + D72034E20933B8FD82D55DE27DF2AAA2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTVibration"; + target = BD7B2D8FF0ABCB89D01F6E21D5364678 /* React-RCTVibration */; + targetProxy = 736DC0B9A1D2232975B1200884C4425E /* PBXContainerItemProxy */; + }; + D76EAD368E6B8B7CB5F604BFF8BB9AA3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 799B29F9D6DCE28B98CC259440382F20 /* Firebase */; + targetProxy = AC5E5F007945A18BF3914FAD84246756 /* PBXContainerItemProxy */; + }; + D8767E25CAB340E8739F7A42933892C6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnostics; + target = 426398FA61DF648ECF7C6897DFAC6E8E /* FirebaseCoreDiagnostics */; + targetProxy = 16787D8E87DADB36F660A8A599E451E7 /* PBXContainerItemProxy */; + }; + D94FADCFC445FBEC0799DA57DA798642 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BugsnagReactNative; + target = E452F4CD4F8AB641BD2444C7AC91FA2B /* BugsnagReactNative */; + targetProxy = E4AA7448F8A2A3D07DE7DFEE88DA3B66 /* PBXContainerItemProxy */; + }; + D9B3DF78F7841782F749FFFDFC775641 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXWebBrowser; + target = B11E238094137347E8790BFEB1BEF01F /* EXWebBrowser */; + targetProxy = 8DCFB011BDCDE94E72D180113C6BFC15 /* PBXContainerItemProxy */; }; DB80506935610BC87AFDD4834FC611D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17751,35 +17672,35 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = 248015A2F1D88F57B6E26BA56A382F2C /* PBXContainerItemProxy */; }; - DBA20ED0631BCA057C58DBA255071133 /* PBXTargetDependency */ = { + DBA4115988DE7E3296773F6CF9BC1B06 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImage; - target = B413ECF06F2CDCADFB85C45E9A5FEA2C /* SDWebImage */; - targetProxy = 1B4A2424704077594FDDCFEE2D63C8F7 /* PBXContainerItemProxy */; + name = DoubleConversion; + target = E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */; + targetProxy = 78513EFE2089F164CD5117B67A8B9615 /* PBXContainerItemProxy */; }; - DC09E645F575EDF5C5ECCCF10EA8868D /* PBXTargetDependency */ = { + DC2D6D5D04569084677C0B7ED6B48788 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 9F219ED43F3AEA000562B9BCFD624DDD /* React-cxxreact */; - targetProxy = 30FAC5C1BE79417153740C55FC580FFE /* PBXContainerItemProxy */; + name = UMCore; + target = 01CBDBB3785FE2E9ED7E2986BE2102A6 /* UMCore */; + targetProxy = 3FF190B87A75D66E8F5D28212DA06300 /* PBXContainerItemProxy */; }; - DEA1267E87C6879FFE78B7D2503CBDD2 /* PBXTargetDependency */ = { + DDA9E9C57534B6419B6E84DF77C3F18E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 2B54957E15D0EDA71D58252B9918F876 /* PBXContainerItemProxy */; + targetProxy = CBA7F5CF6CC39427C197456D0FE06FD9 /* PBXContainerItemProxy */; }; - E0E17772A640FEEB7F9C5D77A73845DF /* PBXTargetDependency */ = { + DE0AACB352BBE70C14AB02F6A6CBF999 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImage; - target = B413ECF06F2CDCADFB85C45E9A5FEA2C /* SDWebImage */; - targetProxy = 7168C73EE8AB396AA7C26F2A93CAF36C /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = EE96A92842C7DB9F8DD7593EC0B8D0FE /* RNGestureHandler */; + targetProxy = E9A073C277F7A35687064A5CBE73DA9C /* PBXContainerItemProxy */; }; - E13A639C7AB075F0490718556C7B9EF4 /* PBXTargetDependency */ = { + DF9F80D112354C9D28B8D3FFDAD491E4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = 63CF4D4E74D1771681263724253E1E79 /* GoogleDataTransportCCTSupport */; - targetProxy = 9241624634388F85A48FB19B3B5FAF24 /* PBXContainerItemProxy */; + name = FirebaseCoreDiagnostics; + target = 426398FA61DF648ECF7C6897DFAC6E8E /* FirebaseCoreDiagnostics */; + targetProxy = D3DBCA13660A7CFE58C15924E7FA7AFB /* PBXContainerItemProxy */; }; E1DA9EC93E3834DAA49C0A257DFA8741 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17787,17 +17708,17 @@ target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; targetProxy = 0AA48B35BA7148412EA836482D3727DB /* PBXContainerItemProxy */; }; - E303DA15E20B92DB53A51BF883990AA5 /* PBXTargetDependency */ = { + E29B0EEC557D466E5EA1FCC2C9234330 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnosticsInterop; - target = A1DA7160DD40C2F4C7332F30DE279FC2 /* FirebaseCoreDiagnosticsInterop */; - targetProxy = 69BD20BEB053353801308AB077DA294E /* PBXContainerItemProxy */; + name = "React-RCTSettings"; + target = 64E78828D8355514B3B6BE78FAE7806E /* React-RCTSettings */; + targetProxy = 2A21F55EB320DF9DE2030139D4236BEE /* PBXContainerItemProxy */; }; - E3C8C94F2088AEB7C4B369DE6EC71C69 /* PBXTargetDependency */ = { + E3173A63A27FFCA4EAB28EC80B92645D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 01B53B6A43CBD6D4022A361BBFCCE665 /* FirebaseCore */; - targetProxy = 200E857C6BBAE78BBAE7977CF0BB62A4 /* PBXContainerItemProxy */; + name = UMFontInterface; + target = 69A8731022935CD8A0051D815C1867A8 /* UMFontInterface */; + targetProxy = 929937B9F29A00834844F0C11F75A607 /* PBXContainerItemProxy */; }; E3D1654B918455824279631C48CD8D36 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17805,29 +17726,35 @@ target = BAB5A963634772BE02E3986698B0BEAC /* GoogleUtilities */; targetProxy = F142B4DF83D0AEA677D3ABE7D7E5BA0C /* PBXContainerItemProxy */; }; - E442C855C1352413BF8F8202B1DE82EE /* PBXTargetDependency */ = { + E3E8AE9300A1B751D612DD473CFE058D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = C92C2B867A1BE634174A3C47980091BC /* UMImageLoaderInterface */; - targetProxy = 8D4F82768C2B29CADB33DB660F829D0C /* PBXContainerItemProxy */; + name = "React-jsi"; + target = F7236D5BFD42DBEDF2652D4E47992BD2 /* React-jsi */; + targetProxy = 1016518467B4BE718393C867F3C07544 /* PBXContainerItemProxy */; }; - E582F6E4A9B45BE5F882F09B07EE0FB1 /* PBXTargetDependency */ = { + E45499EC85164E6DD8F26DB7959EABE4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = 59D5FC9202D131CDFD2E08ABCE1C35AC /* nanopb */; - targetProxy = 26F428DBAEB215670AACD4A4DBE689EB /* PBXContainerItemProxy */; + name = RNReanimated; + target = AC9FFACDCABA4A7F5721FB719571B81A /* RNReanimated */; + targetProxy = 431FC6FDAB7FD6F752DD2E8E3E2FECBF /* PBXContainerItemProxy */; }; - E5DC24544CC6C329CD76322519ED0BFB /* PBXTargetDependency */ = { + E50FD8450D5033AC7DAD0069B6B9F7C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 799B29F9D6DCE28B98CC259440382F20 /* Firebase */; - targetProxy = 2E07CDED7E518D7201464E12EFCABB0C /* PBXContainerItemProxy */; + name = UMSensorsInterface; + target = 0F1510CA64D3BD5A32C5357D5CB788FD /* UMSensorsInterface */; + targetProxy = FF859218B17F01E97DC680D6507A2D35 /* PBXContainerItemProxy */; }; - E6E56064745D4107841E20AB9FD52F84 /* PBXTargetDependency */ = { + E6B983663E6EF7E4021294C9F0D5CD76 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNScreens; - target = BC730040B89735D99427DBE0EDAA828E /* RNScreens */; - targetProxy = AA659B6C97D72B9EC4B738370BC7714B /* PBXContainerItemProxy */; + name = "React-CoreModules"; + target = 82BA924F838C30601D2A813EA338492A /* React-CoreModules */; + targetProxy = 4D3D4F4745C58CC8BEF76F4C2205D18B /* PBXContainerItemProxy */; + }; + E85E7E3BBFE6407EF0E8671765E691C5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFirebase; + target = 72831AB9D90A45024AFD8489D0CEB6C3 /* RNFirebase */; + targetProxy = A5F1E0C7DABD0667368287D7356C73A1 /* PBXContainerItemProxy */; }; E94723BF5AD08FD427D108D517EF6A86 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17835,23 +17762,17 @@ target = E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */; targetProxy = F2FF55E89F9BA0040B50E35573928069 /* PBXContainerItemProxy */; }; - E9EAD15677A4F5488B474FE1E781CA59 /* PBXTargetDependency */ = { + E9A0431E565FB572E44DFD12613FA8C6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = QBImagePickerController; - target = 29853B24544C7926C2BFC70C42760675 /* QBImagePickerController */; - targetProxy = D7F64F2093A532E116A325754F47F381 /* PBXContainerItemProxy */; + name = RSKImageCropper; + target = 4DDE5693A87611C05EBF117455A2FB9F /* RSKImageCropper */; + targetProxy = 7EE17745C011BB1C7C5717C01B37473E /* PBXContainerItemProxy */; }; - EAAEB92087F1948E0E4BE45D0B79890C /* PBXTargetDependency */ = { + E9B9018CC01581CFF9F3DD6A762B3867 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 60F43D68BD7290E1B24C3BE7B3382AD3 /* React-RCTNetwork */; - targetProxy = 87D599A0102C7E6E757F2C44DC19D1E3 /* PBXContainerItemProxy */; - }; - EC2B4F3184EC2510B43FB5F304FE9EB3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 017AB91E1D5AB2B6096ADC666B072208 /* React-RCTImage */; - targetProxy = 2406FE57E26426A9B38C40EDDCF72F29 /* PBXContainerItemProxy */; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 7EFCFEA94A1863CE62030281846FB802 /* PBXContainerItemProxy */; }; EC566DF9BFE7FD959CB2819808630F73 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17865,17 +17786,11 @@ target = E13B95041FFD639523C6719AAEF55D71 /* DoubleConversion */; targetProxy = 75A8D1D5089B0ACAF241DACEA0305423 /* PBXContainerItemProxy */; }; - ECDEFD42AF28721FAC71AB6CF4058715 /* PBXTargetDependency */ = { + ECEAF5ABF0967C5D3813D99898567AD1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTTypeSafety; - target = 123D4D7AC3D41ABC0675B1DB3613066E /* RCTTypeSafety */; - targetProxy = A3C460B0596E4B56AE0ED94D6E03DB1B /* PBXContainerItemProxy */; - }; - EE532DE935852331C5DD41FF978413A5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNAudio; - target = 7971E9EDE82F3534DAC43ADF07514C4D /* RNAudio */; - targetProxy = B50CEA9125E8DD5518E12F2950D35A67 /* PBXContainerItemProxy */; + name = RNReanimated; + target = AC9FFACDCABA4A7F5721FB719571B81A /* RNReanimated */; + targetProxy = 17BD0C2B9D942DAFB9CBDE41E748798F /* PBXContainerItemProxy */; }; EE6B8197B665B038E8D397A9EA149347 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17883,12 +17798,6 @@ target = 2E2ABA11C27993D4CDD5DA270C4B75F1 /* React-RCTBlob */; targetProxy = FC81A17B5C5AD48E1DC428B4EE37ABEC /* PBXContainerItemProxy */; }; - EE9DF3E78A42627F3052A1281CED9579 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = 6DE003F64B133830B9AB9321298DAAC2 /* ReactCommon */; - targetProxy = A109F8CA3AC83272BF74DEAC17487D81 /* PBXContainerItemProxy */; - }; EECEC39CD1A9AF30CCFCB71B11A14B7D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; @@ -17901,17 +17810,17 @@ target = 74FC3222E79B7B2A842D5F13AE03831A /* React-Core */; targetProxy = 244748360793885B28A0FB80940BDD29 /* PBXContainerItemProxy */; }; - EFD58D7B0138EF29D267667549351279 /* PBXTargetDependency */ = { + F164958AA709D14A90A2037CD16E40D8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAV; - target = A954214FEA55463925B6F6E3A27B6016 /* EXAV */; - targetProxy = A5DB139D460D5ED86BFD0FD6BA72FAC0 /* PBXContainerItemProxy */; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = A88F648E8A510FEB26171A3A223F4F5F /* PBXContainerItemProxy */; }; - F1300DCDB7534157F1BFC9D85E9FB4C4 /* PBXTargetDependency */ = { + F16B30E65BC13AC2000D9923BE957A93 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Folly; - target = 78321EAB31E9FCC75DFA950389835085 /* Folly */; - targetProxy = 1A4A05767045E556F0E284FEBD0F30F9 /* PBXContainerItemProxy */; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = FEE139BEDF00526E7827C38FFB4FBC85 /* PBXContainerItemProxy */; }; F1887910E1D2307247370E110F5C97EF /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17919,18 +17828,6 @@ target = 9F219ED43F3AEA000562B9BCFD624DDD /* React-cxxreact */; targetProxy = 3E2073FF56543FDA76EFCC77A1820700 /* PBXContainerItemProxy */; }; - F1B3892342AFB58F3250E17650873C90 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 652731980497516C15D6BAA7B2EF3D9B /* PBXContainerItemProxy */; - }; - F3845A3945B87A3E443B9C82403962D8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 01B53B6A43CBD6D4022A361BBFCCE665 /* FirebaseCore */; - targetProxy = 4A58969A0E2FABAF2DB272FD8952532A /* PBXContainerItemProxy */; - }; F399B730C7A06F5D026757B730E30FB9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTNetwork"; @@ -17955,17 +17852,29 @@ target = 7F28D4475D7DAD9903F7E6044DD921C1 /* React-RCTAnimation */; targetProxy = DC1A792C62DBF10721FFE4308A29BA06 /* PBXContainerItemProxy */; }; - F5F59696E2D5F63C2285B4D884C6680A /* PBXTargetDependency */ = { + F457E64EA84EAEB04F17FDC9DD68F460 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFontInterface; - target = 392A9C558B900FB520CA2EF39651DB54 /* UMFontInterface */; - targetProxy = D09164994F5D181B71756DEA6C596700 /* PBXContainerItemProxy */; + name = GoogleDataTransport; + target = 1F22396CB543506E7EA28A47A30E9727 /* GoogleDataTransport */; + targetProxy = A50E6E3A25BA1D442C220D15DE3DE048 /* PBXContainerItemProxy */; }; - F5FA972FCE42426A56E733024924FB61 /* PBXTargetDependency */ = { + F4BFBDA074F6F315236D0F3B778DD030 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTRequired; - target = 9D255DD73ADD1E4565B5CCB665433053 /* RCTRequired */; - targetProxy = 277ACD83DD3382419716B71D0C67E516 /* PBXContainerItemProxy */; + name = React; + target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; + targetProxy = 6157EEAEA715BFDE031B60FA9580690A /* PBXContainerItemProxy */; + }; + F59B395458AC6E3D5779F66F42AFC4A4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNVectorIcons; + target = 743B4DEB68D23793521F266C0241382A /* RNVectorIcons */; + targetProxy = FE7461B61D27772DF5450F45A33D931C /* PBXContainerItemProxy */; + }; + F5C3A5B15F94110EB03CC4A026C5DB7F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-document-picker"; + target = D49B9B80A7B1F27C491DFA81E54E6CF7 /* react-native-document-picker */; + targetProxy = FF50C5CDDA5D52B67F62F50D7176F41E /* PBXContainerItemProxy */; }; F60D5A7D560F55E346E626406941BAF2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17973,53 +17882,11 @@ target = 7135140B597489F3FE9D0A6D1FADD9C7 /* React-RCTActionSheet */; targetProxy = 586C9042939572C3633A6BECFDC2FFDF /* PBXContainerItemProxy */; }; - F63A3D0E4DEA0154C58F254A65478DB6 /* PBXTargetDependency */ = { + F66CA8C9317B62770D810D6F0043185E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 5285479282A796511D8530E65EC983DF /* RNImageCropPicker */; - targetProxy = 5CA6AF3238D118C80E46C9EDD37586A8 /* PBXContainerItemProxy */; - }; - F667E156BC875DE89814EEE4DD528A56 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Firebase; - target = 799B29F9D6DCE28B98CC259440382F20 /* Firebase */; - targetProxy = E30BB31B3B14FCE165A48A1D54FD88F9 /* PBXContainerItemProxy */; - }; - F67A8B31AE56B60980E14653E7DE25B7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Fabric; - target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; - targetProxy = E10A425AB8D6EC889B75252705C6A646 /* PBXContainerItemProxy */; - }; - F797D52C02A9F83A2C8088387AA36FBE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = F7236D5BFD42DBEDF2652D4E47992BD2 /* React-jsi */; - targetProxy = 527B042DAAFC0D9C39BF694BC10CE40F /* PBXContainerItemProxy */; - }; - F83DA3AA51FB8775E3B9496BB2F9CDC7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 86D7BBC6168AFCB7AE1798FE9AD97E10 /* UMSensorsInterface */; - targetProxy = 283BE7DACCB5BB769525667E3CCF8B23 /* PBXContainerItemProxy */; - }; - F8D7A7B90721DD47BBB8F84CA97864DB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = BugsnagReactNative; - target = E452F4CD4F8AB641BD2444C7AC91FA2B /* BugsnagReactNative */; - targetProxy = 577F691ED37101E439AE66A8A019C633 /* PBXContainerItemProxy */; - }; - F918EF0985A642841A22D94182AB2394 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = 78CF5ADC0E8B796ECA48CF128675D9A0 /* PBXContainerItemProxy */; - }; - F9750D2015AF5F151789D7F54014883D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Crashlytics; - target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; - targetProxy = ECAC641DF8E1AC5AA5DE12C7EFD57189 /* PBXContainerItemProxy */; + name = "react-native-video"; + target = 864F908B842632C53102364B908D850D /* react-native-video */; + targetProxy = 628202471300B7622015B43DEFD7C642 /* PBXContainerItemProxy */; }; F9771E99025A64436243D14F23ADC9E8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18027,93 +17894,124 @@ target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; targetProxy = F8B50BE8BD280104AEF2C287D478BB8C /* PBXContainerItemProxy */; }; - F9FD79C931EB270D5FBA77233A851845 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 7F28D4475D7DAD9903F7E6044DD921C1 /* React-RCTAnimation */; - targetProxy = 568BCCB36D67A73A5F4F80B42EDF5376 /* PBXContainerItemProxy */; - }; - FA3F954C9059F93294B256629B35BE20 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 2E01DDE6A1A8D7EE37042C7EA69F25FE /* React */; - targetProxy = C57526C64355424458E296666BDDA0AE /* PBXContainerItemProxy */; - }; FA6FD64DB1000B3B35E074B28C8D2B8E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTLinking"; target = C2F81329D3C42F2D872A4B80180545BC /* React-RCTLinking */; targetProxy = 0F51677083285B10036CC0BA1E9BBB53 /* PBXContainerItemProxy */; }; + FA85B61CAF68776136ECF399989CC9C3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BugsnagReactNative; + target = E452F4CD4F8AB641BD2444C7AC91FA2B /* BugsnagReactNative */; + targetProxy = 69AEC55E1734D2B9678767369A23C7B1 /* PBXContainerItemProxy */; + }; FAC411C23D2CEEC99A061A1A4B22D07D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTRequired; target = 9D255DD73ADD1E4565B5CCB665433053 /* RCTRequired */; targetProxy = 6A307E7AA187B3493D468319584B81F0 /* PBXContainerItemProxy */; }; + FB1AD1C311E8D02DE894204A82EA9462 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = 57B9E0A892EAB5C13D4AE7D4B1DE0C16 /* GoogleAppMeasurement */; + targetProxy = A6B2904ED84996F0637F4C8905BEAF19 /* PBXContainerItemProxy */; + }; FC15D43543715D7D02B1D7F75B3A311E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsinspector"; target = 115FC7605B6A0F6044A879F6EEB7DD99 /* React-jsinspector */; targetProxy = A10B927F49CDB8E49094BFD1CA897343 /* PBXContainerItemProxy */; }; - FE8AAAFC02ED78FF130B52CB64CBBF20 /* PBXTargetDependency */ = { + FCE4366FAECA0CCADD1CAFAB7109418F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = 2A99896D65A33A482D2D82FC436F823D /* FBReactNativeSpec */; - targetProxy = 522F322692ED0FC967B93E9037C1CFB4 /* PBXContainerItemProxy */; + name = libwebp; + target = 427A5566E42596B2649019D00AA80F10 /* libwebp */; + targetProxy = 8DBEEA318A53D972CD89D2DB71C760CE /* PBXContainerItemProxy */; }; - FEA0BE8BDED9888CF4FDE8375637503C /* PBXTargetDependency */ = { + FF7F1D03F6EAD1E44BCFD1108B18FCBA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = 6DE003F64B133830B9AB9321298DAAC2 /* ReactCommon */; - targetProxy = 054E403D8846A9EC860775A6F8B6F766 /* PBXContainerItemProxy */; - }; - FF6F28960BF082C89D69B5EC97A55C90 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNUserDefaults; - target = 726A1DAA8BA43A59037E6DD0759CCBCA /* RNUserDefaults */; - targetProxy = FB925669C6AAA340A2115A148D8271BB /* PBXContainerItemProxy */; + name = "react-native-document-picker"; + target = D49B9B80A7B1F27C491DFA81E54E6CF7 /* react-native-document-picker */; + targetProxy = E5648F6F54F5B691ECBE7D5FCB89DC7E /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 013527D9A6BB191DABF25064DE11E65D /* Debug */ = { + 0421ADD816595DD3B3D1710A51F3F798 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 54E082E90CAF371FF97974E78DB15502 /* RNLocalize.xcconfig */; + baseConfigurationReference = 2177633D2BA7B24159DF0F8D9895045C /* 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/RNLocalize/RNLocalize-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 = RNLocalize; - PRODUCT_NAME = RNLocalize; + 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 = Debug; + name = Release; }; - 0383A832640FEC7F567743B3EB136CB2 /* Debug */ = { + 0572253D7287E475647AA34DD33142E9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8ED7131BD769F675631C0F8458FF6562 /* UMCameraInterface.xcconfig */; + baseConfigurationReference = 386FB65302D2E36C953455F29D0F5D7D /* RSKImageCropper.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/RSKImageCropper/RSKImageCropper-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RSKImageCropper; + PRODUCT_NAME = RSKImageCropper; + PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 059FBBB539702E38F0415951FF396B1D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 455A6FB5786B77E5E2668ECE0C9A178C /* 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; @@ -18146,7 +18044,7 @@ }; 06D42481946D673E459AAE2E31547D41 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DECB4E2CB41F6F5A85BF7CC64AF2731F /* React-jsiexecutor.xcconfig */; + baseConfigurationReference = 581AA7F4B16067D071241054CB86FA75 /* React-jsiexecutor.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18197,7 +18095,7 @@ }; 0829E2164483604F7E73031C9A40DF8C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8E3CE7326FFD21C3F5435AFE0A1ACC0F /* EXPermissions.xcconfig */; + baseConfigurationReference = 6E85BF10F7547DE92410EA03C468AFA8 /* EXPermissions.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -18222,6 +18120,21 @@ }; name = Release; }; + 09F05379043E8FFE2F1798DD46ACB069 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A24B4C31CCB2B7ADF144611FECCFA52F /* 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; + }; 09FBD332BEF0B2EAAF3D4A32A9DC779D /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = AD1DEBFAEE718A9D87E9A80E15EDB2C2 /* GoogleAppMeasurement.xcconfig */; @@ -18236,9 +18149,34 @@ }; name = Debug; }; + 0BBF2F201B9B26EF33700E8E67F547BD /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 824BCC9DC38620055EC071518322EFE8 /* 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; + }; 0C9B2792F342A93E8C1E50A199DD60FC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1211D425FBEE9DCF93BEA6EB97E0F77F /* EXWebBrowser.xcconfig */; + baseConfigurationReference = F62F4A4BBFDD3FE3F0A229A612F2C9FD /* EXWebBrowser.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -18263,94 +18201,25 @@ }; name = Release; }; - 0D2C1B6B5CB21C64B0022A4ADC2CAFC3 /* Debug */ = { + 123DFE2E5498780AB43280E35F35C1B5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E21FCC3B73E11CFE28CD1430766BFE6B /* react-native-notifications.xcconfig */; + baseConfigurationReference = 8172C981402923AECD81EDC63F98F260 /* Pods-ShareRocketChatRN.release.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 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; - }; - 0E01724AA76867B351CB787B664E40C2 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8C834B11C1A3D7F67378AFE97180F7AD /* 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; - }; - 12E296BD46EF325D3A871FB455CF14F7 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B122FC4EA0744A09698D6C39F3BC9CD9 /* 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; - }; - 140BBABFE55D0567FE5C2B5990DB6115 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8ED7131BD769F675631C0F8458FF6562 /* UMCameraInterface.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + 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; }; @@ -18358,7 +18227,7 @@ }; 143C472CDA83C19B1A3F903058F66358 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1EDD8E143CC0969C713644ABB96EE776 /* React-Core.xcconfig */; + baseConfigurationReference = 13F3EE543C8BA12CF095D9709376A681 /* React-Core.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18382,9 +18251,35 @@ }; name = Release; }; + 14FE55C7F002ED88C65C94B797059BF1 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2884DD0912197AF891B45AC139D8C64E /* 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; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 150CFF1CA26292347418E0FED771B42E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6F529AC9C377C59FCF42F947791B492E /* React-jsi.xcconfig */; + baseConfigurationReference = 211F80634955535277F6E665B57F313B /* React-jsi.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18409,7 +18304,7 @@ }; 151B0FA0B9152A5FD14F28A2EB3030FA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 11D176F5F5FCEDEA0630DB8ECF8AC635 /* BugsnagReactNative.xcconfig */; + baseConfigurationReference = 995B813E0C15D4D7E4DD92A81956264E /* BugsnagReactNative.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18435,7 +18330,7 @@ }; 1620F211B2965824AB47FC623071FA56 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 70AD8BF98FA5C5F329C2F6FE663514D5 /* React-cxxreact.xcconfig */; + baseConfigurationReference = 9C09086111353589A5DAC90B3E9F80E4 /* React-cxxreact.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18499,9 +18394,33 @@ }; name = Release; }; + 184C6D9533DC3CAFDE1C990F060C83F9 /* 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; + }; 185C7504A570C3B814C9B2D452F64444 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B16C5F556A4FC739F9F59F08A82A4CC2 /* EXHaptics.xcconfig */; + baseConfigurationReference = 4147EAC2416ADC20941A5E597DA0D2E6 /* EXHaptics.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -18525,6 +18444,31 @@ }; name = Debug; }; + 186D94A9EDB79C596E7D3ED7F7BFB38A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 21C10B8C0533C1F8C901EE90FC88A762 /* 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; + }; 196DFA3E4A09A28224918543529A1885 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { @@ -18589,34 +18533,25 @@ }; name = Debug; }; - 19F79B3C132AEC49A3D1541738365812 /* Debug */ = { + 19D7107468AC8F9E62F090158B3871C9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 19A6BD92B96BAA625B041EBE7FFA6D23 /* RNVectorIcons.xcconfig */; + baseConfigurationReference = DF7D9692AB0CF9237BA7B4C9E0ED16D1 /* UMFaceDetectorInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/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 = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; 1D35BB5DAF133C1BBF2A834FA2D539E8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2D74DD88DE2748B2514AF73DF5658135 /* FBReactNativeSpec.xcconfig */; + baseConfigurationReference = 43904D676F711B84D0363DF0430E85AC /* FBReactNativeSpec.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18641,7 +18576,7 @@ }; 1DDB06706922C62CB33A9EEFBAA3F497 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 70AD8BF98FA5C5F329C2F6FE663514D5 /* React-cxxreact.xcconfig */; + baseConfigurationReference = 9C09086111353589A5DAC90B3E9F80E4 /* React-cxxreact.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18664,22 +18599,23 @@ }; name = Debug; }; - 2051206E882A297D3E3E0AB703A455F7 /* Release */ = { + 1EE26B280F5CDBA2E6B7DE026281A500 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A3239E0A81A39A78BDA04A680434F993 /* RNReanimated.xcconfig */; + baseConfigurationReference = FA475548DB7784D97888AD13A8068EB4 /* 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/RNReanimated/RNReanimated-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.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 = RNReanimated; - PRODUCT_NAME = RNReanimated; + PRODUCT_MODULE_NAME = UMReactNativeAdapter; + PRODUCT_NAME = UMReactNativeAdapter; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -18690,9 +18626,34 @@ }; name = Release; }; + 1FA74D0358309C40B8FFE362267EF62F /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A88578045E339347233A1BCBF9F4C3B7 /* 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; + }; 23B575FB65C0A6FF6CD267D811838913 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6A6AE536523343218452C303A428CE25 /* React-RCTBlob.xcconfig */; + baseConfigurationReference = 323DD5C7D0964EA39BE403A831E9C6A5 /* React-RCTBlob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18716,6 +18677,32 @@ }; name = Release; }; + 24298DB4D29FB624BEF75734C29C6FA7 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C97BD572963C9686094E01478F35B7F1 /* 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; + }; 27B8242F13B09FC8745CBD67B1606296 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 41CEA2774D13A3D4D4064F609BB31534 /* GoogleDataTransportCCTSupport.xcconfig */; @@ -18740,9 +18727,34 @@ }; name = Debug; }; + 28EA25A76B4F418BE4FE17F16FE974AB /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E54C26DCEB21B7DCF12F63E0371C4636 /* 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; + }; 29B1FBAC28DEA75114542E76A1C78029 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D407CAF1CE5A3A9A358FDDBBE99BA539 /* EXAV.xcconfig */; + baseConfigurationReference = D3BEA212F612722EEDFAD978C0BB39D8 /* EXAV.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -18769,7 +18781,7 @@ }; 2A14E0C324FD90C19582D10421EFE639 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 95A02C7143CE61537E1CF6BAE7424263 /* FBLazyVector.xcconfig */; + baseConfigurationReference = 0543B08B8F5F46C1C4CB6D107B9EA1C1 /* FBLazyVector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -18782,9 +18794,34 @@ }; name = Release; }; + 2BDE5ABA35839EB3A7CC7796E74E0154 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E7C848FF3ABA2C35DBAD13A5D7F7C85B /* 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; + }; 2CE9E7E430C799675D30376727048368 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2D74DD88DE2748B2514AF73DF5658135 /* FBReactNativeSpec.xcconfig */; + baseConfigurationReference = 43904D676F711B84D0363DF0430E85AC /* FBReactNativeSpec.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18808,6 +18845,31 @@ }; name = Release; }; + 2EA2282BD97356B17E5F19F9280A290D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 61FF33B74344249CC59D55F54F4D3652 /* 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; + }; 2F3CAFBA99688A4D9FA1D968A0875EFC /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 39F46987EE108790392E35560A64BAFD /* nanopb.xcconfig */; @@ -18835,52 +18897,9 @@ }; name = Release; }; - 2FA27F5DA8E421BE9B8BC4D7733955B5 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 058E3220F0A9C0FB3573CA32B804EFD0 /* 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; - }; - 308C8266E7DC38104957C0865457F760 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9AB527CFE893AF9A8B2D3374C93D998E /* 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; - }; 30B214E3D1723E01F2B66FE84C16E1DA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 45E750B8327A9113F0AA0E653A2774F9 /* React-RCTNetwork.xcconfig */; + baseConfigurationReference = B8D5C7E974E0DA0C96BAA4040B03F3E7 /* React-RCTNetwork.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18903,6 +18922,47 @@ }; name = Debug; }; + 3144B3D8CCC1313E148DC8D1A603D3A1 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1968EA8AC1899CE9211FFB0A9ADD1977 /* 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; + }; + 31E2E28B41B02BEDFA5F44AAD64430E7 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8CBB5C5BAC37CA780E3117B6AB1CAB47 /* 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"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 3209CE6A46A5742356044161908D6557 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 23C6EC987CFD4938F654703C36C0C900 /* GoogleDataTransport.xcconfig */; @@ -18927,24 +18987,87 @@ }; name = Debug; }; - 35F9BBD5BFE05CA4BC4C508CF5BE80A4 /* Debug */ = { + 32C08C2D24FC9BDEFD11A19CCB6088F3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 043C8D27A22B10869854753572130400 /* UMBarCodeScannerInterface.xcconfig */; + baseConfigurationReference = 058E3220F0A9C0FB3573CA32B804EFD0 /* QBImagePickerController.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/QBImagePickerController/QBImagePickerController-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = QBImagePickerController; + PRODUCT_NAME = QBImagePickerController; + PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; + }; + 3390D8DC719D5739BF8FC617A3FF3CEA /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D03EBE6D3E591C28B345A65B16360526 /* 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; + }; + 3668DCCD5429AA2D1BDE2F19E2CC265B /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E7C848FF3ABA2C35DBAD13A5D7F7C85B /* 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; }; 366E5482FF2629E4D4C4D8F16CF80AAB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8394F1B20A5A1FEFBE8E5E5E5294F8F9 /* Yoga.xcconfig */; + baseConfigurationReference = CD297B797ED674D2A6DF814ED0D84459 /* Yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -18968,34 +19091,9 @@ }; name = Release; }; - 36DB7CF8E1038B0F373389D61B0ABF04 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 08779C68E0908708293E36EE6EBED395 /* 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; - }; 379699C7EF1D5DABB0AFFABBB83D962E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A3E18E5BE7BAA4745020688185C4BFBB /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = 566AD3507F551CF6CC8AE84B4EBFD196 /* UMFileSystemInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -19010,7 +19108,7 @@ }; 38FFF97387AFAC7B99E6ECBCE502E51D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 45E750B8327A9113F0AA0E653A2774F9 /* React-RCTNetwork.xcconfig */; + baseConfigurationReference = B8D5C7E974E0DA0C96BAA4040B03F3E7 /* React-RCTNetwork.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19036,7 +19134,7 @@ }; 396D2504CEBBC0B0B0D60AED34511EF6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BEE28714BD2DE0A16928AD736CF24ECC /* React-RCTSettings.xcconfig */; + baseConfigurationReference = A9174224765725AFB31BB9B842F12008 /* React-RCTSettings.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19062,7 +19160,7 @@ }; 3C318118356CE8F0059F34920171B52E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 11D176F5F5FCEDEA0630DB8ECF8AC635 /* BugsnagReactNative.xcconfig */; + baseConfigurationReference = 995B813E0C15D4D7E4DD92A81956264E /* BugsnagReactNative.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19085,58 +19183,42 @@ }; name = Debug; }; - 46D8743589D08083F2649B8B72F8BCF6 /* Debug */ = { + 3F7C3DC77B089D6DC2A5B46F567BC11F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0FA2F433E540C0073C0D9B4E0A2DFC54 /* React-CoreModules.xcconfig */; + baseConfigurationReference = 36EA1DBC087523A55053723339039F73 /* UMSensorsInterface.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; - }; - 47A40304644011E2AD4B3BDFCC89B7D2 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8172C981402923AECD81EDC63F98F260 /* Pods-ShareRocketChatRN.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - 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*]" = ""; IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MACH_O_TYPE = staticlib; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; name = Release; }; + 400ECFBA4071591080725B91E0EE5D2A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 058E3220F0A9C0FB3573CA32B804EFD0 /* 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; + }; 4880E0467860486F417C117B8450837A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6A6AE536523343218452C303A428CE25 /* React-RCTBlob.xcconfig */; + baseConfigurationReference = 323DD5C7D0964EA39BE403A831E9C6A5 /* React-RCTBlob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19159,25 +19241,9 @@ }; name = Debug; }; - 4A0AF5BE124E8C855E0DE02FA4E89FCD /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 23B1BE278CD205D48A44F14DAC8A8AF7 /* UMFontInterface.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 4CDB179E323B84AE4AA74A58C54A3DC0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CDC60B19EC6EC55E064F928C2AD605E5 /* React-RCTActionSheet.xcconfig */; + baseConfigurationReference = F3C545D3719C07AA73DC5A009DDB92B1 /* React-RCTActionSheet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19203,7 +19269,7 @@ }; 4D4CC1AFD3DF3F9B10FA25C7FC821F16 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DEEF2251E2F5CA323596D6574F57B77C /* React-RCTVibration.xcconfig */; + baseConfigurationReference = 9477D376E691798B42431F5D088414E8 /* React-RCTVibration.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19228,7 +19294,7 @@ }; 4D94BFCF6570FE0F71D1F68AEA91B307 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F75BB24F802DC6A2D91636B4C8C0335D /* RCTRequired.xcconfig */; + baseConfigurationReference = CB44A58EFD3D043C620F7C7CBD9A3E54 /* RCTRequired.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -19240,132 +19306,6 @@ }; name = Debug; }; - 5094A57F528B672446A3AF7F1E272690 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0FA2F433E540C0073C0D9B4E0A2DFC54 /* 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"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 50A67CE763E82FF71ADAEC130625D8F6 /* 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; - }; - 5121FB8AEC69D6EDC1BC23DA883AB30C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9AB527CFE893AF9A8B2D3374C93D998E /* 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; - }; - 51460A44D5F1EDC8C192752CAC17CEF9 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9ACDE621D52DEC10F88955005141CAD0 /* 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; - }; - 517E3386DB1DF9F2BFD7DF1DC8AC6E39 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E21FCC3B73E11CFE28CD1430766BFE6B /* 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; - }; 51BEE5C69A7C01256279ABA809F90FD5 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 7ED0D3E39F0A929770109E720D860469 /* GoogleUtilities.xcconfig */; @@ -19391,88 +19331,22 @@ }; name = Debug; }; - 53C362FD404A0D130806A6E9665057D3 /* Release */ = { + 56A16426FCFCBFBD7A20AFA186F96844 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 453634152B0E90E73925F836134076EB /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 04E15B5964805DC5108565460F62DE8E /* 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/RNImageCropPicker/RNImageCropPicker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + 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 = 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; - }; - 53E8A2C779BA6B7244E440D060EA4A91 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BD71DD467C6026268F307A4BC8F4A69E /* 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; - }; - 546CBE83C7B5CE1989B92A5F7CBB5FAD /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F5A34C31AB02B63C92EFA295D826B46F /* 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; - }; - 557280BC5103B8FAD4EF4B0AED817230 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A3239E0A81A39A78BDA04A680434F993 /* 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; + PRODUCT_MODULE_NAME = RNScreens; + PRODUCT_NAME = RNScreens; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -19484,7 +19358,7 @@ }; 57BF6992AF50A2B6F3D45A5239F6D462 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9A83D9D6DD50C1693BC7A222C68F355F /* EXFileSystem.xcconfig */; + baseConfigurationReference = 2F9A53E729223A59791772D34C9FC202 /* EXFileSystem.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -19510,7 +19384,7 @@ }; 58520B8EDF29441D5542A8FD82654496 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8E3CE7326FFD21C3F5435AFE0A1ACC0F /* EXPermissions.xcconfig */; + baseConfigurationReference = 6E85BF10F7547DE92410EA03C468AFA8 /* EXPermissions.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -19534,9 +19408,66 @@ }; name = Debug; }; + 5965FB8FA04E3B532F8F6F513C346A8E /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D7A718E9E40F641EF25CBB285005DF86 /* 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; + }; + 5979A964C79601570DEABF5F6FE58623 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A24B4C31CCB2B7ADF144611FECCFA52F /* 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; + }; + 5B4254028270D9003488D406C724BD4C /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 417DE957EC105186A344ACDA4E41ED2F /* RNDeviceInfo.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNDeviceInfo/RNDeviceInfo-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNDeviceInfo; + PRODUCT_NAME = RNDeviceInfo; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 5C23227507DC3BFD19377ABCD38711CC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DEEF2251E2F5CA323596D6574F57B77C /* React-RCTVibration.xcconfig */; + baseConfigurationReference = 9477D376E691798B42431F5D088414E8 /* React-RCTVibration.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19560,75 +19491,9 @@ }; name = Release; }; - 5C5156B228832A51C56BF9533393AEC2 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2B435DF52AD873ADF9D8AE1CBA4931E5 /* 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; - }; - 5C9CDFBDA0A6AD877B41834DDF048AF8 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8CAFFF01AF4E0AC88F4E736BDC29C459 /* 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; - }; - 5CAA38E6F9E2B640E17289E8E7D4ED83 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FD4BE464260812BB8390548FB348EB32 /* 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; - }; 5D79B0E5C34FEB01909F4F77BA32F7B8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 13ABA67BF592749CAF26F481FD160A49 /* React.xcconfig */; + baseConfigurationReference = F1B38F47FD8ADDEB16D29405006445DF /* React.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -19641,34 +19506,9 @@ }; name = Release; }; - 5DEF1CC1DBF5C346752FC2E11E3D76C9 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 058E3220F0A9C0FB3573CA32B804EFD0 /* QBImagePickerController.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/QBImagePickerController/QBImagePickerController-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = QBImagePickerController; - PRODUCT_NAME = QBImagePickerController; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 5E225B03D92E57F4A85096E0EED6648D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9A83D9D6DD50C1693BC7A222C68F355F /* EXFileSystem.xcconfig */; + baseConfigurationReference = 2F9A53E729223A59791772D34C9FC202 /* EXFileSystem.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -19693,31 +19533,80 @@ }; name = Release; }; - 5F0A5E73DF12C6C42A669E4847D78417 /* Release */ = { + 5EDC51149B93904CB46AE27BA7B22E9A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 058E3220F0A9C0FB3573CA32B804EFD0 /* QBImagePickerController.xcconfig */; + baseConfigurationReference = 386FB65302D2E36C953455F29D0F5D7D /* RSKImageCropper.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/QBImagePickerController/QBImagePickerController-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + GCC_PREFIX_HEADER = "Target Support Files/RSKImageCropper/RSKImageCropper-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = QBImagePickerController; - PRODUCT_NAME = QBImagePickerController; + PRODUCT_MODULE_NAME = RSKImageCropper; + PRODUCT_NAME = RSKImageCropper; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; + }; + 5F080E1FC1331C8928E3FC68F7B18B96 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C7C222BF7D9472BE80CE933B394805B8 /* 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; + }; + 5F2C5941FD161EB202813804FB78C0F7 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C97BD572963C9686094E01478F35B7F1 /* 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; }; 6111CAD9DBDC3E7E8DB032972ED7C333 /* Debug */ = { isa = XCBuildConfiguration; @@ -19744,151 +19633,22 @@ }; name = Debug; }; - 612927D63A49672FBF64BA93E2989CD1 /* Debug */ = { + 68E6C0A6A8F871326931666045697572 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6E7E7CF1B0AD8D1B8EAB8BEE8E681C40 /* RNAudio.xcconfig */; + baseConfigurationReference = F5A6EF7877284C70D47CA945BD6ED2CE /* 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/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; - }; - 62167BD661F2C9FE35E887AC2ADD2D33 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 71646FA54589C424BE94B79C0BEFDCC2 /* 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"; + 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 = 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; - }; - 626EE5756E10D56643EB2A59F87646CA /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 08779C68E0908708293E36EE6EBED395 /* 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; - }; - 63AC380B8F36235ACD099D2A152562B8 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D03EBE6D3E591C28B345A65B16360526 /* 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; - }; - 668DEB1AA99A463E571D3B1F8AAE3DD3 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F640F3B864F14F788D56ED1482B113EB /* 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; - }; - 6D148BC8D82B7E1B71CC77F7C5B1B0C3 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3143AC6BA7678E130BD420050FD89DDD /* 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; + PRODUCT_MODULE_NAME = RNGestureHandler; + PRODUCT_NAME = RNGestureHandler; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -19901,7 +19661,7 @@ }; 6D4E4D3C6176BCA5CAD6D8C2BF84852A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 30DD2B54E8B83385D1E17E18ECEFEC9E /* React-RCTAnimation.xcconfig */; + baseConfigurationReference = D976ACE9A0F79565855CDA712FD9AAC2 /* React-RCTAnimation.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19925,60 +19685,9 @@ }; name = Release; }; - 6E8B80B9636689EAA5A47CAD03C59224 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1E433CADC81F6FCC5C5F5BB95F73090C /* 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; - }; - 6F09A49236FCFF9F4925E140DD656531 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FD4BE464260812BB8390548FB348EB32 /* 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; - }; 6F4CCA93CD6AE12881B68253A6743422 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BEE28714BD2DE0A16928AD736CF24ECC /* React-RCTSettings.xcconfig */; + baseConfigurationReference = A9174224765725AFB31BB9B842F12008 /* React-RCTSettings.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20001,9 +19710,35 @@ }; name = Debug; }; + 6FCDCD33A8B5EC5A9745E5358AF8D63D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E5DDEE85626A84F58AE2152550825C8C /* 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; + }; 7184A0EEC8E4ABDAABE108C2E99367B0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B16C5F556A4FC739F9F59F08A82A4CC2 /* EXHaptics.xcconfig */; + baseConfigurationReference = 4147EAC2416ADC20941A5E597DA0D2E6 /* EXHaptics.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20030,7 +19765,7 @@ }; 71A4F07B44824C6890F9602C5F22F2A9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1D46D1AF9480B8219F2793E475C533EC /* EXConstants.xcconfig */; + baseConfigurationReference = A6B3905E0090D04E72761DFE3FA13965 /* EXConstants.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20055,9 +19790,34 @@ }; name = Release; }; + 71AA86443355CEEEC120382DCBB2629A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 883C9E38BB217029ADF8022B1D274DB6 /* 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; + }; 724E8CE44A3CFE20B40BCAF98D185D33 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 296A20E14601F3E7D22ABE1C5586BF9A /* React-RCTLinking.xcconfig */; + baseConfigurationReference = 71906CFCF94F1E983897EA95BC9AF648 /* React-RCTLinking.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20106,32 +19866,6 @@ }; name = Release; }; - 7377D9A2242D9459FA40254CBB7C9075 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 31084C1F8D220713ECB94D24C58F465B /* 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; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 743E6CB11FEBC88076323FDC9583496D /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 1FBC8F6D697F44FFAC23C6F95B473C5C /* Crashlytics.xcconfig */; @@ -20161,9 +19895,24 @@ }; name = Release; }; - 786E2A515AC827331C58CF8796D1CA76 /* Release */ = { + 77601BA6A214B24D1FD2EEBD4D9873E6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BD71DD467C6026268F307A4BC8F4A69E /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = 36EA1DBC087523A55053723339039F73 /* 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; + }; + 7F6DC8F6983E3C0FB54B53DE01A805C2 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D7A718E9E40F641EF25CBB285005DF86 /* UMFontInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -20177,98 +19926,47 @@ }; name = Release; }; - 7CB6BFA813C2A6BD76121B7D1C669B7E /* Debug */ = { + 8440BC9381D83B5A7B6EA79CE7674048 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E433CADC81F6FCC5C5F5BB95F73090C /* react-native-keyboard-input.xcconfig */; + baseConfigurationReference = E5DDEE85626A84F58AE2152550825C8C /* 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-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; - }; - 8071D77EEEFF20423ADE9A0FD8203447 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9ACDE621D52DEC10F88955005141CAD0 /* 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; - }; - 813462D960BBED8AEAD581F3EFB759DF /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3143AC6BA7678E130BD420050FD89DDD /* 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; - }; - 835FC14811142E2722350A54F17FB1E0 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8AB1C40644764F574F897C3A600C0F67 /* 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"; + 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 = rn_extensions_share; - PRODUCT_NAME = "rn-extensions-share"; + 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; + }; + 8905D4EE89FE535BA892FD2E3908C88F /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A88578045E339347233A1BCBF9F4C3B7 /* 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; @@ -20279,60 +19977,9 @@ }; name = Release; }; - 83972CADB60CA8958A0745640C2230F9 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3725CB0D232F75861E7CF57C9FD51442 /* RNGestureHandler.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNGestureHandler/RNGestureHandler-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNGestureHandler; - PRODUCT_NAME = RNGestureHandler; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 88B6180592043E16820F04E2089B122E /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BC8C08C0024359A1D4F82150428F2530 /* 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; - }; 89F443118C4719AE7610700F9760D924 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8A7CE4F72855B7F5E9577317F3DF8F11 /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = 60A29590279765D116F9A5A784729A4D /* UMPermissionsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -20346,17 +19993,27 @@ }; name = Release; }; - 8B454031827143E3746EDA4B0BEC94FB /* Release */ = { + 8B107165907E534CBBA2C7DCD5857F73 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 07D16A26681FF2E352792B64421ED0B6 /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = C7C222BF7D9472BE80CE933B394805B8 /* react-native-video.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-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; }; @@ -20437,32 +20094,6 @@ }; name = Release; }; - 91C3C906C406F2A90FB757AF292A9D6B /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 28CBEA458246C5B01A0E0DE4701554E3 /* 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"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 91FD51ACA36B0A57ABFE326B7E28FAF1 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 836757EFF6A9263DB050940C8CE8D733 /* Folly.xcconfig */; @@ -20488,22 +20119,22 @@ }; name = Debug; }; - 93034BF15A2E94FB8D1F80153ADC7AE9 /* Debug */ = { + 926E6385D4C2B865548376B15FAEE587 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8AB1C40644764F574F897C3A600C0F67 /* rn-extensions-share.xcconfig */; + baseConfigurationReference = 2884DD0912197AF891B45AC139D8C64E /* 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/rn-extensions-share/rn-extensions-share-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + GCC_PREFIX_HEADER = "Target Support Files/react-native-splash-screen/react-native-splash-screen-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = rn_extensions_share; - PRODUCT_NAME = "rn-extensions-share"; + PRODUCT_MODULE_NAME = react_native_splash_screen; + PRODUCT_NAME = "react-native-splash-screen"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -20513,6 +20144,47 @@ }; name = Debug; }; + 9403EFDD786F878500BA29E8A447307B /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 883C9E38BB217029ADF8022B1D274DB6 /* 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; + }; + 94F839B666A49D46B257139DCFD7A7FF /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F689591CF7C3C72186DB328870EDE816 /* 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; + }; 9613A0936E5F02E30C4F96343620B06B /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 4BBF59A238D1A17DFAF14F72B2CF2E34 /* FirebaseAnalytics.xcconfig */; @@ -20528,9 +20200,50 @@ }; name = Release; }; + 9722F4E29A9F11BC56AF6C6539B9CEFB /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F689591CF7C3C72186DB328870EDE816 /* 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; + }; + 972C5135CDF1BAF8900741D721409EFF /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = BC80D47C6CDBD7086E7E728EB1717A10 /* 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; + }; 979A80A91A53C270C97ECF622F7321CA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 30DD2B54E8B83385D1E17E18ECEFEC9E /* React-RCTAnimation.xcconfig */; + baseConfigurationReference = D976ACE9A0F79565855CDA712FD9AAC2 /* React-RCTAnimation.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20553,73 +20266,6 @@ }; name = Debug; }; - 98441EAB957E01EC46A690702142D92A /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8CAFFF01AF4E0AC88F4E736BDC29C459 /* 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; - }; - 98DD2DDC6D3F060302EB92F3A9146855 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 386FB65302D2E36C953455F29D0F5D7D /* RSKImageCropper.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RSKImageCropper/RSKImageCropper-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RSKImageCropper; - PRODUCT_NAME = RSKImageCropper; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 9AC3DF008AE370B2BAB08C5EB740E968 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 386FB65302D2E36C953455F29D0F5D7D /* RSKImageCropper.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RSKImageCropper/RSKImageCropper-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RSKImageCropper; - PRODUCT_NAME = RSKImageCropper; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 9B7FD3ACEAD10EF6B00C0E17837492A5 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = AD1DEBFAEE718A9D87E9A80E15EDB2C2 /* GoogleAppMeasurement.xcconfig */; @@ -20635,9 +20281,32 @@ }; name = Release; }; + 9C1D6C9615B2E55A6486492722D218AF /* 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; + }; 9CB909A72ECF8E9F5C4354791A034EFA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DECB4E2CB41F6F5A85BF7CC64AF2731F /* React-jsiexecutor.xcconfig */; + baseConfigurationReference = 581AA7F4B16067D071241054CB86FA75 /* React-jsiexecutor.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20660,22 +20329,31 @@ }; name = Debug; }; - 9E71698AA77AC64B5AFD6A9F91A022E9 /* Debug */ = { + 9D5683A01F041F9F413EB1A145FDC028 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 058E3220F0A9C0FB3573CA32B804EFD0 /* QBImagePickerController.xcconfig */; + baseConfigurationReference = CAE7752D029A98D84435AAB9B13C6C3C /* RNLocalize.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; + "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"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; 9EACF4A29D44986AF782D41BEBF433BB /* Release */ = { isa = XCBuildConfiguration; @@ -20692,32 +20370,6 @@ }; name = Release; }; - 9EDFC7246E2960371F81B4FCD41C4362 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F5A34C31AB02B63C92EFA295D826B46F /* react-native-orientation-locker.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-orientation-locker/react-native-orientation-locker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_orientation_locker; - PRODUCT_NAME = "react-native-orientation-locker"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 9F37A9BDE20D653B26F898D24CF41D28 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 17948BE2F77291A7E285DA9D70DE304F /* FirebaseCore.xcconfig */; @@ -20771,7 +20423,7 @@ }; 9FC521386049FBEA82F83422AF018F51 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6F529AC9C377C59FCF42F947791B492E /* React-jsi.xcconfig */; + baseConfigurationReference = 211F80634955535277F6E665B57F313B /* React-jsi.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20797,7 +20449,7 @@ }; 9FE9F537B938EA1022C9783A442A20B8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 13ABA67BF592749CAF26F481FD160A49 /* React.xcconfig */; + baseConfigurationReference = F1B38F47FD8ADDEB16D29405006445DF /* React.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -20811,7 +20463,7 @@ }; A05931FFE6C0277383167A6C7CB3637D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CDC60B19EC6EC55E064F928C2AD605E5 /* React-RCTActionSheet.xcconfig */; + baseConfigurationReference = F3C545D3719C07AA73DC5A009DDB92B1 /* React-RCTActionSheet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20834,34 +20486,61 @@ }; name = Debug; }; - A14BC02C6EBF6F95A8D8368CF653744A /* Debug */ = { + A163FF76FCA18083F5BD30E7B7A3494A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 28CBEA458246C5B01A0E0DE4701554E3 /* react-native-safe-area-context.xcconfig */; + baseConfigurationReference = A49FD196C40396CE87F5E587717F312C /* 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/react-native-safe-area-context/react-native-safe-area-context-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + 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 = react_native_safe_area_context; - PRODUCT_NAME = "react-native-safe-area-context"; + 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 = Debug; + name = Release; + }; + A48B5AAAB5DC3D5EFB9A010EC45BA7C0 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 455A6FB5786B77E5E2668ECE0C9A178C /* 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; }; A4FE2B76D84D8BFC528F2B162A783E24 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 18E5C34187C0E1AD4393C3077FD4913B /* React-RCTText.xcconfig */; + baseConfigurationReference = B6B57818D5BE1B8294828964AFE6A2CC /* React-RCTText.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20885,31 +20564,30 @@ }; name = Release; }; - A5F1C98EC2C6834106EC2B23561A8CEC /* Release */ = { + A565F177C20CCF1741A28593CC5CD978 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 71646FA54589C424BE94B79C0BEFDCC2 /* RNFirebase.xcconfig */; + baseConfigurationReference = 8CC5F8E745AEB03DC3B1204CC12B3F0E /* 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/RNFirebase/RNFirebase-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + GCC_PREFIX_HEADER = "Target Support Files/react-native-notifications/react-native-notifications-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNFirebase; - PRODUCT_NAME = RNFirebase; + 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; + name = Debug; }; AAB3F3D50C2C496CFAD1E28DCF1F196E /* Debug */ = { isa = XCBuildConfiguration; @@ -20925,22 +20603,6 @@ }; name = Debug; }; - AB8EE669C2350B3BEBACE52ACB56CBE8 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 043C8D27A22B10869854753572130400 /* 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; - }; AC3354FF26E4944163F764A7A4BA0DE8 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = D4802F7230B9434BDE45E05E615EC1E7 /* DoubleConversion.xcconfig */; @@ -20967,6 +20629,57 @@ }; name = Release; }; + AC763098590AFC483172263A0D947F2F /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = CAE7752D029A98D84435AAB9B13C6C3C /* 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; + }; + ACFDD37956B431634C7CCCAFD6A38586 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 824BCC9DC38620055EC071518322EFE8 /* 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; + }; AD067ADBB8EA28F904D58B2E210966D1 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 7ED0D3E39F0A929770109E720D860469 /* GoogleUtilities.xcconfig */; @@ -20993,9 +20706,24 @@ }; name = Release; }; + ADD968A3B7B70E7652BED12801A85E89 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DF7D9692AB0CF9237BA7B4C9E0ED16D1 /* 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; + }; AEE8175A7CC0E02FF8F2C2DD7F89217E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DD0D00FE3327C2F3AAF31DF2E62C48BF /* React-RCTImage.xcconfig */; + baseConfigurationReference = F6FAA14558A4C4ACEB215A1400FA2220 /* React-RCTImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21019,6 +20747,46 @@ }; name = Release; }; + AFD752162A4A859FC060D29683EF1321 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DF2DC0C44CE483ABD4F98B0E5F097840 /* 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; + }; + AFF26C75085DBA02386E236F47DC208C /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 18B0F3793E3843628CE04C0BCDAC06F7 /* 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; + }; B01D14FDC83DCF9D4BE53066BEA96D05 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { @@ -21106,7 +20874,7 @@ }; B352186F58CB5AA1263A74709E102311 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7BB785FB65867995104BFDE8A4147C4 /* React-jsinspector.xcconfig */; + baseConfigurationReference = CCBCD1ECB8F92058FCF51464F3E09844 /* React-jsinspector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21156,9 +20924,34 @@ }; name = Release; }; + B560BD98836CEFC52586B2DA6790EB97 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 417DE957EC105186A344ACDA4E41ED2F /* 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; + }; B774C6F49B847C5130C7F54F17F876F0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 805B0964D9A92F156020FE607DC679BE /* EXAppLoaderProvider.xcconfig */; + baseConfigurationReference = F2E66F8F043639EC706963D14A9C9765 /* EXAppLoaderProvider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21183,59 +20976,9 @@ }; name = Release; }; - B8A82F426F4D25C905B980B28A7DACE1 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 453634152B0E90E73925F836134076EB /* 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; - }; - B9F618C516CE0EB8F060F890239A9ED8 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F640F3B864F14F788D56ED1482B113EB /* 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; - }; BB2B3178D31C773E47CE22AA4A0C96E3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E111D53FF09A9CC77C5D9CE0C0F28263 /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = 2BA65DB4257C2024DDAB391A776ED76D /* UMConstantsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21251,7 +20994,7 @@ }; BD846AF2658401B6E969F0E223F9598F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 805B0964D9A92F156020FE607DC679BE /* EXAppLoaderProvider.xcconfig */; + baseConfigurationReference = F2E66F8F043639EC706963D14A9C9765 /* EXAppLoaderProvider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21275,76 +21018,9 @@ }; name = Debug; }; - BE41FCF495DF6B502F4703EC79180EE4 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8BA0333FD3440ED1605E44D752777D73 /* 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; - }; - BEA5E425079CAC70C90DBCEBA8E3B733 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 31084C1F8D220713ECB94D24C58F465B /* 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; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - BED8D1CD789592D6BE2F8F06CA0E23DB /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8D531A107BA8083E3C88DC361F833CA4 /* 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; - }; BF6A4AAA192E749AD5201D9CBEBF857A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1EDD8E143CC0969C713644ABB96EE776 /* React-Core.xcconfig */; + baseConfigurationReference = 13F3EE543C8BA12CF095D9709376A681 /* React-Core.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21367,9 +21043,50 @@ }; name = Debug; }; + C03BDBF6DEC905B3C3A9875803F08972 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 18B0F3793E3843628CE04C0BCDAC06F7 /* 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; + }; + C0CDB2A0282A2CB0BBDC5FB55855EFE6 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F5A6EF7877284C70D47CA945BD6ED2CE /* 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; + }; C1533DFEDEBF00D3A5C7E749E0CE0875 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AA6220A557BF114DB76A15F129AF8E27 /* UMCore.xcconfig */; + baseConfigurationReference = A55E7EC91AD0B1AFCC10A42D8D106577 /* UMCore.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21417,111 +21134,7 @@ }; name = Debug; }; - C182265D62494FCEA72153B38B5F9232 /* 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; - }; - C247B44F553069D47318E2F569152E91 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A7BB785FB65867995104BFDE8A4147C4 /* React-jsinspector.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-jsinspector/React-jsinspector-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = jsinspector; - PRODUCT_NAME = "React-jsinspector"; - 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; - }; - C48C6C9B1EB2F14B6DFDD09D13C0F330 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 19A6BD92B96BAA625B041EBE7FFA6D23 /* 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"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - C4E0AFE80FD54F1800690C4BAA41ED8A /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8A7CE4F72855B7F5E9577317F3DF8F11 /* 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"; - }; - name = Debug; - }; - C59C517F1730DDE80ACCB1C926377B4C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 23B1BE278CD205D48A44F14DAC8A8AF7 /* 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; - }; - C5D0D0B385C7E52CA6790F327EB413CD /* Debug */ = { + C1D85901094751F328ADDAB6DD304650 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = D03EBE6D3E591C28B345A65B16360526 /* SDWebImageWebPCoder.xcconfig */; buildSettings = { @@ -21546,9 +21159,49 @@ }; name = Debug; }; + C247B44F553069D47318E2F569152E91 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = CCBCD1ECB8F92058FCF51464F3E09844 /* React-jsinspector.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-jsinspector/React-jsinspector-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = jsinspector; + PRODUCT_NAME = "React-jsinspector"; + 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; + }; + C4E0AFE80FD54F1800690C4BAA41ED8A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 60A29590279765D116F9A5A784729A4D /* 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"; + }; + name = Debug; + }; C641005C76C55F76BC43907CFB03C710 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D407CAF1CE5A3A9A358FDDBBE99BA539 /* EXAV.xcconfig */; + baseConfigurationReference = D3BEA212F612722EEDFAD978C0BB39D8 /* EXAV.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21574,7 +21227,7 @@ }; C83000CE2C12D66BE8DCDEAF0BE81B4E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E111D53FF09A9CC77C5D9CE0C0F28263 /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = 2BA65DB4257C2024DDAB391A776ED76D /* UMConstantsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21587,33 +21240,9 @@ }; name = Debug; }; - C8E293BD400C737782D06A0BE1E780FB /* 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; - }; C90E05A0D21847398D952F6F814FBB05 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F75BB24F802DC6A2D91636B4C8C0335D /* RCTRequired.xcconfig */; + baseConfigurationReference = CB44A58EFD3D043C620F7C7CBD9A3E54 /* RCTRequired.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21626,22 +21255,47 @@ }; name = Release; }; - CA4B12FC6627BC4E070FFE7D4D52A5B7 /* Release */ = { + CA802DD3E1DAA002D2EB01F531DC26FB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6E7E7CF1B0AD8D1B8EAB8BEE8E681C40 /* RNAudio.xcconfig */; + baseConfigurationReference = BC8C08C0024359A1D4F82150428F2530 /* 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/RNAudio/RNAudio-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 = RNAudio; - PRODUCT_NAME = RNAudio; + 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; + }; + CAF5E0DD4CD9F4ECDF7839901CF5D5B0 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 77F5609B4B12EA9B0EDC2CF48E5572F3 /* 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; @@ -21654,7 +21308,7 @@ }; CAFA7F89ACEEEA90923DB4DD5F1BB93E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1211D425FBEE9DCF93BEA6EB97E0F77F /* EXWebBrowser.xcconfig */; + baseConfigurationReference = F62F4A4BBFDD3FE3F0A229A612F2C9FD /* EXWebBrowser.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21678,9 +21332,35 @@ }; name = Debug; }; + CB19BA9CF765C480AAC22B5F2A501FCD /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DF2DC0C44CE483ABD4F98B0E5F097840 /* 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; + }; CB5BA02D6D47948A29FCCA50359D0293 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8394F1B20A5A1FEFBE8E5E5E5294F8F9 /* Yoga.xcconfig */; + baseConfigurationReference = CD297B797ED674D2A6DF814ED0D84459 /* Yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21703,63 +21383,22 @@ }; name = Debug; }; - CC72B25508BCE3DF62B0FF1B6281DFC2 /* Release */ = { + CBDE128A8E9F89528FE80D8168978C92 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BC8C08C0024359A1D4F82150428F2530 /* SDWebImage.xcconfig */; + baseConfigurationReference = 21C10B8C0533C1F8C901EE90FC88A762 /* 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/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; - }; - CCABC21C7F95FF3DA06F504370713048 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8D531A107BA8083E3C88DC361F833CA4 /* 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; - }; - CF7A671319C49B4533EB0A3331542720 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C72C1AD2A046915E567F543A12890B11 /* 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"; + GCC_PREFIX_HEADER = "Target Support Files/RNVectorIcons/RNVectorIcons-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 9.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNDeviceInfo; - PRODUCT_NAME = RNDeviceInfo; + PRODUCT_MODULE_NAME = RNVectorIcons; + PRODUCT_NAME = RNVectorIcons; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -21786,34 +21425,9 @@ }; name = Release; }; - D15F256EB05E5F4D1CC6BEEC754A3C48 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B122FC4EA0744A09698D6C39F3BC9CD9 /* 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; - }; D1EF91AF8FC2ACCB53A6F6B18E9DAF1D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4DD5E20D88209E65E9BEBDDA476BF54F /* RCTTypeSafety.xcconfig */; + baseConfigurationReference = 291E5809BEED9259178A0FA957B359D9 /* RCTTypeSafety.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21836,9 +21450,57 @@ }; name = Debug; }; + D2BC9C9E3EA33DCD80232F3CF6037024 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 85A07CA7ED436F78F9DB5DB894080D46 /* 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; + }; + D2CBABDCED3565C768925B0DE72741FF /* 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; + }; D38AEF063C2F20CF57B6439950D78FEF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 95A02C7143CE61537E1CF6BAE7424263 /* FBLazyVector.xcconfig */; + baseConfigurationReference = 0543B08B8F5F46C1C4CB6D107B9EA1C1 /* FBLazyVector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21850,22 +21512,48 @@ }; name = Debug; }; - D4C53DCB81C39A3137D2DAFD90616FCF /* Debug */ = { + D41EC3B11BAC6A9814BEB7C13C6680FB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3725CB0D232F75861E7CF57C9FD51442 /* RNGestureHandler.xcconfig */; + baseConfigurationReference = BC80D47C6CDBD7086E7E728EB1717A10 /* 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/RNGestureHandler/RNGestureHandler-prefix.pch"; + 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; + }; + D5778C01535949B3094B4736FE0449CC /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8CBB5C5BAC37CA780E3117B6AB1CAB47 /* 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 = RNGestureHandler; - PRODUCT_NAME = RNGestureHandler; + PRODUCT_MODULE_NAME = CoreModules; + PRODUCT_NAME = "React-CoreModules"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -21877,7 +21565,7 @@ }; D5B6D636403693383350DB6FDE64AF7F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 296A20E14601F3E7D22ABE1C5586BF9A /* React-RCTLinking.xcconfig */; + baseConfigurationReference = 71906CFCF94F1E983897EA95BC9AF648 /* React-RCTLinking.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21901,57 +21589,6 @@ }; name = Release; }; - D8AB8B46364EA9DEEE891CBC9F396BD7 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 8C834B11C1A3D7F67378AFE97180F7AD /* 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; - }; - D90B3247342E789F5F768E03306806CF /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5946F82A8BBC25FEA190FDC93656ECC1 /* 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; - }; DA2039C3E2F2E745D7BB89E3A949C64C /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 4BBF59A238D1A17DFAF14F72B2CF2E34 /* FirebaseAnalytics.xcconfig */; @@ -21968,7 +21605,7 @@ }; DAA9E79193753408477948DB68A1D5A6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1D46D1AF9480B8219F2793E475C533EC /* EXConstants.xcconfig */; + baseConfigurationReference = A6B3905E0090D04E72761DFE3FA13965 /* EXConstants.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21992,6 +21629,108 @@ }; name = Debug; }; + DD5944E7167B2FE751C7842E3A56EE4A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = BC8C08C0024359A1D4F82150428F2530 /* 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; + }; + DE4124BEC3B2F3B85FDA8BEF6419107C /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 058E3220F0A9C0FB3573CA32B804EFD0 /* QBImagePickerController.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/QBImagePickerController/QBImagePickerController-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = QBImagePickerController; + PRODUCT_NAME = QBImagePickerController; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + DE4760C746B2A29C9038579E2DA0D89F /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 04E15B5964805DC5108565460F62DE8E /* 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; + }; + DEB57615BAFDE9071341168DD477F8C3 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2177633D2BA7B24159DF0F8D9895045C /* 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; + }; DF7478822B9356E5540AE3CCA75426E1 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 17948BE2F77291A7E285DA9D70DE304F /* FirebaseCore.xcconfig */; @@ -22018,7 +21757,7 @@ }; DFD823DA1290CE40B87DC41D663E5D0D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 11EBDE56B15977B30148A1D56A61E072 /* ReactCommon.xcconfig */; + baseConfigurationReference = F09F743D5423F2EE9A21918914DA08A1 /* ReactCommon.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22041,6 +21780,32 @@ }; name = Debug; }; + E023B22E2111F4A1ED2A53A513C46FCE /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8CC5F8E745AEB03DC3B1204CC12B3F0E /* 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; + }; E1E8D1C102C3C406595FEEA2AEE9B2C7 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 11F2E0CF5B468B005AB51ACC1491345E /* boost-for-react-native.xcconfig */; @@ -22055,30 +21820,31 @@ }; name = Debug; }; - E2AA1EDEB338C13FB8A0A13122C70328 /* Debug */ = { + E30FCBEDCB0AF6741DDF4990BE355C93 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8BA0333FD3440ED1605E44D752777D73 /* RNUserDefaults.xcconfig */; + baseConfigurationReference = 85A07CA7ED436F78F9DB5DB894080D46 /* 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/RNUserDefaults/RNUserDefaults-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; + 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 = RNUserDefaults; - PRODUCT_NAME = RNUserDefaults; + 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 = Debug; + name = Release; }; E3FAE0F84AC193A7C34D16F7AA2AC7C7 /* Debug */ = { isa = XCBuildConfiguration; @@ -22104,9 +21870,34 @@ }; name = Debug; }; + E5CF17B0429BAC9AF8641F5E0C7BE1F3 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 77F5609B4B12EA9B0EDC2CF48E5572F3 /* 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; + }; E5F93A9DAD7A39EB58BB080BC9D1C800 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 11EBDE56B15977B30148A1D56A61E072 /* ReactCommon.xcconfig */; + baseConfigurationReference = F09F743D5423F2EE9A21918914DA08A1 /* ReactCommon.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22130,17 +21921,27 @@ }; name = Release; }; - E62AAEA8D616B716C1A4DD3799410A17 /* Debug */ = { + E6802865AAC87C12C291D01630D2DCCE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 07D16A26681FF2E352792B64421ED0B6 /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = A49FD196C40396CE87F5E587717F312C /* rn-extensions-share.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/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; @@ -22159,30 +21960,21 @@ }; name = Debug; }; - EC7FBFB8193222D18E3D270DBC9E2C8F /* Debug */ = { + EE9E737E21E8C86EB2949A2C20D774F4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C72C1AD2A046915E567F543A12890B11 /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = 1968EA8AC1899CE9211FFB0A9ADD1977 /* UMTaskManagerInterface.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/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 = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; EEEBF130660994007190EF36EE43CA1F /* Release */ = { isa = XCBuildConfiguration; @@ -22199,32 +21991,6 @@ }; name = Release; }; - EEEDF570056010C25F17CB0CDC0C5847 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2B435DF52AD873ADF9D8AE1CBA4931E5 /* 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; - }; F1D92D3D079ED8C916083D517D6DFD76 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = B8AF819B6D1CA91471061BCB3DCA3399 /* FirebaseCoreDiagnosticsInterop.xcconfig */; @@ -22241,7 +22007,7 @@ }; F21134E5221C7858F0C07A275E43964D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A3E18E5BE7BAA4745020688185C4BFBB /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = 566AD3507F551CF6CC8AE84B4EBFD196 /* UMFileSystemInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22255,34 +22021,9 @@ }; name = Release; }; - F253BA06C24F1EE0668F0494A383CA0C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5946F82A8BBC25FEA190FDC93656ECC1 /* 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; - }; F282E9FA529070D5C088C7A0113AD236 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DD0D00FE3327C2F3AAF31DF2E62C48BF /* React-RCTImage.xcconfig */; + baseConfigurationReference = F6FAA14558A4C4ACEB215A1400FA2220 /* React-RCTImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22307,7 +22048,7 @@ }; F3933378CE1C1E9BFC3330D7E2B286A9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 18E5C34187C0E1AD4393C3077FD4913B /* React-RCTText.xcconfig */; + baseConfigurationReference = B6B57818D5BE1B8294828964AFE6A2CC /* React-RCTText.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22330,9 +22071,52 @@ }; name = Debug; }; + F4F7FE4A4E8B1D523060E20CD0CE5030 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 058E3220F0A9C0FB3573CA32B804EFD0 /* 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; + }; + F513049685B083024388B804B70FFA62 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FA475548DB7784D97888AD13A8068EB4 /* 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; + }; F6D9706C270B1DF00D0365B34B090AA3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AA6220A557BF114DB76A15F129AF8E27 /* UMCore.xcconfig */; + baseConfigurationReference = A55E7EC91AD0B1AFCC10A42D8D106577 /* UMCore.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -22357,9 +22141,35 @@ }; name = Release; }; + F8A4D74A2BD11B51A339BA9463883851 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 61FF33B74344249CC59D55F54F4D3652 /* react-native-orientation-locker.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-orientation-locker/react-native-orientation-locker-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_orientation_locker; + PRODUCT_NAME = "react-native-orientation-locker"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; F8E7602FFB27E13DA859F74D1AAE419C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4DD5E20D88209E65E9BEBDDA476BF54F /* RCTTypeSafety.xcconfig */; + baseConfigurationReference = 291E5809BEED9259178A0FA957B359D9 /* RCTTypeSafety.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22383,32 +22193,6 @@ }; name = Release; }; - FA5B0D360413FFE80F99B6995ECAE83B /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 54E082E90CAF371FF97974E78DB15502 /* 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; - }; FB5FB497584D723D4D3826561EF4B46A /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 6953E0D0C66FF0C141348A0A0DF4D67A /* Fabric.xcconfig */; @@ -22424,6 +22208,32 @@ }; name = Release; }; + FDBE71F24A4411D60F45116F34FDF260 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E54C26DCEB21B7DCF12F63E0371C4636 /* 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; + }; FDE656A64618A75826B3072DC7581C50 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 4E072FC1D45DEC37BA7E55FAB5771A23 /* JitsiMeetSDK.xcconfig */; @@ -22442,6 +22252,15 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ + 018DAECA8F15EA1F012B027EA675E2BE /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + AFD752162A4A859FC060D29683EF1321 /* Debug */, + CB19BA9CF765C480AAC22B5F2A501FCD /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 04A229E9E4C566DF53EE0E70FA2D7124 /* Build configuration list for PBXNativeTarget "React-jsi" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -22451,11 +22270,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 070C3D2DBD15207EF9F9A8D8488CA319 /* Build configuration list for PBXNativeTarget "react-native-video" */ = { + 0780BF645142B9C9987C66A07C0F577D /* Build configuration list for PBXAggregateTarget "UMTaskManagerInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5121FB8AEC69D6EDC1BC23DA883AB30C /* Debug */, - 308C8266E7DC38104957C0865457F760 /* Release */, + 3144B3D8CCC1313E148DC8D1A603D3A1 /* Debug */, + EE9E737E21E8C86EB2949A2C20D774F4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -22496,24 +22315,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0D60BB0DB98F53204DCF269A824CC594 /* Build configuration list for PBXAggregateTarget "UMCameraInterface" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 0383A832640FEC7F567743B3EB136CB2 /* Debug */, - 140BBABFE55D0567FE5C2B5990DB6115 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 0F966F9889B90159F3E330BA2B30E733 /* Build configuration list for PBXNativeTarget "react-native-notifications" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 0D2C1B6B5CB21C64B0022A4ADC2CAFC3 /* Debug */, - 517E3386DB1DF9F2BFD7DF1DC8AC6E39 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 105D32363F4F68FCABAA9C9979ACD354 /* Build configuration list for PBXNativeTarget "React-RCTLinking" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -22523,11 +22324,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 10C085B9206683B696F332301B4FA06E /* Build configuration list for PBXNativeTarget "react-native-webview" */ = { + 1093E0DF7EB7D85FDD6397B68E891208 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5C5156B228832A51C56BF9533393AEC2 /* Debug */, - EEEDF570056010C25F17CB0CDC0C5847 /* Release */, + 9C1D6C9615B2E55A6486492722D218AF /* Debug */, + 123DFE2E5498780AB43280E35F35C1B5 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -22550,6 +22351,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 156B45C4E08F7101AB4768F7F8CF85E5 /* Build configuration list for PBXNativeTarget "RNFastImage" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 71AA86443355CEEEC120382DCBB2629A /* Debug */, + 9403EFDD786F878500BA29E8A447307B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 17528847ED7361712D5774B3F57F412E /* Build configuration list for PBXNativeTarget "FirebaseInstanceID" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -22559,15 +22369,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 17FC378407A048291E3EF3D5DB377139 /* Build configuration list for PBXNativeTarget "RNLocalize" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 013527D9A6BB191DABF25064DE11E65D /* Debug */, - FA5B0D360413FFE80F99B6995ECAE83B /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 1CB324CFC7C9FDAD43D409360A8F980B /* Build configuration list for PBXAggregateTarget "UMFileSystemInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -22577,11 +22378,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 206BAFF487038B478A236A517A3ECA77 /* Build configuration list for PBXNativeTarget "RNGestureHandler" */ = { + 1E8A6483332E273CFEB815B3FD74A8E5 /* Build configuration list for PBXNativeTarget "SDWebImage" */ = { isa = XCConfigurationList; buildConfigurations = ( - D4C53DCB81C39A3137D2DAFD90616FCF /* Debug */, - 83972CADB60CA8958A0745640C2230F9 /* Release */, + CA802DD3E1DAA002D2EB01F531DC26FB /* Debug */, + DD5944E7167B2FE751C7842E3A56EE4A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -22595,11 +22396,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2282E1306FA54EA97856E808673FDD9D /* Build configuration list for PBXAggregateTarget "UMFontInterface" */ = { + 238ADF0776D24AC685B96E012945E847 /* Build configuration list for PBXNativeTarget "RNScreens" */ = { isa = XCConfigurationList; buildConfigurations = ( - C59C517F1730DDE80ACCB1C926377B4C /* Debug */, - 4A0AF5BE124E8C855E0DE02FA4E89FCD /* Release */, + 56A16426FCFCBFBD7A20AFA186F96844 /* Debug */, + DE4760C746B2A29C9038579E2DA0D89F /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 26D8517FD14DC564CC0F4BCA4087F468 /* Build configuration list for PBXAggregateTarget "UMCameraInterface" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 94F839B666A49D46B257139DCFD7A7FF /* Debug */, + 9722F4E29A9F11BC56AF6C6539B9CEFB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -22613,11 +22423,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 285E5ED64BB9E5B7CD6AE9B104285C45 /* Build configuration list for PBXNativeTarget "RNVectorIcons" */ = { + 28165CB636DFBF2C71BA7CB1D8D58427 /* Build configuration list for PBXNativeTarget "RNFirebase" */ = { isa = XCConfigurationList; buildConfigurations = ( - 19F79B3C132AEC49A3D1541738365812 /* Debug */, - C48C6C9B1EB2F14B6DFDD09D13C0F330 /* Release */, + 2BDE5ABA35839EB3A7CC7796E74E0154 /* Debug */, + 3668DCCD5429AA2D1BDE2F19E2CC265B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 31CAE9EFF52FDB55F7F4DF6C2050382A /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B560BD98836CEFC52586B2DA6790EB97 /* Debug */, + 5B4254028270D9003488D406C724BD4C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -22640,20 +22459,38 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3CD4DEC6B1AA7D3A576ADB1435D38BD3 /* Build configuration list for PBXNativeTarget "react-native-keyboard-input" */ = { + 3AE61207ECD7BD36FEC281284BEE2E72 /* Build configuration list for PBXNativeTarget "RNReanimated" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7CB6BFA813C2A6BD76121B7D1C669B7E /* Debug */, - 6E8B80B9636689EAA5A47CAD03C59224 /* Release */, + D2BC9C9E3EA33DCD80232F3CF6037024 /* Debug */, + E30FCBEDCB0AF6741DDF4990BE355C93 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 459DA3A28CEE3ABB7FF14795DF7AA113 /* Build configuration list for PBXNativeTarget "react-native-background-timer" */ = { + 4325D36F23371ECA920CFB1522658F4C /* Build configuration list for PBXNativeTarget "RNGestureHandler" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6F09A49236FCFF9F4925E140DD656531 /* Debug */, - 5CAA38E6F9E2B640E17289E8E7D4ED83 /* Release */, + C0CDB2A0282A2CB0BBDC5FB55855EFE6 /* Debug */, + 68E6C0A6A8F871326931666045697572 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 471A981FDB643FAE9CD1B2BB6EB15F69 /* Build configuration list for PBXNativeTarget "React-CoreModules" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D5778C01535949B3094B4736FE0449CC /* Debug */, + 31E2E28B41B02BEDFA5F44AAD64430E7 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 473481C5B0CF711932287F9B9AEA2483 /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 2EA2282BD97356B17E5F19F9280A290D /* Debug */, + F8A4D74A2BD11B51A339BA9463883851 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -22667,11 +22504,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 48C9C29125190813F974C0352AB9AC90 /* Build configuration list for PBXNativeTarget "QBImagePickerController" */ = { + 48EAB0CB839D0B2C26418E9ECFB0D514 /* Build configuration list for PBXNativeTarget "RNLocalize" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5DEF1CC1DBF5C346752FC2E11E3D76C9 /* Debug */, - 5F0A5E73DF12C6C42A669E4847D78417 /* Release */, + AC763098590AFC483172263A0D947F2F /* Debug */, + 9D5683A01F041F9F413EB1A145FDC028 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -22685,29 +22522,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4FC235758377341D9622237BC1C6C48E /* Build configuration list for PBXNativeTarget "RNReanimated" */ = { + 4C53423CD6A904E6C6DF800A7B7D590C /* Build configuration list for PBXNativeTarget "QBImagePickerController" */ = { isa = XCConfigurationList; buildConfigurations = ( - 557280BC5103B8FAD4EF4B0AED817230 /* Debug */, - 2051206E882A297D3E3E0AB703A455F7 /* Release */, + DE4124BEC3B2F3B85FDA8BEF6419107C /* Debug */, + 32C08C2D24FC9BDEFD11A19CCB6088F3 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4FD8ABF192F536CF48EC99E965C99926 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { + 50C806961EF27281C0A30B4549EF1AB4 /* Build configuration list for PBXAggregateTarget "UMSensorsInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - C182265D62494FCEA72153B38B5F9232 /* Debug */, - C8E293BD400C737782D06A0BE1E780FB /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 51E2205C62290A0FBE68C75D026CC09E /* Build configuration list for PBXNativeTarget "react-native-keyboard-tracking-view" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - D8AB8B46364EA9DEEE891CBC9F396BD7 /* Debug */, - 0E01724AA76867B351CB787B664E40C2 /* Release */, + 77601BA6A214B24D1FD2EEBD4D9873E6 /* Debug */, + 3F7C3DC77B089D6DC2A5B46F567BC11F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -22721,15 +22549,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 546311A234B6A3F415FB4EFF20C25293 /* Build configuration list for PBXNativeTarget "SDWebImage" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 88B6180592043E16820F04E2089B122E /* Debug */, - CC72B25508BCE3DF62B0FF1B6281DFC2 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 54F3B87B3B269E9BBE45F037B2F7358B /* Build configuration list for PBXNativeTarget "React-RCTNetwork" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -22748,6 +22567,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 59A09408AEA098A49F38D290B9E029B1 /* Build configuration list for PBXNativeTarget "react-native-keyboard-tracking-view" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 1FA74D0358309C40B8FFE362267EF62F /* Debug */, + 8905D4EE89FE535BA892FD2E3908C88F /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 5AE3722DD39C3B2C37D89B1AC2A0A4C0 /* Build configuration list for PBXAggregateTarget "boost-for-react-native" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -22784,15 +22612,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 63633849C2F8C556E146A5D8921817EC /* Build configuration list for PBXNativeTarget "react-native-safe-area-context" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A14BC02C6EBF6F95A8D8368CF653744A /* Debug */, - 91C3C906C406F2A90FB757AF292A9D6B /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 63A4E102649D9D6144467ACA6932699F /* Build configuration list for PBXNativeTarget "DoubleConversion" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -22802,24 +22621,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 68168B429953B570BE8C2E93254702BB /* Build configuration list for PBXNativeTarget "react-native-document-picker" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - D15F256EB05E5F4D1CC6BEEC754A3C48 /* Debug */, - 12E296BD46EF325D3A871FB455CF14F7 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 68B6CC4C9B9D519A59DDD649607638F7 /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - E62AAEA8D616B716C1A4DD3799410A17 /* Debug */, - 8B454031827143E3746EDA4B0BEC94FB /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 694A8CE4B2F3D4A51F73B435FF654E3C /* Build configuration list for PBXNativeTarget "EXPermissions" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -22829,11 +22630,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6B70FA091F781615CF895EFC025463C8 /* Build configuration list for PBXNativeTarget "RNFastImage" */ = { + 6B508EF9B32FC114716836E87532616E /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder" */ = { isa = XCConfigurationList; buildConfigurations = ( - 36DB7CF8E1038B0F373389D61B0ABF04 /* Debug */, - 626EE5756E10D56643EB2A59F87646CA /* Release */, + C1D85901094751F328ADDAB6DD304650 /* Debug */, + 3390D8DC719D5739BF8FC617A3FF3CEA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -22847,6 +22648,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 6EB6E5A39241D92C4588BA17DFE62C8B /* Build configuration list for PBXAggregateTarget "UMBarCodeScannerInterface" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 09F05379043E8FFE2F1798DD46ACB069 /* Debug */, + 5979A964C79601570DEABF5F6FE58623 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 73A6CB4B327E5278A08D35B283F2B208 /* Build configuration list for PBXNativeTarget "nanopb" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -22856,20 +22666,47 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7AA08BF8D72007401DA9EBEEB23BFB39 /* Build configuration list for PBXNativeTarget "UMReactNativeAdapter" */ = { + 75DAD50F775EB61B643EC47428B09092 /* Build configuration list for PBXNativeTarget "RNVectorIcons" */ = { isa = XCConfigurationList; buildConfigurations = ( - 813462D960BBED8AEAD581F3EFB759DF /* Debug */, - 6D148BC8D82B7E1B71CC77F7C5B1B0C3 /* Release */, + 186D94A9EDB79C596E7D3ED7F7BFB38A /* Debug */, + CBDE128A8E9F89528FE80D8168978C92 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7D417ED62277C350F4C6BFA2BB1D44B4 /* Build configuration list for PBXNativeTarget "RSKImageCropper" */ = { + 7796DE8843CE657A11CFAFC925CF4887 /* Build configuration list for PBXNativeTarget "rn-fetch-blob" */ = { isa = XCConfigurationList; buildConfigurations = ( - 98DD2DDC6D3F060302EB92F3A9146855 /* Debug */, - 9AC3DF008AE370B2BAB08C5EB740E968 /* Release */, + E5CF17B0429BAC9AF8641F5E0C7BE1F3 /* Debug */, + CAF5E0DD4CD9F4ECDF7839901CF5D5B0 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 8042940547B51A6B850A564D0A61A212 /* Build configuration list for PBXNativeTarget "react-native-jitsi-meet" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 059FBBB539702E38F0415951FF396B1D /* Debug */, + A48B5AAAB5DC3D5EFB9A010EC45BA7C0 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 806906A37B99E94F69F11C9EB57FDBFB /* Build configuration list for PBXNativeTarget "react-native-keyboard-input" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0BBF2F201B9B26EF33700E8E67F547BD /* Debug */, + ACFDD37956B431634C7CCCAFD6A38586 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 8423216EE15DF7B773E9D80E94A47423 /* Build configuration list for PBXNativeTarget "react-native-document-picker" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 972C5135CDF1BAF8900741D721409EFF /* Debug */, + D41EC3B11BAC6A9814BEB7C13C6680FB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -22892,11 +22729,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8B2AD48159F26B53BDEE52A44D8DF1C2 /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */ = { + 8914A21B1ED80123762D9B27D951BD4F /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */ = { isa = XCConfigurationList; buildConfigurations = ( - 546CBE83C7B5CE1989B92A5F7CBB5FAD /* Debug */, - 9EDFC7246E2960371F81B4FCD41C4362 /* Release */, + F4F7FE4A4E8B1D523060E20CD0CE5030 /* Debug */, + 400ECFBA4071591080725B91E0EE5D2A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -22910,47 +22747,29 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8E99185841B3934943FCFB61B778A1B4 /* Build configuration list for PBXNativeTarget "rn-fetch-blob" */ = { + 93436B5786A8C55065FBA52F0FB6FD93 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { isa = XCConfigurationList; buildConfigurations = ( - B9F618C516CE0EB8F060F890239A9ED8 /* Debug */, - 668DEB1AA99A463E571D3B1F8AAE3DD3 /* Release */, + D2CBABDCED3565C768925B0DE72741FF /* Debug */, + 184C6D9533DC3CAFDE1C990F060C83F9 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 93900F53224C905CAAB227E09427B480 /* Build configuration list for PBXAggregateTarget "UMSensorsInterface" */ = { + 96E5D55173FE4139CDC795611FCA353D /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5C9CDFBDA0A6AD877B41834DDF048AF8 /* Debug */, - 98441EAB957E01EC46A690702142D92A /* Release */, + AFF26C75085DBA02386E236F47DC208C /* Debug */, + C03BDBF6DEC905B3C3A9875803F08972 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 95130D2A7CF190452EE25F5A06EC9C05 /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */ = { + 9A8E61E9E1EF22694027936DC5BAA527 /* Build configuration list for PBXNativeTarget "react-native-background-timer" */ = { isa = XCConfigurationList; buildConfigurations = ( - 9E71698AA77AC64B5AFD6A9F91A022E9 /* Debug */, - 2FA27F5DA8E421BE9B8BC4D7733955B5 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 9977EEB66BFAFE6804119883E93B7CE9 /* Build configuration list for PBXAggregateTarget "UMTaskManagerInterface" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 53E8A2C779BA6B7244E440D060EA4A91 /* Debug */, - 786E2A515AC827331C58CF8796D1CA76 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 9A20A8DFE215D7CE89985A0F15A1F97D /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - EC7FBFB8193222D18E3D270DBC9E2C8F /* Debug */, - CF7A671319C49B4533EB0A3331542720 /* Release */, + 8440BC9381D83B5A7B6EA79CE7674048 /* Debug */, + 6FCDCD33A8B5EC5A9745E5358AF8D63D /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -22982,15 +22801,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A77DE463FFC1EB3495103572A2873FDC /* Build configuration list for PBXNativeTarget "RNUserDefaults" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - E2AA1EDEB338C13FB8A0A13122C70328 /* Debug */, - BE41FCF495DF6B502F4703EC79180EE4 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; A8782857F2D49A3C08A5D9C7603FBBCD /* Build configuration list for PBXNativeTarget "GoogleDataTransportCCTSupport" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -23000,11 +22810,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A8AEE226A4C2A4E14B547C41676D3639 /* Build configuration list for PBXNativeTarget "React-CoreModules" */ = { + AD2A942F78A1A29119F8BE40A0A214D5 /* Build configuration list for PBXNativeTarget "react-native-webview" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46D8743589D08083F2649B8B72F8BCF6 /* Debug */, - 5094A57F528B672446A3AF7F1E272690 /* Release */, + DEB57615BAFDE9071341168DD477F8C3 /* Debug */, + 0421ADD816595DD3B3D1710A51F3F798 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -23018,15 +22828,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B3E6EC86890E7B7B0F1B83F7CAAC527B /* Build configuration list for PBXNativeTarget "RNScreens" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 8071D77EEEFF20423ADE9A0FD8203447 /* Debug */, - 51460A44D5F1EDC8C192752CAC17CEF9 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; B3E76B1390AF20A46D319CDCE2224F68 /* Build configuration list for PBXNativeTarget "ReactCommon" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -23045,38 +22846,29 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BA6C5ADEA255E6C4BCC41BA025203FAD /* Build configuration list for PBXNativeTarget "SDWebImageWebPCoder" */ = { + C089577AD0FCF110B9A2F9691F28D573 /* Build configuration list for PBXAggregateTarget "UMFaceDetectorInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - C5D0D0B385C7E52CA6790F327EB413CD /* Debug */, - 63AC380B8F36235ACD099D2A152562B8 /* Release */, + ADD968A3B7B70E7652BED12801A85E89 /* Debug */, + 19D7107468AC8F9E62F090158B3871C9 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BBBCCADC4B17240E65006D3C9F6B2365 /* Build configuration list for PBXAggregateTarget "UMBarCodeScannerInterface" */ = { + C47A574960218FD6F25ED61F1E6ADAB0 /* Build configuration list for PBXNativeTarget "UMReactNativeAdapter" */ = { isa = XCConfigurationList; buildConfigurations = ( - 35F9BBD5BFE05CA4BC4C508CF5BE80A4 /* Debug */, - AB8EE669C2350B3BEBACE52ACB56CBE8 /* Release */, + F513049685B083024388B804B70FFA62 /* Debug */, + 1EE26B280F5CDBA2E6B7DE026281A500 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C21B3D278B86E2D142EBEF9ACCE573FE /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */ = { + C4A19EAFEA575BBB2A8E411D62219AB5 /* Build configuration list for PBXNativeTarget "RNAudio" */ = { isa = XCConfigurationList; buildConfigurations = ( - BEA5E425079CAC70C90DBCEBA8E3B733 /* Debug */, - 7377D9A2242D9459FA40254CBB7C9075 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - C5ECADC183AE410249AF185DE4228666 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 50A67CE763E82FF71ADAEC130625D8F6 /* Debug */, - 47A40304644011E2AD4B3BDFCC89B7D2 /* Release */, + 28EA25A76B4F418BE4FE17F16FE974AB /* Debug */, + FDBE71F24A4411D60F45116F34FDF260 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -23090,11 +22882,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CDCED51DC2461132113FD2D18334EEB3 /* Build configuration list for PBXNativeTarget "react-native-jitsi-meet" */ = { + C9F75F1D30711A9F1A3956D3BDDDE3EE /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */ = { isa = XCConfigurationList; buildConfigurations = ( - F253BA06C24F1EE0668F0494A383CA0C /* Debug */, - D90B3247342E789F5F768E03306806CF /* Release */, + 926E6385D4C2B865548376B15FAEE587 /* Debug */, + 14FE55C7F002ED88C65C94B797059BF1 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + D07DBCF3C4E14EF6BD11AE749E3559B4 /* Build configuration list for PBXNativeTarget "RSKImageCropper" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 5EDC51149B93904CB46AE27BA7B22E9A /* Debug */, + 0572253D7287E475647AA34DD33142E9 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -23117,20 +22918,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D996D4364BADDB0ACDBAC5945F4D1D30 /* Build configuration list for PBXNativeTarget "RNFirebase" */ = { + DA26E2F5C5BF12C88FBD522F9E286D3E /* Build configuration list for PBXNativeTarget "react-native-notifications" */ = { isa = XCConfigurationList; buildConfigurations = ( - 62167BD661F2C9FE35E887AC2ADD2D33 /* Debug */, - A5F1C98EC2C6834106EC2B23561A8CEC /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - D9FE69B4A5061B2A3D39458594F6CA5C /* Build configuration list for PBXNativeTarget "RNAudio" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 612927D63A49672FBF64BA93E2989CD1 /* Debug */, - CA4B12FC6627BC4E070FFE7D4D52A5B7 /* Release */, + A565F177C20CCF1741A28593CC5CD978 /* Debug */, + E023B22E2111F4A1ED2A53A513C46FCE /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -23162,6 +22954,24 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + E31508D2C5A22533BD1AC133FCF89574 /* Build configuration list for PBXNativeTarget "react-native-video" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 5F080E1FC1331C8928E3FC68F7B18B96 /* Debug */, + 8B107165907E534CBBA2C7DCD5857F73 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + E6FE4EABCBC21D903BE5028CF0BDC6B4 /* Build configuration list for PBXNativeTarget "rn-extensions-share" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E6802865AAC87C12C291D01630D2DCCE /* Debug */, + A163FF76FCA18083F5BD30E7B7A3494A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; E96ADCE88607DA7C2B5199EB67E5B9D0 /* Build configuration list for PBXNativeTarget "Folly" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -23171,6 +22981,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + EA5C25E1165730DD6B6906B9ADA5DF1D /* Build configuration list for PBXNativeTarget "RNUserDefaults" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 5F2C5941FD161EB202813804FB78C0F7 /* Debug */, + 24298DB4D29FB624BEF75734C29C6FA7 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; EBD689D40589C48EF8EA91F0C349EBEC /* Build configuration list for PBXNativeTarget "React-cxxreact" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -23180,15 +22999,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - ED9222C0E12FF487A50ADD8442DF306D /* Build configuration list for PBXAggregateTarget "UMFaceDetectorInterface" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - CCABC21C7F95FF3DA06F504370713048 /* Debug */, - BED8D1CD789592D6BE2F8F06CA0E23DB /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; F3B5D9DA1E40073F034CC27A3F9CD632 /* Build configuration list for PBXNativeTarget "FBReactNativeSpec" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -23216,11 +23026,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F78A97622D69931DB48F198C9BC90DCA /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */ = { + F61D3F5521582C4B49AA10198889522A /* Build configuration list for PBXAggregateTarget "UMFontInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - B8A82F426F4D25C905B980B28A7DACE1 /* Debug */, - 53C362FD404A0D130806A6E9665057D3 /* Release */, + 5965FB8FA04E3B532F8F6F513C346A8E /* Debug */, + 7F6DC8F6983E3C0FB54B53DE01A805C2 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -23270,15 +23080,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - FFB0E381B19C5A3DBC4371DCF41884A3 /* Build configuration list for PBXNativeTarget "rn-extensions-share" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 93034BF15A2E94FB8D1F80153ADC7AE9 /* Debug */, - 835FC14811142E2722350A54F17FB1E0 /* 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 cfc6e7827..06e0f3fba 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 @@ -2580,31 +2580,6 @@ 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 eed40aaba..0e106ef49 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 @@ -2847,37 +2847,6 @@ 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 47335e6e0..3be9aaa54 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig @@ -1,9 +1,9 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/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" +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" 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-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" +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" 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 47335e6e0..3be9aaa54 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig @@ -1,9 +1,9 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/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" +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" 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-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" +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" 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 cfc6e7827..06e0f3fba 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 @@ -2580,31 +2580,6 @@ 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 eed40aaba..0e106ef49 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 @@ -2847,37 +2847,6 @@ 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 b288475ea..225cc042b 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig @@ -1,9 +1,9 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/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" +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" 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-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" +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" 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 b288475ea..225cc042b 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig @@ -1,9 +1,9 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/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" +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" 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-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" +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" 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 deleted file mode 100644 index 53fd2c867..000000000 --- a/ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#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 deleted file mode 100644 index beb2a2441..000000000 --- a/ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context-prefix.pch +++ /dev/null @@ -1,12 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - diff --git a/ios/Pods/Target Support Files/react-native-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 deleted file mode 100644 index 505fd7d6a..000000000 --- a/ios/Pods/Target Support Files/react-native-safe-area-context/react-native-safe-area-context.xcconfig +++ /dev/null @@ -1,9 +0,0 @@ -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 9183cfd30..203c46e9b 100644 --- a/package.json +++ b/package.json @@ -71,8 +71,6 @@ "react-native-platform-touchable": "^1.1.1", "react-native-reanimated": "^1.3.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/yarn.lock b/yarn.lock index d4dff1aa5..9758fd928 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9227,18 +9227,6 @@ 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"