From 2311438554eb114e126210e13c704de39bdf1264 Mon Sep 17 00:00:00 2001 From: Neil Agarwal Date: Thu, 18 Jun 2020 02:23:37 +0530 Subject: [PATCH 01/11] [NEW] MessageBox: Expo-av audio recorder * Refactor MessageBox to accommodate recording button even when recording * Rename Recording.js -> RecordAudio.js as we could implement video recording in the future --- app/containers/MessageBox/RecordAudio.js | 157 ++++++++++++++++ app/containers/MessageBox/Recording.js | 174 ------------------ .../MessageBox/RightButtons.android.js | 14 +- app/containers/MessageBox/RightButtons.ios.js | 13 +- .../MessageBox/buttons/AudioButton.js | 21 --- app/containers/MessageBox/buttons/index.js | 2 - app/containers/MessageBox/index.js | 133 ++++++++----- app/containers/message/Audio.js | 2 +- 8 files changed, 246 insertions(+), 270 deletions(-) create mode 100644 app/containers/MessageBox/RecordAudio.js delete mode 100644 app/containers/MessageBox/Recording.js delete mode 100644 app/containers/MessageBox/buttons/AudioButton.js diff --git a/app/containers/MessageBox/RecordAudio.js b/app/containers/MessageBox/RecordAudio.js new file mode 100644 index 00000000000..429cd768316 --- /dev/null +++ b/app/containers/MessageBox/RecordAudio.js @@ -0,0 +1,157 @@ +import React, { useRef, useState, useEffect } from 'react'; +import PropTypes from 'prop-types'; +import { TouchableOpacity } from 'react-native'; +import { activateKeepAwake, deactivateKeepAwake } from 'expo-keep-awake'; +import { Audio } from 'expo-av'; +import RNFetchBlob from 'rn-fetch-blob'; + +import { CustomIcon } from '../../lib/Icons'; +import styles from './styles'; +import I18n from '../../i18n'; +import { themes } from '../../constants/colors'; +import { mode as playbackMode } from '../message/Audio'; + +const RECORDING_MODE = { + allowsRecordingIOS: true, + playsInSilentModeIOS: true, + staysActiveInBackground: false, + shouldDuckAndroid: true, + playThroughEarpieceAndroid: false, + interruptionModeIOS: Audio.INTERRUPTION_MODE_IOS_DO_NOT_MIX, + interruptionModeAndroid: Audio.INTERRUPTION_MODE_ANDROID_DO_NOT_MIX +}; + +const RECORDING_SETTINGS = { + android: { + extension: '.aac', + outputFormat: Audio.RECORDING_OPTION_ANDROID_OUTPUT_FORMAT_AAC_ADTS, + audioEncoder: Audio.RECORDING_OPTION_ANDROID_AUDIO_ENCODER_AAC, + sampleRate: 22050, + numberOfChannels: 1, + bitRate: 128000 + }, + ios: { + extension: '.aac', + audioQuality: Audio.RECORDING_OPTION_IOS_AUDIO_QUALITY_MIN, + sampleRate: 22050, + bitRate: 128000, + outputFormat: Audio.RECORDING_OPTION_IOS_OUTPUT_FORMAT_MPEG4AAC, + numberOfChannels: 2 + } +}; + +const startRecordingAudio = async(instance, setRecordingStatus) => { + try { + const permissions = await Audio.getPermissionsAsync(); + + if (permissions.status === 'granted') { + await Audio.setAudioModeAsync(RECORDING_MODE); + instance.setOnRecordingStatusUpdate((status) => { + setRecordingStatus(status); + }); + + await instance.prepareToRecordAsync(RECORDING_SETTINGS); + await instance.startAsync(); + activateKeepAwake(); + } else { + await Audio.requestPermissionsAsync(); + } + } catch (error) { + console.log('startrecordingerror', error); + } +}; + +const finishRecordingAudio = async(instance, onFinish, setRecordingStatus) => { + const uriToPath = uri => decodeURIComponent(uri.replace(/^file:\/\//, '')); + + try { + await instance.stopAndUnloadAsync(); + + const fileURI = instance.getURI(); + const fileData = await RNFetchBlob.fs.stat(uriToPath(fileURI)); + + await Audio.setAudioModeAsync(playbackMode); + + setRecordingStatus({ + canRecord: true, + isRecording: false, + durationMillis: 0, + isDoneRecording: true + }); + + const fileInfo = { + name: `${ Date.now() }.aac`, + mime: 'audio/aac', + type: 'audio/aac', + store: 'Uploads', + path: fileURI, + size: fileData.size + }; + + deactivateKeepAwake(); + return onFinish && onFinish(fileInfo); + } catch (err) { + await Audio.setAudioModeAsync(playbackMode); + deactivateKeepAwake(); + setRecordingStatus({ + canRecord: true, + isRecording: false, + durationMillis: 0, + isDoneRecording: true + }); + return onFinish && onFinish(false); + } +}; + +const RecordAudio = ({ theme, recordingCallback, onFinish }) => { + /* Refs */ + const recordingInstance = useRef(null); + + /* State */ + const [recordingStatus, setRecordingStatus] = useState({ + canRecord: false, + isRecording: false, + durationMillis: 0, + isDoneRecording: false + }); + + /* Effects */ + useEffect(() => { + recordingCallback(recordingStatus.isRecording); + }, [recordingStatus.isRecording]); + + /* UI */ + const recordingButton = ( + { + recordingInstance.current = new Audio.Recording(); + startRecordingAudio(recordingInstance.current, setRecordingStatus); + }} + onPressOut={() => { + if (recordingStatus.isRecording) { + finishRecordingAudio(recordingInstance.current, onFinish, setRecordingStatus); + } + }} + style={styles.actionButton} + testID='messagebox-send-audio' + accessibilityLabel={I18n.t('Send_audio_message')} + accessibilityTraits='button' + > + + + ); + + return ( + <> + {recordingButton} + + ); +}; + +RecordAudio.propTypes = { + theme: PropTypes.string, + recordingCallback: PropTypes.func, + onFinish: PropTypes.func +}; + +export default RecordAudio; diff --git a/app/containers/MessageBox/Recording.js b/app/containers/MessageBox/Recording.js deleted file mode 100644 index 7611cdc986a..00000000000 --- a/app/containers/MessageBox/Recording.js +++ /dev/null @@ -1,174 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import { - View, PermissionsAndroid, Text -} from 'react-native'; -import { AudioRecorder, AudioUtils } from 'react-native-audio'; -import { BorderlessButton } from 'react-native-gesture-handler'; -import { activateKeepAwake, deactivateKeepAwake } from 'expo-keep-awake'; -import RNFetchBlob from 'rn-fetch-blob'; - -import styles from './styles'; -import I18n from '../../i18n'; -import { isIOS, isAndroid } from '../../utils/deviceInfo'; -import { CustomIcon } from '../../lib/Icons'; -import { themes } from '../../constants/colors'; -import SafeAreaView from '../SafeAreaView'; - -export const _formatTime = function(seconds) { - let minutes = Math.floor(seconds / 60); - seconds %= 60; - if (minutes < 10) { minutes = `0${ minutes }`; } - if (seconds < 10) { seconds = `0${ seconds }`; } - return `${ minutes }:${ seconds }`; -}; - -export default class extends React.PureComponent { - static async permission() { - if (!isAndroid) { - return true; - } - - const rationale = { - title: I18n.t('Microphone_Permission'), - message: I18n.t('Microphone_Permission_Message') - }; - - const result = await PermissionsAndroid.request(PermissionsAndroid.PERMISSIONS.RECORD_AUDIO, rationale); - return result === true || result === PermissionsAndroid.RESULTS.GRANTED; - } - - static propTypes = { - theme: PropTypes.string, - onFinish: PropTypes.func.isRequired - } - - constructor() { - super(); - - this.recordingCanceled = false; - this.recording = true; - this.name = `${ Date.now() }.aac`; - this.state = { - currentTime: '00:00' - }; - } - - componentDidMount() { - const audioPath = `${ AudioUtils.CachesDirectoryPath }/${ this.name }`; - - AudioRecorder.prepareRecordingAtPath(audioPath, { - SampleRate: 22050, - Channels: 1, - AudioQuality: 'Low', - AudioEncoding: 'aac', - OutputFormat: 'aac_adts' - }); - - AudioRecorder.onProgress = (data) => { - this.setState({ - currentTime: _formatTime(Math.floor(data.currentTime)) - }); - }; - // - AudioRecorder.onFinished = (data) => { - if (!this.recordingCanceled && isIOS) { - this.finishRecording(data.status === 'OK', data.audioFileURL, data.audioFileSize); - } - }; - AudioRecorder.startRecording(); - - activateKeepAwake(); - } - - componentWillUnmount() { - if (this.recording) { - this.cancelAudioMessage(); - } - - deactivateKeepAwake(); - } - - finishRecording = (didSucceed, filePath, size) => { - const { onFinish } = this.props; - if (!didSucceed) { - return onFinish && onFinish(didSucceed); - } - if (isAndroid) { - filePath = filePath.startsWith('file://') ? filePath : `file://${ filePath }`; - } - const fileInfo = { - name: this.name, - mime: 'audio/aac', - type: 'audio/aac', - store: 'Uploads', - path: filePath, - size - }; - return onFinish && onFinish(fileInfo); - } - - finishAudioMessage = async() => { - try { - this.recording = false; - const filePath = await AudioRecorder.stopRecording(); - if (isAndroid) { - const data = await RNFetchBlob.fs.stat(decodeURIComponent(filePath)); - this.finishRecording(true, filePath, data.size); - } - } catch (err) { - this.finishRecording(false); - } - } - - cancelAudioMessage = async() => { - this.recording = false; - this.recordingCanceled = true; - await AudioRecorder.stopRecording(); - return this.finishRecording(false); - } - - render() { - const { currentTime } = this.state; - const { theme } = this.props; - - return ( - - - - - - {currentTime} - - - - - - ); - } -} diff --git a/app/containers/MessageBox/RightButtons.android.js b/app/containers/MessageBox/RightButtons.android.js index b351dde75eb..ba3e37a7ffa 100644 --- a/app/containers/MessageBox/RightButtons.android.js +++ b/app/containers/MessageBox/RightButtons.android.js @@ -1,22 +1,14 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { SendButton, AudioButton, ActionsButton } from './buttons'; +import { SendButton, ActionsButton } from './buttons'; const RightButtons = React.memo(({ - theme, showSend, submit, recordAudioMessage, recordAudioMessageEnabled, showMessageBoxActions + theme, showSend, submit, showMessageBoxActions }) => { if (showSend) { return ; } - if (recordAudioMessageEnabled) { - return ( - <> - - - - ); - } return ; }); @@ -24,8 +16,6 @@ RightButtons.propTypes = { theme: PropTypes.string, showSend: PropTypes.bool, submit: PropTypes.func.isRequired, - recordAudioMessage: PropTypes.func.isRequired, - recordAudioMessageEnabled: PropTypes.bool, showMessageBoxActions: PropTypes.func.isRequired }; diff --git a/app/containers/MessageBox/RightButtons.ios.js b/app/containers/MessageBox/RightButtons.ios.js index 62fbca5ee8e..9ea5fc74e8b 100644 --- a/app/containers/MessageBox/RightButtons.ios.js +++ b/app/containers/MessageBox/RightButtons.ios.js @@ -1,26 +1,19 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { SendButton, AudioButton } from './buttons'; +import { SendButton } from './buttons'; -const RightButtons = React.memo(({ - theme, showSend, submit, recordAudioMessage, recordAudioMessageEnabled -}) => { +const RightButtons = React.memo(({ theme, showSend, submit }) => { if (showSend) { return ; } - if (recordAudioMessageEnabled) { - return ; - } return null; }); RightButtons.propTypes = { theme: PropTypes.string, showSend: PropTypes.bool, - submit: PropTypes.func.isRequired, - recordAudioMessage: PropTypes.func.isRequired, - recordAudioMessageEnabled: PropTypes.bool + submit: PropTypes.func.isRequired }; export default RightButtons; diff --git a/app/containers/MessageBox/buttons/AudioButton.js b/app/containers/MessageBox/buttons/AudioButton.js deleted file mode 100644 index 4c63656dd80..00000000000 --- a/app/containers/MessageBox/buttons/AudioButton.js +++ /dev/null @@ -1,21 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -import BaseButton from './BaseButton'; - -const AudioButton = React.memo(({ theme, onPress }) => ( - -)); - -AudioButton.propTypes = { - theme: PropTypes.string, - onPress: PropTypes.func.isRequired -}; - -export default AudioButton; diff --git a/app/containers/MessageBox/buttons/index.js b/app/containers/MessageBox/buttons/index.js index 15375b9054d..523764469e6 100644 --- a/app/containers/MessageBox/buttons/index.js +++ b/app/containers/MessageBox/buttons/index.js @@ -1,13 +1,11 @@ import CancelEditingButton from './CancelEditingButton'; import ToggleEmojiButton from './ToggleEmojiButton'; import SendButton from './SendButton'; -import AudioButton from './AudioButton'; import ActionsButton from './ActionsButton'; export { CancelEditingButton, ToggleEmojiButton, SendButton, - AudioButton, ActionsButton }; diff --git a/app/containers/MessageBox/index.js b/app/containers/MessageBox/index.js index 6f8d5681442..da0ab4ec70e 100644 --- a/app/containers/MessageBox/index.js +++ b/app/containers/MessageBox/index.js @@ -1,6 +1,8 @@ import React, { Component } from 'react'; import PropTypes from 'prop-types'; -import { View, Alert, Keyboard } from 'react-native'; +import { + View, Alert, Keyboard, SafeAreaView +} from 'react-native'; import { connect } from 'react-redux'; import { KeyboardAccessoryView } from 'react-native-keyboard-input'; import ImagePicker from 'react-native-image-crop-picker'; @@ -15,7 +17,7 @@ import RocketChat from '../../lib/rocketchat'; import styles from './styles'; import database from '../../lib/database'; import { emojis } from '../../emojis'; -import Recording from './Recording'; +import RecordAudio from './RecordAudio'; import UploadModal from './UploadModal'; import log from '../../utils/log'; import I18n from '../../i18n'; @@ -649,8 +651,7 @@ class MessageBox extends Component { }); } - recordAudioMessage = async() => { - const recording = await Recording.permission(); + recordingCallback = (recording) => { this.setState({ recording }); } @@ -818,63 +819,95 @@ class MessageBox extends Component { returnKeyType: 'send' } : {}; + const recordAudio = showSend || !Message_AudioRecorderEnabled ? null : ( + + ); + + let safeAreaViewStyle = null; + let commandsPreviewAndMentions = null; + let replyPreview = null; + let content = null; + if (recording) { - return ; + safeAreaViewStyle = [styles.textBox, { borderTopColor: themes[theme].borderColor }]; + } else { + safeAreaViewStyle = [styles.composer, { borderTopColor: themes[theme].separatorColor }]; + commandsPreviewAndMentions = ( + <> + + + + ); + replyPreview = ( + + ); + + content = ( + <> + + this.component = component} + style={styles.textBoxInput} + returnKeyType='default' + keyboardType='twitter' + blurOnSubmit={false} + placeholder={I18n.t('New_Message')} + onChangeText={this.onChangeText} + underlineColorAndroid='transparent' + defaultValue='' + multiline + testID='messagebox-input' + theme={theme} + {...isAndroidTablet} + /> + + + + ); } + return ( <> - - - - + {commandsPreviewAndMentions} + + + {replyPreview} - - this.component = component} - style={styles.textBoxInput} - returnKeyType='default' - keyboardType='twitter' - blurOnSubmit={false} - placeholder={I18n.t('New_Message')} - onChangeText={this.onChangeText} - underlineColorAndroid='transparent' - defaultValue='' - multiline - testID='messagebox-input' - theme={theme} - {...isAndroidTablet} - /> - + {content} + {recordAudio} - + ); } diff --git a/app/containers/message/Audio.js b/app/containers/message/Audio.js index 63e990b949f..a0b5dfd82fa 100644 --- a/app/containers/message/Audio.js +++ b/app/containers/message/Audio.js @@ -18,7 +18,7 @@ import { isAndroid, isIOS } from '../../utils/deviceInfo'; import MessageContext from './Context'; import ActivityIndicator from '../ActivityIndicator'; -const mode = { +export const mode = { allowsRecordingIOS: false, playsInSilentModeIOS: true, staysActiveInBackground: false, From a79919d9fe03153a93ef44862bab5ecbb22844be Mon Sep 17 00:00:00 2001 From: Neil Agarwal Date: Sun, 21 Jun 2020 00:32:05 +0530 Subject: [PATCH 02/11] RecordAudio: Introduce cancel and send buttons --- app/containers/MessageBox/RecordAudio.js | 95 ++++++++++++++++++------ app/containers/MessageBox/styles.js | 14 ++++ app/containers/message/Audio.js | 4 +- 3 files changed, 88 insertions(+), 25 deletions(-) diff --git a/app/containers/MessageBox/RecordAudio.js b/app/containers/MessageBox/RecordAudio.js index 429cd768316..ddabc850eee 100644 --- a/app/containers/MessageBox/RecordAudio.js +++ b/app/containers/MessageBox/RecordAudio.js @@ -1,15 +1,15 @@ import React, { useRef, useState, useEffect } from 'react'; import PropTypes from 'prop-types'; -import { TouchableOpacity } from 'react-native'; +import { View, Text } from 'react-native'; import { activateKeepAwake, deactivateKeepAwake } from 'expo-keep-awake'; import { Audio } from 'expo-av'; import RNFetchBlob from 'rn-fetch-blob'; +import { BorderlessButton } from 'react-native-gesture-handler'; import { CustomIcon } from '../../lib/Icons'; import styles from './styles'; import I18n from '../../i18n'; import { themes } from '../../constants/colors'; -import { mode as playbackMode } from '../message/Audio'; const RECORDING_MODE = { allowsRecordingIOS: true, @@ -40,6 +40,14 @@ const RECORDING_SETTINGS = { } }; +const _formatTime = function(seconds) { + let minutes = Math.floor(seconds / 60); + seconds %= 60; + if (minutes < 10) { minutes = `0${ minutes }`; } + if (seconds < 10) { seconds = `0${ seconds }`; } + return `${ minutes }:${ seconds }`; +}; + const startRecordingAudio = async(instance, setRecordingStatus) => { try { const permissions = await Audio.getPermissionsAsync(); @@ -70,8 +78,6 @@ const finishRecordingAudio = async(instance, onFinish, setRecordingStatus) => { const fileURI = instance.getURI(); const fileData = await RNFetchBlob.fs.stat(uriToPath(fileURI)); - await Audio.setAudioModeAsync(playbackMode); - setRecordingStatus({ canRecord: true, isRecording: false, @@ -91,7 +97,6 @@ const finishRecordingAudio = async(instance, onFinish, setRecordingStatus) => { deactivateKeepAwake(); return onFinish && onFinish(fileInfo); } catch (err) { - await Audio.setAudioModeAsync(playbackMode); deactivateKeepAwake(); setRecordingStatus({ canRecord: true, @@ -103,11 +108,25 @@ const finishRecordingAudio = async(instance, onFinish, setRecordingStatus) => { } }; +const cancelAudioMessage = async(instance, onFinish, setRecordingStatus) => { + try { + await instance.stopAndUnloadAsync(); + setRecordingStatus({ + canRecord: true, + isRecording: false, + durationMillis: 0, + isDoneRecording: true + }); + deactivateKeepAwake(); + return onFinish && onFinish(false); + } catch (error) { + // Do nothing + } +}; + const RecordAudio = ({ theme, recordingCallback, onFinish }) => { - /* Refs */ const recordingInstance = useRef(null); - /* State */ const [recordingStatus, setRecordingStatus] = useState({ canRecord: false, isRecording: false, @@ -115,37 +134,67 @@ const RecordAudio = ({ theme, recordingCallback, onFinish }) => { isDoneRecording: false }); - /* Effects */ useEffect(() => { recordingCallback(recordingStatus.isRecording); }, [recordingStatus.isRecording]); - /* UI */ - const recordingButton = ( - { + const recordingContent = recordingStatus.isRecording ? ( + + + { + cancelAudioMessage(recordingInstance.current, onFinish, setRecordingStatus); + }} + accessibilityLabel={I18n.t('Cancel_recording')} + accessibilityTraits='button' + style={styles.actionButton} + > + + + + {_formatTime(Math.floor(recordingStatus.durationMillis / 1000))} + + + + { + finishRecordingAudio(recordingInstance.current, onFinish, setRecordingStatus); + }} + accessibilityLabel={I18n.t('Finish_recording')} + accessibilityTraits='button' + style={styles.actionButton} + > + + + + + ) : ( + { recordingInstance.current = new Audio.Recording(); startRecordingAudio(recordingInstance.current, setRecordingStatus); }} - onPressOut={() => { - if (recordingStatus.isRecording) { - finishRecordingAudio(recordingInstance.current, onFinish, setRecordingStatus); - } - }} style={styles.actionButton} testID='messagebox-send-audio' accessibilityLabel={I18n.t('Send_audio_message')} accessibilityTraits='button' > - + ); - return ( - <> - {recordingButton} - - ); + return recordingContent; }; RecordAudio.propTypes = { diff --git a/app/containers/MessageBox/styles.js b/app/containers/MessageBox/styles.js index e2618a7ee02..28da9a50925 100644 --- a/app/containers/MessageBox/styles.js +++ b/app/containers/MessageBox/styles.js @@ -103,5 +103,19 @@ export default StyleSheet.create({ }, scrollViewMention: { maxHeight: SCROLLVIEW_MENTION_HEIGHT + }, + recordingContent: { + flexDirection: 'row', + flex: 3 + }, + recordingCancelText: { + textAlignVertical: 'center', + fontSize: 17, + letterSpacing: 0, + ...sharedStyles.textRegular + }, + recordingContentFinish: { + flex: 2, + alignItems: 'flex-end' } }); diff --git a/app/containers/message/Audio.js b/app/containers/message/Audio.js index bd58e89853b..74410fa3f86 100644 --- a/app/containers/message/Audio.js +++ b/app/containers/message/Audio.js @@ -19,7 +19,7 @@ import MessageContext from './Context'; import ActivityIndicator from '../ActivityIndicator'; import { withDimensions } from '../../dimensions'; -export const mode = { +const mode = { allowsRecordingIOS: false, playsInSilentModeIOS: true, staysActiveInBackground: false, @@ -126,7 +126,6 @@ class MessageAudio extends React.Component { this.setState({ loading: true }); try { - await Audio.setAudioModeAsync(mode); await this.sound.loadAsync({ uri: `${ url }?rc_uid=${ user.id }&rc_token=${ user.token }` }); } catch { // Do nothing @@ -225,6 +224,7 @@ class MessageAudio extends React.Component { if (paused) { await this.sound.pauseAsync(); } else { + await Audio.setAudioModeAsync(mode); await this.sound.playAsync(); } } catch { From f192533a2c76120c4a26dd98a3af452daf5ba083 Mon Sep 17 00:00:00 2001 From: Neil Agarwal Date: Sun, 21 Jun 2020 05:35:40 +0530 Subject: [PATCH 03/11] RecordAudio: Introduce recorderBusy state, refactor MessageBox, remove useless SafeAreaView --- app/containers/MessageBox/RecordAudio.js | 58 +++++------ app/containers/MessageBox/index.js | 127 ++++++++++------------- 2 files changed, 79 insertions(+), 106 deletions(-) diff --git a/app/containers/MessageBox/RecordAudio.js b/app/containers/MessageBox/RecordAudio.js index ddabc850eee..0aaa95885fa 100644 --- a/app/containers/MessageBox/RecordAudio.js +++ b/app/containers/MessageBox/RecordAudio.js @@ -48,7 +48,8 @@ const _formatTime = function(seconds) { return `${ minutes }:${ seconds }`; }; -const startRecordingAudio = async(instance, setRecordingStatus) => { +const startRecordingAudio = async(instance, setRecordingStatus, setRecorderBusy) => { + setRecorderBusy(true); try { const permissions = await Audio.getPermissionsAsync(); @@ -67,9 +68,11 @@ const startRecordingAudio = async(instance, setRecordingStatus) => { } catch (error) { console.log('startrecordingerror', error); } + setRecorderBusy(false); }; -const finishRecordingAudio = async(instance, onFinish, setRecordingStatus) => { +const finishRecordingAudio = async(instance, onFinish, setRecorderBusy) => { + setRecorderBusy(true); const uriToPath = uri => decodeURIComponent(uri.replace(/^file:\/\//, '')); try { @@ -78,13 +81,6 @@ const finishRecordingAudio = async(instance, onFinish, setRecordingStatus) => { const fileURI = instance.getURI(); const fileData = await RNFetchBlob.fs.stat(uriToPath(fileURI)); - setRecordingStatus({ - canRecord: true, - isRecording: false, - durationMillis: 0, - isDoneRecording: true - }); - const fileInfo = { name: `${ Date.now() }.aac`, mime: 'audio/aac', @@ -94,34 +90,23 @@ const finishRecordingAudio = async(instance, onFinish, setRecordingStatus) => { size: fileData.size }; - deactivateKeepAwake(); - return onFinish && onFinish(fileInfo); - } catch (err) { - deactivateKeepAwake(); - setRecordingStatus({ - canRecord: true, - isRecording: false, - durationMillis: 0, - isDoneRecording: true - }); - return onFinish && onFinish(false); + onFinish(fileInfo); + } catch (error) { + // Do nothing } + deactivateKeepAwake(); + setRecorderBusy(false); }; -const cancelAudioMessage = async(instance, onFinish, setRecordingStatus) => { +const cancelAudioMessage = async(instance, setRecorderBusy) => { + setRecorderBusy(true); try { await instance.stopAndUnloadAsync(); - setRecordingStatus({ - canRecord: true, - isRecording: false, - durationMillis: 0, - isDoneRecording: true - }); - deactivateKeepAwake(); - return onFinish && onFinish(false); } catch (error) { // Do nothing } + deactivateKeepAwake(); + setRecorderBusy(false); }; const RecordAudio = ({ theme, recordingCallback, onFinish }) => { @@ -133,6 +118,7 @@ const RecordAudio = ({ theme, recordingCallback, onFinish }) => { durationMillis: 0, isDoneRecording: false }); + const [recorderBusy, setRecorderBusy] = useState(false); useEffect(() => { recordingCallback(recordingStatus.isRecording); @@ -143,7 +129,9 @@ const RecordAudio = ({ theme, recordingCallback, onFinish }) => { { - cancelAudioMessage(recordingInstance.current, onFinish, setRecordingStatus); + if (!recorderBusy) { + cancelAudioMessage(recordingInstance.current, setRecorderBusy); + } }} accessibilityLabel={I18n.t('Cancel_recording')} accessibilityTraits='button' @@ -165,7 +153,9 @@ const RecordAudio = ({ theme, recordingCallback, onFinish }) => { { - finishRecordingAudio(recordingInstance.current, onFinish, setRecordingStatus); + if (!recorderBusy) { + finishRecordingAudio(recordingInstance.current, onFinish, setRecorderBusy); + } }} accessibilityLabel={I18n.t('Finish_recording')} accessibilityTraits='button' @@ -182,8 +172,10 @@ const RecordAudio = ({ theme, recordingCallback, onFinish }) => { ) : ( { - recordingInstance.current = new Audio.Recording(); - startRecordingAudio(recordingInstance.current, setRecordingStatus); + if (!recorderBusy) { + recordingInstance.current = new Audio.Recording(); + startRecordingAudio(recordingInstance.current, setRecordingStatus, setRecorderBusy); + } }} style={styles.actionButton} testID='messagebox-send-audio' diff --git a/app/containers/MessageBox/index.js b/app/containers/MessageBox/index.js index da0ab4ec70e..a47032b1789 100644 --- a/app/containers/MessageBox/index.js +++ b/app/containers/MessageBox/index.js @@ -660,9 +660,6 @@ class MessageBox extends Component { rid, tmid, baseUrl: server, user } = this.props; - this.setState({ - recording: false - }); if (fileInfo) { try { if (this.canUploadFile(fileInfo)) { @@ -827,22 +824,10 @@ class MessageBox extends Component { /> ); - let safeAreaViewStyle = null; - let commandsPreviewAndMentions = null; - let replyPreview = null; - let content = null; - - if (recording) { - safeAreaViewStyle = [styles.textBox, { borderTopColor: themes[theme].borderColor }]; - } else { - safeAreaViewStyle = [styles.composer, { borderTopColor: themes[theme].separatorColor }]; - commandsPreviewAndMentions = ( - <> - - - - ); - replyPreview = ( + const commandsReplyMentions = !recording ? ( + <> + + - ); - - content = ( - <> - - this.component = component} - style={styles.textBoxInput} - returnKeyType='default' - keyboardType='twitter' - blurOnSubmit={false} - placeholder={I18n.t('New_Message')} - onChangeText={this.onChangeText} - underlineColorAndroid='transparent' - defaultValue='' - multiline - testID='messagebox-input' - theme={theme} - {...isAndroidTablet} - /> - - - - ); - } + + ) : null; + + const content = !recording ? ( + <> + + this.component = component} + style={styles.textBoxInput} + returnKeyType='default' + keyboardType='twitter' + blurOnSubmit={false} + placeholder={I18n.t('New_Message')} + onChangeText={this.onChangeText} + underlineColorAndroid='transparent' + defaultValue='' + multiline + testID='messagebox-input' + theme={theme} + {...isAndroidTablet} + /> + + + + ) : null; return ( <> - {commandsPreviewAndMentions} - - - {replyPreview} - - {content} - {recordAudio} - - + {commandsReplyMentions} + + {content} + {recordAudio} + ); } From 7272d3ad27133ed1242945c012a30b3c17f377ee Mon Sep 17 00:00:00 2001 From: Neil Agarwal Date: Sun, 21 Jun 2020 06:10:00 +0530 Subject: [PATCH 04/11] =?UTF-8?q?RecordAudio:=20Better=20audio=20quality?= =?UTF-8?q?=20=F0=9F=8E=89,=20stop=20recording=20on=20unmount?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/containers/MessageBox/RecordAudio.js | 46 +++++++++++++----------- app/containers/MessageBox/index.js | 2 +- 2 files changed, 27 insertions(+), 21 deletions(-) diff --git a/app/containers/MessageBox/RecordAudio.js b/app/containers/MessageBox/RecordAudio.js index 0aaa95885fa..0eb4e8cde58 100644 --- a/app/containers/MessageBox/RecordAudio.js +++ b/app/containers/MessageBox/RecordAudio.js @@ -11,34 +11,34 @@ import styles from './styles'; import I18n from '../../i18n'; import { themes } from '../../constants/colors'; -const RECORDING_MODE = { - allowsRecordingIOS: true, - playsInSilentModeIOS: true, - staysActiveInBackground: false, - shouldDuckAndroid: true, - playThroughEarpieceAndroid: false, - interruptionModeIOS: Audio.INTERRUPTION_MODE_IOS_DO_NOT_MIX, - interruptionModeAndroid: Audio.INTERRUPTION_MODE_ANDROID_DO_NOT_MIX -}; - +const RECORDING_EXTENSION = '.aac'; const RECORDING_SETTINGS = { android: { - extension: '.aac', + extension: RECORDING_EXTENSION, outputFormat: Audio.RECORDING_OPTION_ANDROID_OUTPUT_FORMAT_AAC_ADTS, audioEncoder: Audio.RECORDING_OPTION_ANDROID_AUDIO_ENCODER_AAC, - sampleRate: 22050, - numberOfChannels: 1, - bitRate: 128000 + sampleRate: Audio.RECORDING_OPTIONS_PRESET_LOW_QUALITY.android.sampleRate, + numberOfChannels: Audio.RECORDING_OPTIONS_PRESET_LOW_QUALITY.android.numberOfChannels, + bitRate: Audio.RECORDING_OPTIONS_PRESET_LOW_QUALITY.android.bitRate }, ios: { - extension: '.aac', + extension: RECORDING_EXTENSION, audioQuality: Audio.RECORDING_OPTION_IOS_AUDIO_QUALITY_MIN, - sampleRate: 22050, - bitRate: 128000, - outputFormat: Audio.RECORDING_OPTION_IOS_OUTPUT_FORMAT_MPEG4AAC, - numberOfChannels: 2 + sampleRate: Audio.RECORDING_OPTIONS_PRESET_LOW_QUALITY.ios.sampleRate, + numberOfChannels: Audio.RECORDING_OPTIONS_PRESET_LOW_QUALITY.ios.numberOfChannels, + bitRate: Audio.RECORDING_OPTIONS_PRESET_LOW_QUALITY.ios.bitRate, + outputFormat: Audio.RECORDING_OPTION_IOS_OUTPUT_FORMAT_MPEG4AAC } }; +const RECORDING_MODE = { + allowsRecordingIOS: true, + playsInSilentModeIOS: true, + staysActiveInBackground: false, + shouldDuckAndroid: true, + playThroughEarpieceAndroid: false, + interruptionModeIOS: Audio.INTERRUPTION_MODE_IOS_DO_NOT_MIX, + interruptionModeAndroid: Audio.INTERRUPTION_MODE_ANDROID_DO_NOT_MIX +}; const _formatTime = function(seconds) { let minutes = Math.floor(seconds / 60); @@ -66,7 +66,7 @@ const startRecordingAudio = async(instance, setRecordingStatus, setRecorderBusy) await Audio.requestPermissionsAsync(); } } catch (error) { - console.log('startrecordingerror', error); + // Do nothing } setRecorderBusy(false); }; @@ -120,6 +120,12 @@ const RecordAudio = ({ theme, recordingCallback, onFinish }) => { }); const [recorderBusy, setRecorderBusy] = useState(false); + useEffect(() => () => { + if (recordingInstance.current) { + cancelAudioMessage(recordingInstance.current, setRecorderBusy); + } + }, []); + useEffect(() => { recordingCallback(recordingStatus.isRecording); }, [recordingStatus.isRecording]); diff --git a/app/containers/MessageBox/index.js b/app/containers/MessageBox/index.js index a47032b1789..cac361c4be0 100644 --- a/app/containers/MessageBox/index.js +++ b/app/containers/MessageBox/index.js @@ -1,7 +1,7 @@ import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { - View, Alert, Keyboard, SafeAreaView + View, Alert, Keyboard } from 'react-native'; import { connect } from 'react-redux'; import { KeyboardAccessoryView } from 'react-native-keyboard-input'; From d557d67a0d9af7b51c993ec6b99cf341607a4646 Mon Sep 17 00:00:00 2001 From: Neil Agarwal Date: Sun, 21 Jun 2020 06:35:33 +0530 Subject: [PATCH 05/11] RecordAudio: Use FileSystem from expo-file-system instead of RNFetchBlob --- app/containers/MessageBox/RecordAudio.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/app/containers/MessageBox/RecordAudio.js b/app/containers/MessageBox/RecordAudio.js index 0eb4e8cde58..e63395464b4 100644 --- a/app/containers/MessageBox/RecordAudio.js +++ b/app/containers/MessageBox/RecordAudio.js @@ -3,7 +3,7 @@ import PropTypes from 'prop-types'; import { View, Text } from 'react-native'; import { activateKeepAwake, deactivateKeepAwake } from 'expo-keep-awake'; import { Audio } from 'expo-av'; -import RNFetchBlob from 'rn-fetch-blob'; +import { getInfoAsync } from 'expo-file-system'; import { BorderlessButton } from 'react-native-gesture-handler'; import { CustomIcon } from '../../lib/Icons'; @@ -73,14 +73,11 @@ const startRecordingAudio = async(instance, setRecordingStatus, setRecorderBusy) const finishRecordingAudio = async(instance, onFinish, setRecorderBusy) => { setRecorderBusy(true); - const uriToPath = uri => decodeURIComponent(uri.replace(/^file:\/\//, '')); - try { await instance.stopAndUnloadAsync(); const fileURI = instance.getURI(); - const fileData = await RNFetchBlob.fs.stat(uriToPath(fileURI)); - + const fileData = await getInfoAsync(fileURI); const fileInfo = { name: `${ Date.now() }.aac`, mime: 'audio/aac', From 47f46990ab462924e0b947383ac48ff6c897c790 Mon Sep 17 00:00:00 2001 From: Neil Agarwal Date: Tue, 23 Jun 2020 19:25:19 +0530 Subject: [PATCH 06/11] chore: flush out react-native-audio --- ios/Podfile.lock | 6 - .../Private/RNAudio/AudioRecorderManager.h | 1 - .../Public/RNAudio/AudioRecorderManager.h | 1 - ios/Pods/Manifest.lock | 6 - ios/Pods/Pods.xcodeproj/project.pbxproj | 17645 ++++++++-------- ...ods-RocketChatRN-acknowledgements.markdown | 25 - .../Pods-RocketChatRN-acknowledgements.plist | 31 - .../Pods-RocketChatRN.debug.xcconfig | 6 +- .../Pods-RocketChatRN.release.xcconfig | 6 +- ...hareRocketChatRN-acknowledgements.markdown | 25 - ...s-ShareRocketChatRN-acknowledgements.plist | 31 - .../Pods-ShareRocketChatRN.debug.xcconfig | 6 +- .../Pods-ShareRocketChatRN.release.xcconfig | 6 +- .../RNAudio/RNAudio-dummy.m | 5 - .../RNAudio/RNAudio-prefix.pch | 12 - .../RNAudio/RNAudio.xcconfig | 12 - package.json | 1 - yarn.lock | 5 - 18 files changed, 8738 insertions(+), 9092 deletions(-) delete mode 120000 ios/Pods/Headers/Private/RNAudio/AudioRecorderManager.h delete mode 120000 ios/Pods/Headers/Public/RNAudio/AudioRecorderManager.h delete mode 100644 ios/Pods/Target Support Files/RNAudio/RNAudio-dummy.m delete mode 100644 ios/Pods/Target Support Files/RNAudio/RNAudio-prefix.pch delete mode 100644 ios/Pods/Target Support Files/RNAudio/RNAudio.xcconfig diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 514e76782ca..4c8874174b2 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -435,8 +435,6 @@ PODS: - React - rn-fetch-blob (0.12.0): - React-Core - - RNAudio (4.3.0): - - React - RNBootSplash (2.2.4): - React - RNCAsyncStorage (1.10.3): @@ -585,7 +583,6 @@ DEPENDENCIES: - ReactNativeKeyboardTrackingView (from `../node_modules/react-native-keyboard-tracking-view`) - rn-extensions-share (from `../node_modules/rn-extensions-share`) - rn-fetch-blob (from `../node_modules/rn-fetch-blob`) - - RNAudio (from `../node_modules/react-native-audio`) - RNBootSplash (from `../node_modules/react-native-bootsplash`) - "RNCAsyncStorage (from `../node_modules/@react-native-community/async-storage`)" - "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)" @@ -752,8 +749,6 @@ EXTERNAL SOURCES: :path: "../node_modules/rn-extensions-share" rn-fetch-blob: :path: "../node_modules/rn-fetch-blob" - RNAudio: - :path: "../node_modules/react-native-audio" RNBootSplash: :path: "../node_modules/react-native-bootsplash" RNCAsyncStorage: @@ -896,7 +891,6 @@ SPEC CHECKSUMS: ReactNativeKeyboardTrackingView: 02137fac3b2ebd330d74fa54ead48b14750a2306 rn-extensions-share: 4bfee75806ad54aadeff1dfa535697a6345a50b8 rn-fetch-blob: f065bb7ab7fb48dd002629f8bdcb0336602d3cba - RNAudio: cae2991f2dccb75163f260b60da8051717b959fa RNBootSplash: 7cb9b4fe7e94177edc0d11010f7631d79db2f5e9 RNCAsyncStorage: cd7234ff15c010723ed7c499ae4eedc605eac1fd RNCMaskedView: 5a8ec07677aa885546a0d98da336457e2bea557f diff --git a/ios/Pods/Headers/Private/RNAudio/AudioRecorderManager.h b/ios/Pods/Headers/Private/RNAudio/AudioRecorderManager.h deleted file mode 120000 index 87e3d463a7c..00000000000 --- a/ios/Pods/Headers/Private/RNAudio/AudioRecorderManager.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/react-native-audio/ios/AudioRecorderManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/RNAudio/AudioRecorderManager.h b/ios/Pods/Headers/Public/RNAudio/AudioRecorderManager.h deleted file mode 120000 index 87e3d463a7c..00000000000 --- a/ios/Pods/Headers/Public/RNAudio/AudioRecorderManager.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../node_modules/react-native-audio/ios/AudioRecorderManager.h \ No newline at end of file diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index 514e76782ca..4c8874174b2 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -435,8 +435,6 @@ PODS: - React - rn-fetch-blob (0.12.0): - React-Core - - RNAudio (4.3.0): - - React - RNBootSplash (2.2.4): - React - RNCAsyncStorage (1.10.3): @@ -585,7 +583,6 @@ DEPENDENCIES: - ReactNativeKeyboardTrackingView (from `../node_modules/react-native-keyboard-tracking-view`) - rn-extensions-share (from `../node_modules/rn-extensions-share`) - rn-fetch-blob (from `../node_modules/rn-fetch-blob`) - - RNAudio (from `../node_modules/react-native-audio`) - RNBootSplash (from `../node_modules/react-native-bootsplash`) - "RNCAsyncStorage (from `../node_modules/@react-native-community/async-storage`)" - "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)" @@ -752,8 +749,6 @@ EXTERNAL SOURCES: :path: "../node_modules/rn-extensions-share" rn-fetch-blob: :path: "../node_modules/rn-fetch-blob" - RNAudio: - :path: "../node_modules/react-native-audio" RNBootSplash: :path: "../node_modules/react-native-bootsplash" RNCAsyncStorage: @@ -896,7 +891,6 @@ SPEC CHECKSUMS: ReactNativeKeyboardTrackingView: 02137fac3b2ebd330d74fa54ead48b14750a2306 rn-extensions-share: 4bfee75806ad54aadeff1dfa535697a6345a50b8 rn-fetch-blob: f065bb7ab7fb48dd002629f8bdcb0336602d3cba - RNAudio: cae2991f2dccb75163f260b60da8051717b959fa RNBootSplash: 7cb9b4fe7e94177edc0d11010f7631d79db2f5e9 RNCAsyncStorage: cd7234ff15c010723ed7c499ae4eedc605eac1fd RNCMaskedView: 5a8ec07677aa885546a0d98da336457e2bea557f diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index c8644622fde..f14a907924d 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -238,25 +238,25 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 000601D6585E358B4C5C687C9A463409 /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BF7FCBDBE58FF824E55296C47D01FB9 /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 000F50E0CF2A97F28B1403D1775EDC99 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = AD2CA54231C14F8186AD91A1F2145F55 /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 000601D6585E358B4C5C687C9A463409 /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 932119F3EC1041CA5127AD199C49B9E4 /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 000F50E0CF2A97F28B1403D1775EDC99 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 246324D5D9C5B71C4CF2D751AD2779DB /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 001AF458ED907C2245E6C1309CFADDB3 /* JemallocHugePageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = D7D43B9A81C5CFB7CC964B198C8BF176 /* JemallocHugePageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = C01FD55251E04D79D54389D9E2505CB1 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00A894F22AA7BAC1B6AA77349D399622 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B31BEBB5858E81C44FEE36887BB30D4 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00AAC400E3418EF5114C52242349B8D9 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = DF8CCF2AA86951C0C89788443FC66288 /* UMNativeModulesProxy.m */; }; + 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 933C1DE48BB01D7907EDDD826631B00E /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00A894F22AA7BAC1B6AA77349D399622 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 15DAC0F73CC1B742024A6DF5FCF9F1E2 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00AAC400E3418EF5114C52242349B8D9 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 405584AD39F2101E0DB76A9CFCEB13A8 /* UMNativeModulesProxy.m */; }; 00C91D63CC716D2460BD2A730560A58E /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = 4867946AE62EB71973F0CB1AB2E3EDCD /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00C950628997FB02D111B83EB951E6CB /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = D882CD265BAAC8C8EB8DBD2BE886AF69 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 00C950628997FB02D111B83EB951E6CB /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2877B8DEE578C404C945061D9A1DDC75 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 00D27218A8199A050BC7FA8E8564170F /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 674B6F2710F83FD4E8D65327654F702A /* GULAppDelegateSwizzler.m */; }; 00D2A54A8823A11E61F579504E81E987 /* Flipper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 75543B5F65557EF58DF3162759B936C6 /* Flipper-dummy.m */; }; 00F922693F608FAEB7DF4C02CE61C369 /* OpenSSLHash.h in Headers */ = {isa = PBXBuildFile; fileRef = C10B86FB420804CA03EF2E7C13B7A0D4 /* OpenSSLHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 00FA3E1586775F0FB5DA9F5F99EC17CC /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 95B7FB9B863028BB9152BC5789EF883D /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 010699DF90AE445D00AB55ECC23DC460 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC90A42F976DFA2E0DA3EBCBBB308286 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 010699DF90AE445D00AB55ECC23DC460 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1F03DD2D365629559DE3DD8C082C020 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 0109658EA8CF256D8B289ADCDC7FA70A /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = B71E8C8EB282CC6A581AD96F05FC4C12 /* SDImageIOCoder.m */; }; 011466BD1564B2DC5CE448FEA5B29B85 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 185B2034CAF6E1EE0931F67A5783DDA9 /* README.md */; }; 011CCC7448DA0EED688075A9B65EC55C /* GDTCORUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D7AC696022DBE83B7A382DB0BB9E3B5 /* GDTCORUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01242B075C745D566D2F188D45FAEDAE /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D013E58A4B0CF45BD86DAB1BE88BBAC /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01242B075C745D566D2F188D45FAEDAE /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = D6D8EF074200FD4A7477713FFFD6EA87 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01448BDA59FEB517720540384ACA3EB5 /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69227533CC8398DB1B4E51347D096821 /* UniqueInstance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0198283A6245A364C263FECB875E1C76 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = 56EFD8A78E58DE590D240B9A06419AED /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0198283A6245A364C263FECB875E1C76 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BDD13808F0FD3CD6C8D5B5F059AE3BD /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01D4A5DDBBEE67AA18A16D4C689B53DA /* ErrorCode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B43F51A5F2BF1C0DE5C049B0B83F385 /* ErrorCode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 01F1D84FDAD0AF47FF1C2166C9A2D3EC /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = D3625BCCC0F421D853BC5DA8F0AF5BAF /* pb_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01FA56AC1F7EF75E75EBBCA0945A18E1 /* SSLContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B957890B4CC126477F060EE903D4729D /* SSLContext.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -264,144 +264,144 @@ 02218BCD8452C372E4ACC4A4C8325932 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = 09710EAB22C0612FDD4330603A259BED /* rescaler.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 023FF4811870371C17AB936C0370C28D /* WTCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 788EDF0678F695FC0BC67274CEAD5F0C /* WTCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; 024FFB764B39A899C61D25A259530FAF /* WriteChainAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = C1692BEEAD627DEF8994CE572CFB1A59 /* WriteChainAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02A040AA87D6FF98C4A159A382F8CA35 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 012BB9E56B33EBF4790164443F9F9352 /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02A3BBD616C9D1C40690E52BD99F0CFA /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 01DC61744399BD2FC81739D0D16C7640 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 02A040AA87D6FF98C4A159A382F8CA35 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D016CFA396AC7E48D28D0DF25DC64874 /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02A3BBD616C9D1C40690E52BD99F0CFA /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 32583468EEEEA527EC40E6B89D202629 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 02CF5ED1CEA40B42508C26E0FC2A66E1 /* ChecksumDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BD8055150F383E0BD14DF2F2AAAC255 /* ChecksumDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02D11B6A86E80E1F2914C8200AE733D3 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = E6B5011534201E3763AB22784CE8E753 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02D11B6A86E80E1F2914C8200AE733D3 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = BBC45DA271905DEF77EDEE6E3456B6C6 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 032C7CDB032114BDCC7DC441021A7DA5 /* IOObjectCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DCCC69679F935D7E2F10ACACD5E79F6 /* IOObjectCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0331A0AEE92CF1C7363B1D3D0E1A5214 /* Yoga-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 84A91812CFCB70941FF3D33C6FA8F1D6 /* Yoga-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0331A0AEE92CF1C7363B1D3D0E1A5214 /* Yoga-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BCB74053C197AB2AAD04A00E8D816C8A /* Yoga-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0357B1DBA4393494C24B5458C5294109 /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 56ADD42358572A2B87D543D6BA6CA0FF /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 037A597C46854C7EAE1349B3B682C044 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C2D5BD8C0270331BC9B6E938A4466600 /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 037A597C46854C7EAE1349B3B682C044 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BBC3A224341DD39F8F17B9E8291D2F93 /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0388C19C118898765F8121AC641BA4B4 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 466D597AD1459F3BC853D24ED8127E57 /* SDDiskCache.m */; }; - 039F484EFA0AB598F0D9B9B68191B8FA /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BE6C7B879BFD452E4DCD69E7D8407DB1 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03A091EF0A44A9313367BD851F9685DB /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D1098524967543792A0E135B7C05633 /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 039F484EFA0AB598F0D9B9B68191B8FA /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F7869DEF8CF538E075D646BC5C2707BB /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03A091EF0A44A9313367BD851F9685DB /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = AB677D9A194FB8B52ED29A89A28B780C /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03B0991E9C8213684BA88B4BB3746653 /* FlipperConnectionManagerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = D42CB44BA9C69CBAF899C96FE903676E /* FlipperConnectionManagerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03C2E903CC5B4C7A1E6F9080A24B4926 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = F072BFD907A6FCC7834CFE7FCFC1883F /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03CE75A0F998C6AD1A8A56EC32048441 /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = 485F6A036642CBC1CC852BE2FFBC1556 /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03D5C4B4B20C0648BC0FF0DB5114D2CF /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = A638D0FA7AB3205099F7E8D5BCCD88E9 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03D5C4B4B20C0648BC0FF0DB5114D2CF /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 66063AC5E7567C3439D6D450574099E1 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03DE9082132C5F30F717BA20344693C9 /* Hazptr.h in Headers */ = {isa = PBXBuildFile; fileRef = F53E266ABBA0580FDCE7E1B40F1D99F3 /* Hazptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04157DF7E2E7E61AEEC46431877630DE /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = FD80D3557B7F95C1F231BFF7DD19C97F /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 041DBA280D01DEFCA66268DC7D4DE683 /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = 63105F52D965E142E96F80DC3CF4FC18 /* REAAllTransitions.m */; }; - 0433575C08F601A7818CA6D84CC5ABA4 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 77B189D27912E55B5B6BCFE03D2D42B4 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 043A6BD1EF7D359B9344AC711C850A93 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = F2A2A89B3C14D61E41B4004651846E25 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 044EF246BAC4B410BBF6C73F743BDA29 /* RCTClipboard.mm in Sources */ = {isa = PBXBuildFile; fileRef = 676AC51213B44BDACA97E33DA530D6A8 /* RCTClipboard.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 04720781CE919EF591D835B54D25129A /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 35C7E2D98FA30BBB9A085F507411C7CA /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04157DF7E2E7E61AEEC46431877630DE /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = 262F4696C44FF01497A42DFF4060D983 /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 041DBA280D01DEFCA66268DC7D4DE683 /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = 97EBACB78C56FB5EFA5B90D781EAF785 /* REAAllTransitions.m */; }; + 0433575C08F601A7818CA6D84CC5ABA4 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2605A02400E1642034EBC1AA76F1A945 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 043A6BD1EF7D359B9344AC711C850A93 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DD455F9A5374D9D8D1C39C4D5F2AF41 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 044EF246BAC4B410BBF6C73F743BDA29 /* RCTClipboard.mm in Sources */ = {isa = PBXBuildFile; fileRef = 396E0A3EB709DC0F34B78634AE2ABF04 /* RCTClipboard.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 04720781CE919EF591D835B54D25129A /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 2487B40D4653C7815E2A19E55CE966A5 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0496E1728E220AEBEDAD5CBF91E7B74C /* FlipperState.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F24ACE2A977F7AB793D9A93778CD16E /* FlipperState.h */; settings = {ATTRIBUTES = (Project, ); }; }; 04AA55BE7FB64746D55ECB9C8714BE6C /* RSKImageScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = C6910297F97EEA607B6EFFFAB321DB97 /* RSKImageScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04B300C1D37AF477D6E979A0585D6437 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 658414AB81E9A68B93362D1497A8B2E4 /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 04B65BFF8935AF4B13C7566F91CABA0B /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8DB84CAA9FFF35B26830F2F6B2E1093 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 04D6704283C3418A8C24ADB8AE9B5F11 /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = EBCD948AC4674100418902BD3A89E2E3 /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04B300C1D37AF477D6E979A0585D6437 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 0950B776E15F25B2D09AD750F66D9B46 /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 04B65BFF8935AF4B13C7566F91CABA0B /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1068FC7BC9FAE86B64A4A858CE22089 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 04D6704283C3418A8C24ADB8AE9B5F11 /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = B4D7F59DF30AE2E34AF88FC6E318B63A /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 04DEBAD199A26C30F3E532330C05B716 /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 20F40B1861D13D01526C617DBCA79546 /* GULSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 050764AE053E95388DBBFB293FDBF2BC /* PicoSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 976AAC54063299BD9B1366B0AF3E1F08 /* PicoSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05215D88A01F62B525ABC81F59880DEB /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 436A2C1CF5C436FE19DEA09C716D9B49 /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 052731026452AD40E65E87DCF5BF37D2 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = EAE2BFF0F123F1A27CF0D9AC2F84DA1A /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05215D88A01F62B525ABC81F59880DEB /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 8929B2F8F07122B5DD0FB9B8EC31FCEA /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 052731026452AD40E65E87DCF5BF37D2 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B5F0CF2A5F87D7A3DF9A005B8B7BE6F /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 052C6452C9F9919E496F077C5D882140 /* GDTCORAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = A0403F0F9C1AC41CDC6A65C8AA14B4A0 /* GDTCORAssert.m */; }; 053BA4F3C75D35BCBAA8F8891D611B84 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = CFEE2BBDF9379116DDC81BC3AEDE175F /* animi.h */; settings = {ATTRIBUTES = (Project, ); }; }; 055E3CCCC565B32662B62AEB2687DFD6 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = 1158A11775C169614615E653BE1B25AB /* dec_clip_tables.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 056F951F776235258C63B1F4A087C3FB /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F83BAA8354FE1415F44E732F1032CE1 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 056F951F776235258C63B1F4A087C3FB /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = BC4FEBDB08E7EDD26604133A4237186E /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 057FDA20D3830D25C8F9230D8460A02D /* ThreadWheelTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E72A96C3E51340E4B917875C909221D /* ThreadWheelTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 058A0E6FB778E47AC2ACEED1729900C5 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 88B0DC4FC7F96FDEE51F498194964D78 /* enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 05A2C829317533C074C228C63D55CDC0 /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4CD1EA00042DB134AE0FCB59D02089 /* ARTRadialGradient.m */; }; + 05A2C829317533C074C228C63D55CDC0 /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C88428CB094A83923951DAB9491C13D /* ARTRadialGradient.m */; }; 05A88A58C1245A9C537494AB00CBD729 /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = 01C75B5F8947006AB1C73BB46B4267E5 /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05B0D839ADEDCA18BCB0342D8850023C /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1050F1435196CED15B61398817AEC9B8 /* decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05B58BF8BBB6FD9B0446C34C9FA2A10F /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 005FE8CEE0A32FC4A24106623708ACF3 /* BSG_KSString.c */; }; + 05B58BF8BBB6FD9B0446C34C9FA2A10F /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 4E713CE66EE8934531EA0EAE2871757A /* BSG_KSString.c */; }; 05C1FD03B0C4673F79EC7E77569B14EC /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E1940DEEAC17A92734A7038D221AE41D /* nanopb-dummy.m */; }; 05D0FAA0AE5364F5271A2ED3B96DAABA /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A4A6D9BE1A5F271A1EBB343B090BF4A /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05D67239AA89DCABE66BC206A4A20DDA /* HazptrUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 84046FDF23D7C27F377792E34B6A6862 /* HazptrUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05E51EA514016A3A30F517E11AFB5DE0 /* AsyncTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 829D6AD9B342CF6AF4A53197E757E4D6 /* AsyncTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 05EE2DF1D5661FA03933D9C8CB868392 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CC4B27BF8CC6D6FBCA5B4FB3FF957EA7 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 05EE2DF1D5661FA03933D9C8CB868392 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C7F8DC61947AAE6F131988A83E78144 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 05EED5AD8FFA478A9641A7703EFC6674 /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = CC0BEC0B3F3C44148680AA1B3E1299F5 /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05EEE113DA8195D1A8446E6E0223F87B /* quant.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F7217016DDD92C1D480FFAD050AC3B7 /* quant.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06290A0DBEBB396363D9CB31FC2FFA27 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AF8B876AEED4AC249E46457AF985862 /* RNFetchBlobReqBuilder.m */; }; - 062F8BE5952FAF7F5CF3E6966A337F28 /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = 83CDDE079106BB87DDEE8D61B3FBFD01 /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06401683509D686A0B42E14FBDA9520E /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = A8D67A0C91A2C8F802E131D64416F0A3 /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06290A0DBEBB396363D9CB31FC2FFA27 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 54A64C1E29470902B13F576BCF2459AD /* RNFetchBlobReqBuilder.m */; }; + 062F8BE5952FAF7F5CF3E6966A337F28 /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = B1872B7496598BB0F592386212968154 /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06401683509D686A0B42E14FBDA9520E /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = C0C524874C6B504FE8846E136839CEE9 /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06514FD84CC576BCCE44F89EE61A7F68 /* GCDAsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 38C6B5F5057A29AECC758D204F8E4B02 /* GCDAsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 068627D6351492A400D81DA04B4AAEE1 /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 087C97C5E3BD5E3E1260D6BD7227A17D /* histogram_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06965620DA927215DD8A8F4C9F95EA1F /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = 1795A7DF13A680DD10B81AF83A303B58 /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06C78FC8169996E806BE536269C185CD /* yuv_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 45D00F8D02BC30C9CD3C92F08AA8B19D /* yuv_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 06DF5876917022BB1943DA78C98F5C18 /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = C8B49794982FBDADB0177CBE38BCD190 /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06F350D91CA33913420F7CD0EB2011A2 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 70FDFC2CE9916A1C39912D2D86454292 /* RCTDecayAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 06DF5876917022BB1943DA78C98F5C18 /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 55C3D530396EE6508E27971DB8496D54 /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06F350D91CA33913420F7CD0EB2011A2 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 07CC19B2B7D439A8A98293E8B628F2F8 /* RCTDecayAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 0701F05311F4120F2BED97A9A7D492C8 /* FIRInstallationsVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 07017D11692DC682C8E03BB2FA2823DF /* FIRInstallationsVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 07141BDF264104502C0D2041648F7880 /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BF8E9A99B123336E4490F22C58A6A56 /* FIRComponentType.m */; }; 074CC255A80214F8215DBF480553FE83 /* RSocketParameters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 291D6C2C49433692B9FE34BC24939C2B /* RSocketParameters.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 075E4EEBCB43B2419651CE229A433CF2 /* FileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = B1EE9536804A5BAB743C11B8E69AF4A6 /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0764A6EAFA3A7BEBA50E99A74A95F549 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = BFD4AB29C51CF8BDA8D6DC0DFFFC923D /* QBVideoIconView.m */; }; + 0764A6EAFA3A7BEBA50E99A74A95F549 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 031A2401B5286EEB902272E09DECB094 /* QBVideoIconView.m */; }; 07912AE1EFEFB82A90F50403C9214FD5 /* Unit.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AE3E2D34034CCBEFBE5A22102D9E078 /* Unit.h */; settings = {ATTRIBUTES = (Project, ); }; }; 07982ED2F3B097036FF5459A678C428E /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = AB8C7B604F47671DB78576D860213C75 /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; 07B051735A7659BBD10772A28B34D65D /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 6F6988F2F1099FE226606BFA0B639416 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 07B8DB35D480E7DBCF68D24F58752B9D /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 60FBFC75084DECB3CEC5950D42179801 /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0808979C0DB73FB73B17A106FAC5F615 /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 484F71D2F1FE4AFC1C9AA945E58569D6 /* BugsnagSessionTracker.m */; }; - 0808D3750325945F112AFB99ACC0C87E /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 58BD6E5AED675450ABB68C160C6386CD /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07B8DB35D480E7DBCF68D24F58752B9D /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 07D9E251A9813D9669CA58FE32B2E789 /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0808979C0DB73FB73B17A106FAC5F615 /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = C695CCD9D4612C601D8975D21FE02C1E /* BugsnagSessionTracker.m */; }; + 0808D3750325945F112AFB99ACC0C87E /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = E8E9A804A7E0F676469F0B6A13CC9593 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; 080D996C588B3246A97741FDB942CC79 /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E082AC97CA13A0B9F95EABCDB5C2542 /* GULNSData+zlib.m */; }; 08140CF5CCD3BFD03E8A3EB7AF95ED56 /* FlipperCppBridgingResponder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 23C3C5F08BD13409D8FDE9FE4D1CC598 /* FlipperCppBridgingResponder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 081560A0159D441DC9C8AF7CAA6B970E /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = CBF1B2A24DF85F35EA84548F4AB66F11 /* ARTGroup.m */; }; + 081560A0159D441DC9C8AF7CAA6B970E /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = A1B6E0DEAE050B7F6A8B40D80576E20D /* ARTGroup.m */; }; 081E6B601B49FE4F98631AE9F6594C9F /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 3CE034C6B186B447C39072B20294DFD2 /* dec_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 08219D32E74C8630B7462E545B5023E9 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = B50440F83C769FB72C446E4454AFE6D2 /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08219D32E74C8630B7462E545B5023E9 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 4402E5C737E4EBD8BF9ACF3CB468000A /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; 082EEA3652F0C7F65F3D9ADC676C1853 /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = F343E8E6DDBCE646DDC08C75FF9C4A8B /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0831A0057F646251FD8B9F72008F0F52 /* CGGeometry+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 31A34D813C9BE0C4D2D9FB56A59FE8BB /* CGGeometry+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 083CA8F0059844F316B348C516DC0312 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CFFD22667604FFF6621EF6AFFAC0ABF /* SDWebImageCacheSerializer.m */; }; 086AF342FFBEEBA94A504AA18CF754E7 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 10ECBD724ABF1B2436022114B32A7B1C /* 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"; }; }; 086D7D199B167A5E3CC16B2157B3D167 /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 280D09B7AD881B183B9C2BF25975FBF6 /* 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"; }; }; - 08751D5B412E7F5CF628EA5003D23DC0 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 49C3ADC6C2C4519340F0B60372FFA46E /* UIImage+Resize.m */; }; + 08751D5B412E7F5CF628EA5003D23DC0 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 94B0CBD545862A7EBE11792F1A99E79E /* UIImage+Resize.m */; }; 088071E10BC7E0F7D2AEC4C95E916D41 /* CoreCachedSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = CE0A89CE53B60C565AEBF54AE0DAB4AB /* CoreCachedSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; 08910E25B56F73BA1E7C9B35051828EF /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06DA217DBD0FA2E42BDB897AA049CCC2 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 08C3C9AE073CF278A1B7D04DD0F7EE2F /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BA16C8E1EE792F051C468252733D6A9 /* RCTTypeSafety-dummy.m */; }; + 08C3C9AE073CF278A1B7D04DD0F7EE2F /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E1B8B6BB8BE1341F28885BE3316FFD7 /* RCTTypeSafety-dummy.m */; }; 0926794C451A43301E518150BBCFF89C /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = 92B2E2615F1D5C5A3DB51CFC1E41D2A4 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 093CC255BF095A923BF1E04C3B01D945 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 07BF3CB541F4C1BCC4ADFAF312581CB5 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09A61C039CE763C49141845FD89EDF19 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = C3B12190FAA3292458A918B4AFC24225 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 093CC255BF095A923BF1E04C3B01D945 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 112B866ACEA58B6B97AE9CB87DC7CD08 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09A61C039CE763C49141845FD89EDF19 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A00BB922183FA3404F92CE65688555A /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09BC7875E6D801E8C3A5D78A944B7127 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D4EFD036EC6654875D4D04D71657858 /* neon.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09BE233E2230EC56C6EA5ECA34C40DC2 /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 0311B13879609FE9DF91F2242EF8880B /* GULLogger.m */; }; 09D23E33AA77BDB3310ED71C6842CE9D /* InlineFunctionRef.h in Headers */ = {isa = PBXBuildFile; fileRef = BF60A7D435C7C7CF382B46B1A2CDE9DD /* InlineFunctionRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09EE5698E226034FE9300AE9751FB97B /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = C108D7A13CAD13104F3AFC3364E34AF3 /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09F2344CDF2289F7B806ED72CB1E16C9 /* FIRAppAssociationRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FFDEF6694588702A45512615587873C /* FIRAppAssociationRegistration.m */; }; - 09F8EE9A887212FC0B2154E979B8E097 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = BD8751552E35893BDF83F6025B06D03C /* UMAppDelegateWrapper.m */; }; + 09F8EE9A887212FC0B2154E979B8E097 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 866DE4C15962611AB03C0CE1DC4649E8 /* UMAppDelegateWrapper.m */; }; 0A1085D42174CDFD3E5A123DA9241DF7 /* Barrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 94CDAAC8014342546C86775C00F6A589 /* Barrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0A116EBE1D4A4E64BD686A7187757AAE /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F53BCCEADEADB82BF87B66397B482947 /* ARTTextManager.m */; }; - 0A11B03A3AA448536D107B49841C9294 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1CB6BECF058E3A4985899EE7B0B23A2 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 0A116EBE1D4A4E64BD686A7187757AAE /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CA0138AC2409FC352A70AA456101A64 /* ARTTextManager.m */; }; + 0A11B03A3AA448536D107B49841C9294 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C50391E32F1647597BE734AF9F36DD3 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 0A12C7C7EEE78E6E740FBBC9B85CCD4A /* FBLPromise+Validate.m in Sources */ = {isa = PBXBuildFile; fileRef = 22AEFCED6B75662F6CD5BDDEE99FDDF9 /* FBLPromise+Validate.m */; }; - 0A19BC8153C05DAE2E6905B4DFE5C09D /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = D5427FE4E48FF6C6F79AD17B6DE1C649 /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0A19BC8153C05DAE2E6905B4DFE5C09D /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 95EE0C5F4E34F0CE329B296E516110B0 /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 0A2BB595766F80BB96DA17C3497BF549 /* FramedDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D3746F217CFFCA932F738BE27F5EDB9 /* FramedDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A3C2EAD6FC5025E0BFC557A721CA0DB /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2598E2C79750DFB023DA23A9AFB1C983 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A57CF4AAC8B981863DD82B40CFAFDD5 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A4BF455D2EB8C3B0ED975E7D28C952D /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A6AB2FC349B9616B23309C9BE9FAC2A /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 16F0331910FDB15B21D137B5FFB94526 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A7FF47E30F61AFB6AD9CA895EE1A4F9 /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 27500E1C3EC9295178F620CC41A73CA3 /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A3C2EAD6FC5025E0BFC557A721CA0DB /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 96230DF4E3F73486B3A8F8F0CDEDCBA9 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A57CF4AAC8B981863DD82B40CFAFDD5 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = A3AFE9E5C2A22F3A7BA9283481692588 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A6AB2FC349B9616B23309C9BE9FAC2A /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 461C2A4C9BE1D8C155274B9CBE0CF413 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A7FF47E30F61AFB6AD9CA895EE1A4F9 /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D769049AB3B27D143B48937641584E4 /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0A92A4EB11AC3149D6C51E87E22A1A5B /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = F81B0B9AF74EA1B9823E923967ECB355 /* cost_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0A9A31AAC37516790E0B4F66099E695E /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8604E2095003058E3A036F99D16F0F0E /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0ACF9654E330F3E4FF25D38913B61A9F /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = A57EAC7845873FDBDBDF56091C146267 /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A9A31AAC37516790E0B4F66099E695E /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = CDA3753DFF66488AAD1AC3E1EFD9C919 /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0ACF9654E330F3E4FF25D38913B61A9F /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B511A3333DA3E14973E9A07B3522120 /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0AE130EB96D4454903ADE0BA1969A6CF /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1AF0557324DCAE519580AEC76A8CC4D4 /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 0B2CFC4DD49E848F4351E1AD5EFAFABB /* DynamicParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 865687D8992B9721808E1ED5B153B8D1 /* DynamicParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B36C6434B1EBB8AC0D9F69FE4E57190 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 775244808FA9C3FF8CB7F2A4E4A7EECB /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0B3BEBF1C0EB87ACD74E56CC3FD53110 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = C325978CFDAB8C04548FF1E460600969 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B36C6434B1EBB8AC0D9F69FE4E57190 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = C1D44AE70B75A13870DF66A153D7CD6B /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0B3BEBF1C0EB87ACD74E56CC3FD53110 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = C86CC306A7B0BF9921F54B59B50CDD54 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0B761B070D881FC68C5737332C9D8036 /* HazptrHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C070EBE531AE402204E3CF9512505C8 /* HazptrHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0B7C39C00D2B040C27544584D750D5AD /* FLEXNetworkTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = E2060A315A5DB499B27EACB59616E6FB /* FLEXNetworkTransaction.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 0B9E2306C3BE47E02155DE8E960D6B32 /* GlobalShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 459327D88106B828E8FED49069C1B8DB /* GlobalShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0BE19A72D028BD88F755C3B801BC567E /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = 228CEFF2E2C187172950B2CE3A62B9A8 /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C0611B9E87AFA81DF543508CE12B5FD /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AE71AD5EB998140818D614EAAB05D84 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C1E401FFDCA511E1D3524CC7B71C1A5 /* RNFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = 0021C6A7A997A06C2776B974C7821251 /* RNFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = A803CD8A3F7CDDDA5937C6C863FFB920 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C551985E8686CC886A539921C3EE668 /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 06EA2F015CC2FF6A8803D9BD622FC9A4 /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C6E7E44FBB6DEF6DF89EFD85C87ACF1 /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 598C6FCDFC1133042CCDACFFF06EBC6B /* 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"; }; }; - 0C8D29707DFA2F60DD8508F64D0E029B /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = C5E8C3D3C610C6144595BD88455E3153 /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BE19A72D028BD88F755C3B801BC567E /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F2E1790724C4D9691892F63791306A2 /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C0611B9E87AFA81DF543508CE12B5FD /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = C4E2C296D739056C62ED7697ACBFAE14 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C1E401FFDCA511E1D3524CC7B71C1A5 /* RNFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = 88B3F4C17F48F0EF8648F4E3608237EA /* RNFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 00109D4376D4411B9CED1D4935F7F659 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C551985E8686CC886A539921C3EE668 /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 078040AB7535842DAD005C7F25CEBC74 /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C6E7E44FBB6DEF6DF89EFD85C87ACF1 /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = B3B57B0DFC5265868A1243CFB40056BC /* 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"; }; }; + 0C8D29707DFA2F60DD8508F64D0E029B /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = 52DAA1519B195D47CBAA5383B50E5A58 /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0CA7C850CA1800B14065B9E58A5ACC80 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8285F659DA66A30E841A40EBB7C03DCE /* 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"; }; }; 0CDE1736E199F42AF437784B3351CE31 /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = 1894C6BB2FA24DEE867B6C235CA2F8B9 /* FBLPromise+Async.m */; }; 0CF17F9266055A1FD1CFF6F2C328C2AE /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = CCA97D54CF9ACDAC4793DBE3A9798D4F /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CF24CC6BEAF9BD3438449F7DA23FD52 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = D1B3F6A2C254EF6FDD66D17C7F17F393 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CF24CC6BEAF9BD3438449F7DA23FD52 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 13C78D07CED5C6C72AD2394D42139B02 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D3C93CF0F9F2583678EB02BE49EB077 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 91812A384E0D24CDD31A1A2C7D42DE82 /* SDImageCoderHelper.m */; }; 0D4C1FE8B07E8FBD0752A7EED502914E /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B2E2FAE979095438F3921A484FF5914 /* FBLPromise+Recover.m */; }; - 0D58E16C6814991908886D21A86477D3 /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F0E0C101451EA03BB79D6AAFC9A07CBB /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D58E16C6814991908886D21A86477D3 /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BA739E4BBE97866B42767451A9A1745 /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D73DDAB5065DADE674ED5E85CC65AC1 /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C85FC8A04DE7C7381E6363E09976B77 /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D7E2BB25F84CFE2561BE6FCCF597EF7 /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C01BA1E846A7F4D9FDDE492D4B367F4 /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0DC96FDEBC06F1C8DCE2EC4A1B158A2D /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 83427F2327EFE23208D29702FC463EC2 /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0DE3744A7455AAFA32B39C9ADDAD79D7 /* FIRInstallationsStoredItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 130FA934D6D11BFD2912B48CBBD9657A /* FIRInstallationsStoredItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0DFDE05F3E991B70E27D2F6A9C2D5017 /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = FDFEE578BDACDF8A7DAAA1CD21387886 /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0DFE7F3D28E42E2B88EDB705DC378B48 /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A6D3E35BECB150CD5F980483BC52243 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0DFE7F3D28E42E2B88EDB705DC378B48 /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A9F8AFE6BE212D3CE74C864B4630BFC4 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E0611504CD5D881E5FCB9B5E278D6E7 /* MicroLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B717BAB93B56433B8D02225FB7155342 /* MicroLock.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 0E103FDA6751439951C099EB863C4E9C /* Preprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 51CCC35D452C44CE4E6354148EF5F188 /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E1047E03A54517A95C80F04356C0BAC /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 48CA643B7C9426F0218624D4222E051D /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E1B3276561F7EB341FA907EB1A86F04 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = D8F27D693A9D70A1E15610ED01D638D6 /* upsampling.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0E1E58EAA62AD31323C41A2EE1F285A6 /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = F2B2FB1E278B24DF0352FFF93299CD9B /* RNNotificationUtils.m */; }; + 0E1E58EAA62AD31323C41A2EE1F285A6 /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 987D4D1AC79F152497F420C97D2EA5EB /* RNNotificationUtils.m */; }; 0E2055CD03A9F6FE1EF61816FD390A1B /* AsyncUDPSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = E4C3FC9ADAB83B11E93EFE083DBD9D33 /* AsyncUDPSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E33C0EF981DEF5586AD04AD1C10697A /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F235122697705D62E08B57C7B9483E66 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E33C0EF981DEF5586AD04AD1C10697A /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A6338FFA1BF9B037B6F0C6519132F1A /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E490E89EDF3A16691A550F3B3D8577C /* RSocketParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FB2A3F2B7BC082B52E02D5D06D423EF /* RSocketParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E5B539F7CFE7C18605CA862F87C9FB2 /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BC46BC75E9FB785073AB403AED85863 /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E6CDDD3662E67C0C8965B8F0CE41EA6 /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = 78E8308DA306318053FC61547E4649A8 /* FBLPromise+Do.m */; }; @@ -410,148 +410,147 @@ 0F112286F11B894F72C66676A5BAC325 /* SDWebImageWebPCoder-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C82C3C911EF776B47AE70152D5C2B2C9 /* SDWebImageWebPCoder-dummy.m */; }; 0F2C29D27A4A81991C787404478AF099 /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = 631CC48B9CD6ECAE17C232840A63B4F9 /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F3F32D5615E2F8623E48BB225FD09D8 /* StreamResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC288156FCAC5528EE9A32A0D0BD1666 /* StreamResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0F5A161C459E57546E32BC3253B76F55 /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = A4E651B07840425D4D95B5723F1449AE /* BSG_RFC3339DateTool.m */; }; - 0F7FEC05F0A20D8341402116F272EE20 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E99D2AE48FA6673B685C713DACBAD36 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F91563346AE26C4079DA42B08C23BCE /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = A8134D4E8FEF2248A87CFF788DE69B83 /* RCTResizeMode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 0F9A9B467AFA8D375F679F23590C7A04 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 958E52FEE245E3C364A04B23B5C26A34 /* ja.lproj */; }; + 0F5A161C459E57546E32BC3253B76F55 /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AEAA9E544E4CBE4B52DB3985B29502C /* BSG_RFC3339DateTool.m */; }; + 0F7FEC05F0A20D8341402116F272EE20 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 576E53E2454A76334F048A3A84BE33BA /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F91563346AE26C4079DA42B08C23BCE /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B2A7899B8715B32B74DD5C3B946D864 /* RCTResizeMode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 0F9A9B467AFA8D375F679F23590C7A04 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 560412BB4BF1373CF752367FAA1A6790 /* ja.lproj */; }; 0F9C7819344334F86A89420E15C953C6 /* ThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = A88BA7B3FD0C44D083A54567E699CE9F /* ThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0FA9C97403FEF053C862AA37D7419213 /* GDTCORLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = B066A05A05739142F9F5D70FA459BC44 /* GDTCORLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0FB00882D8BB26D52DB32A3B8F1C4761 /* AtomicRef.h in Headers */ = {isa = PBXBuildFile; fileRef = ABABCF020F0069E7D380C9AE62914445 /* AtomicRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FC44EF6F7841689F51373C18CF9A97E /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D69C09EADAE5AB9F3A5B910990EAC6AB /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FC44EF6F7841689F51373C18CF9A97E /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4293D99D9984C530013AF75B1D4B741A /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0FD0BF71F29CDFAC3DBE15624237654C /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 320E0B1A25EB2F637CBF4290094ED6B3 /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 0FDDB9156FB0D0097B471318449E417D /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 505C5615C155C91CD06C7CF8DEF8CD78 /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FDDB9156FB0D0097B471318449E417D /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E3F70C674345053796E4334EFB53427 /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0FE0697F33D7E0B7DA1149A396065DD3 /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = BCAB4E18232CFF7D83C09A37E1AADCAF /* FBLPromise+Race.m */; }; 0FF737393D13C998B2E7B85E02167777 /* SSLContext.h in Headers */ = {isa = PBXBuildFile; fileRef = D02ED6C4ECB2318D9F7A5B1B79581974 /* SSLContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; 10188187C279960B337C15DCD889FF13 /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = A51ABC586C299853B08123F512C1DA70 /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; 10483AA4D71ADE88023480FB5094E267 /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = A62B7F9D8BA15A75694B82E48D5AD161 /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 106584F91C10E1378D0F44CA8BE92CA4 /* RCTDataRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = F0D5EB0C0AF1B46416A6E4E7E3D33DA5 /* RCTDataRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 1078F8A5ABD7343177E99B9FD3D71932 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C23A2F489E66C0BBE98BDB2082178AC6 /* React-jsinspector-dummy.m */; }; - 1092BB8011776EF67080DC8649C68F22 /* RNFirebaseAdMobRewardedVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 80888C4D60C85D341F05D74889DFFA4C /* RNFirebaseAdMobRewardedVideo.m */; }; - 109C094CA57B73B0016EECB32E81E246 /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 569B2202C973C9A08DF9A19D4DEDE4B9 /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 106584F91C10E1378D0F44CA8BE92CA4 /* RCTDataRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = ADF3FECBCF15C627A74DFE36A41BE5A7 /* RCTDataRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 1078F8A5ABD7343177E99B9FD3D71932 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 78BA6DB6FB3AD099BC7F49916CE725D8 /* React-jsinspector-dummy.m */; }; + 1092BB8011776EF67080DC8649C68F22 /* RNFirebaseAdMobRewardedVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 21107566C9B487B9F483D54263AB391D /* RNFirebaseAdMobRewardedVideo.m */; }; + 109C094CA57B73B0016EECB32E81E246 /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = DE047E7DA6E2227F9D776E4BBD0E2455 /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 10C1021B42BE6200A4E324C3539F9702 /* RSocketRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1530C9267EBA1AD0A80EE430F809CC9 /* RSocketRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 10C864D268080AA0C52419676048CC8C /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1DE315D70E5C21E0A0D947E0AF34567A /* 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"; }; }; - 10D68B02FDF05C99237E067F9918509D /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = CD1FD42F2DDF1DE25C6108AC6123ABD8 /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10E796A0A017F392E5917E7B1A58C69E /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2684476A26F9AA36378CCD73BB417EC2 /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 110686C3B9BFABED7EF510599B8F4BA4 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C06A74260BEBB5976EC38B84C16A54A /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10C864D268080AA0C52419676048CC8C /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = EC67C9806144A3DAAAA0D3C3201410D8 /* 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"; }; }; + 10D68B02FDF05C99237E067F9918509D /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A113A448FC06620948268EAF67AF8E /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10E796A0A017F392E5917E7B1A58C69E /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0A75323FE3476844582FC94DC4FF1D46 /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 110686C3B9BFABED7EF510599B8F4BA4 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 49A249D3AE6D13407A62273D21E34D82 /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; 110DB0771E91F52B6FD3EAD5AF30123D /* RSocketStateMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = E7B9E241EABF8A5A40C7EDD67432603C /* RSocketStateMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 111D765C73417F5F3D9DB4A549BF16B7 /* EXLocalAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = 4701A56E6E6454DF97BC15234A739DF5 /* EXLocalAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 111D765C73417F5F3D9DB4A549BF16B7 /* EXLocalAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F89DE840B04B07EA0173FE9B0251B3E /* EXLocalAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11712F28C8D94966B4717571C5B4101C /* FlatCombiningPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = D3D16C2613A98591C7433A92989CB9FB /* FlatCombiningPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11822C9340B8CA71658C6217849DCF22 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = FCD5362D68B85E6601A2FED4F6E7500B /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 118ECA72611CB2FD2EEC1AC53D8E029C /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = D2EAAB1D38023ABD96763E62FA496CC3 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11B2F08DBB908C134F7294568F22A901 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE5A2D2336BDACC59D1DDE28C598F1FB /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 11822C9340B8CA71658C6217849DCF22 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CE7F533680E4C4799B9233BBAB2301E /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 118ECA72611CB2FD2EEC1AC53D8E029C /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 448E1CB7CAB9758499499DF95F4C1734 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11B2F08DBB908C134F7294568F22A901 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D2D822F35E3A28D5B5E51BCEE1AFA360 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 11BC921BEE2F3EE5F764D72CC571FF96 /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 76DB7DDFA5ABBBF55411E285875E8DA1 /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11BCEFCA89FAE791FE7195C154A8D927 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 425948E172F368C6A68D1CED6CBE3686 /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11BCEFCA89FAE791FE7195C154A8D927 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A3EF3B919579A79C9329B7678B685F4 /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11CEE85468C674A4EBCBA4551A6FFB4A /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FB9836A0870E8AED5574E9DEB215076 /* SDImageCache.m */; }; - 11D89A7B5D486F75609ABF6268F29E7A /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C5624E0E20A589ECAA03A7C6C028BDF /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11D90221E44911334524BF86B2AD4A2F /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 915FFD88627EF3D1AA7B5CCC61FD9B82 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11FCAA1D9958EC286034E638CD07CDF1 /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FFC168E8AAAFFC31E531B9F8EF58A2C /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 11D89A7B5D486F75609ABF6268F29E7A /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 91A562D2B59CAA401119AC3562DD6438 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11D90221E44911334524BF86B2AD4A2F /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 497C408C0EA4A09EA737CA3E0118FD14 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11FCAA1D9958EC286034E638CD07CDF1 /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = D3965A3B816AEA1194A311D04EAFCCD3 /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 120EE91B70D7148A00CE2E064E96F61E /* SKApplicationDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = FC8F6E233D037583958956D70CBE4920 /* SKApplicationDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 12478C3DEA4C049CB9A2CA1CD20C89DA /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DC6A673372926D61D8997915CCE6D97 /* rn-extensions-share-dummy.m */; }; + 12478C3DEA4C049CB9A2CA1CD20C89DA /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B64F65DFD30A54EA94C0DFA2040729E /* rn-extensions-share-dummy.m */; }; 125A7DA5E0AA6CD38E879293F84F4CA0 /* Flowables.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BC3411E2C598037179D556382232F0A /* Flowables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1269AF0F682F600A26863DF81E886937 /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1168C19E7D2E04FB41C7C7B44D739771 /* RNPushKitEventHandler.m */; }; - 126F40666E812A4A6E90817FF328B49D /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F37C3569D69F6D9FE0DF0B78ABC8991 /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1269AF0F682F600A26863DF81E886937 /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A48A149DEAAF21204FE75288FB4F0CB3 /* RNPushKitEventHandler.m */; }; + 126F40666E812A4A6E90817FF328B49D /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F8BF425552C43041F07D5F815A12730 /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; 127BEB986815F397903637433E85997C /* FireAndForgetBasedFlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E2A8BDD5B43E8C53B1B17CAB035C90C /* FireAndForgetBasedFlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 12D59B7431F1E2D74FD4A69383EB1BC9 /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 698C573E2A3AE5D9A2AF05020316C4C4 /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; 12EF2DADF1312FD3553930431F86DA5D /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F0DCAC264BA4ED2D4100C356EA1ACB22 /* SDWebImageDownloaderDecryptor.m */; }; 13626B3E229D5D66AF7559F0708DD7B3 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = A2D8DC65E6AEE62F2E8C0681847C6771 /* SDImageAPNGCoder.m */; }; 137F2AB84ACCC13A5B70189CC62DA277 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 391809D6099DBCF7ED4F67B5CF7C077B /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 137FF610872B1C182541C2262022B77B /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = E48D44415F84BF7AED6E1B9F0504D132 /* SDWeakProxy.m */; }; - 1391B4C0CB6B3D86D5D0A2E36A67036A /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 007F599147497FC96A4178C305AEABCD /* React-RCTText-dummy.m */; }; + 1391B4C0CB6B3D86D5D0A2E36A67036A /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D9DDBD2B29F51A46B90F55399066BE7 /* React-RCTText-dummy.m */; }; 13D7C34FEC43A4568FD21A4221A2C1EC /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D78469224A31FF4998FBF1572479254 /* FBLPromise+Wrap.m */; }; - 13DDFBBAA84ACC91CDC2A5E12778DCD9 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C4F9E3BF3C9734CFD410F10F8CFBFE9 /* RCTPropsAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 13DDFBBAA84ACC91CDC2A5E12778DCD9 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A05D390D1B6AD818301B94AC2A41B07 /* RCTPropsAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 13DE1BD1D694029E6A9CA5A6422D1297 /* EDFThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D17211126B230DF5446557FE9998B37C /* EDFThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 141090299A28682B48401EF4D7F455FC /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ED94D1793B8A55328B5B64B884D106DD /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14324B21AF8BD25DF60EDC4A614E67DA /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CB305FB16C6980DFAEF89A3008ACF2E /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 143BDF277DE6C458540A99AB32A6912A /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = FB778FAD940294AABA45B65ABA0C8374 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14534CCC1C7F8E7B84FD7E8CE2AB31F1 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C93543FE01A6C97729A0C5783545D254 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 141090299A28682B48401EF4D7F455FC /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A5451290C001BACA059F4CCADF8962F5 /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14324B21AF8BD25DF60EDC4A614E67DA /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 7519D419BB18BADD3259D87DE9D4A0E6 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 143BDF277DE6C458540A99AB32A6912A /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E833EB9FF7A7EEDFD562CC1AD3F091B /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14534CCC1C7F8E7B84FD7E8CE2AB31F1 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F4AFF3A212C1AB98DEE5372847C81B3A /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14595B9424B26FA78E6DD72747352F72 /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B4DAFBC77BCC1C80EB8B9301EC253D6 /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; 145B0569F3F8BCD67D8BBF5DD7E6EB72 /* EventBaseLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F3552D4BB7A4C91B6ABB4CDF3A78488 /* EventBaseLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14728816ACF61C96545F414F980F4B33 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DFDE8B8F51B84DD08D0D7AF871A04C4 /* SDWebImageCompat.m */; }; 1473175D9D91F3FAA6EFE18B305D6E38 /* FKPortForwardingServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 07B25EC8B033867DDBBFA3107CD3017C /* FKPortForwardingServer.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 1479BA84B9B30E6D9879CA6C0135D930 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DF7DFF3A414B0E7D5C751B535DB89338 /* EXVideoPlayerViewController.m */; }; + 1479BA84B9B30E6D9879CA6C0135D930 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = FCCF9C52E1B50FD667CB699359B97528 /* EXVideoPlayerViewController.m */; }; 1487B1D1AEDC852BABA57CD71F64AA21 /* SpookyHashV1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C93A77331F2DCB76AC9069C20CBB68FF /* SpookyHashV1.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 14A3CA4B77271ED4415356A1FBA7362F /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = 468D763FD715BA65BBA48C21E8A5C2E6 /* dsp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14C3DC80022ED8ACA9D4F4532F065F24 /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 34AE55DEA5FFA61EFF3FEC80D5A8FD8D /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14C3DC80022ED8ACA9D4F4532F065F24 /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 2799F0DED9E9E8887839D8BC001108D2 /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14CAFF1ED4661468AB0080B8A886439A /* GDTCORPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 96D6A7F603D91A945AC9ECFF83721FD2 /* GDTCORPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 14F4CBB8353E78750FBA45D556C32E23 /* AsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = E01627C9FADCDFAD3407038312E4CF57 /* AsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14F8EC0D2510CFA0366BA3D4E3223CE7 /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 988BA3376729A3D79C86FB6308A2522D /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 150EB838BF663A71D17BB3DB6B3E97E3 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 55285077E38ED492DD98E9A9AFB8EB33 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14F8EC0D2510CFA0366BA3D4E3223CE7 /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A3C8CED532EE69042B4BD85F324EDBB9 /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 150EB838BF663A71D17BB3DB6B3E97E3 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F6D24F11DDC1032DCF9B4E391613A676 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 150F04B8F2DE014340CA3EABEF23B9AF /* SSLOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 120C6FE790E1CAAAE33978DE80E762D2 /* SSLOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 152271A7580B47DB9B37189F7ED4277E /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = D40FE7367A96160310E0FA038F585E92 /* ARTLinearGradient.m */; }; - 1550252FA1729815646281BF830A708A /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 21AFCC848706AC146667C33200C1CD2C /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 152271A7580B47DB9B37189F7ED4277E /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = EC6232DF4301737B27E7C7AECD9E0C44 /* ARTLinearGradient.m */; }; + 1550252FA1729815646281BF830A708A /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = D94D994617AE02E6FE088AA48918ED0D /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 15619A9FEFEB4C7FBEB38264BCF2F170 /* SysTime.h in Headers */ = {isa = PBXBuildFile; fileRef = 30C26D9E8BA9B0C1C3FD84643E3A62C9 /* SysTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 156647B23C14443AFBF903E33BCA6F6D /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = 4861260C10C20CC6A6F44A2E9425059B /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 156647B23C14443AFBF903E33BCA6F6D /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EA5E489506D500C8A30068E8E3A85F8 /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1570CDD55121E52EEF123C763B2B0B4F /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = CA4FBE8F8986D0FC6EEDD2B850A3F16B /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1578046795E51ADF624F9E6A5C60939A /* FIRInstallationsVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = DDB4574B3B770599A9B8E3F74E2411F3 /* FIRInstallationsVersion.m */; }; 157804CF2C9474129EA1324545E3ACA6 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = CD6AC95E7AD35654EAD053C4678D5D0A /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1583C4F32B16836112179DB8401EDBC4 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 91297C5FA5AA16DE081A805FF346F321 /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1583C4F32B16836112179DB8401EDBC4 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = C8C1E13BDC9B9DFCD9AC3FE13D22B9B2 /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; 159E6CC104E3A31FD10E4BFF4D2B6910 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 478FF91049F877DC033DD166C1CD7FD4 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15AC2FF021D7C7EEC38C290FAAAF3CD8 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 72E407D70F10CC8ADED44E16BD591EA9 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 15D5FFEEA2DFB87AC3BAE1F6656DB482 /* MessageQueueThreadCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04EC9F608FFDDB8D66E233F17B837EDC /* MessageQueueThreadCallInvoker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 15AC2FF021D7C7EEC38C290FAAAF3CD8 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1D251FEF5103B07DC87F45C4C6E9435B /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 15D5FFEEA2DFB87AC3BAE1F6656DB482 /* MessageQueueThreadCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 984D6282A0D257F57775F7BE9D8C2AA2 /* MessageQueueThreadCallInvoker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 15D7CCF59D45A8AEB4224BD291FC9910 /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 245B33E1F4D089A1FF002688512F44F6 /* huffman_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 15FA0CEC28541CA4EF930A1163CEAB50 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 4767264FEFC132643C5311D5096788E0 /* lossless_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 162716417CF9DC78508EB8DC805963D1 /* BugsnagPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 6571DF5436311985C9F0ECDD2F9B822D /* BugsnagPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1658E2D03BFE5D27F4C7FB78370F5289 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = 207A93E311A2B2567CB197FE30D9BFD6 /* RNPushKit.m */; }; + 162716417CF9DC78508EB8DC805963D1 /* BugsnagPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = DC0870324320FE7D1BB55F1E46684821 /* BugsnagPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1658E2D03BFE5D27F4C7FB78370F5289 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E22CD034AD21690010CB1D17D6C1ECB /* RNPushKit.m */; }; 1677C6E959A147929A1E36ADE31AB595 /* SKEnvironmentVariables.h in Headers */ = {isa = PBXBuildFile; fileRef = 96049167E2D8523393613FF3443A968C /* SKEnvironmentVariables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 167A2CA62B562DC4614D643C1742A81A /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BBE416D50F6F76A7D7A8C9AF48F18D14 /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 57533F6BD93D2DE4244B0735402B9DA4 /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 167A2CA62B562DC4614D643C1742A81A /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 88DF7BC5C402A147DB57A28066D6313F /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = E1FF5B4A8425AF847AFA2F0B34FB6D7C /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 168E0D6A2004B4AB71BDC7A0FD126EEC /* FrameFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 362DCF91A55A56D69B0ECA55A973800F /* FrameFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16B79B17961B6E6845CA4D610C59DDE5 /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CBC29214A35D70A6460363696F3A412 /* ARTNodeManager.m */; }; + 16B79B17961B6E6845CA4D610C59DDE5 /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FA994E068490DFA29215F156920F1C2D /* ARTNodeManager.m */; }; 16C5D991F7D3833068C8F6892F59DAE2 /* MemoryMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = E877B24BBCFEEB3B33063DAB3FC98BC2 /* MemoryMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1727491FC9D04CA1C6CBAF916FE3693C /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B7EFA3C553FFA3C0E411FD9481118B5 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1728749B028AD1D781945AAA91BE736E /* AudioRecorderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BFB1789515B4B57A57BBA01180625822 /* AudioRecorderManager.m */; }; - 172DA40FD34F98F60ADDE511B6C70309 /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EB8E7291BDC9D10EED12CC97D6CD1827 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1727491FC9D04CA1C6CBAF916FE3693C /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = D5E8E04EB4E91C0835046D12159EEFF8 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 172DA40FD34F98F60ADDE511B6C70309 /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DA25B86ADBA7605BE69071CB46D7286 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 173644F783112230316D4E6FCC53ED4A /* ErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = E9128F86352D76A79FF505730FB26393 /* ErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17368940CAE03FB9904A5D69CFBC3DC8 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CA5D52946D5146220F0C1D6E7DA0956 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 173EFBD9209646E1A705B053082C9F6F /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = EA02EC2BFDF7958CBC02B8993CBB85D4 /* REAClockNodes.m */; }; + 17368940CAE03FB9904A5D69CFBC3DC8 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C8468E28001EBE31A5E2FEE1AF3A0A9 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 173EFBD9209646E1A705B053082C9F6F /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 600E1DB9613D8158F92F6907BAB3D8AF /* REAClockNodes.m */; }; 17473E80FC0107BF0A8C72CFFEAF8603 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 098EB243A3EC052B12C874589238C80D /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1764DAAB45EFB47EFCEBF09C636D8196 /* Codel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC86F16A869C08B98514E4FAD3877FA2 /* Codel.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 177039A182568496EEAD8B000C4CB5EF /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = AA766FEB8AFF1DEADB72485E6526D9DE /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; 179E47C6D3FDEF2F8548AAF3B8E7D75A /* IOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = A2191BF801355D0DA84F034E7EB2E83C /* IOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 17C2BEF174A99D7A9963AFC14B2D9E10 /* ObservableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 780B702EB55C3166E65CB713785F0053 /* ObservableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17C9F63079A7777BDF392197B7DAF65F /* RNCSafeAreaViewEdges.m in Sources */ = {isa = PBXBuildFile; fileRef = B798C6C06396008B406AB7FCBAD216BB /* RNCSafeAreaViewEdges.m */; }; - 17F2E42F3EF6AF5DBED785E7C1DC8143 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C3DD063E32E5E8662D6A1C1443DB935 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17C9F63079A7777BDF392197B7DAF65F /* RNCSafeAreaViewEdges.m in Sources */ = {isa = PBXBuildFile; fileRef = BD34B7401168EAAD4269A2F4AB9FC7C4 /* RNCSafeAreaViewEdges.m */; }; + 17F2E42F3EF6AF5DBED785E7C1DC8143 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 35B220BEB599AE465B0E206EF7C46BCD /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 17F5E0FB74E7BD32CDACDC8F988CA5B7 /* SKIOSNetworkAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 93CC7E8B8374FB50C008B576F253CC58 /* SKIOSNetworkAdapter.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 180E6619D4E6F12EFB3E025429C35BDF /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 25DC3494FB12543357BB8575BAAE65AA /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1832399A5D86191FBC62039FAA886F24 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 966C8893779B8233236017371E619B1F /* EXWebBrowser.m */; }; - 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D2496821890C3957B6369CCC233D5079 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 180E6619D4E6F12EFB3E025429C35BDF /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 63CEA449751789D314F90959BDE7A913 /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1832399A5D86191FBC62039FAA886F24 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 9520435F0879CCF621CD7A83573BE808 /* EXWebBrowser.m */; }; + 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = ADE981F0A6C85EBD1DD1A9461C5D061F /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1875CFDC099AD0787A9C25318392EA17 /* TypedIOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A87117E5612E6AD894A505E87DA09C5 /* TypedIOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1883A6926C1940FB4951E1616CC42E9F /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 167D5828800E44CC2451087243F40F39 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 189B638C3899F769A08E0DE1EFB64FB3 /* EXRemoteNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = FC0110D216D4372BFFF4A82540AE74AD /* EXRemoteNotificationPermissionRequester.m */; }; + 1883A6926C1940FB4951E1616CC42E9F /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BBA4194377461A3293AF5CCD87AA06D /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 189B638C3899F769A08E0DE1EFB64FB3 /* EXRemoteNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E90B6A1AD3EC6BACE7E73A716E17A3E /* EXRemoteNotificationPermissionRequester.m */; }; 18A77E5A2082C7E3C408C56CA002C905 /* FlipperCppWrapperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E74C3E2B6D38A98EDC7095EBDF0D894 /* FlipperCppWrapperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18B99705036ECD1F33913244C135B90A /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 7181B076C72B5D8B4BAB9CA9A56A536E /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18B99705036ECD1F33913244C135B90A /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 401D62C0014073EBE5EE8D9AB2A42DDA /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; 18C92F2E7DE02C4F5158C71F487EDC11 /* RSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = D569C8EBC11F560FC5CA66BF071F7634 /* RSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18CCDA25764FFFE7805A2F391D54BD80 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = C894BDC9326638A226C65B45A7437B07 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18CCDA25764FFFE7805A2F391D54BD80 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6361DF430A1099881EB561100EB44D33 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1902EBB8C42BEB7A31086863B86BE089 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 36E87CC503F95E7DCBCF552BC0BF04D6 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 191ED4B1AD846F05B02798563A781F70 /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B44E198E1118013F10E109C936D5CE5 /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1921059D97551DED6DBBA916DBA150C5 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F08AB5F4C1F34510E8E82AA7FD7A56AA /* QBAssetsViewController.m */; }; - 192BA926848E9D9219AEBB2DEA42A399 /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B6D86900F642AF3628250062901E3B6C /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1921059D97551DED6DBBA916DBA150C5 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 866070F3962D06477C66B8CD83382BC4 /* QBAssetsViewController.m */; }; + 192BA926848E9D9219AEBB2DEA42A399 /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B77400B33B27A0D4F413B65DAD70170 /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19592F25B82235131D6A91618F62FC7B /* Throughput.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C6C4FAE5AC01C6228E1DEE8D1D7642E /* Throughput.h */; settings = {ATTRIBUTES = (Project, ); }; }; 196ECC69DF946B7C4054EBA6F7889BAC /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E62C69369E251ACD8E2B0D16898898E /* GoogleUtilities-dummy.m */; }; 197BAE778D92018BC73EC6A9A055401A /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 04EBBBA654E5B9311944BB828A0B747C /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19912572D88D09628C2942291E7C9ED0 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 412D48D731E53A5618B1DBB917CB8899 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19A4C2DB3EBA77982E77271C69AB7543 /* FlipperConnectionManagerImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3575F3A9BC08A5FAD6227C9E2CE3926 /* FlipperConnectionManagerImpl.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 19A911A0B7F6FE7C06C59E9DBD538976 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C2FCFF1B74797ED46F81119F1ACFE14 /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19A911A0B7F6FE7C06C59E9DBD538976 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F772C63314D0CC239B57900B3CAF055 /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19B3BC4E2828FB30D6FE19E66BBBC724 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 76507D6BDFF3A2955E6C896931880428 /* token_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 19BB37501E60552D724E980C463122B9 /* SocketFastOpen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B59FE6153A8CC3B19F7CA6B444C1A15 /* SocketFastOpen.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 19BB6A5959515A1DBDDC1B41C2E63739 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = AC3008B2D7E12E475B9A4DC48370E2DA /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19D4365486925B686D119895F21414F7 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 594C6F33F1EC10518B8B4A0F2B753591 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19D4365486925B686D119895F21414F7 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6629329DFF90AF7A98A4D0054535403C /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19EBAFFF4F7BB44B99B4E5EA6F2FC4A9 /* RequestResponseResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7275F5DA65E28AFA745D1F5F25FF0B08 /* RequestResponseResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A17875330ECFBD30A65210BDF5E8820 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F7AC4425EDE6BFB8E5072393B5AC89E5 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A1BCE8EEFEE011440836122D86B6653 /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F5B93B33A7BFFBA1E32BDBAB88A5605 /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A17875330ECFBD30A65210BDF5E8820 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 713E6D5E5D285A21E5A29AEFA2CA2566 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A1BCE8EEFEE011440836122D86B6653 /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = E7255553FE2730EF3470DA939C286372 /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1A1FAB80AB5646F6BA23973871D037EA /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = A89A5E13A345AB0BD7A3A25759280635 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1A34D3102ACF234F346A5475B6BF1CB3 /* Stdlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69D6106A77F649DDCAE006388446B24D /* Stdlib.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 1A3FDE33AD424E36E91196E972FCC4CF /* InlineExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2983C8167A247EF469501A4EBFBE4D7C /* InlineExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 1A9191026A065A4591600142C46139A3 /* AtomicUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 259032220E882F1A3F9C8364086DAF94 /* AtomicUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A91DAC8DA3EBEAA0D5111513D568D69 /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D17C3735E61F4FB2ACCB176EC13A4190 /* RNUserDefaults-dummy.m */; }; + 1A91DAC8DA3EBEAA0D5111513D568D69 /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A7DF56CDAD97FB6778931FC7EAAF8D9 /* RNUserDefaults-dummy.m */; }; 1ABA2B507962FB92E51A2CA70A819741 /* FIRErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BF4FA651BEEAAF5ED8F95C925D0291C /* FIRErrors.m */; }; - 1ABD61549684E693C9ABD854DE580471 /* EXLocalAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = 330566AE5AF4C4FFF95E7C2D625511FB /* EXLocalAuthentication.m */; }; - 1AFB7660AED3CB914CF01D42131CECAD /* RNFirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 72E71855F5E7A8418726894F59E554B8 /* RNFirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B10D25B28351FF12A8C17090C5309B3 /* RNFirebaseMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = C68C178CF4D65216F2D9DACEAA476D1B /* RNFirebaseMessaging.m */; }; - 1B51EB05FFD0750C4FE9B4A590CAFDD3 /* RCTRefreshableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = B33F8494FFD6A13CFAEAD5298CB749D7 /* RCTRefreshableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1ABD61549684E693C9ABD854DE580471 /* EXLocalAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = F3EBF7D167ECB7E6EBFB913E7674A261 /* EXLocalAuthentication.m */; }; + 1AFB7660AED3CB914CF01D42131CECAD /* RNFirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = DD8E85CE4F365EEAFE4AB0F7D8E742F2 /* RNFirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B10D25B28351FF12A8C17090C5309B3 /* RNFirebaseMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = 0ABFBCB28727FEB3E3838FD774B921E3 /* RNFirebaseMessaging.m */; }; + 1B51EB05FFD0750C4FE9B4A590CAFDD3 /* RCTRefreshableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = E22229ACA846827ABCD00F9EE7319B95 /* RCTRefreshableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B55112F88E36F4CAD2006CB5FE14D26 /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = F61DA646F70603FFB9B2E7890FC424F2 /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B5CF4A390128D31E6B3DDD066E38DA3 /* FKUserDefaultsPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DB084C6DEBA0DC96061D8A514AC4DBA /* FKUserDefaultsPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B7460A41AE9C572291675EBBA73DBF3 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 94BD5EC2A42468D9F9E45F78B2A3BFAE /* UMViewManager.m */; }; + 1B7460A41AE9C572291675EBBA73DBF3 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A3886BA996379E627EC6F3B2F37D0000 /* UMViewManager.m */; }; 1B7603450F5EBB7D2C05C7FBBEC26D72 /* RSocketServer.h in Headers */ = {isa = PBXBuildFile; fileRef = F9C70C0DE50B1BDE4F31EE82E99A4926 /* RSocketServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B794ED054CB3A6B44BA360A30EEC849 /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = 215C261D87D5D65CAC10CBA91012E7E4 /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B7CFF9E58522F2A4D6D36C5020D8DAE /* HazptrThrLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C3115F7E0E2ABB73E131A40586F98AD /* HazptrThrLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -559,217 +558,216 @@ 1BA74AE91BF42207C276B02BBC24531C /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 89C8773F55A4F4A5653989E3D9049C88 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1BB7DF35DA8BC3E5E76D9ADB62B3BAC6 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 9F5E5E7947A5559B8B8DDDD4748189BF /* lossless_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 1BBBA89E7263809B22A2986294845A23 /* Observable.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C1D8002FB0B3678187844345027A132 /* Observable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BF23C6D94BC9EBC387640BA8F2A5F0A /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 12569BA1E5FD08B4ED65AE7842806DD3 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C25BF8A89DFBB6B9B355600D39D1DCE /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = F36308EEFC7D2B93E991A98340CDC649 /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BF23C6D94BC9EBC387640BA8F2A5F0A /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CEE872A6F656C1E3ACEABC79779A1A3F /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C25BF8A89DFBB6B9B355600D39D1DCE /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = D717574A3A257D0004108AAB70A3A9D0 /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C3B114D579773C689CCC20E86A66473 /* SKSwizzle.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DFDEB74B14A09BB7A2CB49B451ADDD9 /* SKSwizzle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C647BDA4A4AB160D974BD55DB2E0A02 /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = B391B9CA0B494C6195981505D1E076FA /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C71AAD98CA149A0B464F0C1BC1A760A /* FlipperClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D142D9DB4D58940C58B19712A5E24AF6 /* FlipperClient.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; 1C75E58E5C7129F8CA3F013D567B692A /* SKButtonDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 18230B4DBA48A8F3656B5C7AC20A3B75 /* SKButtonDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1C9458A12060B23DE3F9D57BAAC6AF5B /* SKSwizzle.mm in Sources */ = {isa = PBXBuildFile; fileRef = 01C61CDCDB208940081BCB076A189961 /* SKSwizzle.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 1CB393E83C2658C292D706C7857EC477 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 86E4F8E331A1E8766EE7DFC72710CFFB /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1CD50B17D10EDDDE034D1C2AB7034610 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 54AA020BD3FF830AE950170EBEB58E8A /* ARTShapeManager.m */; }; + 1CB393E83C2658C292D706C7857EC477 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = A83C15C2E1E06665BD6E603B7BFAC3C2 /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1CD50B17D10EDDDE034D1C2AB7034610 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C979B5F3D2A5D6F24CA190FCED3C4A1F /* ARTShapeManager.m */; }; 1CDFFE7C9DF69F03E29F9F02205DF675 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8BF33E3D337BB985790D01909BD9E7E4 /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 1CE0A3B74BCACF590A1E1A2BE0BF258A /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C42F9714A09EB66DC4FEA36E14C86E5 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CEB2270F182DDF1CF7139272CF46455 /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = 437CE74CA59C58F794EBC32E2CB8FC0E /* BugsnagBreadcrumb.m */; }; + 1CE0A3B74BCACF590A1E1A2BE0BF258A /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F2B0D41B7054DF4FE418A0DF86C8D74F /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CEB2270F182DDF1CF7139272CF46455 /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = 804670BF604F4C68C49F3DE1B096FBE3 /* BugsnagBreadcrumb.m */; }; 1D1E44F857FA339C19C859B350D0FFA7 /* Allowance.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A65D1F437F3BF3FD561C475B7FDF42B /* Allowance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D4CBFD46B5E0040A330C7120FBFEC85 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F93518BC798B6148F9C4B8FC8C045423 /* RCTDiffClampAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 1D4CBFD46B5E0040A330C7120FBFEC85 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = ED483243F1A4C81114D244DE05E13457 /* RCTDiffClampAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 1D6326675CA2E7855A721EFF933961F1 /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7CB983279B4EE789CC6DCECC42768786 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 1D838244DCF67A79448F0311491E8A53 /* RNCMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BFEA28EBCFB4C01668FFB09B9DEBDCF /* RNCMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D99EBC8F71768B9B1A2CCCBED9AD982 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4A41718993E223E88F65EF3AF1ED7FD /* RCTRawTextShadowView.m */; }; - 1DE06FF175E64A1F373F1E0CA85D45A6 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 107D451387B07A0C867AD34BC92323BC /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D838244DCF67A79448F0311491E8A53 /* RNCMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E2372145C05D12A3CB32ADFF6505703 /* RNCMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D99EBC8F71768B9B1A2CCCBED9AD982 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = DC9674D5C03ED251F517E10F4E2BB6E1 /* RCTRawTextShadowView.m */; }; + 1DE06FF175E64A1F373F1E0CA85D45A6 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 19A804EFDA0458954836968F44829B98 /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1DE91DD8D31AD923BC2F28C70E8E6F9C /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 592374A4AECA89B1BB68DE278A852A29 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DF16A410CF349117F27A48911AB92B0 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A966DDAE0BE49D85728B6C2FEA74EDD /* RCTConvert+REATransition.m */; }; - 1E0A1261A07124778FD4B3B42FA9020B /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = 046876CB45E8677AA2A5F488330696D6 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E48D95C455B8ABDB2E212CAB79A6ED6 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D4C0D09B8BC735DD7F524E05248601A /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1DF16A410CF349117F27A48911AB92B0 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = C9421AE41A48645182153049F4EB2BA1 /* RCTConvert+REATransition.m */; }; + 1E0A1261A07124778FD4B3B42FA9020B /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = F766BBBD23EF3617D4DF64707FC54C28 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E48D95C455B8ABDB2E212CAB79A6ED6 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = F0AE7A40A3F99BFCDAC8313C2E66A66A /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 1E5283D2800D1D93A49EC9AA71FBBBC5 /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F754BA97D31F81C0D2C840E3F713C40 /* GULUserDefaults.m */; }; - 1E9E9841ECD43A7B59D4B9C4A24373CD /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 441F02D10BB61823144938EE3580E748 /* RNSScreenContainer.m */; }; - 1EB1982FEEA30F3349E79573D316E7F3 /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AF67609001A45E16F9812CB6552BC57 /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1E9E9841ECD43A7B59D4B9C4A24373CD /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CE805BC8AF7C18A945002879CEEDFE0 /* RNSScreenContainer.m */; }; + 1EB1982FEEA30F3349E79573D316E7F3 /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F6FAB81FD9028155BC5269B58962DF4F /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 1EC6E839250BB5EE3E900F898BA75362 /* IOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 98E77D6A25ADD24D6F07341AF8523362 /* IOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1ECC93652A3EFFCFB135FE893740D5E3 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 153B693BA836AD28207153834B3D3DC0 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1ECC93652A3EFFCFB135FE893740D5E3 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 742048A2F84240748D5250D8ADEEF10E /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1EDD4DC0E76159A2E868E2448ED7CE8C /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B18B97F7B5BC32789739B993A2AA870 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F6DFF890D73A3400DF2B04DD1601E79 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C44288E4F9D989101F85D6BC24EA9B5 /* Pods-ShareRocketChatRN-dummy.m */; }; 1F7A6150C30D540366225C4428F4EEFA /* OpenSSLUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7024B63B6A0592729A9DBFFA7058446D /* OpenSSLUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 1F8D9EC1018173D1167AD8857D3E4CA0 /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = DB6031C2D1663B56C2BFC3DC302D3269 /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F93776C6F5649E124D88989BC9805EC /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = AD9C7858F5095094776156A4627310E3 /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F988CFCB48630887EBEC9D536138CE0 /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DAA73BB8821C72D48536DF5F9AF61C2 /* RNNotificationEventHandler.m */; }; + 1F93776C6F5649E124D88989BC9805EC /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = F29737B13216CC9485CADAE76E3434F5 /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F988CFCB48630887EBEC9D536138CE0 /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 41164767C0AD86E7E741BF2A15BFC977 /* RNNotificationEventHandler.m */; }; 1FBC66FB408DC29291980DFFAC95FD4E /* FlipperKitNetworkPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 61383164C8977EA49DC60163A8512601 /* FlipperKitNetworkPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FD3F9BD427A14B0A7DBE59A9ED28AEB /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = DB30904BAAE60FADA3C166321E867CFA /* QBAssetCell.m */; }; - 1FF20C2CDD23D3EAC68ABAC6E0880DB9 /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = A9632268AF154A6CABA4DAE26034D98B /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1FD3F9BD427A14B0A7DBE59A9ED28AEB /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F7E47EE93C4111153FBED63AE964B77B /* QBAssetCell.m */; }; + 1FF20C2CDD23D3EAC68ABAC6E0880DB9 /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B84C801B665E631DAA8EC05EFEF462C /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1FF2393253B66E225DBF6E7B48F3860C /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C3D6F2F0BD6A80301C0154FB416A93F /* FIRBundleUtil.m */; }; 1FF2EFDA8ABAED16AFAB78AF0DABEA00 /* BaselinesAsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04EF404723C321D1CE272E4AB802BD15 /* BaselinesAsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 201C25CA113E1654260D99458E252A6C /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = B9BDDD78B1DEAC3FD1A250ADB412D8D5 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2029321EAF1F73F656D94619140C1873 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = FBE8F1E2A57485398832FABA2C87BED8 /* BugsnagUser.m */; }; + 201C25CA113E1654260D99458E252A6C /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = CA603878C1DE3C10E2DDD81E789F53F6 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2029321EAF1F73F656D94619140C1873 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 28EC16F240C2FFB42633DB0811DDAA9E /* BugsnagUser.m */; }; 202E0AA3695D0381D384CE7180F47ABD /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E60978F54BEFC76D758C52F2DCE696B /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2036187BDCF514B48DD38C011F3D8F42 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CFCD3BFA6695639F4EDEBCDBC689BF95 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20416B5D4297ACF6C5123ECD32CDD1D9 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E947376F560B801ED9ED40D457FF7E09 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2036187BDCF514B48DD38C011F3D8F42 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 44FA2E2BDFD4492C7DD867AEE0A192F6 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20416B5D4297ACF6C5123ECD32CDD1D9 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = BD25A909971CBDABAD73C80EC1443642 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20787CEC79E25AA6516AD59C8BEEB419 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D1EFB411756EBD8F39F077B8FDE62A /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2080973A334C01D568F6C34EAA5FEC28 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E426055F0DD1A897CF3CCD3618F3143 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2080973A334C01D568F6C34EAA5FEC28 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DEC3C1161906854769837FE3143B6EC /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20AB37D0A997EB702F9625EFD74E7D72 /* SKIOSNetworkAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = A21F660C6F4A88B7477EE0F663966EA6 /* SKIOSNetworkAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20B0C57A6DE9D3137B0AD31EFF574741 /* SpookyHashV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 770DF2A3BFCED53A3069E3AA80AC34E4 /* SpookyHashV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20B883649B7B86E3C65B40C1BE9C6C11 /* Varint.h in Headers */ = {isa = PBXBuildFile; fileRef = C1EC005937337A3AF4021FD78FFF4A61 /* Varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20BF5CE7BE71A52B947DC1A4AE28D316 /* FLEXNetworkObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 32A6FAF621DD8E42929F3FA9DE1FB33C /* FLEXNetworkObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20C23C118B6ECBC5D63DDD14B20346C5 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 01AE0B052526B55F3E3B0A632AC1A9AD /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20E395C9875740A8A614B3B3F1739656 /* RNFirebaseAdMob.h in Headers */ = {isa = PBXBuildFile; fileRef = 99B4FA6C21FE7D85DD4A2A26A3536958 /* RNFirebaseAdMob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20C23C118B6ECBC5D63DDD14B20346C5 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BA844E17073A067E79E8E63448BC76 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20E395C9875740A8A614B3B3F1739656 /* RNFirebaseAdMob.h in Headers */ = {isa = PBXBuildFile; fileRef = FFDB8495C0C08F1FAF4B8DE29E4F9273 /* RNFirebaseAdMob.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20F3535B1F7ACCD40CC3F44712CD9CDC /* FutureExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F8F65DBBDC35F4D499274A0E87B121A /* FutureExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 211825B42C149FDE16AB9293734167D0 /* RNCMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FFF036081EEA50E6911CC3C72539F1C /* RNCMaskedView.m */; }; - 21227AB74B4FBEF7FEE5EA1C0AEA6708 /* RNFirebaseAdMobInterstitial.m in Sources */ = {isa = PBXBuildFile; fileRef = 4335EF4928C61574AB47E7CD8B7BFA1B /* RNFirebaseAdMobInterstitial.m */; }; - 216C471C3659DB6C7F43F4C451A1CCB2 /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E0327631D614F964926C116CE2D0667 /* BugsnagApiClient.m */; }; + 211825B42C149FDE16AB9293734167D0 /* RNCMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = BFA70CD3F240D73FAF1A8764AC631360 /* RNCMaskedView.m */; }; + 21227AB74B4FBEF7FEE5EA1C0AEA6708 /* RNFirebaseAdMobInterstitial.m in Sources */ = {isa = PBXBuildFile; fileRef = AE1A3E8C67EF2A0702E44F9564A4F4ED /* RNFirebaseAdMobInterstitial.m */; }; + 216C471C3659DB6C7F43F4C451A1CCB2 /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 3787ADD5B85BFCBF237271CE99BDF0B5 /* BugsnagApiClient.m */; }; 218095E8385F5B81616076F5FEE57FF1 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C22917C00943A72650B1A5BFECAB205 /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2188513E06C68D0DCFAE5B02D5EA86E8 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 930C07D496B0306731EE1E12EB49EE36 /* RCTBaseTextInputViewManager.m */; }; - 219BFBFAE225E7D441E18CFC7572CB4D /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C416507DDE2D7C53BF5DDF7DB76AD238 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21C0D0A679B9CCC696330278C799F8AD /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C1F97993C8D8F56705CB4CAEDDEAC3C /* REANodesManager.m */; }; + 2188513E06C68D0DCFAE5B02D5EA86E8 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D1CEF8DF89F2C2D5CAF9107F6FD6BCC2 /* RCTBaseTextInputViewManager.m */; }; + 219BFBFAE225E7D441E18CFC7572CB4D /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F63E5457439C6AE5E37CF6C2EC8180E5 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21C0D0A679B9CCC696330278C799F8AD /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 13357CBC37C785D0D0B46E2741A1B5FA /* REANodesManager.m */; }; 21CE7333450F08EF85250BC221A8378F /* FrameSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = F673F7A4451F2EB7B7CAC0BDBB6536EF /* FrameSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21DC793624E2D6A11CD90371C27BEE98 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 38EE6352FEB572021F497970361E22E2 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21DC793624E2D6A11CD90371C27BEE98 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = AC1753BDF4B58DC930F9E4A08756DDEA /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; 21E15100946BAC576970F1812C06DAF4 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 86AAFFE9015819EE8C6E0EB64991023F /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 21E16122AFBEA16EAC94D13B6DDB01FB /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = E3B9F2E2045D0788B9F558559D9E3279 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 2212B6827D7BC81F77DBB7C361B61548 /* GDTCORReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = B794065BBDF365D9EBD7C6655644DEFD /* GDTCORReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2232A04B30AA441CBA83D0A161F4879A /* Hazptr-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = B08A96271A96C96F79C23505E40F7239 /* Hazptr-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2243037041F364BD2FAA1C38AE6A4CB6 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 419D7F99EC80B8052540CD50BC3163FA /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2243037041F364BD2FAA1C38AE6A4CB6 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E6E722EDD2DE1454C5DBBE8F56E3F7D /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 224D23FFF43076B9FD6F06C90E360D15 /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = C584564A24FC9F29346D46E78173808E /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 227134EEB40138501F42DCB74D501A8D /* RNFirebaseAdMobInterstitial.h in Headers */ = {isa = PBXBuildFile; fileRef = 89B547B5B2FB6D8A1B67CEF47329FA12 /* RNFirebaseAdMobInterstitial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 227182585B91FF43E82847A96669088C /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 205328114E4BF15CC8CF7906A5B8671D /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2275CDE2F9E72781DD15023D75195980 /* RNFirebaseStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 83B79C8BD3D16E22D3EF6179CA31D62F /* RNFirebaseStorage.m */; }; - 228E33C6464F584B2EF22BF39DCB4A5D /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 144F317E09F4B5D8DFB7D8D6606A1DB8 /* RCTUITextView.m */; }; + 227134EEB40138501F42DCB74D501A8D /* RNFirebaseAdMobInterstitial.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F1B2E665521EB210396CDC6D09B8B4F /* RNFirebaseAdMobInterstitial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 227182585B91FF43E82847A96669088C /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 82A1D8BAF41D806910DB11CA339019BD /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2275CDE2F9E72781DD15023D75195980 /* RNFirebaseStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = CC5612B0BE29E9893C75A8AAFA2D43AE /* RNFirebaseStorage.m */; }; + 228E33C6464F584B2EF22BF39DCB4A5D /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = AA8A70A4EB1454F89801D58EC08BA7C1 /* RCTUITextView.m */; }; 22C8370E1153C875B7DC2D72E7141618 /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 84405E5212A26FB31331C0561D1B6213 /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22C893769DB69620D10DB6343A1BF40C /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = BD6E489D62F906EF168083EA18447111 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22CEFC35D6BE5B9099CB736853ACAC54 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 890605CD3E314EC9B9611BEDAD9196E0 /* KeyCommands-dummy.m */; }; - 22F2DDCCF5DEDB634A650681FB7CB07A /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 98197B703C5B25832FEF5F172B51223C /* ARTSurfaceViewManager.m */; }; + 22C893769DB69620D10DB6343A1BF40C /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B0DD253747A7C88F28DB074CA283287 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22CEFC35D6BE5B9099CB736853ACAC54 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4430FA90A83C85CCF5163594CEFF18D2 /* KeyCommands-dummy.m */; }; + 22F2DDCCF5DEDB634A650681FB7CB07A /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 18564B357678162BE828C8FF2FAF3A1B /* ARTSurfaceViewManager.m */; }; 232F9E9093BAD90D351096CECD29DA28 /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = EE4E5E73B879B9EC13468395FE769AE5 /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2334BC257643AFF9F1A7C9F391BBDDC4 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = D9915994EECACD7D790907711164FF55 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2353A8FB4CFCDCAE359ACE46CFC9E24F /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 65512EE3A272FEA187D7F68BB2CBF52A /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2334BC257643AFF9F1A7C9F391BBDDC4 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = F3D0A7E5A03304AB54873FD1FFD41B98 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2353A8FB4CFCDCAE359ACE46CFC9E24F /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = EFBEAA96B5822FEA611A8805634AFA2E /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; 235AF40BD4F72FA49078428998D61FBD /* YogaKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 566BDC3CA9E55B141F1F03BA37242126 /* YogaKit-dummy.m */; }; - 2365907247E86F9BD727F7AE44494EF6 /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = 71BD46623AC3B0A68515B1DFAF4ECABD /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2365907247E86F9BD727F7AE44494EF6 /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B2BBD5293BA80161449C61E170DABEC /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; 238F9CA702A2EB39A52476B90FCF4CA8 /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = A718E68D26BDCFE9B9CDA4F834EF9883 /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23D01320547D5F767B3E75BA7C6D06E7 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 94FD43A814135FF3A79FCCD0F3B3AED0 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 23D01320547D5F767B3E75BA7C6D06E7 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AF5CF3DD0E1703391C4049B4A016680 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 23D3495C13258064F17B2596703252A6 /* ReentrantAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = CF8A87482535B796BF26E80DC743B5D2 /* ReentrantAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23D709C5BFFA4E2B8FE8E01DCF133B5E /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = E3ED780732B909991C8A1D797B113375 /* BSG_KSCrashSentry_Signal.c */; }; + 23D709C5BFFA4E2B8FE8E01DCF133B5E /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 921F37724166A71912E427E6B1B092E1 /* BSG_KSCrashSentry_Signal.c */; }; 23DD6882410833B4985BF657DB0FF140 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 516E8E98B631789DD4E1138D1F45C97A /* SDImageCachesManager.m */; }; - 2409E7DAB2005636E62545D5599F069B /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F499C1B29AA068DB65988968E24DAE59 /* RCTInputAccessoryViewManager.m */; }; - 24245B52141EA46A7042F4BE99AEB86E /* RNFirebaseNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = C18F5EBFB911662933AB752A409FCB5B /* RNFirebaseNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2409E7DAB2005636E62545D5599F069B /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E7C866026F97EF303C9827B08345147 /* RCTInputAccessoryViewManager.m */; }; + 24245B52141EA46A7042F4BE99AEB86E /* RNFirebaseNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 018401E074E8057F5A1D91B03D88A5E8 /* RNFirebaseNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2451B9C96658A869E74A857B030FCEC8 /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = 00855890B735951AA5162A55E8A97890 /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 24570C884E7B05506960B1ADE2EBA32E /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = A284C22076F6E210152F6954E6818433 /* demux.h */; settings = {ATTRIBUTES = (Project, ); }; }; 246E297E51662846FB8BC6A044BCC3EC /* ObservableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = D2C27F372D793E139B6108DFE137291D /* ObservableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24B66DE15C81BBFEC51497A13F13AF72 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 322C21C553A1DAB04CC9C758267576DC /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24B97F4F26D06C097C3E12F6B68F04CD /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 78E119A66BD3B26DE1ED3C51B35208E3 /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25163DCDEAC38C5567C3C83ADD0CB5AD /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B35CFDE05E5FE5FAFAC03053278BEC26 /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24B66DE15C81BBFEC51497A13F13AF72 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = FD2FF00E8E1D5BA74687F5449EF45F68 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24B97F4F26D06C097C3E12F6B68F04CD /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = BF085CE00A228405C2C3D86EE49E8CEB /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25163DCDEAC38C5567C3C83ADD0CB5AD /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 185F95700BC1BB25CEB4FBA13CA93FD0 /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2527839399261E620202C3D565C96224 /* EventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3455EB917ECE0988D4BC9BB519933A28 /* EventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 25308C703762C1B6541C05420395E4E1 /* RCTWebSocketExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2CD41FE5D4488D18AEA8D0FE2255E01B /* RCTWebSocketExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 25308C703762C1B6541C05420395E4E1 /* RCTWebSocketExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9BE8F1BB7020D48EDE81B0588D91B91C /* RCTWebSocketExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 25464C199156B6F34863455C64857399 /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 914E5C444B63DD254F036CB9D76BB996 /* bit_writer_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 254B9E5D97F740F5EA8A278A150F25CE /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5364F369762F2D9A787AA4C0E3A83302 /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 2578A917ADC1827F3D0717324949A259 /* FlipperState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF586CD523D95A658AADA902B005000D /* FlipperState.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; 257916A7CD095FA0808F4A1ABBA1E93D /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 05A3D55CAA8DED5C74FC5C2B3BA51AFC /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 2592F0075220E3322D3B6C8705B4C26F /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = D1669CBA419AEEEB6CAC6C9F52448BD9 /* RCTSinglelineTextInputView.m */; }; + 2592F0075220E3322D3B6C8705B4C26F /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = DCB10EB363B93E5F38A13034E9276D41 /* RCTSinglelineTextInputView.m */; }; 25B0C379434647D92E7295C0CC6A1B1C /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = A8A52A66D6ECB595B10AB378B99C8CFD /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 25B6D4193F34A5ABE3CA36A3E35CFE8A /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D38B789AFA3E08A0D80B75C3C58CF03C /* SysUio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 25CDA6B573F9FA265790119B75DE62BD /* FLEXNetworkTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = FA7620C33D98CA444273207FD555ABAF /* FLEXNetworkTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25D1EE7FFDCEE0EBC3F03EB316E69F59 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 391FA89E4A62EA22768FB6CA3B8C06A5 /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25D1EE7FFDCEE0EBC3F03EB316E69F59 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CBA835202D56745E2204C472A586EF2A /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 25D70C544A35CB6F097D761400F7957A /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = B7E893291B40C123F6EC0C9A4AB35FB6 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25DD1F622FE7E6E77871EEB146276D51 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6E212ED79BB2DBDB1AC098B2D414E584 /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 25DD1F622FE7E6E77871EEB146276D51 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 88528E3883FF492674D325E50694E07F /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 25FAE9EB053A32C666CBD08A58F59158 /* VirtualEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 09F1FD68918CD5F6B8A22695713E741D /* VirtualEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 2605224350F37496F63ADC7DC13F4AB0 /* ChannelResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F3A22757CCF4CD86B5ABA167EC115F4 /* ChannelResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 263E7272EB84F216E5010AAD64EE4393 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = FE3950213BA5881CF4D302913A641927 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 263E7272EB84F216E5010AAD64EE4393 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BAC563A129266B3DB6F6A1C895CF4B2 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 265A7C27AF6E0FB3AE07F79E4BA091CD /* Log.h in Headers */ = {isa = PBXBuildFile; fileRef = 72ADF759622DF370A2C32EDEA6407D22 /* Log.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2667D6A247BD464A6C85B15684C69FCF /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F68E0CE6A3A45B21DAE0ADB89241CD9 /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 266F0607CAD1CEDE6B8FDA659AC9564D /* RCTVibration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 75834989E18D8E87AC3EE1830D7DCDFB /* RCTVibration.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 266F0607CAD1CEDE6B8FDA659AC9564D /* RCTVibration.mm in Sources */ = {isa = PBXBuildFile; fileRef = B22C4B170E49A61F340C5E442EE9BAAC /* RCTVibration.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 2688470222A93D85CD64C619D255D87F /* StringKeyedCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 191E0AB4AB70334DAAFC00A760F3A31F /* StringKeyedCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; 26DDB3ED21F8F75BF8715141466A6BBE /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = C087057E1CB78F04BB1E4D342FC4B961 /* SDWebImagePrefetcher.m */; }; 272654FD85002EBB933D59A3241446E8 /* JemallocNodumpAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 6506E90DBEE865CCE7B43373CCE642E2 /* JemallocNodumpAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 274ED815FE397FA51E0AA17121A439BB /* StreamRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 093C1F142FB1F8383A757053CAF1B48C /* StreamRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 2778D8DE1D2C367945F0A959B924EDC8 /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 850919EAE9825E1550B656DF21466B86 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 279BD641A3CF233F1A022F5C2189736B /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = EFE9C7F9E630710AE14DC0088B128EB6 /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2778D8DE1D2C367945F0A959B924EDC8 /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F82AE6DD88AA846CA41C23D4FF460AA /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 279BD641A3CF233F1A022F5C2189736B /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FECD98746A377A88A2E728B87E71F42 /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27AFC607943FF0399A91891DD6B277F3 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = DC4921858537797DF6DE8FEF93F73B84 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27D37D561140701C9C2DE99C2D13C0BB /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = CE12368EE0E36359BB5A4EB2F69DC467 /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27D37D561140701C9C2DE99C2D13C0BB /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B9E5948B94396533D5049CF381198E2 /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27D7BF69F512CC363019B94C7C8A14FD /* SKApplicationDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 09F47523D4E6432D68674A050EBBF338 /* SKApplicationDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27E334C4DE66739FE2189761220D2152 /* GDTCORFlatFileStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C8EC08DA57FEC621D53E2C37A998546 /* GDTCORFlatFileStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 280340EB2BB4FBED12529AA52158B665 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F2CD6713AD3426DD32DF3BCAA79C2CFA /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 280340EB2BB4FBED12529AA52158B665 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E740EAA285AC1FD55E56719C1EE72F93 /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28061C86241C297891AF6D19B17288A7 /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = BD76F1F3F5837C4EE2BF0B840A9F71BC /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28861AF52B24FE2B3F51FD4A8A00A722 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FF35AEBAC7F7D5E574BAE659430B77F /* SDWebImageDownloader.m */; }; - 2890524395C72E909E591EB184C2E434 /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = 9675F13CB46425163B7D8B264DAB751A /* RCTConvert+ART.m */; }; - 28ACE9898CEAC453068EC5C6E6661FD0 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A73FCFE546A7888540B3404F38F752AC /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2890524395C72E909E591EB184C2E434 /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = C4C79237B9A4679C2D556CF6AF1F1C6F /* RCTConvert+ART.m */; }; + 28ACE9898CEAC453068EC5C6E6661FD0 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FEF0E52FB34EE2257A8878FD1459183C /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 28BD2154EFEF4A904B84DFF396BD6598 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = BCA41DC73155E4E6BCFB2D091C2B7773 /* SDAnimatedImageView+WebCache.m */; }; - 28C65AFE0EA39E92622AB93E71E10748 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = BCC846BEA11D8CD633342B9E54C48FAF /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28C65AFE0EA39E92622AB93E71E10748 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 871B2733B1B4A1BC0B68434E4EBF8C4A /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28F938C614393C2E27ED714D9579FC8E /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = CE23695884956B445D045A5A4F2BEBD2 /* rescaler_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28FFC4481C53A863062AE3B78DFDF30B /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = 817C4CDF2FF40398C12C7B51816D040E /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; 290521ED71D65A6F7DBCB4673DF0084C /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D281EDC9696B7F44BEA76E706891017 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 294DF61467891D4A15B8BE8DA7B249C8 /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = DD00CB56D91621F69493ADDD3139090A /* FIRApp.m */; }; 295B0286CAB8B9811ACC7543683D1FD9 /* SwappableEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0AF5331168A419623C9D015644797290 /* SwappableEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 296F07BAEFF63EE74DBFD1A4936E42BF /* RSocketServerState.h in Headers */ = {isa = PBXBuildFile; fileRef = D1A45B3636081D58B3A2C76BD76B56B8 /* RSocketServerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2971D2756E69D3A1B1B0B05CB44883FA /* RNFirebaseDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 85C972F667E84E4CEA53674B8077942E /* RNFirebaseDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2971D2756E69D3A1B1B0B05CB44883FA /* RNFirebaseDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = C6CE7FD179C4AC1076A1490F1113E57F /* RNFirebaseDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2977CE25D3D95A6820F6B47674C6CBA6 /* FrameSerializer_v1_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F932A9BB7CDCDC99B0DD8738E4601E0 /* FrameSerializer_v1_0.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 2987B38812445E03CDA22FA3542465CB /* RSocketTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = AB5FF49744979D40ECA028E79C2184AC /* RSocketTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2994820A161009C46BCA0F5CE653EA23 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6049C82BC2C47603E9076739B55CF121 /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2996E3F4C4B3F78A48FD7414D9400D12 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = B77E80DAEB31320DB5131AA2DF21943B /* RCTEventAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 2994820A161009C46BCA0F5CE653EA23 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 478E386D30A14CBBB022251D54498E83 /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2996E3F4C4B3F78A48FD7414D9400D12 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 783EDDF0185FFBC2EC4E9CB6FE9E3CF6 /* RCTEventAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 29A57A56B88B85230E7202D1741D4057 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = EB564E3DAC37E01D80AAAA34088B6182 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 29A78422CB94171C606F76CBF757733B /* TcpDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = DCC8C93413C4A20B2CEDDF097CA3F6B4 /* TcpDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29A826F8E3DC4C6F6B16EAAECC591333 /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F975ABCF1DDACF01397576F14A4E751 /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 29BB93429B225681D5E327FA55D79FCA /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FF265AB52B23A7E06EB3545394C853D7 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29A826F8E3DC4C6F6B16EAAECC591333 /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E5F739963806C8A554836D765A67FF88 /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 29BB93429B225681D5E327FA55D79FCA /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E67B82F37619263BFACB3D924ADE23F2 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 29BC45BF5AE5015D46B969B85561BEA0 /* firebasecore.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E0F7031B485AFA3CB77A34F11BB9B63 /* firebasecore.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29BE103541578385234026751F8ACE67 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BCA7D25953AD7B71A4DDEF46B0CFA17 /* RNRootView-dummy.m */; }; - 29CF0EFC90A41967677A31628C2F25A0 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CFA32E7F3C5F31B35D111D6C612DA04 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 29BE103541578385234026751F8ACE67 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EF385987057096D9CA20B53F58C2793A /* RNRootView-dummy.m */; }; + 29CF0EFC90A41967677A31628C2F25A0 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A1094A00A5F3A0C873FB4ED9B61090D6 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 29EF263F0219112B7A83EB6282AC6BC8 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = C52827FE3E33A2486E9F3E9A5DB53FA6 /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29F9DF5B489E9D84B67ED4897106E0BB /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = F2F118877102B5F49DE30F73F4133164 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A0324572051D6112BEDB9F83E676728 /* RCTAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FFB52B3033BBB7AE6287ED693E36B0A /* RCTAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A0924AB7815CCF0A58FF53C9F9DD715 /* RNFirebaseNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B3521A9FE101B163F2C9A187BD1E7E3 /* RNFirebaseNotifications.m */; }; - 2A0C966126A297B3D07024632C4367E7 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F0E1885FF6218CDFE9982E05F1A5588 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A0E1DCF4CEF3E199FEF0ED767146681 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3B47F771593D230817BD77F43EE081FC /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - 2A271C1605508A90C3BA1EAB6BAADC3E /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 70953D120538AAD374CEED481B327482 /* react-native-document-picker-dummy.m */; }; - 2A3B68B376B56AA14142534390120DD4 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B4692F054A0876E2EE22CB02FCF1D54 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 29F9DF5B489E9D84B67ED4897106E0BB /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 883A23708095CEF8199A01E06146D47F /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A0324572051D6112BEDB9F83E676728 /* RCTAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 9144E1923016492A3E1C5A3863DD6CBA /* RCTAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A0924AB7815CCF0A58FF53C9F9DD715 /* RNFirebaseNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = E0A44BB4D8CC51254A701F6932D029AC /* RNFirebaseNotifications.m */; }; + 2A0C966126A297B3D07024632C4367E7 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = AC97D7F4A9B089BF348F5D6495EEEF47 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A0E1DCF4CEF3E199FEF0ED767146681 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7D007E5727603165F11E1E369CC70634 /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 2A271C1605508A90C3BA1EAB6BAADC3E /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0105A6B08D77A21E2BD1FFC22464AA51 /* react-native-document-picker-dummy.m */; }; + 2A3B68B376B56AA14142534390120DD4 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A42AC6EEE3449E7D788374F9B28D5F2C /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 2A55289CBCBD22F409A68DB6A7D7DE51 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2570B45F50BCBB7DCDAE727C311DDD99 /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2A996496C046119E9D62610932CC69FD /* FlowableTimeoutOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 66FDE46C73DBE3989EF7943C600233A1 /* FlowableTimeoutOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2ACFB7C65A61B40D30B5CAB420AB071D /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A70291ECEF7C38CC3D4003CC6E27B9B /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2ACFB7C65A61B40D30B5CAB420AB071D /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4367D6B59AE267081A0B5EC679BDFE4B /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B174A54A84B51ADFBD45E40110F0D25 /* AsyncTimeout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A2CE6670F1063CE769F4F38D99C6814 /* AsyncTimeout.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 2B1E991CC4B64389ECA30647B4B02A1A /* EventBaseBackendBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60C29C33923424EA722B44C2EEEF50A4 /* EventBaseBackendBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 2B25C91103E9A7DA0BF82DE4DF7BCEE6 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = CFC8E451D38E2E7D63F049CAB6CB0967 /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B2A1CCDBA8AD8D264967730D01F3FA4 /* UMPermissionsMethodsDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 29B194002894F596571B50ECA498E7A4 /* UMPermissionsMethodsDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B25C91103E9A7DA0BF82DE4DF7BCEE6 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 63A575FBD3384F2AF8768F8207A29F95 /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B2A1CCDBA8AD8D264967730D01F3FA4 /* UMPermissionsMethodsDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = E7597CDCC89E5EFCC048177EBEDB1036 /* UMPermissionsMethodsDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B2FAFDA8347BE2821FED5D48AB3A547 /* EventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 70EB5207D74CBEE1C7F7A1F94CB901FD /* EventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B4FBEC74AEA5E28A513305A9E602882 /* RCTImageStoreManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = A61C638B1EA38EE4558EF4004C289962 /* RCTImageStoreManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 2B574EC6E9241E8B84C6A3846272F8F3 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 70C1D1FB6C7ABB76EFBA9EA6555779B9 /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B4FBEC74AEA5E28A513305A9E602882 /* RCTImageStoreManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 407C8C770C9C21DFCF80F3534305E497 /* RCTImageStoreManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 2B574EC6E9241E8B84C6A3846272F8F3 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D2B9A44298FFAD0BC068594184B9EEBD /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B79DAF1B46E07D72A44DCAFB639C819 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = EFA9E989106978D4E80BC8EE286D6304 /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B830C91775D329B828183C837A9EFF8 /* RCTAsyncLocalStorage.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6E64AFA5C6D9BA5AD3C6FE804F1376F2 /* RCTAsyncLocalStorage.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 2B830C91775D329B828183C837A9EFF8 /* RCTAsyncLocalStorage.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1801ACCCB86DBDE67201B8F75D8F14A1 /* RCTAsyncLocalStorage.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 2BA0D059223373A39DCB8B59BD18557C /* StringKeyedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 33AE5102B7218B102D9683C94F8937BA /* StringKeyedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2BB382DB7792FE1E8269B4710E90EFFE /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = EA487FB8FB99E1AACE8BD924399C4214 /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2BD172C6FB7DF31CC3EFA3CE085B4126 /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 338C2E7D2F893B9F7B7644A561785505 /* predictor_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 2C03900917DC61024FD067977229C3D1 /* GDTCORTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E73DD428C053251E496A070FEE4D7D9 /* GDTCORTargets.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C0C31B7505BC8E94D6FAFBE26E70005 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2B8F0CB7B18252642B5D4A076198B56E /* fr.lproj */; }; + 2C0C31B7505BC8E94D6FAFBE26E70005 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 84CC40494C048234C57F30FE2C1BEDBF /* fr.lproj */; }; 2C3D875B1658DA6BC9946D437202C839 /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C225153782F80BD27563133AD2D2C29 /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C4337F44EA78BED73792EE210819525 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 670F0EBAC9E68A6388175F2D2C39F1E9 /* QBCheckmarkView.m */; }; + 2C4337F44EA78BED73792EE210819525 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7062D721B108477DB0A633CC5930A917 /* QBCheckmarkView.m */; }; 2C4554B6732E389B6C115718BD45701D /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C1DFB76D2A04133AF31E767C7B34973 /* SDWebImageManager.m */; }; - 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 30169015F3924A9D83E887FACFD06434 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AD9DEA6D9F73FCF1374754325582293 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C6D65B3FBD38D8AD43897EBAE585914 /* VirtualEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BC6222422A5D872EBEC5AE4557AA1FF /* VirtualEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C76D04357B9263B3E31FF7C30424670 /* GDTCORTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8446493A26CBD5A047B2F877C460C9F3 /* GDTCORTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C813CFB5B807A3B361E5EC77152152D /* Dirent.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F3080E77E5BB8B52647E6EC7E3C8497 /* Dirent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C89CAC103055E4326DDE29E97713CE6 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 64D2B610AE30090AFFD9BBDEDEF1E802 /* UMReactNativeAdapter-dummy.m */; }; - 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 87EE4D05DA2D8345EE7790161750FF38 /* RNRootViewGestureRecognizer.m */; }; - 2CE08EC7BA09068921151F10810607FF /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8434817DF7DB6B629F1E9F0F61B96CBF /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CE339DE51DB76536A63008724250668 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 770471FC3A474BFDD86AE79038B839A3 /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D0E5271D5737630B32CBDBE8AF16971 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A6C91F2959D078E7D6060F10431C3E5 /* UMReactNativeEventEmitter.m */; }; + 2C89CAC103055E4326DDE29E97713CE6 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FC817A03C9EEFDC24E3618A52250275D /* UMReactNativeAdapter-dummy.m */; }; + 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = F6C8B2787D703916336434677904960E /* RNRootViewGestureRecognizer.m */; }; + 2CE08EC7BA09068921151F10810607FF /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 52D32E114667683B042418A11F2639B3 /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2CE339DE51DB76536A63008724250668 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = CA4A822BFC68A5B56F534E93D4A98414 /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D0E5271D5737630B32CBDBE8AF16971 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = FF0120FDCDDCD45476ACF42E53B0E683 /* UMReactNativeEventEmitter.m */; }; 2D94B903B687465A1A40CEBEE7FEC6E9 /* Frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E2315781F7CD76456E6007795F77ABC /* Frame.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 2D9814A90579824EBBFDB633BB165AC3 /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EE560EEF8A1CB47F4F99B57FAE6174E /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2DF43783BAC61EA95D674BD58E390775 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = A1CE6E3724E76CA87B21FCF16692A6CC /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E014AAF39426DBC26D47DBDC691ED5F /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = D7F56A33A983244B08AECC4C4EEBDAAC /* REATransitionValues.m */; }; + 2DF43783BAC61EA95D674BD58E390775 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = D75F03B31C32851A96675E67ED127367 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E014AAF39426DBC26D47DBDC691ED5F /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = 30622B80CC406091F7C76C7D3BE5316E /* REATransitionValues.m */; }; 2E08E47CF3B7BCEAB85479248233BE52 /* SKObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3224500CF0F3FB09AC30951ED4C8EE14 /* SKObject.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 2E5DDB53500E43F9F5A51245136962A6 /* SDImageHEICCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5423FE419658ABF1C4299BB4D59D4F88 /* SDImageHEICCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E7763FC85109EAE2D59FE71C3B17D79 /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5979A1FEA57DFC724A635015F53D1860 /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E7763FC85109EAE2D59FE71C3B17D79 /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E5500695845F12EB1C754A2DF682D9F /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2E78136632F05B8D8F8CCA6F8B62AB6D /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = E7C17EAD202035E688B4B171F70E4195 /* SDAnimatedImage.m */; }; 2EAF41297C07BA08EDDBED38825EFD51 /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E7AB37A4C9A9CD685B607A810B44352 /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2EB201AFA7B7067271DF082293CF9112 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 559974B33C84BD097B301DF7D8404708 /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 2EB408F37923E5B678BADA8BB3AF48F2 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 8141097306C15C605D00A0BDEA23135F /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2EC239D84B20011AE1A05A0CFCE4E647 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D751A822A49D4F471406EE2D233255E /* EXAudioSessionManager.m */; }; - 2EC5425BB144046F7F37DB3FA09A3376 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 57EB8B51C0ACBDB44AFD9D3D36D858E1 /* RCTProfileTrampoline-i386.S */; }; - 2F2C4147704FC8631687DFD85CF1C60A /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 169B70DFB43463F4A423B7467E996A60 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2EB408F37923E5B678BADA8BB3AF48F2 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = EF435D53936D260C865C216841DF0D52 /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2EC239D84B20011AE1A05A0CFCE4E647 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 85AE0C3D78916FBB5BB5BCC954AAAA6E /* EXAudioSessionManager.m */; }; + 2EC5425BB144046F7F37DB3FA09A3376 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 3CE15148AE76E3ECA964846475CEC007 /* RCTProfileTrampoline-i386.S */; }; + 2F2C4147704FC8631687DFD85CF1C60A /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DFAADFF4BFEA5270DB56B0FC1A13236 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 2F3762F547283D037D6BF8A882085851 /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BC0AD4A9E6F7A208407E5570B8E8EE1 /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F3E6CFDE51DA53D85F9F0B1E585D2C2 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = F4C8D38F7CD6C7A1F5D3C85CE2F0D181 /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F590231D8B24A4726C9B4C08F8A95FD /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 598B021AE50CDB012A9AFF42DF032658 /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F3E6CFDE51DA53D85F9F0B1E585D2C2 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = F6DBF78FB912B6DC5B49B915E348554B /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F590231D8B24A4726C9B4C08F8A95FD /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 7933DA9B2C70364FC3AAF0FD27FCD1AC /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2F998A4B72485CE3C7114765011202B1 /* GDTCORConsoleLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 2820A02A351356A0FFD7017542CFF65A /* GDTCORConsoleLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2FA7A5A12876AA7C4D5903A9C5B74B3A /* Spin.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F3DFEFF8AB18EB244F07350AC46618F /* Spin.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2FB4E6CEC54F509D46FCEBE53DEA65A1 /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 42F89E7F7223E6EE2A483ECECED9329B /* GULAppEnvironmentUtil.m */; }; - 2FD56DFD6405D75AC16D258A4AC0F49F /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A040E75C09052596DFD08A69E7D684A3 /* RNCWebViewManager.m */; }; + 2FD56DFD6405D75AC16D258A4AC0F49F /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2694BBE57D0FD53F26257B56F7E5F829 /* RNCWebViewManager.m */; }; 2FE803AD2F6A7E8DC5898A9563ADF11E /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = DDF8A6BC140C502062CFC253CD1CB371 /* SDWebImageDownloaderConfig.m */; }; 30048C1ED58BCA8F8305E97FE14CCED0 /* IPAddressV4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D1518213D9F7823AF378BF59C0A4A8DF /* IPAddressV4.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3008E5C197E529C941CA606774D1BEB9 /* IPAddressV6.h in Headers */ = {isa = PBXBuildFile; fileRef = A87B512D4AC3E8861D8E208D7977CFDD /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3024D29596A05D6D26B00A2D584A7A55 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 67925FC22407721697D6FED16443727F /* RCTTextViewManager.m */; }; + 3024D29596A05D6D26B00A2D584A7A55 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 87443023EC793DABBDE9179A8B0B053F /* RCTTextViewManager.m */; }; 30363912631BB1C44CADF345BE0C724C /* UIView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = F38814CB2CC48101D8965CF484BDB1C6 /* UIView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 304DA0D33346E09E619AAD904E6CFD85 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 57F565A0716A8A2504C090CBEAD20E1D /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 304DA0D33346E09E619AAD904E6CFD85 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 94F9460629B6AE632D98BDE0F629BD2A /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3060BF1405F7ABB478493A90B64FCFCB /* F14SetFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C08D00A4D32EE9C330329164648195A /* F14SetFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3065F04E0401C33C4AC2E4E36A416605 /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = EFE70113AB1891B8700EF3061EA21E74 /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 308C87640D35D1E3C633032AF321F283 /* ConsumerBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54401F61C3357D1E96C80C18C4E2DED0 /* ConsumerBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -779,23 +777,23 @@ 30EFA1CE7F1133015F0E3E10A28316CF /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = EF1554E3531643AC1338DA8F2FA7A6FD /* quant_levels_dec_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31104DDF23E644091D0B208B51B3F550 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 95D930E8CF335BCB777CCE4419A7A5B9 /* upsampling_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 314BEFBCD6A8C616A4589D1939461D15 /* GULKeychainStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 57E1116AD4989C13E56247AB3EF0B0FA /* GULKeychainStorage.m */; }; - 316E7D6240A4CBFE7A3174962EEA4914 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = E57CB5393938F05134054752FF3A5ACC /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31935F903EB3421E32FCD701A8DBD38F /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 019221C7B171A8784728465F9FE50ABE /* RNCSlider.m */; }; + 316E7D6240A4CBFE7A3174962EEA4914 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = AB6BBA309D3B07FA3242A2518C8AB751 /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31935F903EB3421E32FCD701A8DBD38F /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CF905EB15C5C55862330B14BA92EBFE /* RNCSlider.m */; }; 31962DADDDE276F6ABB6754ED6E7EE1E /* RSocketServiceHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4B9E8D6A2DDF29D5C5F6F40BA57D60F /* RSocketServiceHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 319A95BB763E66FA343B43AB20D262F3 /* FlipperCppBridgingConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CBE7F26DEF6EDEE75A2D06F79C5DC21 /* FlipperCppBridgingConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31A892DBD91E377E85107B4FC88FEED1 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 71265F598C7E83D4369BFDDC2E80304E /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31A892DBD91E377E85107B4FC88FEED1 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 975823F16A54D59A863411205C024027 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31CA1F80D4661804D819BD261F21AFC5 /* DistributedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7848DEE31ADA7C35A64A67BAC27B14D6 /* DistributedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31F3C1F1C0E29CC26D3A6B81776FC9E1 /* RSKImageCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 750FEC2522192194F49682A49D5C29D6 /* RSKImageCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31FD8DFA47B6AEDCBB2D1C7B48A2B1CF /* OpenSSLLockTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = B376A4DB64A47998145400EB1CA0826C /* OpenSSLLockTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32139BEE9683EC3EE16573BEFF42C21C /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CD005D0F8167E89E726EC24D86EF397 /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 32139BEE9683EC3EE16573BEFF42C21C /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = B14C8F61F83144EA8425727CB545C9EC /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; 321E5783FD6AB1B2E124AE90C409D435 /* SingleWriterFixedHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = E7107D2046052CD7A4AF313913FC9584 /* SingleWriterFixedHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FD9D4DA6F7E2E53B3677395C1BA2F28 /* RNForceTouchHandler.m */; }; + 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 886760A0962ACB54D2235A4C853BD046 /* RNForceTouchHandler.m */; }; 3259B3941D9E4CC09A9A27E51E89450E /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 3541D06EB8C59BDE0027D1E6341BC285 /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32622CE75F78F8E2F8D5400CD2CB17DC /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 760DD8DEC20023A36378BBBBF751F203 /* FFFastImageView.m */; }; - 3268AC6F8341AD59A356F49E24D7A68C /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = E04944B846FE8EC84AA406381ADE1C0A /* EXVideoView.m */; }; - 3281A3156AD63267FDA1D1D4DA80D5DE /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = EF588114EB45D0C58E840F95E882905C /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 32622CE75F78F8E2F8D5400CD2CB17DC /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9034E359E2C9C4D864B55061A253F762 /* FFFastImageView.m */; }; + 3268AC6F8341AD59A356F49E24D7A68C /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 07FF9E94293D06D5C27742E949DFD48F /* EXVideoView.m */; }; + 3281A3156AD63267FDA1D1D4DA80D5DE /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D102934F54BC8E0CBADCE74F1F357CA /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3292BA9319F6A044C79AE28E0D918FC5 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = D9D9D03BFCBCAD2A7339B4C6A86B467B /* utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3299094AA6F9AAD51F2C6B7EFA6F7283 /* RCTVibrationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = E242EDC375AF5831097F51B852EB51A6 /* RCTVibrationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 3299094AA6F9AAD51F2C6B7EFA6F7283 /* RCTVibrationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5DB67D5B9B8762D82C91BE6B2C2B0F1A /* RCTVibrationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 329D8DC4DF1F87F450F10F8695FAF36A /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 180BB68A3404C4AABAC8DB91377B1B66 /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 32A725DD12977D66DE1D185F429EAD35 /* AsyncSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 855DBEE3B15C3FE08EA26326134055C0 /* AsyncSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; 32AC28388DEBC44E892603D239EEDE0B /* AsyncSocketException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5A918CEABBA94E7ADF5E0E0F4590B7C /* AsyncSocketException.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -806,88 +804,88 @@ 336AF37B5F585C4DF000A22B615C60CB /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = F50EDCAB794DF60CA055C1158F9F2FD0 /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; 337AD4C3D05F965B85CAE6BCFC70C73F /* RSocketServer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E061E500898E80FE2F24E34CCB6EBFE6 /* RSocketServer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 337E0C9857B179E5EC97369CE3EAFB0F /* Assume-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E6D736667E4999E61DA48BC2CD9FD5C /* Assume-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3381A15E738D9B9F0E2B4E5B6962EF59 /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D2D1A48C5247A0B54FA16DBF05D106B /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33825AE552B86EA4DFF1456042AB3861 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = E427264B56A7CEB31CA0BF7DDE13B5BB /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3387000CC1D65427B1EF0E7A6D10FB83 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1672F4FBDCDB899F8282004CD26D8164 /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3381A15E738D9B9F0E2B4E5B6962EF59 /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 162BA155359FD7E626C5AB94D17FDCCF /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33825AE552B86EA4DFF1456042AB3861 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = E723648F24B8CEE56B5BD178A2C40B0B /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3387000CC1D65427B1EF0E7A6D10FB83 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FCC622146FC2ECADAC234499016226E /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 338C33E4A2EB50C20A830E837384EED8 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D0EFC89B228A007FAAD0BBC50F4A310 /* SDImageCacheConfig.m */; }; - 33C906D21E0095E99444F2130D76E9F4 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 59B84CA60CCBACB2094EC597E1D54171 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33C9DAD6F6980D6E44985EE759169311 /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 82C01850FCE0DC70E3D118328348F262 /* BugsnagErrorReportApiClient.m */; }; - 34544937627B86CB42BB16F02E12B037 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 47E8087BF3CD1AC8E9B10155B51E4636 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3463C175D4F311CD3A28FF95ACA98E00 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 096530808622CCBD0AE02939C955F3D6 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3473A25D4D716A7FCC6576D1D71CB291 /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = 086D2E21CD2C375481D131006EE2FA13 /* BSG_KSJSONCodecObjC.m */; }; - 347B182C399E95A640EE32BA18E0D4B0 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AD27C318E641AEF3FEF91B013B97BEE /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33C906D21E0095E99444F2130D76E9F4 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3680A8C019E3DD1E548F640AEE20FAE3 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33C9DAD6F6980D6E44985EE759169311 /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = BE63BD5535AFC1604A4AC9C10C03089A /* BugsnagErrorReportApiClient.m */; }; + 34544937627B86CB42BB16F02E12B037 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F7B1E58A1FB227B2DABFD7D25000B59D /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3463C175D4F311CD3A28FF95ACA98E00 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 2446945A75F9ED8B563C794EE127EFF1 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3473A25D4D716A7FCC6576D1D71CB291 /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = A82A1A37003121FFF1FC59A5D04B5D1A /* BSG_KSJSONCodecObjC.m */; }; + 347B182C399E95A640EE32BA18E0D4B0 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 5884F439D63328671168CB50B24A2B0F /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; 34DC275EEE112BBD0C9C8E142883BF10 /* StreamThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB3A000770E89F8E15885543D6BA2CBD /* StreamThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 34E70A33FF98EC9CFCC391F122B36E87 /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BE27740D59217F5C5C5DBE3AC02D64A0 /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34E70A33FF98EC9CFCC391F122B36E87 /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 44C9DA7ACFA6487EF1D0040C2BBFA065 /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 34EA20ADEFC65F6118975776F29B5ABE /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = DEA3D9B5C8E4A8DE486F429B4D13D521 /* picture_csp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 35269B5057CDDCC7DEA2FE786C99AF9E /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D1ED5503A25804AC17F6D80724CA290 /* RNFetchBlobConst.m */; }; - 3537CE1621452E04CE333F76DC5EA2FE /* RNFirebaseAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 789BC1B4A708A2D8B704E3B951491BFC /* RNFirebaseAnalytics.m */; }; + 35269B5057CDDCC7DEA2FE786C99AF9E /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = EF7301889EE1F37785C78A9971C00ED4 /* RNFetchBlobConst.m */; }; + 3537CE1621452E04CE333F76DC5EA2FE /* RNFirebaseAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 103566A64AAC7FC27B9144EB8DF2C9F7 /* RNFirebaseAnalytics.m */; }; 353B9345CE16AF6338035CFD93D16671 /* InitThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D02598A0900902A1CF01D1AE846AFDD /* InitThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; 353E3AF04FFD70145B93E29D0B322A3B /* ChannelRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = A08D7DDCA509340F213D190D49CD7EAD /* ChannelRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3567CB332EA82A9AC5E4B08594213F26 /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B840ED032943756ABB8E10A0DB084CBE /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 357556976C6B4B8D49DD1E04031A3BA9 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D07EC03A0A4F60605B5636E6D82BDA69 /* Yoga-dummy.m */; }; + 3567CB332EA82A9AC5E4B08594213F26 /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F0F0D78F6A791AE9AF2F87D811C570D6 /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 357556976C6B4B8D49DD1E04031A3BA9 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4372903EAE44EC1A1A49438432FF68AB /* Yoga-dummy.m */; }; 3585440364A592462F3DAB4360A8A9C4 /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = ACAC7108EA37ACF52A7DC94BAED1242B /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; 35D47F3D1A1DBD7B85CBF95EEB5D1CA5 /* StringKeyedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = A11D53345D3B620DEA2CDECBB877F258 /* StringKeyedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 35DB32595AFE292384F7082E4EDB8D9B /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 0DCCBD85E6089FDD00DB6B0FC02A2A35 /* zh-Hans.lproj */; }; + 35DB32595AFE292384F7082E4EDB8D9B /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = EBD14064E01CD80FBAE87F3B405F2595 /* zh-Hans.lproj */; }; 35DDD6805DDD9E1BD962EFE1F8B3FDE1 /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = AD584385DF132AD660066524FD6C7DBE /* FBLPromise+Await.m */; }; 360DEDF4ABD8983B2E0C41923685FB55 /* ThreadWheelTimekeeperHighRes.h in Headers */ = {isa = PBXBuildFile; fileRef = F506EB52B1FEE22D69A75A5E5B317979 /* ThreadWheelTimekeeperHighRes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 361A2F0A5202176F40E488F6D554E381 /* GDTCOREventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 55E6B2F05DCEA24E835E98078C3E4C42 /* GDTCOREventTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 36360FCF5DF26972E15B00638335C00A /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 25C6B32E86597D164E92D87CF1F9DBBC /* UIImageView+WebCache.m */; }; 3645C6820057437CDBE24F59A3694F89 /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = 27FB570FDC9BAD136561E512D148BD88 /* FBLPromise+Catch.m */; }; - 366116BABF4984007964E29E1D5ABD22 /* RCTConvert+UIBackgroundFetchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = DE419D5973B7551B6077FD66A45A82D3 /* RCTConvert+UIBackgroundFetchResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 366116BABF4984007964E29E1D5ABD22 /* RCTConvert+UIBackgroundFetchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = ACA9A34F4631EA4574360FABA26E283F /* RCTConvert+UIBackgroundFetchResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; 36639B3E5EFD659484EA7418ADBC3F1B /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = A4E5C1A08ABAADFAF8C3B9A3F8F5E8C5 /* SDImageGraphics.m */; }; 3668005604E469D2C61ABD5F410E3360 /* SocketOptionMap.h in Headers */ = {isa = PBXBuildFile; fileRef = D16622E365F819469AFB29E1F0A2BBE5 /* SocketOptionMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; 36838A450767D18415FBE60D36FC69FB /* TcpDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E227691798690C6BE6692621F1ACC5EC /* TcpDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 36925435DBBCDF40101DF4DA0D176285 /* OpenSSLThreading.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A4B8B5C2E23AD3CA3584BC627836DDD /* OpenSSLThreading.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 369D11ECECB94E5C764B2E9B73D58AE9 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 69057191801F0C641AB39F2B2D45F311 /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 36B30A72BB2A2EB9D72BACEBA5A74C69 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F4BB708C72F52907ACD07FE64B773D5 /* RNBootSplash.m */; }; + 369D11ECECB94E5C764B2E9B73D58AE9 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = F2A62AFA72CEBD136ABD03D41C420A49 /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 36B30A72BB2A2EB9D72BACEBA5A74C69 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = 22AACFD454C2973AF1DEEF4B50404805 /* RNBootSplash.m */; }; 36C7EF28833E6681D834301FE13A86F9 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A0965FFAA87384FB3EFC7139043049D /* FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; 36D4E8D299A73059B713FFDAF61EC22F /* ThreadedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B57D3294265E219668F64D7A40FC3DA /* ThreadedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36D95171D464546996955F5E08AE12BC /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = FC429F00E2DBFC7193540F246B0E6365 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36D95171D464546996955F5E08AE12BC /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = A91AED3B058CA6161AB3FDA8B9AA3C5E /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37102F4139638538537682CFDBDD3521 /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 97D593C9AF6F9078D07746B21F87EDCC /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 372882F92C66AD589C117E6B98043712 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = BCE08215FEB482996BDC533DD5732EC9 /* SDWebImageIndicator.m */; }; 37454D1D4E48456581921A7287508CE1 /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = 11B73D281691D1D3BF67EC85499B788F /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Project, ); }; }; 374560D732665B18E6AADC57D1D9B12D /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EE25BCA0D02084E2F1F55FDCE671098 /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37532852A078B0FD5BC654E9D95B5B1A /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = F5BE3635EEFB4A7DDF77DAF374D06EF6 /* BSG_KSCrashState.m */; }; + 37532852A078B0FD5BC654E9D95B5B1A /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = 60C95598D2EA90865EACF0DDA11E73F5 /* BSG_KSCrashState.m */; }; 37561D58917BF3DD193FA026B4DC7819 /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 2AC887141E35A329AE5DE15C7AB64B7E /* buffer_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 37836713E1CF2FD3FF5AC8E73DB956C1 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C5EF509288FDF5231D590D463F153A7E /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 37836713E1CF2FD3FF5AC8E73DB956C1 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2013508AD70F33F744F72E9CE70A398D /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 37A8A74509CB140CA1CBD2862791F6C1 /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 19ADD9F952E059D819C83F0167A49E7C /* thread_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 37B34066BE54D6792D10B8C2F9B7752F /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = B48188F0A471F30821CE698FBF7E9133 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37B34066BE54D6792D10B8C2F9B7752F /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FC358BF92C05B330C87A384C1A36E99 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37C9A7BFC98577A5A2F702F0D9249832 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 91C1F9D6EF27CEFC969B213B1F6DA6C1 /* UIButton+WebCache.m */; }; 37E3F0F29964F4FA9C40E1CCEA52F682 /* SwappableEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D6402C81734852C6895A864A7CA21C5 /* SwappableEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37EDEC2BDB04F892C3CB29C4F9A8C34E /* YogaKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 953453F81B33399A8EEA663B3ACE3F22 /* YogaKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37FCEB31D086A0F531245307B9F7C801 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 26F445F6D03A3A82E37268A22BAE1C95 /* EXFileSystem.m */; }; + 37FCEB31D086A0F531245307B9F7C801 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C74601AD5B32835B04C195C2071CA08 /* EXFileSystem.m */; }; 38073539C1CF74A17AC81285509C60EA /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 10AF9E815C4396263953D3EBC91A3EBB /* GULNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; 381F3D7E2878B051D339526BFD2EE849 /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 80F8068D1256D1B5ED47B12E0763EDB8 /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 382D1B33DF592436E96A9505F8E9E725 /* PublisherBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E6EB4D43D4CE0873654D240C4D32BFC /* PublisherBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3842C7262C69AD90463B43931CE9B8D4 /* backward_references_cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 30B93E1F6A28A2113ADF5C4963E92F75 /* backward_references_cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 3861A71C26628C93C77FCD87EC4761FB /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = B204995C87BCE66C2F9E44926EC1E42B /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 387DD6E0D2967BDDED87AEE55A05DB16 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DFBAF76F2517CC481FBA77F96333C94 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 387DD6E0D2967BDDED87AEE55A05DB16 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E8987BAB3A8B021656E0C28FDDFD36A0 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 38A3CF8E02900F0510ACAFF100A723E0 /* TimerFD.h in Headers */ = {isa = PBXBuildFile; fileRef = 501FB7ABD2FF16391752851CE4688092 /* TimerFD.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38F35E24D856E9519A212722C0D13E59 /* RNCAsyncStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = DEF4697C35F84407BB74729FC41F9B7B /* RNCAsyncStorage.m */; }; + 38F35E24D856E9519A212722C0D13E59 /* RNCAsyncStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 32436D44B834FF122739FB54598DF723 /* RNCAsyncStorage.m */; }; 3902C93559EE5739F37997B5E9892D4F /* Request.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 86041AB3988B0BFA2E77B2DB32AF362A /* Request.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3903BECE2CB09D1D3A70A5824DE36B4F /* MicroLock.h in Headers */ = {isa = PBXBuildFile; fileRef = D363ABCB37DA623B13B7291B95128006 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; 390AC40A3C333FB6A81C2D20EAC1A0CF /* TestUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B80F4933CEB39971843D1192358D422 /* TestUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 392A3ECADD8AA6EE73D72561F4FDB23D /* ShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A0BBA4F76E2DC81178258BFB7841B712 /* ShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 394B7E1DD8A560A5803CFE96108B0666 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 419ED541E249724B97BD0D0933226484 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 394B7E1DD8A560A5803CFE96108B0666 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 23FEEB7213A35963CD60B68364E93522 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3953D3F50A05E1AA87124E85621F6D92 /* Fingerprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6599B27F5A6D52B23377F0CF4891290F /* Fingerprint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 397BCE98217DEEB9A0A1DD81E3DE5389 /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = C90FC567524FA661866C611EA3773C32 /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 397BCE98217DEEB9A0A1DD81E3DE5389 /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0909610ED74EA0B4AD5C14B874B8A921 /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; 3999E05ED92EC4228CA26EB230DB43AC /* GDTCORTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = FDF8610EC5A6F59C3F89C83050AE6580 /* GDTCORTransport.m */; }; - 399BF22C6BB6F9A04043BAE54B59CD8A /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 0230A9B1EF23B78768AEC32DC03858BC /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 39A8B0F0C8877BB15AD04CD38C7C9161 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DEBC18A46494601D218BB6CFF822423 /* RNFetchBlob.m */; }; + 399BF22C6BB6F9A04043BAE54B59CD8A /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = A8E64CDD8F164EFE89E3495B5FF777A8 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 39A8B0F0C8877BB15AD04CD38C7C9161 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = F2B1BCD61D2B012F29E20E1A38AEA3B7 /* RNFetchBlob.m */; }; 39C64C7D0A3CC2D7D7A0143EE11F6446 /* Frame.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FF2260DF2EE76044A040F7CDB9D71C1 /* Frame.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39C7B8CBC7FF6C71A08118BE63C072A0 /* Peertalk.h in Headers */ = {isa = PBXBuildFile; fileRef = 09FBD593E74F1B8207D1D3986F9C57E7 /* Peertalk.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39C85EC983B5B8A9B6EFDC621F1D6F50 /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C01A812FB78D4ED8C9A4A20A5F17386 /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39D5EBF062B74C8DDCB6DE46E8A9219B /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = 16BCEA20D9679960A873A33DAFFF74DA /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39F711B3EA8188B6D67BFB8C89EA750D /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = D0D2807855DB1F9BEE53DE18F1E705AD /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39F711B3EA8188B6D67BFB8C89EA750D /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A50525B28CFF268937B02699BB443D2 /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; 39F8B48ACB4F25C361745D13D7538C99 /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F907ED2066512531D35AFF9606DE706 /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A25A0B031EDD3B74BB39D3AD8967E3D /* GCDAsyncUdpSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 45D1B3F889FBAF209826646F25972B3E /* GCDAsyncUdpSocket.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; 3A366E0112A812204DAD3AA497EAD09D /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = A3EBD396E277E6D7DD574B77821C8CCB /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A42B7CBB1077B1681D8BAA47FD729F5 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29E37543C5ADBF976E44895AD6B574A2 /* EventHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = D19AEAB77CA49609892379D559CF1C5A /* EXConstantsService.m */; }; - 3A5DB1E5EC7C9DB692B411AC12981758 /* UMAppLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F672DB4D92F66DE84FD03E7D200DE65 /* UMAppLoader-dummy.m */; }; + 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = D51348ACEC209A2A49A6A0C056AF2208 /* EXConstantsService.m */; }; + 3A5DB1E5EC7C9DB692B411AC12981758 /* UMAppLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EAB83F894DE5160611EE37DFDABACCE /* UMAppLoader-dummy.m */; }; 3A5F5528F10F93127EBBFE10043B3EDD /* ClockGettimeWrappers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 91A7D18C1595AEAD91301315D90BB800 /* ClockGettimeWrappers.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3A6B7B5EA8B4C74A3B3628907AF2C361 /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 84E9632FB76AF581218D4D18086B48C4 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3ADA517D682534F4669406B324870C1C /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = BC2F7696C4C7E09B59D4C3ADB56340D2 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3ADA517D682534F4669406B324870C1C /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A419ED3AA53ADFDD318A1FD760DA2F9 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 3AF8B694617A74F8749ADBA3E1C57FB2 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CE861D402B237A53DD459BB593E2C81 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3AFEBD8603F5475633372854B818713A /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 604F918E26DCE54BC4597CCF44A5589F /* 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"; }; }; 3AFED154CE58A7877754321B3D5B17DB /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 20EC8E8F8B257145DBAEFE598A889D3C /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -896,164 +894,163 @@ 3B2FE6120D6A53821D07E463CADA2433 /* Malloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE370EB5ACBFEDAC95A623C204E89B60 /* Malloc.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3B333F775A3E42130B41AE2EF4E0B53D /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 3127D00DF32C10EF345C5A607BA2F0EB /* near_lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 3B40FCB8E0BF9B46F95712AEF680A135 /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B4A4767E25C7E05A7D2CAD7CD5270CE /* glog-dummy.m */; }; - 3B426494F084B4127219E522755411FA /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = AB406EA6A821F2164139861136834116 /* RCTKeyCommandConstants.m */; }; + 3B426494F084B4127219E522755411FA /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 284D2BBD607C0664FC7C9608BC791752 /* RCTKeyCommandConstants.m */; }; 3B4A8B19ECB268E4FC6EAD4276B63B6A /* ThreadWheelTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B618CBAF356FE1C8D760FF63D6DD6812 /* ThreadWheelTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 3B520593596D5C39DD58B1C8B5F2849A /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 74D51A595C752C87ADD691D3A6411EA0 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B565DC355CC5A6C542619592FAE3C31 /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = B88C46013ACB4DFEA5D4244B205A3C41 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B520593596D5C39DD58B1C8B5F2849A /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2281173A99F5FA150A3994DA6BEAAD19 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B565DC355CC5A6C542619592FAE3C31 /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = FBB08FBD72D5720D04F8E9214A1CD560 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3B5A6465606762C6EB7BF68923C55487 /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BA0F3CBB6D7743D677C5BE964F67CD7 /* FIRAnalyticsConfiguration.m */; }; 3B66445B8389FD8B6FEC18D5C63CF08F /* ManualTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5048E399774757D1D19822C71300239E /* ManualTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B86A109CEA0B850B0A64BF002AEA50C /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 562584E82F2BA44F023797AC4AEF56C4 /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B86A109CEA0B850B0A64BF002AEA50C /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C55A25EE2EAB2329BB93738686416BA7 /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3BDA042F4452C7A9D7762E7E5DC1E06C /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FA846683603BFF27115ED2F9AA693B3 /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3BE233D9068B6A6CB6B8FB96806FFB04 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 3866A25D361D738C3C4146B8EEECEC71 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3BE233D9068B6A6CB6B8FB96806FFB04 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 58FACB9EFB52B074361B88D23533E17C /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3BE35415468374E7FD5095CC14E1132C /* StreamsWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 74C008A80723631991A60FE5E10F7628 /* StreamsWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C008D6C8F8BE78D67CA9CB7416A0FAA /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 456318FB0B8675792A19156602488932 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C0FFA7C0FBB6DBE9C5E543870C2DB32 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = 3D4D955BD35DCD869F66D0B9054109D3 /* BSG_KSCrashSentry.c */; }; + 3C0FFA7C0FBB6DBE9C5E543870C2DB32 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = CFB9BDBEBCF046AB44C41E65CFB24930 /* BSG_KSCrashSentry.c */; }; 3C15FBD85FABEBFA4D591E85969CEC1F /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = 58AFB9EF0F7EC114EBB0227EE16AF9BE /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C2BB5FD7D39742D46B07E6EC1404395 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 9540A2D9667B50079020C6B62A09F05B /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C2CC35AD5DCB89F74870ED731466DB4 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 33DDA7B76998A58E33B738D9F35141B1 /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C31CD3F689030110809D1AFD7C1EFDA /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F6BDE235AC6D6B65B136696A1278875 /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C3ED2C9C2422B18BA8F904508318AE4 /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 26FA8683647426F62DBA9EF6375C2573 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C2BB5FD7D39742D46B07E6EC1404395 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 575E29E1FC4F2879378633DC426EA027 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C2CC35AD5DCB89F74870ED731466DB4 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = D40F23121BF71F1CBE7CB359C34D80AC /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C31CD3F689030110809D1AFD7C1EFDA /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = F9A777C98941200FD4D7871716120D34 /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C3ED2C9C2422B18BA8F904508318AE4 /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 061DA8A0624494E770452449B77FF5E9 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C4E24A310EEFBA07294381C4AE6E302 /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C496112AB5D4B2E1ABBB90DB4AB235E /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C52279D222791B4251C03AF8205D902 /* RNCSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 26BFB0467BB9E53213E8BCEDE7E73CD1 /* RNCSafeAreaViewLocalData.m */; }; - 3C52A7E842397DEB2CAE85EA2724EB6C /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 076DABD1E77AED8A0B388AFE75D74F9D /* RNNotificationParser.m */; }; - 3C52E81AEF158725346D9F914382DA9A /* RCTDevMenu.mm in Sources */ = {isa = PBXBuildFile; fileRef = 00CBC60CA92F11200494D717671FEDDB /* RCTDevMenu.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 3C57B9928E0E9E9146182C7BB5615F19 /* UMAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 633A906CE55E133E541EECD104AA1625 /* UMAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C636CBDF2CABF345905D733C76134B7 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 807D0468E3C3AA6AE839A3E3EB4A86AA /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3C68614C14BDA7E46DCF9BB1270D5937 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CBB8B36DA44725BA3658B8988038B04 /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C52279D222791B4251C03AF8205D902 /* RNCSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = D23193DBE12D3018997C78E9BDC18837 /* RNCSafeAreaViewLocalData.m */; }; + 3C52A7E842397DEB2CAE85EA2724EB6C /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = C46BC88340457F394AE62CA9E0BB1471 /* RNNotificationParser.m */; }; + 3C52E81AEF158725346D9F914382DA9A /* RCTDevMenu.mm in Sources */ = {isa = PBXBuildFile; fileRef = 57753C3252FD2FABA5824B4C5240ECEB /* RCTDevMenu.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 3C57B9928E0E9E9146182C7BB5615F19 /* UMAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 65D36AE50B01DBED906D179B931A46E3 /* UMAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C636CBDF2CABF345905D733C76134B7 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 536D28DC70EB6ECB67D8BEF6081F12E7 /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3C68614C14BDA7E46DCF9BB1270D5937 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B49029E03D426208D29C7C57BDAD776 /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C73244EE8A77E5BD59DD8C113FE7664 /* EventFDWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = A38F9408FEA21E580CAEB9C2D22CB895 /* EventFDWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 11B241AA9D04AEF43CDC2F805CE7DCE3 /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C7D5A3C319BC585A1C0FBBAF8C6D3505 /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C7E7789B620CD423919122D943ECBE0 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E9730B90DF9CBFC3873545D88B5EA10 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3C98A74B81322A6703D4A7A5C03E5F34 /* SKResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EF1D6AF8629BAB66F153FAF672DB8D6 /* SKResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3CACE745B0107D8C1EAD78E15B7A7764 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 09A4A381355DC64EAB844B04A5BA6970 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3CACE745B0107D8C1EAD78E15B7A7764 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 08FC500EA7197F6DF71A9EB77E174884 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CBE6FF9CF1D82A56BAF731390BEF2D2 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = F486AF3EF93E58CBFFF2F7DE1D4870F4 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CD64518F73B6927C62245CDADE43076 /* ParallelMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 43C961736240DE8782C3CEB40773DC64 /* ParallelMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CD9657B5CDE67AE647DA7FC86A341A7 /* RSKTouchView.m in Sources */ = {isa = PBXBuildFile; fileRef = 097D3E2988DF59797BFB5B084495142D /* RSKTouchView.m */; }; 3CE9795118C3E5792C3D682BCDC67671 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 540F25F5C89E7F63205430278E6B3C42 /* 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"; }; }; 3D28C702086FF74739928D70196FA81D /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 508E3344833774F5D374394A9E2D6D68 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 3D2BDDA5696E0248B91335C53007C1D8 /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FD707FAB446B9FD7708C85ADB7EEE19 /* RCTKeyCommandsManager.m */; }; - 3D68D2557A63C01FD65F87F4565A0A53 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D947ED0FFEF4F648CED33D72400571E /* UMModuleRegistry.m */; }; - 3D6B17E830FAC8972A903412ABC93839 /* RNCSafeAreaViewMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7736E765A07A194B46126DE3DA84CACE /* RNCSafeAreaViewMode.m */; }; - 3D7DFBCA8CB38E2E8E522F41E114C453 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FF7D4167A48ECE14628804DB78D760E /* React-RCTImage-dummy.m */; }; + 3D2BDDA5696E0248B91335C53007C1D8 /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 636EBE1DE0BA79E2D655D79CB735F05F /* RCTKeyCommandsManager.m */; }; + 3D68D2557A63C01FD65F87F4565A0A53 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = AD14CAAFE08580EC3209B92CEE3C4C5A /* UMModuleRegistry.m */; }; + 3D6B17E830FAC8972A903412ABC93839 /* RNCSafeAreaViewMode.m in Sources */ = {isa = PBXBuildFile; fileRef = FAEF5F18CE1A860CC5F59E7DA8FDC706 /* RNCSafeAreaViewMode.m */; }; + 3D7DFBCA8CB38E2E8E522F41E114C453 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CCD890902568B57C6130014DE182ABF /* React-RCTImage-dummy.m */; }; 3D908533C5BDA9E1C662C9426D1A38A8 /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 43732A94F78C75F675A29E3EF54DD945 /* SDAssociatedObject.m */; }; 3D93DB04DD641799254FA46FAE37CC5B /* Futex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B49A5CA9B65652F90ECE77BE649EB704 /* Futex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3D9F8FE3C127F89AEAD65F09969FE642 /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = 23BE60BE79A13A031B7B515290AF3DEB /* muxedit.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3DA5DB3392201B4BDCE5115EB4646156 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E79C9C256AF6B3FA26D8859642FD8E2 /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3DB2B8FFC504E9B2209D51E0471B3072 /* NativeExpressComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F137720240DA2F405C2B3E33C02EAB7 /* NativeExpressComponent.m */; }; + 3DA5DB3392201B4BDCE5115EB4646156 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E651C3E90ED823F29D1D4723930B040 /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3DB2B8FFC504E9B2209D51E0471B3072 /* NativeExpressComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 684101CF47FD67B33709D6511989C36E /* NativeExpressComponent.m */; }; 3E3F53ADD7E28D7E1E396842FEA1EE02 /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = F885840BD15DE323B145CA94BB4F6B67 /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E5F4AA9BC4B59F72BBCB8B243D8AA76 /* GDTCORClock.h in Headers */ = {isa = PBXBuildFile; fileRef = 689EADB3E0A7641AC1A34081430CEBCE /* GDTCORClock.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E72F4E30D9B7EEB3144323D44D03793 /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D05F90C02C4C146D38A1263DD93B325 /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E7847180091C117F370AB3A0260AC2D /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 86142F493DDE680A50CF9D3BC242BEA1 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E7847180091C117F370AB3A0260AC2D /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = A1F302D34A31CE72D0DD9A4D7BB5FBCF /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3E91F68D2665D1AA0069E5C27FABCA9F /* ShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 60FF7FD7528AEF1B48986584185A487A /* ShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EB21B0946E427438F5EB5F7A7F5AC31 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BD6B475F506A117D93185B7968288B5 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EB21B0946E427438F5EB5F7A7F5AC31 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = E9CD393B98F3A4EF6DD9042AB30187D8 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3EC8C2462B60DB403104F22B294A4B24 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 433622B6D6E6EA72C4501936123F1D6A /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3EE1BBD1D425E3C37DDB027A7AA79791 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = C5159A4213843DB8A8585B6B10AD39D2 /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EFD3182765DA02AEDCD4FE78CEE37EB /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D610CC92CA12331CC2CE9B30968B59E /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EFD3182765DA02AEDCD4FE78CEE37EB /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = DAD33D331055D1CFECFD62DD2D2C5A08 /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3F16574039A61B5C86268A6D9E5BD931 /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = E80F9E4B9F1E0CD1D7E847EECA4E1E40 /* picture_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3F1E35D158FF8C684C77D8C47820A675 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE95D51C92A8BC75C7F4108723F4AE4 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F4D09BB757DC2587425562E435DD7DB /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 51F0795B53F3F7136750F1F4752176FD /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F4E6AB35F55AE7DF736BE8E399AF815 /* RNFirebasePerformance.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D90EADE13FE1E34BD47BE0C21C5EB80 /* RNFirebasePerformance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F1E35D158FF8C684C77D8C47820A675 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = A094DFB5652F74DC9F635E18A3DFDC3E /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F4D09BB757DC2587425562E435DD7DB /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EA48C1651EB9704917E0BD7AE78822D /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F4E6AB35F55AE7DF736BE8E399AF815 /* RNFirebasePerformance.h in Headers */ = {isa = PBXBuildFile; fileRef = 3487E67E5F20B774B21BD81418EA878A /* RNFirebasePerformance.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3F92210457EDD0ACA1619BAFE752413F /* FramedReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB0F4F98997582A5EC1D8A33181BE067 /* FramedReader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3F93027B044BA4ABF4D115764CB29244 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF9EA4FE7261AD88C6508FF0BA7DC190 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 3F9348227893EA6B31E31FD5F58CEA7F /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = A3CC1960619FE028FB7D20D56AC1819D /* NSData+ImageContentType.m */; }; 3F9D460D6684DBFD200DBE5839299505 /* ProxyLockable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E3C201CBA9DD4D3768A730BE5C94681 /* ProxyLockable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FBB88E0254E6E6972826A7C76C136B3 /* UMModuleRegistryHolderReactModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 45B3F54749A87CE4A5D8040256402A95 /* UMModuleRegistryHolderReactModule.m */; }; + 3FBB88E0254E6E6972826A7C76C136B3 /* UMModuleRegistryHolderReactModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 748B108762659D26296DEB350919ED76 /* UMModuleRegistryHolderReactModule.m */; }; 3FE0A32EC96E9E49C2E7A93852717142 /* AutoTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A5B9ECF7C0213402392EDEA2A5E6BDF /* AutoTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3FE6DC36C896C99E4F0E10B92E1FE061 /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 0A7B482B2EDA7BF7FCAF15DFB04DE80B /* frame_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 40012AF9A094885E9B287E998C5F218C /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = A086110668900BFCCD33139690B5B7F3 /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4007B7F35C430A2ABAF9342676CCE0D5 /* TestSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BECAE76A3B465BA23A1C66051C5F853 /* TestSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40297B0904C2075155C04CDEBEEA2952 /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D8121F726CDAE6ADCD01AAC8172BAA9 /* BugsnagReactNative-dummy.m */; }; + 40297B0904C2075155C04CDEBEEA2952 /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 957D51D1D3CEA160E7092767884C588D /* BugsnagReactNative-dummy.m */; }; 404D6BB861E63EEB9E73E08FF90F800C /* Flipper-Glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 69D6226D851FB99D77632AE7B571420A /* Flipper-Glog-dummy.m */; }; 4053B1CC3CD5A04F550DB606726DA74B /* Flowable_FromObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = FACAB515A9E0BC51A4C6B8B8159EE2F5 /* Flowable_FromObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4055AAFEDDE879890C0A9470247141DF /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = FC9D4CCE27BAFB6DDCB41CBAB00A7C0D /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; 40614B380FD380F02DE30BF3AC2B5BD2 /* SKBufferingPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = AC9EB56BF7B71436C19576C6ECAB7DBA /* SKBufferingPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; 407D321F392BA208926EBD1B3F68D901 /* ScheduledSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4A21FD613E3CD8508D15E894998478A /* ScheduledSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 407DE17E311F50FDA9BC4ED4C4759FF6 /* RNFirebaseAdMobNativeExpressManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 70061EAFA4A32A9FB6554029E9BBFBE1 /* RNFirebaseAdMobNativeExpressManager.m */; }; + 407DE17E311F50FDA9BC4ED4C4759FF6 /* RNFirebaseAdMobNativeExpressManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 051D3EFA180F4DE7E2E542A834B224C7 /* RNFirebaseAdMobNativeExpressManager.m */; }; 407DF13B0A6D61F156D84B50D25A3E2D /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 8426E0809BE8286029A688A5BC03C254 /* upsampling_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 40828CDB34CB0D9DB95817B36B4DE561 /* Latch.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E360366BF27FDA8105101E74F33F934 /* Latch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 408674694B36B848A4B92FE078AAF425 /* RCTVibrationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = B40930E9744DF8E998CB3411B59C0FF3 /* RCTVibrationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 408674694B36B848A4B92FE078AAF425 /* RCTVibrationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 792B55D7846CD54E6E0D9A6EB6267E65 /* RCTVibrationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; 40882DB2D16FD7AD4EB5CC4DDAFC57F0 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = FDE540B0639E42FA08FF08C3E0FD9BF5 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; 408B66DC035EFC857FA1702A13AC9C86 /* RSocketClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1492AF4560D763A11F95C42DB674A29E /* RSocketClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 40A23638886D0871919E8248E4E765E0 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7973F5964A02BF972030B48325357E4F /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 40C19A28E1F99D7F8C3EAC8556CB967B /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = E434EC2FB629FBB95FFA4D9637BFFBC6 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 40C19A28E1F99D7F8C3EAC8556CB967B /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 84371A6E9BD45B7442008194D249C0C7 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 40C5F7BC48B53F2B5C4EF3B60F4C21B6 /* PriorityUnboundedQueueSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F86FED6A4F58E1E8D6AE7AE417A1718 /* PriorityUnboundedQueueSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40CDD7F679A86CF4FF45DC85BD332979 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 827552D6A3A46085C0AF955B74724589 /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40CF3A37D9BF440D6C6BB7935251E91C /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CE1F0F6B0DAC9A7AF9B7AA5F60C3FCCA /* RCTTransformAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 40CF73FCDA240596DC19AA28D4083E53 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = AE9645B6A346D32DFC512DE5ACE3F419 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40D3D7F8A9A20E8AF9968CED7BA360DC /* RNCSafeAreaProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 268E537109136434EE2FF5DFF465541C /* RNCSafeAreaProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40ED423DFB93BE77EF57A2C13318964E /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EDDB0BF77E0162298A4164C90A4F5EB /* Pods-RocketChatRN-dummy.m */; }; + 40CDD7F679A86CF4FF45DC85BD332979 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FA66CEEF304BF487060CE44C79EEA0A /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40CF3A37D9BF440D6C6BB7935251E91C /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F0FFD207A76094B2057D8F3DA4C763FC /* RCTTransformAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 40CF73FCDA240596DC19AA28D4083E53 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = D0C4C8842E9CCCB9CFFD4099A00A4D46 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40D3D7F8A9A20E8AF9968CED7BA360DC /* RNCSafeAreaProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 67C55D020967BFE486ECE43CC032E886 /* RNCSafeAreaProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 411A3C1B75FB16BE3B6C5709BBB21AD0 /* upsampling_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 8BEB988AF47DDAFFB88712AC01ADC2D8 /* upsampling_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4130743FA94193D1413C4E4A1F925D6B /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = CF6589B4CFEA7DB445518B81CCEA6184 /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4151149DD2912D71C7B2B5BE90FF6BCA /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A88369EA1BA308AADC69E71FC52944A5 /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41A875AF9B80762A227B0C9FCDADC17B /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE1F33BCFDCCC075AA536A7B3EA7B04F /* EXConstants-dummy.m */; }; - 41B4C42C2918C9905168B6B5E9407853 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 93F4EB0ABAEF7024B00B36EB5E3A629B /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4205ADAF94B00946E01FCE633872C359 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AF64CC66CF7F5FF11173BDC12E514A54 /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4130743FA94193D1413C4E4A1F925D6B /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A96A7DA87E7EB88363BBC8FA7C0225F /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4151149DD2912D71C7B2B5BE90FF6BCA /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DDA553F0C0F23533F39A1CB4DC9E5036 /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41A875AF9B80762A227B0C9FCDADC17B /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0509E06DD39558504F162E1AC72CB4FA /* EXConstants-dummy.m */; }; + 41B4C42C2918C9905168B6B5E9407853 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E0A1B581249F274189E9B8F6BB3DAB5 /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4205ADAF94B00946E01FCE633872C359 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 293C789E193A86C35F96B5D434CE3FD5 /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4209E12A312F80DD614ADF85D9F60BE9 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = F9E397BE7F402417B1ED72709AB86BF0 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; 42153C09FC24FE15AD327A468CF1700B /* GDTCORPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = D8E68F8DDA9D284449FE4EA765590F3D /* GDTCORPlatform.m */; }; - 4245B43F5AC653CF0AC74F5C7D13BD58 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F6FCF94C80C1D5782D49CE8FF488110 /* BugsnagCollections.m */; }; - 426742BF5EE2C85DF496E2DA3CE428D5 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F851C04DBFE8CA57312A9FF7D4AD29B8 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4245B43F5AC653CF0AC74F5C7D13BD58 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = FA4ED891F92EF9DE3D0361FE7AB9E090 /* BugsnagCollections.m */; }; + 426742BF5EE2C85DF496E2DA3CE428D5 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 88FFB189967011DA8DF9F85079C0852A /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 427C8FA489A629A5C9890AFAA39EA86E /* PriorityThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = CFC63A93A6E7140E3290A8F899E63F0F /* PriorityThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4280A2CE689E5C853DF3ED1DE2B480B6 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B90463474E1454D60D3BDA3C4699CB69 /* REAJSCallNode.m */; }; - 429154760417DA4A8F0A41BC41D04047 /* RNNotificationCenterMulticast.m in Sources */ = {isa = PBXBuildFile; fileRef = 755098AE1D1B51F73FA9D687E6F48A81 /* RNNotificationCenterMulticast.m */; }; - 42B2B3F9374AFE30E947D405588183B0 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D058CA8909B39B41CBDE50B374B7BEE /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4280A2CE689E5C853DF3ED1DE2B480B6 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BB5F770E5DB4AB216E5E2BBDDF0AD67D /* REAJSCallNode.m */; }; + 429154760417DA4A8F0A41BC41D04047 /* RNNotificationCenterMulticast.m in Sources */ = {isa = PBXBuildFile; fileRef = 1718E61E826755F3E0FB92377D78F4F3 /* RNNotificationCenterMulticast.m */; }; + 42B2B3F9374AFE30E947D405588183B0 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ADB2D7F646A5AB21F1B0F692154A9A14 /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 42B8240821C5D0D7926B22BCD88098F1 /* TcpConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FF83013A1711096B536E31351B50797 /* TcpConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42B9C64402F7F76D826CBC8B924AC777 /* RCTView+SafeAreaCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FA335B90F2FA11F4F3680BECA99C737 /* RCTView+SafeAreaCompat.m */; }; + 42B9C64402F7F76D826CBC8B924AC777 /* RCTView+SafeAreaCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = B6366FF89EFD59303E103AA0DBFDD250 /* RCTView+SafeAreaCompat.m */; }; 42C3C38FC0F225C773DA5A837CFD8196 /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = 478B71F6F87C9F9BA4F0B8BF8CAB0621 /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42D5E5785A1807EE38AC0D0420B4618D /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 468376E377086F72089C0879AD2F764F /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 42D5E5785A1807EE38AC0D0420B4618D /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 62C5B9CD1A5834E16C15482BC493ED6E /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 42D6D2B79FF8FC8F0FFEC2AC126ACC37 /* Arena-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B69D88565423B3C09FDE136BF8C5B66 /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4309F6A95C2F4533FEBADDAB9EC72DDC /* SKBufferingPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BE529DB2A0C5D64AD0F79B6CEE37A44 /* SKBufferingPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; 430BDCE7D0538E995FE37CAEBE40B4D0 /* RangeSse42.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7E5C6074F0DB669A0756E635E550B3B1 /* RangeSse42.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 431778336B1ACE03A58ACD10E0BDAC1D /* BitIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 12179522A08FFAFDA91630E0E2B476CC /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 432416CCB63DC7456440129E2B240E24 /* EXUserNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C48F897B5BA1914E197F527232FA527 /* EXUserNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 433845A51A7B94C7E3FC1BA166EF3AB8 /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 3334E27A81D92C38902F3EF06E65C508 /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4338BE4A10F8AA3757F3564234E12DF8 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 7190B98479467AC89F1225BBA3158917 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 432416CCB63DC7456440129E2B240E24 /* EXUserNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 58C3A125BF985FF63EE682904ADF9755 /* EXUserNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 433845A51A7B94C7E3FC1BA166EF3AB8 /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 6663B1E64C895CFA3B43A47C4FBE9B9D /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4338BE4A10F8AA3757F3564234E12DF8 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 5936349F1BDF4B05BADDE3A2EDF5C793 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43392A4D79B8DC5E22D18499B86234CC /* ScheduledFrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B07187600368D19AB68107BB7E39DED /* ScheduledFrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 436A6BFE7B20D2A6B3F135835E3530F5 /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = B21E31C8653B3F3ACA24962099B2B330 /* cct.nanopb.c */; }; 4371D77F7D30EE2C28086AF3C6141AAF /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = AF245F65561B9AEF79DAAA1575BBEABC /* SDWebImageDownloaderResponseModifier.m */; }; 4395F7FF43E68CA106DE3C9C9EE8EB6A /* Semaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0B4837B8DBEAF4CB10666E81FD53885D /* Semaphore.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 43A22B01D4DC0FAF7BCB423E3AFB00FF /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = EE1094E1D52DB502F9DFF547244DF3E0 /* SDWebImageTransition.m */; }; 43CA220075CB818C01526FF2A9432522 /* ExecutorWithPriority-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 99EB79250CAFBE831DD800AC96C545FA /* ExecutorWithPriority-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43E66942230401F7747CCD2FA4B72718 /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81A3F3B67C53BA4E6624587FB504709E /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 43FF764C9A571CDCDC54C22C16462EB9 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 064B454F7BC2B101368FF9057395ACE5 /* RCTInputAccessoryViewContent.m */; }; - 44077BE7DC478E91BB1F7FBCBD475D79 /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8722295C25B3943AF10E50B691C16D55 /* RNBootSplash-dummy.m */; }; + 43E66942230401F7747CCD2FA4B72718 /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 64450509CB1B3C9AED96F9ED63268D00 /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 43FF764C9A571CDCDC54C22C16462EB9 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A0611DDE49D426961492BD17560B5C1 /* RCTInputAccessoryViewContent.m */; }; + 44077BE7DC478E91BB1F7FBCBD475D79 /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E8A4EADCDDEA4A9244BA30B3A970CB58 /* RNBootSplash-dummy.m */; }; 4409E6512D39E11B09F0A04BAEE9A0EC /* FIRInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A91653C144A67CF27BF3BD101E38506 /* FIRInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; 443D3DDF5D13F55E3BE2AB33A97AA222 /* ScheduledRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 85E39C4D756AD3813BDE4F2E6F37FEC8 /* ScheduledRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 44497A704D0C992E58AFCC35D072B3A1 /* StreamRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E6A17F744A234DBBCFEF2BF3E73F956 /* StreamRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 444F98C1E4DD386225533E8C80FBA788 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CD8000385E0B18CACE3190FC574A7C3 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4456DC7E9228FF28308FEEAA206EE6E5 /* Request.h in Headers */ = {isa = PBXBuildFile; fileRef = 260818DEDE2BCFEDCEAF97E551C02FB0 /* Request.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 73E7D4E693B09406B129387AF3530146 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44C9F9E631175EE5DCB9CE7BDD02A15E /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F1D4A55EA9BEA7C6F854E7A48AA4BE6 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44CE88088F17C4DA76F31DB5A23EF1C0 /* RNFirebaseCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F91FBD8C02402B3464620BBA5223D9D /* RNFirebaseCrashlytics.m */; }; + 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 311FCD6AA12E2F521B9AECB5B0844B0C /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44C9F9E631175EE5DCB9CE7BDD02A15E /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BEB96F20D5726C0FED96A146722426D9 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44CE88088F17C4DA76F31DB5A23EF1C0 /* RNFirebaseCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 58CD11CB1197BEEEDAAC9286996D6D5A /* RNFirebaseCrashlytics.m */; }; 44DEAD0A33C7D76B606E996CF39F0A81 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = F0574453A93A0711AB29EE7CDFFB0BEE /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4512CF639ACCB7CC62CD0336CC637A95 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 947DC1D9D5F537AC8ADD1652D178F627 /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 452641E607EA42EAB0D4C7FC7F68438A /* RNFirebaseRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = A6492D18FCBF482B6DBECD94BCFE3721 /* RNFirebaseRemoteConfig.m */; }; - 4557369F93FE463848E140D0D70D2063 /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 87F05A51C7F86B2D2B14B62F6F1248FC /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4512CF639ACCB7CC62CD0336CC637A95 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = AD9CD05E58DED57FC500427F319A0AEC /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 452641E607EA42EAB0D4C7FC7F68438A /* RNFirebaseRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = EA7E8D48F7DDFA1913B46F6F9EC23D43 /* RNFirebaseRemoteConfig.m */; }; + 4557369F93FE463848E140D0D70D2063 /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D199A68196561A183C2C458273B89B3 /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 458213474465102B117267E9161B7363 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = F0A037A46EF17388BD951F5073AAA0CF /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4584237784EA05B37B6C57AEA19C0DA1 /* FramedDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7DBA39AABE42FF88D5DF1E88BEBD3575 /* FramedDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 45955CF3D29DDBFBD70BE7074C312431 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BAFBBE57DAE334A1168DBD0F4E64ACB /* ARTRenderableManager.m */; }; - 45C8C704DEE98A453BF3805330308D96 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 9934CD4A1C48A1C1391DA60625F6E769 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45955CF3D29DDBFBD70BE7074C312431 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EB34A51173DDEA6E14DD142D7E627F39 /* ARTRenderableManager.m */; }; + 45C8C704DEE98A453BF3805330308D96 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = B70A343169830D92F44D1C1E063279C2 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; 45D699FECA801F44943FF1FA546A60FA /* IOThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B314E38EF1834612C35C527E15D00B3B /* IOThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4620B2AEA9AF6351E661200E2DD3A3C9 /* Uri.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D96E80E0B8C87F6390DA8CB6B41F85C0 /* Uri.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4647F15E0AAB72AAF4365266C1EB0F4E /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = E63199558C4A6FD2AC4B36A19B0751C6 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4647F15E0AAB72AAF4365266C1EB0F4E /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A84171034776C9AE6062B4A66C2ECE7 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4660AD51A8D6ACBF5A2A87CD7512E905 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 90391A5AE4407FE1CB8B1C8683025E53 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 466306A54775FBB6D3367A06DA9D4D98 /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = CF9E4ED8267D8374BA9BFC9B190F5982 /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 468E2BA37E64CD16F291C2603E6C6D60 /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CBF19FC14AA6BAF3B58FBF8FF15C1F3C /* RNCSliderManager.m */; }; - 46A868E9CE27BA610763D1E1E7538ECC /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AE71AD5EB998140818D614EAAB05D84 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46AEBF140BCD7FC59E5ABD95295133B5 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 555F885B0D04FB0091104CA4361C6E81 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46B19C66E71E44CAC96E95D478DDC0CD /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0556DB0C37E1FB6783E6ADB0D5A4AF0F /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46C30CCC695ECBE006BD20B5B0B5569E /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CAADB612BE02D149D127DC9EDBD247F /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46D63884E3DEF1CCD5362A994CC9F375 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = E749EFFD4D169830F385E39E74FEEAE2 /* 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"; }; }; + 466306A54775FBB6D3367A06DA9D4D98 /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5832AE1D8131530301A4288286DD3176 /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 468E2BA37E64CD16F291C2603E6C6D60 /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F6A9FCEB121028CCA01C3DAF503EA454 /* RNCSliderManager.m */; }; + 46A868E9CE27BA610763D1E1E7538ECC /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = C4E2C296D739056C62ED7697ACBFAE14 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46AEBF140BCD7FC59E5ABD95295133B5 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 05D8A89AFB0E4913D4350C843480FB8B /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46B19C66E71E44CAC96E95D478DDC0CD /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = FB2588E4AD9B0F14A4204399375CBA98 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 46C30CCC695ECBE006BD20B5B0B5569E /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AD306CFEF5A52CE74956BC49EA506172 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46D63884E3DEF1CCD5362A994CC9F375 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = ECC5CC63163AE9C0F9CEE7EB00527FBE /* 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"; }; }; 46F677887FF3768DDC04707CD0DDE1A1 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5D25A04C7AECFBB3914686C7377373D8 /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 46FF233827FD9F59855A0707AD6320FE /* ClockGettimeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C1385A1BC08D636A83049E80BA675A8 /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 470DBD3E5CFEB15377A9DE736580E7BC /* RCTNetworkPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E9D3EBF1958D478F2E1A4516BF26487 /* RCTNetworkPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 470DBD3E5CFEB15377A9DE736580E7BC /* RCTNetworkPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 656E6AD003C36D755E4B2612CDB1E649 /* RCTNetworkPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47100C8C26038713F688529AFE01C5B2 /* Checksum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8E65D4CAF118B5E5E0C783A74FE67AF /* Checksum.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 474C3BE8073A5D673B57C69C7996E60A /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 92303CFE59349CD41F2BC8F4FBC5E555 /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4750F79CFFF949B8F30142D7072CE41B /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ACF4DAE836F3A6D95CFD47CA16B8438 /* RCTMultiplicationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 4750F79CFFF949B8F30142D7072CE41B /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C321DE3390CD49D23F73F0DE5F74C5EA /* RCTMultiplicationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 47590AEF8918372FE41C5480D9091E6D /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 63DA260ADC6E41432919E15F5F76D429 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4777554C153B236B131B65B82D265D9B /* GDTCORLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = FD5962EE39CB504F050E47855D7409C9 /* GDTCORLifecycle.m */; }; - 47A5093A7C03F0DB0BA913BC76B9A83A /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = AB473145F59E8DC9380B2AB5CC8F00E8 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47A5093A7C03F0DB0BA913BC76B9A83A /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D073C331B87A79B01AB8D7DFC982F7FB /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47A6E5DF69708A9B554DB9510EA2B78C /* FBLPromiseError.h in Headers */ = {isa = PBXBuildFile; fileRef = C458CD06CE7469FC32F205CDA8F81E86 /* FBLPromiseError.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47B66FF514DE8F14DA8B915436661C1A /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = FCAC7A2D66B155F138335B0C2F002778 /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47BEE0CF5DF52F0AFFD813803E3382B2 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = B6857FE0A012F6B7148319EFD9FF9451 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47BEE0CF5DF52F0AFFD813803E3382B2 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D776BE09C723AE22C0969BB41D621A3 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47D644E0A812CEAF1C3397017B6D3269 /* CPUThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = A250758E44F4A5F1DCD80E124D73D269 /* CPUThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47E2E2BC07749B3A2978080B181FD194 /* TLRefCount.h in Headers */ = {isa = PBXBuildFile; fileRef = CEFA8D39408945A8A01CD6A4CB446A71 /* TLRefCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47FD2A663D13ED9D779AB1B4A7D517BE /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5C8CF24201B2DC334D3A02990C1D0DD5 /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; @@ -1062,105 +1059,103 @@ 48377AB732CAE5FB016FC6D671D2F028 /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 86722D3FADF92702FC6ED523BCA655A6 /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4863677D1787975D4D4AD4631CBF3CB2 /* AtomicUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F3C161BE83097E80AB9684DB3F8A1CA /* AtomicUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 486EC643435E18407070A694FF7ABA13 /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = CF32217F64402E516166B0907FBF62A3 /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48C00656B6B6504BF3E9443AFB067A4B /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = B1C3FBEC0791669A99849D0E5D8DF61D /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48DBFFF2ECB6D32043950EA454CB93C6 /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 8791F28043B93FB45126A4FF1B18FD25 /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48C00656B6B6504BF3E9443AFB067A4B /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = E9519BBD99C3479A582869773DEAFC32 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48DBFFF2ECB6D32043950EA454CB93C6 /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 09B60B3F32E240F9BF59901C855E3D6A /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 48DDDD887768C3EB92C89C1F9C23B92D /* Future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 448A21A3CB44AC4AD2A39C5D90D61041 /* Future.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 48E8DF65D2A2A6278FF46469CF948058 /* GDTCORPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 323E1B424291F692103EBDFD456C1BDB /* GDTCORPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48EB5A4F7788EB85A925C41694548662 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F7AC4425EDE6BFB8E5072393B5AC89E5 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4911A49352FA3F1FD70F0A16338D5A20 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 79FEFB251B624E2112058C5823DFFBCA /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4939A4F89154BC54B6D4CD37BC3AF6FB /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D45484A1A289F44F405566817D9650B /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49659FD56D7A26D9712075D2973278D9 /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 447D548BC3C3A6985F7B1265A736866A /* REAStyleNode.m */; }; - 4973DE666E368BC3A61245D6C8969AA9 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = EF474563AFA5D4DE1AE9D6DEAFC3ED60 /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48EB5A4F7788EB85A925C41694548662 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 713E6D5E5D285A21E5A29AEFA2CA2566 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4911A49352FA3F1FD70F0A16338D5A20 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 700F23D8587F8D21AB993A63A604E9DC /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4939A4F89154BC54B6D4CD37BC3AF6FB /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 83593BEA3DCCF128AC0E8AB6F21E289D /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49659FD56D7A26D9712075D2973278D9 /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = FC2BD8D5D87362CE3750BEC01FA67F01 /* REAStyleNode.m */; }; + 4973DE666E368BC3A61245D6C8969AA9 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 85B0C9E09475A87487BEE618B504E58B /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4977E406F103BC7E9F600C3C57CBF755 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 33F64DDC7E68F08CA71D263DC0CC3E0F /* picture_rescale_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 497A593D49008335CA1284AF1B2D3CF5 /* FIRInstallationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = DDD3823CD61B5AEB828827F65D3489AA /* FIRInstallationsStore.m */; }; - 49820FDD699B4BE9595BD373833EF371 /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 89C4B3B2CD1FDE56C69D142F03EE0104 /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 49820FDD699B4BE9595BD373833EF371 /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5DCE17359F10A64A92CE82BA118A6C63 /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4994983DAB79F82CB6C7B3FAE8EE090F /* FlipperClient+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = B3C43F2BECBC7AEC25B056DD35507702 /* FlipperClient+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49999504FF0B43EA03D23A9742A506D9 /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = CED37D403F851EC64D48C2E6D7D32431 /* BSG_KSCrashCallCompletion.m */; }; - 499FEAAE461FD29D544C7CC5DE018BFA /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A997A07823FE6EF7EDD39E9C0C2A47D /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49BF6E7A84AE6204A4FB7F24F7B14760 /* BridgeJSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 92A866209B909FF7DE356B121586DBA3 /* BridgeJSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49999504FF0B43EA03D23A9742A506D9 /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = EF823F172E902D70ED144ED081652D6B /* BSG_KSCrashCallCompletion.m */; }; + 499FEAAE461FD29D544C7CC5DE018BFA /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BF5BADD9451A740C33F8E78B648F132 /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49BF6E7A84AE6204A4FB7F24F7B14760 /* BridgeJSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AC79F74EE6FEC7A4FA6387C5214143D /* BridgeJSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49CAC6443A707C331BEA57C02856261F /* SKObject.h in Headers */ = {isa = PBXBuildFile; fileRef = B75933D9F226520F1F63AFDAB49BCACD /* SKObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49CB6E0BD077995D6FE671AE085BBB4C /* MacAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1DC94DF939D00DCC47B1425D23467FA8 /* MacAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 49CB873D7004E4F5DF6458EB2A92AC9B /* RCTAccessibilityManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1068F3228D5C1F21249353FD5E724FEB /* RCTAccessibilityManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 49DB95D5B5E96008133B3E3DDE4D1F98 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 77AE3AE043D8C08417145BCCF53E4AF7 /* ReactNativeART-dummy.m */; }; + 49CB873D7004E4F5DF6458EB2A92AC9B /* RCTAccessibilityManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 94E48299149F24D975C8BA603D3E79EE /* RCTAccessibilityManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 49DB95D5B5E96008133B3E3DDE4D1F98 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D6DC0B213BF7B141237863B519BC9B7 /* ReactNativeART-dummy.m */; }; 49ED22AD77FCA7D73439C955EC426CD9 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = DBC2B283A2DE4C0ACBBC43E233D77211 /* backward_references_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49EEE7711D57EED8E0AAE22C745C541E /* ConnectionSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 316D9D195CF9A8195A75DC78F7F59054 /* ConnectionSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 49F2EC3563399A1BB0FCF122982D86D7 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E60F5AF0B10402EF09199C76684B61C /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49F2EC3563399A1BB0FCF122982D86D7 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CF3E09BEF307CDC9612272B538617CF /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4A21F2608B9DA7432CB306111F436C8E /* EventBaseManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5ED497064532BFAA36428BAFCC9D5222 /* EventBaseManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 4A2CB3037F6044AC27BBEF315D60B6EE /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FA21966982863F1E4BE6BA0228D6EBA /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4A719D312510D21AFB33E68F642D3F3D /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC4D1460171F9A658F53ED094D81A76 /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A74583FE28AC53E6F70FF752B5BB4F9 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E64F90A137DF0B04425A383CF795D9C /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A75E803AF46B56D11CCCE41CE8FBE0C /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = A581FCB78821DDAE95B2AE064BE4DC45 /* UMUtilities.m */; }; - 4A7CBC49E0E714E315BF2E22E39BC136 /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C838B404B5EE29521B38A7BF640B0404 /* UMReactFontManager.m */; }; + 4A74583FE28AC53E6F70FF752B5BB4F9 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BE866F82A76432AF11300FAF33461B2 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A75E803AF46B56D11CCCE41CE8FBE0C /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = B264BE404B72DF4FCDC15B68DE155082 /* UMUtilities.m */; }; + 4A7CBC49E0E714E315BF2E22E39BC136 /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A3C9F7CFD71D9EC434C4884589E690A1 /* UMReactFontManager.m */; }; 4AC690953B74C886E5FF8BD390838079 /* FIRInstallationsAuthTokenResultInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 584322C35BFF6658B17DED225C26017F /* FIRInstallationsAuthTokenResultInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AD9C2A6410A8A5406F0F079246BD04E /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0E9EB4975C32273C8AEBFDF1B620302B /* 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"; }; }; + 4AD9C2A6410A8A5406F0F079246BD04E /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = FC63028A8DDA27DFBC8BBBFE1036F6D1 /* 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"; }; }; 4AE716C8CE1833E6A3314B910C450EB8 /* FIRInstallationsIDController.m in Sources */ = {isa = PBXBuildFile; fileRef = 51D1146DC010B29D45DD7B30147F197D /* FIRInstallationsIDController.m */; }; - 4B174EC3B79E737EC18607D92EFFA69B /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 5978EB2DC09C2C72478F6CEEE0A63978 /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B174EC3B79E737EC18607D92EFFA69B /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 715D61D98A8D1FB9A6A4B6316308C106 /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4B3964B71F74D3D48482B3D853DA94E5 /* GCDAsyncSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D7BA6DC44642EC93751E8EECF4885B0 /* GCDAsyncSocket.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; 4B6624A1006ED93B3305A5C01B680EAD /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = C50C28D47E880EE339D1AD7E061DBE06 /* random_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 4B75E3FFB3D2849FDB5C18EF604FC7B0 /* FlipperCppBridgingConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7393C885084D8F55B3DBAFF57F2E73DC /* FlipperCppBridgingConnection.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 4B7E182091DC4DEE2D2A5E1706F0D6A9 /* BridgeJSCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07B3A957AE8A7C65C2F2CCA813376074 /* BridgeJSCallInvoker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4B7E182091DC4DEE2D2A5E1706F0D6A9 /* BridgeJSCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA7994A17C6070F92CE1B28947D5D514 /* BridgeJSCallInvoker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4B925B231DD0F1A4DEE0367814E32490 /* RSocketServiceHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9053FD1709D958D2E1AE9D3B1D2F23DE /* RSocketServiceHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4BBA805E7B1BA9E6C8AD89E9D9579637 /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = AA05F8B4E8AC7C72A5E0CDFAB837D591 /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4BE9AA0AC9220535A1CC94231A061BC8 /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = AC1F45606A44AE7B7A4C42703FF656DD /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C1215C207F76B2D1473350F2CD63B5F /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 524B0B734499A06C5A775B80572E1787 /* QBAlbumCell.m */; }; - 4C27A9AD108236F4F6ADCE9F417A2B93 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = B776AC9D8D0E04A5414B78438D7776EC /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C5605F65CD87114E1137603C0A6DAD1 /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E5B2EF96696FDE275E71309F9EABDF1 /* BugsnagMetaData.m */; }; - 4C58FFDEC23FCE92A89D81681B14EB77 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1FB7ECFA1E2EB82E596204EF9FF6C56B /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4C1215C207F76B2D1473350F2CD63B5F /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 5581FFA6AF5B2D8C5F417E2A4E714CB2 /* QBAlbumCell.m */; }; + 4C27A9AD108236F4F6ADCE9F417A2B93 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 11E4D75B7F44C410E0AEE4C9DF1F694B /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C5605F65CD87114E1137603C0A6DAD1 /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = B5E2C6D6F9C6BB62D63CEA23FE408237 /* BugsnagMetaData.m */; }; + 4C58FFDEC23FCE92A89D81681B14EB77 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 344FFFF0EFAD313B31C53816933583FA /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4C6BCEBBFC73C8EB1DC1C131213E7A3F /* FIRInstallationsIIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = C4A26B7FE8F3E31AE5EBCBEE81AC1F36 /* FIRInstallationsIIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4C76D9A8EEB343746F6A73E6573B2D03 /* WarmResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FA2EB69DCBE1E28DC0760CF7E6D5841F /* WarmResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4C7861B119472BD8477B7309689351FF /* Future-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = 338B456FE987876072B45A158A31614D /* Future-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C7CFC31B67E5D1520E3FDB757211A24 /* RNAudio-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E07C03A34E87743AE4F9B6459A323F /* RNAudio-dummy.m */; }; 4CAEF5061BEBF77B81CBB7A5C4D10871 /* FLEXUtility.mm in Sources */ = {isa = PBXBuildFile; fileRef = C8E497FD43BA1211D4BD7FD47B9A336E /* FLEXUtility.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 4CB17CB8D126B3C0756BD759ED594ED0 /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = 90264320EB1595B97152D9270C22C7E4 /* FBLPromise+Testing.m */; }; 4CB1C4E683C40915621BBD422C570224 /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = E8C9A2A36721E59FF629EF87DAB54EEB /* GULNetwork.m */; }; 4CC8A1271887F77848976D93CA74D44F /* UIApplication+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 19348691A9A945AE17613DC4F04A5C7A /* UIApplication+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4CF3D08C153169A8C9C45051D909163E /* FIRInstallationsAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 072CA5F994B8A58A9BBB07C0BBD5B224 /* FIRInstallationsAuthTokenResult.m */; }; - 4CF4A1ACB731A31DF60286829840BB67 /* RCTLogBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E4B781294FCC5535E344853261D102B /* RCTLogBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D0094D0DB02BBAA1A05DE84CFFA938A /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = 29C61B48928ACB47767C42DC8802C61C /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D01B773A72D6899D310073B55EE554D /* RCTLogBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = E00F29323FDC2221DEC6688F99664369 /* RCTLogBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 4D1758AD30A72983B7EF76D5EC538BE1 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = E32701A5312FF5486D49E353569C4571 /* RCTSpringAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 4CF4A1ACB731A31DF60286829840BB67 /* RCTLogBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 1413F6F195B831F0081637D8CBF9B38F /* RCTLogBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D0094D0DB02BBAA1A05DE84CFFA938A /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = 88146B4D372AE7F11BF7EACF8BE2DADF /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D01B773A72D6899D310073B55EE554D /* RCTLogBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = A1187D2DE7913231B81EA06DA1E81AC7 /* RCTLogBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 4D1758AD30A72983B7EF76D5EC538BE1 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D6B8E4ED96634DD01FF6EB51F1E1D79 /* RCTSpringAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 4D26D41DC25595A9DDC19434692363C2 /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = C82B5680A163C64780EE09E382D7EEDC /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D52D79DFB71CAF47B95A999F1F99567 /* RCTActionSheetManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 75CF2E8B87594CB234E3D95A5412993F /* RCTActionSheetManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 4D52D79DFB71CAF47B95A999F1F99567 /* RCTActionSheetManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9253181F81EC31F33BD654B6F8066DFD /* RCTActionSheetManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 4D70DE57BE4ED28E7AC93C9C849F11C6 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C52DE7E72F7FC1E4F8A5714111A66A7B /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4DA09B3F7B91287B9EEADD4F6CCD6D20 /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CBB7A0A0D3341A8729B9F3D14F53598 /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DA8304474BEA599DF8E2F8D29F75DDA /* RNFirebaseAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D4945E36B5CAC10D6AAB064790C2915 /* RNFirebaseAuth.m */; }; + 4DA09B3F7B91287B9EEADD4F6CCD6D20 /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = B14AE9678A9119B06DBDCC495D19AA66 /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DA8304474BEA599DF8E2F8D29F75DDA /* RNFirebaseAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D4AA9721E39E7020252897C8EE9E9EF /* RNFirebaseAuth.m */; }; 4DC3C93691EB8D66A121CA71EF8113BF /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 6E9D40AEF01605DA865536802BF2E39A /* enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 546950BF37FA3C1CC3E6F29E4B25EB69 /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E0267A7B63543C6304321C820D6C83E /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 92B46344955C5783FCE009877CFDE98E /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D2F110440E6536D1B3F88D769990A27 /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E0267A7B63543C6304321C820D6C83E /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 3768DB93A674CEB594084955234EB379 /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E17E34A10921015C84C16FDADF1618D /* ConnectionContextStore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E33F6F25B1A319CD98E7EED0364DC1E1 /* ConnectionContextStore.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; 4E482BE9AD7430C9B3E1B787850C95DF /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 60223630A540490757C88CD4BC763CE9 /* huffman_encode_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 4E5588F198AE4677917C8940ACE0A4F1 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = DCABDEB1ECA6AB1D95D2A6CB9ADD5C59 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E6013E485F9ED649C319A0D4F4FF62A /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B43B1EA24ED075AF55FCD69F05A2398 /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E6013E485F9ED649C319A0D4F4FF62A /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 8575F196D55B1B8579B40A6C7B60029E /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4E7F408A6C7E76CCCB1D7C04FBC62B7C /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = D5CB6C46BBD1F37F88EABC0C4C46944A /* SDAnimatedImageRep.m */; }; - 4EB2D04587312A7B2BE1A6AA95DAE6D9 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 78CFC35A3CC83CBFA7DCA5AFC6FB7185 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4EBD35331B247A7AC5B814CCCB418A7C /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = EC1F50667604BD0C2E526395F6B6D9C5 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4EB2D04587312A7B2BE1A6AA95DAE6D9 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 13E2E0C047B47EB7A4680733F16D12ED /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EBD35331B247A7AC5B814CCCB418A7C /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1A066974EBA7AFB766B72902B7FC79FB /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4ECA0D81891EADA811094561AB083DF3 /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 54C30ED4D431E2395CC82CD4339BF167 /* dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4EF7FEE09B24A016FD7489025596D713 /* AudioRecorderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 324706CA72283709C6953C448166A9A9 /* AudioRecorderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4EFF0DEF429EF816734CCDE018C3C798 /* GDTCORUploadPackage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 61C2992A91BCC973E8283FE16D351969 /* GDTCORUploadPackage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4F012C6282E1CEC511611133B36A3F4D /* FrameSerializer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7AB54913C5AF527335DF4F9928AE3D1 /* FrameSerializer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4F03A4B5C2F4EBB29BB6FF2656366CB2 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 35690D5F90F8D260BD6751FC9BBF609F /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F03A4B5C2F4EBB29BB6FF2656366CB2 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 049DFFA1F6F0BF65EB4CE7E2498C8407 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4F11A9CF13C6D879459774E82AC101F9 /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FAA974287358097962979FFDDC7817C5 /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F165C53DEB201655E404D327B10E2F7 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B9B0ED604DEFCA10B70AAE7638FD72F9 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 4F35BE496C429404C93CB58D411B41CE /* RCTWebSocketModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 755B72D5DA9A44B53932D49C7E48A722 /* RCTWebSocketModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 4F165C53DEB201655E404D327B10E2F7 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B00195CD357BD7C5CDCDBF85EC4B812E /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 4F35BE496C429404C93CB58D411B41CE /* RCTWebSocketModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 307FA4F940815467DFE0BA6926175C96 /* RCTWebSocketModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 4F87F03E8E671A7FAE79D64F5879D866 /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B904F014D6238EC720700454F027CBFD /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4F9658CA8344A2C6EFBB843700EC590A /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = F61E79DC7918C604DB071008644B48B7 /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4FA7A1FFCE343A5ABA9FD6FAF8235F08 /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = A815042718BB3946437B56DA39AB42D0 /* LNAnimator.m */; }; - 4FA93A9BF665067BAA8E1BA1615FB242 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = EC3D5D021E2F22216428F54B28857BF7 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FAC86DCEF03878B76396DDA8E94340A /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C0F20F742C54B26F631F05038C9BA9BA /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FB88F0D253B715C034CB05ED1A2BDCC /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C1107DC0C92960D72614B9190759FC3 /* REAModule.m */; }; + 4F9658CA8344A2C6EFBB843700EC590A /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 45D4F19D68EAD5B9FB0746230FBE5A03 /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4FA7A1FFCE343A5ABA9FD6FAF8235F08 /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = CC526FF976F836ADF07E332D8977CA46 /* LNAnimator.m */; }; + 4FA93A9BF665067BAA8E1BA1615FB242 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 34A5BE7E358A31EA4B8857F91CC1EE5B /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FAC86DCEF03878B76396DDA8E94340A /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = D10AC064663A8621F9CA87C251D4360F /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FB88F0D253B715C034CB05ED1A2BDCC /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = AE70728376607B03B4CED6B6EE769CD5 /* REAModule.m */; }; 4FBC2BE9E6D22E669918E689C6196CB0 /* ReentrantAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DE8D35F978E4154DF11ED0D43CB1DFA /* ReentrantAllocator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 4FC056AA5B803E2F5E1BE4D5EB038A0B /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2795DA0AB50B806E3127BDEB66A5A180 /* react-native-appearance-dummy.m */; }; + 4FC056AA5B803E2F5E1BE4D5EB038A0B /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FE3082CB01E5CC863E47C230D8D6815 /* react-native-appearance-dummy.m */; }; 4FC8CA3267CA7D49DF58E08780AA5E19 /* FirebaseInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 175BC051753C8BD307256C20A8258DDA /* FirebaseInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FD5858446B70602FED0813A5DA32380 /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 65F2F83421140FB0FBCE7718EEB0CFE1 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FF75206B5BA87DFCE3B74F326BDC989 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 19C43E2021D34953E63B6DF7BD3DCB2B /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5024C25DD7F09BF4D3A7BEB004B435AC /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 93E5D3FA51D92B2EE1178BCAABA6F671 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5026E819E515397DE9820BDB18B436A5 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C8A5F2C9FFF91B5BC14FCABE9FBD6CA /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 503F96DD76B26B7F3FF816FB7F6E6B18 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FEC4E9A82D86777153BD8C0B53B45AF /* RNLocalize.m */; }; - 504DC67E19BF97F896369BC24282F55F /* ReactNativeKeyboardTrackingView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 990D1CEEE097DFC53048ADB570956DD0 /* ReactNativeKeyboardTrackingView-dummy.m */; }; + 4FD5858446B70602FED0813A5DA32380 /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = E4197BA19A99AFF099E7B1F96C2BF98A /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FF75206B5BA87DFCE3B74F326BDC989 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 287BC39339CE9388194C0C6E634A8628 /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5024C25DD7F09BF4D3A7BEB004B435AC /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 77BE894F7585FB6A710E89AB23CBF4F9 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5026E819E515397DE9820BDB18B436A5 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D3853B3ED3C88E5AEBA60EBA787BCD6 /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 503F96DD76B26B7F3FF816FB7F6E6B18 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B0C465A1EB8EE2860EFC8536264494D /* RNLocalize.m */; }; + 504DC67E19BF97F896369BC24282F55F /* ReactNativeKeyboardTrackingView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 224712917F5A91D72C71DECA90A7A617 /* ReactNativeKeyboardTrackingView-dummy.m */; }; 504E0EE4CD7110B5D286FFC1B25B07A7 /* OpenSSLCertUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34A05F256E0E3B229BB0FAB0D94BC1BE /* OpenSSLCertUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 5051BDE8EFA401DF6FD5ADE291764FC5 /* FBString.h in Headers */ = {isa = PBXBuildFile; fileRef = EEE0808E6D7B2D5F36AB820D667123B0 /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50664A61C6B66321C8A72CDF41E11E9A /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 7686E187EEAA0F481071907602EBA76C /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50738319CBBADE87610C7672075BA2B8 /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = FD3FAF17769AA4C5BD3A3A08446A8239 /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50738319CBBADE87610C7672075BA2B8 /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EB48EE38EA29DB25BA2B973755744C1 /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5075C64463D4078585F5BB7F6AFD1556 /* HHWheelTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB75D0BE9B54EC660470AC8F46C55481 /* HHWheelTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 5092A162D4642D2B110D42FBEBCF9B0A /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7BD75300993BE4ECE8B98C96FD181608 /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 50A813DCE536784396073D6FFF9F3325 /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 904AA330BDBFF96A1272D93B6B61F5B3 /* mux_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1169,260 +1164,260 @@ 5100CA33F67C8D850C5539A42A0DF5CB /* DeferObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B982CB5D09778C5F6636849E66196CA /* DeferObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 51069D69172171A69FF1532FDE6DD756 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = DFAD59C64C4A25E07742F178A059CEA4 /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; 510794FD8810D34F0585981695F41366 /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 113EB030A8219A64AD3B0B9C25AA5B73 /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51159AFC53F388672C4C7D487C9D647B /* RCTScrollEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 94DC58CFD685B9D5EB1D708DC0020EE5 /* RCTScrollEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 51159AFC53F388672C4C7D487C9D647B /* RCTScrollEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = AE4005C1801D24F2D215728F03673F41 /* RCTScrollEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 511B9697DC4125DDCE1ED1466EFA5631 /* GDTCORRegistrar_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = EBF37905FE0BADE6A1B4A72A16BAD45D /* GDTCORRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 512DBEA49D8024DEDA62DC51372951F8 /* STTimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D42CAE2EF157C716C678EEAE4EBE252A /* STTimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 514D6E3A9CE6550543A475620E6A3685 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2751DEFB13CE7F313B750145F8315914 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 514D6E3A9CE6550543A475620E6A3685 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A8F042A10FEB0CAF97AD9D4B19791E2 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 51530798E52AC33DAA3D6F36C1502776 /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DF1748AFE5AC4DDAC49DE337A96BBA0 /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51B0202DAF50A4A3AEA12893E08ACDF3 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 21C8C861B96FF98541E71324A1572405 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51B5135B1A662E06FFE3C7A113729809 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C155F0FF36BE9E97E842352F2207414 /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51B0202DAF50A4A3AEA12893E08ACDF3 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7956E2A86C2C272EA5F2E7CAFD7995F8 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51B5135B1A662E06FFE3C7A113729809 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 43080157BF6D81FCC098241CD1FAFCD9 /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 51CCFDC44D74CAD6022C9ACB512AEDE7 /* FIRInstallationsAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EC4F58B0DE2BB4762E39FC0B88447AC /* FIRInstallationsAuthTokenResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; 51D6D913550CBAC02E5FC6688CA8C0B4 /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 975457E6A4D4F140B9825F36E552F991 /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51EC5911331DF22E4C5968CD8B7ED7C7 /* RCTFileRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = F88FEF53D9ACBC842772E7378CDD10A7 /* RCTFileRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5231B412D56370F141E350799CAF6C74 /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E38FE81BDDD5BD672BD3F564F64D524C /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5246C8B1D7CD3CDAB9202B280D8CA98D /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A7C051B36684AD35D3B9E0855DC0B533 /* React-RCTSettings-dummy.m */; }; + 51EC5911331DF22E4C5968CD8B7ED7C7 /* RCTFileRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = B59E391B39C4861662ABBB57AFF839B0 /* RCTFileRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5231B412D56370F141E350799CAF6C74 /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 1823F85D252E1576FE3C7EAF4A0D48F3 /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5246C8B1D7CD3CDAB9202B280D8CA98D /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 37187EBD3E6EA5CF062475D498E45DF1 /* React-RCTSettings-dummy.m */; }; 524DA1EBC0DBCB2CDAECE02FDD129CB5 /* TupleOps.h in Headers */ = {isa = PBXBuildFile; fileRef = CDC541260A450E879BF1EAC2256B1206 /* TupleOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; 52B21C30C1FB0CAE5BA26B599DEB64D8 /* SKNodeDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5860181AF8CBDC4D25825FD085F35C71 /* SKNodeDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 52C0E391D9D5F587B296E2DA8D81AEF4 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E64F90A137DF0B04425A383CF795D9C /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52C0E391D9D5F587B296E2DA8D81AEF4 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BE866F82A76432AF11300FAF33461B2 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; 52E39979F439AD373ADF1108067FD6F4 /* Subprocess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 621281BA3ACA98DDEE4378BC990EEF36 /* Subprocess.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 52F8EE02DD0245981843DFB67ECCC7CB /* TokenBucket.h in Headers */ = {isa = PBXBuildFile; fileRef = 6103A99149FC9381E854472556E91AC6 /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 530798D8A1CF3289921987D9FDC7B884 /* FIRAppAssociationRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = C6A2086E1649020F78866E0A42A03870 /* FIRAppAssociationRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 530F9743E35929C87133BD8E083735A9 /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A65D79B71FF304B26CC65AE91E72C73 /* UIImage+Metadata.m */; }; - 531131AA54E45A625EE48708E77A7910 /* RNFirebaseFirestoreDocumentReference.m in Sources */ = {isa = PBXBuildFile; fileRef = A4D47E197DC0F3E2DBF3C4445BF0A1AC /* RNFirebaseFirestoreDocumentReference.m */; }; - 5326F8694B63DCC3779B10E5468F40A9 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = EDD44CAE1181AC6836BA7E115466AF2C /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5338293C5FD4FC2D13D8524F4AE75AF8 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 72D80AB440DC034942A6E7653C1A9787 /* 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"; }; }; + 531131AA54E45A625EE48708E77A7910 /* RNFirebaseFirestoreDocumentReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 165453765AFE9E6B014C1C4E028136B9 /* RNFirebaseFirestoreDocumentReference.m */; }; + 5326F8694B63DCC3779B10E5468F40A9 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B096588386451650671EB5AD0236F260 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5338293C5FD4FC2D13D8524F4AE75AF8 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 36C58925EA5D16FB43CCBF7252CB3CB1 /* 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"; }; }; 533F5B5A43499AF92AB8DBF7CC1CF84B /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 564F7C149A5455FCF310C4282FE2FF50 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 534165CBEA822027583EF311EC782538 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 45F7D27CBCB40E8F77D9ABC84E89A8B7 /* RCTSubtractionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 534165CBEA822027583EF311EC782538 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = FB6041E6D3567F30A0394A7CCD1779B1 /* RCTSubtractionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 5354A7D0794A6F677891E95C6D801AEA /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 41983F8D589C341916296E9E572A32A2 /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5375DDE6A2D2428D0B62F7B9BDE7FF2C /* SKTouch.m in Sources */ = {isa = PBXBuildFile; fileRef = 880668C762EDC9AD36BB9C499C39773E /* SKTouch.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 53AF2A54A8C7633333A29DC49AFA510B /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 378045A1235160477787871E19B23164 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53AF2A54A8C7633333A29DC49AFA510B /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 72F71C4E2871C6AE02ACB1D5118E4100 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; 53B7113A74825BBE592A96A84DDA800C /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = 97D89037B0C626964E3489D4E4FBC103 /* UIImage+ExtendedCacheData.m */; }; - 53C93470EA83362D2AFC76C26071861D /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = DF8BCC9C723065E000C2A4D4A913777F /* RCTDevLoadingView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 53C93470EA83362D2AFC76C26071861D /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AA1BD15854D21A55E4DEDD9F5802904 /* RCTDevLoadingView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 54073EE40BD9B4238AEBF5770EFAB89A /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 0834F0341D9CEFA17C2604FD8D11623E /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5424FDC9A775A478793CFB44F0C12C00 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EAA20CCB46DCC333665BD15C89A69BB2 /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 542F7BE5B54B4B65BA1AF476278AC639 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 07BF3CB541F4C1BCC4ADFAF312581CB5 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54A0942FF2E79992B2ACA0DB1C356437 /* RNNotificationCenterMulticast.h in Headers */ = {isa = PBXBuildFile; fileRef = F24DF451B924756AB9891D0AE05E825D /* RNNotificationCenterMulticast.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54BCA853DAAC904AE97C54D9E4800CC7 /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D63AF2B14E3601110E5B672A7F1379D /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5424FDC9A775A478793CFB44F0C12C00 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 35EA76CFBFCA0BCEA6A9A4F9254CB5B1 /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 542F7BE5B54B4B65BA1AF476278AC639 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 112B866ACEA58B6B97AE9CB87DC7CD08 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54A0942FF2E79992B2ACA0DB1C356437 /* RNNotificationCenterMulticast.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CC1D7B1FCAA03FF7C646C98B551D435 /* RNNotificationCenterMulticast.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54BCA853DAAC904AE97C54D9E4800CC7 /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = DA93844539F9B41A65CC73F109587D1D /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 54E5365217AC5AA2FA378CAB9BCE9A8F /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = B416B5CA7CCB6B57D7B8BAD721E0C1DF /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; 550D2352901F043B246B1D99D593F110 /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = F815DF55B9BB388F5C7D1D9B638219C3 /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; 551B5E3B560EC006D5FAD9C21C88087B /* Parallel.h in Headers */ = {isa = PBXBuildFile; fileRef = 7204FDCF5AD47F53957D0A7F12871600 /* Parallel.h */; settings = {ATTRIBUTES = (Project, ); }; }; 551F5E8C6B3ACC04559C5E14ECEBD7D3 /* ConcurrentHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 3032FCA0F6D3E8D3588E8A516758E5EF /* ConcurrentHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; 554920A9489ADD1F8EAB6770F610866A /* AsyncServerSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC95B708D8BF834D9658FBE9EDD9B44A /* AsyncServerSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 55500919C15445C3F593469D1022318E /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E45A58CC7E74042249B75831FE86A803 /* React-RCTVibration-dummy.m */; }; + 55500919C15445C3F593469D1022318E /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 917C9E160CBC14F1D772A19EDA8D134D /* React-RCTVibration-dummy.m */; }; 55755FF66BD8ABC78DD090E94188A763 /* ThreadCachedLists.h in Headers */ = {isa = PBXBuildFile; fileRef = ADCC1A32A733912BC4AECBC8316FCC6A /* ThreadCachedLists.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 557A6B876C549A6F26C4E93169856944 /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = A1D6AF6DB4FEDD98B983F99933FB44AF /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5580880843D5999818D1EF6AB3E114C2 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = BF23D26AA25EEC70A3E23E9191AEF7C8 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55854F869F29193E5DAA4E646D9D90E3 /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EAD16F1C76B70E914D9B8ED5A9E49AF /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55A233675FB29A834EFAFEEE1BBDEC7E /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 59138562FB292D9BF6D6DCF80210A029 /* React-RCTLinking-dummy.m */; }; + 557A6B876C549A6F26C4E93169856944 /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C6CC2BF5F040FADD1CE554A0195E374 /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5580880843D5999818D1EF6AB3E114C2 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 16D2128A564B3293BA011CBCCF646721 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55854F869F29193E5DAA4E646D9D90E3 /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = E96AFEE6871AD4086E800C2659CBA731 /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55A233675FB29A834EFAFEEE1BBDEC7E /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 75780E13956DE67F7E1C2DA61ABF67BE /* React-RCTLinking-dummy.m */; }; 55A29D332C49B325506C5763B2D1607C /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = 46427E3D983747630117EDCE331946B1 /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; 55EA8380C02950332F6EB64F0788BB83 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 444BA0CBD91918EB6F172BC4A1FDF2BB /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 55F72D6B2A29619435CE8615E7803975 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = F147D77D758F4964688AFF951D9018D2 /* dec_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 5612114F7BCB79AA3F479A734A45EA4B /* GULSecureCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A2F25028AF5BC0BEFB17EC66F786A67 /* GULSecureCoding.m */; }; - 561F81782BF9AD278CB27E2C7B1A4BF2 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2395C55DF2741069950E865FC9E46A8F /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 561F81782BF9AD278CB27E2C7B1A4BF2 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D504EA0CF8077E1D6198D05281E8CA8 /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 562C0F7D5848679FC0309F931D51507A /* FlipperInitConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 00B5C72529406EE9732D26B824356D9F /* FlipperInitConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 56759F3D6F58028185DC0F592D888A07 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 86882A8B995EB53F1E9734757EBF13B7 /* BSG_KSJSONCodec.c */; }; + 56759F3D6F58028185DC0F592D888A07 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = C60F74245BE1FE5A03730E7CE28A60D5 /* BSG_KSJSONCodec.c */; }; 56B0D7D9EADAA177FA3FE61F14F407D6 /* ThreadLocalDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 5565D0B0219F47A21C7CC94B6B3C3CD2 /* ThreadLocalDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; 56BC2A3E8DC876F371CF9E50660BBDF9 /* FunctionScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = B0BB61794B6CCF1BC51DC9D0D706CAD9 /* FunctionScheduler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 56CA8A399D65FB392554775B2A4FC712 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 543DE3054E91774E4423D77DBBE6BD17 /* UIImage+GIF.m */; }; - 56ED8B94761F40DE60DFDA61995A4389 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4201BE87D92B9946897F0B9935126CF7 /* RCTMultilineTextInputViewManager.m */; }; - 57104DD0061299F2315390B1033B28BF /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6602B30C16434EE37FC3C9EF28A5CFC4 /* RCTImageCache.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 572B11BB8CFECDBAE9F04DA95FA0D576 /* RCTGIFImageDecoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0390D837DA5045FC965D96C06FEA2E00 /* RCTGIFImageDecoder.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 56ED8B94761F40DE60DFDA61995A4389 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C6E13BB4A8778CC8B2EDADABF9D36D05 /* RCTMultilineTextInputViewManager.m */; }; + 57104DD0061299F2315390B1033B28BF /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 2580E080502BBFFA0A4EDA6C491F0276 /* RCTImageCache.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 572B11BB8CFECDBAE9F04DA95FA0D576 /* RCTGIFImageDecoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = BEFBFB07F80F1D7A438F709015151D87 /* RCTGIFImageDecoder.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 572EFBA1CE95B80BC7B2B0A8441AF172 /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = CAD5C87CC0AADC43135DE25CD663C1F4 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5730650DB2DEAACDDD31A30086AC02D9 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = E4C4E89A25DD07D4ED5207FDA6340727 /* filters_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 5741AFE087A083C8D0D5C9D5F646A707 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = 397DC933BD2F2B41EC3696740DDA1F75 /* muxread.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5767DA9A124859997676C94B06B184DB /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = 745626DAF8E2FDC51B4CEC6A916584FB /* NSError+BSG_SimpleConstructor.m */; }; + 5767DA9A124859997676C94B06B184DB /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A005ADE34BC29BEF08AEA92B786773D /* NSError+BSG_SimpleConstructor.m */; }; 576D1D3D0255B54FFBDDCB00855FE397 /* PTChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E5525B7C1162A1DECFCE07D921FA096 /* PTChannel.m */; }; - 577585E67A1D5A13B769BEDA1BFC1DCB /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2BD6D05211FC0A993AD167FD7F658475 /* RCTBlobCollector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 577585E67A1D5A13B769BEDA1BFC1DCB /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 44A42F6DC91441E6C50439E4FCD80855 /* RCTBlobCollector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 57779A997F204BED973BB03DBF2B8190 /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = FB2F287510518D3B23AA2C01AEB3AC96 /* vp8l_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 577AD50B514CE766BA609B545A67F31D /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 00E27FAC0E4D4545A9C6EE57AE84854A /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 578C457D50296F1011D54182DA027254 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 147C05DCAC196FCD8EC2E6CE26B3102E /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 57996DDC978A05C90B5482D9DFB5CA12 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 62ADE56762E9C113E092F71C61884D10 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 577AD50B514CE766BA609B545A67F31D /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 53F23C7C1FB440EE722DE3F9A867204C /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 578C457D50296F1011D54182DA027254 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CF445EB7E9E674D1AE77B68EB6FF169 /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 57996DDC978A05C90B5482D9DFB5CA12 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = F3C325EBFB4B2EA1E1153643601F409D /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 57C228A63490E86D0339DE0E72FAA9CF /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1102C734E9A28600BADDA0D9509FD931 /* SDAsyncBlockOperation.m */; }; - 57C316C8C1D30A80E5A09BE3C6B6DC7A /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A2E59220BA4CF3ADCCEBFCF7E012A28 /* EXFileSystem-dummy.m */; }; - 57D322CCECC40542E68BD6495990AA1F /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D225587E371647E1EF158B7E94B98E54 /* FBReactNativeSpec-dummy.m */; }; + 57C316C8C1D30A80E5A09BE3C6B6DC7A /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BD9EE87E52C304844B9278F8E57A6145 /* EXFileSystem-dummy.m */; }; + 57D322CCECC40542E68BD6495990AA1F /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B29FAAA029FC1E4157B341D6A624A13 /* FBReactNativeSpec-dummy.m */; }; 57EA16615D9CD9D0C45DE091246065B3 /* FireAndForgetResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 095997D9882CD208B80CB6D5419C5172 /* FireAndForgetResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 5835A6EE119F67B3B5DDB92D53520B25 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = C30F4DA8650B821D69927FC3C47B368C /* EXHapticsModule.m */; }; + 5835A6EE119F67B3B5DDB92D53520B25 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 3277D934C5D6D06B2AD968387E738347 /* EXHapticsModule.m */; }; 58528DCA2CD999D4137C83D043A9FC8F /* FKTextSearchable.h in Headers */ = {isa = PBXBuildFile; fileRef = 95ECD0DE5D568B252D0B716DB0CC1872 /* FKTextSearchable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58A135D3A7C85E720C02F34E315BCBF0 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D6B86EE0471035A8A3457810B19E9CA /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58A43ACC1FFBCC2F3EA6A25797071D79 /* GULHeartbeatDateStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = A66D1EF142F4FBE3A1B7B2FE7DB0D4C3 /* GULHeartbeatDateStorage.m */; }; 58AEF2D987F14D4D2AF6D28C7F7F4CF7 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 0BF348AEB813B4920A2F3FCEB3BA6080 /* rescaler_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5915489BBAB3A2877B98136691FA963E /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4242A7899DB4A39CA35B05A1C266409E /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5915489BBAB3A2877B98136691FA963E /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D41ED878A5CB15D1F40CFFB4D90520D /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 592D531A0BCBADD41C6B8C1ED4C73EEF /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = C19A2135BBEED47FB1749374D067BA31 /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5967703126249D72DC6C94C045CEDDDA /* GDTCORUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = B4E3C86733FC37102F88F15AE9941EDB /* GDTCORUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5969152A1F121E75A747F661F97C1FA3 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = E6ACBAD632439F409068F8598984ACE9 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5969152A1F121E75A747F661F97C1FA3 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 941BE9107D69226EA419920CDD86FADD /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5990C386CFF4495D345DE4BD9B720B97 /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 43FE403BE04AC4009034336C80A9B3A1 /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; 59AB2E9847C52F6350C5CA42F64D9B4B /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 20B345804667E1356630DDD7D0F75706 /* SDWebImageDownloaderOperation.m */; }; - 59AFFBDA7A1CEAA4938A2897A836C114 /* UMPermissionsInterface-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FB827D3E661A96BF92BFE5C69281BF0 /* UMPermissionsInterface-dummy.m */; }; + 59AFFBDA7A1CEAA4938A2897A836C114 /* UMPermissionsInterface-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A8F8E09E4BC1F686F38F42378A9540F /* UMPermissionsInterface-dummy.m */; }; 59BCF23690D35E682AF7213B1AA8B121 /* GDTCORRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EC49410B85855BFCABB034DE12E77CC /* GDTCORRegistrar.m */; }; 59D2FF7D199E0FAEEA5D0C5C60C85760 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 75D41132E49B63006155DE35CD098F17 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59E39951CBDBBF3BE34F50771F0D63DA /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F15223809380E9E04498D8B990A790A9 /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59FA089B729EBF37634A4D344228514B /* RNFirebaseUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = CB92A840388D3EF7251E8F98F6D2AAB3 /* RNFirebaseUtil.m */; }; + 59E39951CBDBBF3BE34F50771F0D63DA /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FD835E3716F81D566E4681ED75AB1C75 /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59FA089B729EBF37634A4D344228514B /* RNFirebaseUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = EB31A99910B6FCD1EB13EDCB189A82E7 /* RNFirebaseUtil.m */; }; 5A2DF787817F7D1F598A859496117313 /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F9B69BBFFB0947546185F7519469C1F /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A350E37511AB19E6CF063A477BF81E8 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 79FB308682ED8F39C509C6FA263119A7 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A350E37511AB19E6CF063A477BF81E8 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = EE59CC08F54BCE62F1F1CCAF1DD64AAF /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5A4315CC7868A0AA71F72B6EB9DF3A8D /* HazptrThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 395E95C403AF67A9659CB016D77A3436 /* HazptrThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 5A5CD297BBC57D3E5C53437609953C82 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AD76653381D66158768E50C092B7044 /* RCTImageBlurUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5A6DE10F8372DDC647FF3AA6AFEDD5FA /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EAFFD70428079BCAC361B34C85BE3B6 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A5CD297BBC57D3E5C53437609953C82 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 848BD8BF055C6649D351A1A402184EE9 /* RCTImageBlurUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5A6DE10F8372DDC647FF3AA6AFEDD5FA /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E23F2BDB03D15F2F4E6950AEF753FA5 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5A8459CCC3BF00828D32BB4D35ABA743 /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B413219C8EFD22BCBABB018CCD1A790 /* SDWebImageDefine.m */; }; 5A89504301D62525F736D0050854E4CB /* SonarKitNetworkPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = B46E5E9F119798C5DE2B74EF13607D1E /* SonarKitNetworkPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AA306AC79340E81306DB638EB0F6B5C /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = 253DA86CD9850B20CA326647CF689F7E /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AA306AC79340E81306DB638EB0F6B5C /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = 59014AB8310FE69B8FAC4460318BA7FF /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5AB7883D6F7123FEE9DE354AF2FE9387 /* Atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E0085519BAEB9908A5E6217FD030B48 /* Atomic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AE8193588F9251CFF0BC1259587DC6F /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 50E59B9EDF6B2622F3A594660EB04AF5 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5AE8193588F9251CFF0BC1259587DC6F /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 53F6A46C79BC3E6E6368FC1EB8FC0CBF /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5AF92807EA677D3DE6A1F41612CB12FB /* FlipperKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BCC1163A19EEB4E4104E9F1E3AB8B8F /* FlipperKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B12AC89DB651FB7CF5A624F05E48A06 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = A90863DAF14AA25BBCFBE951F1520854 /* 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"; }; }; - 5B1FCCFA4BB7135E41DD10F990180597 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E0E9F3CEF59482A043F2E3150CAEA0E /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B4A65D10DEF39743F01781DD5DF6050 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DE6FE2B0EAF64393EAAF37AE268A59D /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B12AC89DB651FB7CF5A624F05E48A06 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 011822721445F5EF8F12EDA15D1F0A3C /* 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"; }; }; + 5B1FCCFA4BB7135E41DD10F990180597 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CDF7845C04C8AF8A4637E4E4D07A17C /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B4A65D10DEF39743F01781DD5DF6050 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = E7BAA5278A651C0127BD7239C38EBCE2 /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5B5E44100CB0A817A1A887A5D865E197 /* SanitizeThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A781FCABDE816936461B692A120A64E1 /* SanitizeThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 5B5E9DD45758905E15ADE6E6580E1694 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = E6445DD2681B0D31839C79B83EFB5FBC /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5B5EBC23448AA1E36B9E489003457385 /* ScopedEventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 35078CE922A0A92EB3D0F127D9DE23A2 /* ScopedEventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B74AD9EABDF35B29FC840BDC408B387 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = A23D607E7B3F516107A22AC845C14446 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B84A2CFF7CB8244429AE34C525F7A3B /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = B4E23666F6328BE78029301BD16FA1E3 /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5B74AD9EABDF35B29FC840BDC408B387 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = F3828857C44F267E0CE7E41BDDCCE8B3 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B84A2CFF7CB8244429AE34C525F7A3B /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 796BEFDC67F8C6DEF513F28C7BF7B185 /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5B8B332ECFF0056F7CEC66BD47604656 /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C508B25590A036A896571F6E1BECC91 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B9BEBCA57F0295256B52F2895B97331 /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 25CF7B2E403EAF3907627D3B8AC8CA0A /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BA023BC55024F646839261CB6544CED /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = C095144BC747280B07CA695F86A7471B /* BugsnagSessionFileStore.m */; }; - 5BBD3BF8F1D8BCE5424520F1C5F597A0 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 7139D5968A6AC023AF37F861DE93F83D /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BBF60294A35EABDD416CD49326D9A68 /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 42A510FC5C085CC40B04B6AB76649708 /* RNCWebView.m */; }; - 5BCC122BAE29ECBAEB136C7B886C7C8A /* RNFirebaseFirestoreCollectionReference.m in Sources */ = {isa = PBXBuildFile; fileRef = A49BFFF090944480DC816615C37D8111 /* RNFirebaseFirestoreCollectionReference.m */; }; + 5B9BEBCA57F0295256B52F2895B97331 /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = C70670E7F79F3ED32EA6E056421F79D9 /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BA023BC55024F646839261CB6544CED /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = DA982766DD37C11DFF161F7A01D7AB07 /* BugsnagSessionFileStore.m */; }; + 5BBD3BF8F1D8BCE5424520F1C5F597A0 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = AD401082CD9FCC9240C43986DF8B0F9C /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BBF60294A35EABDD416CD49326D9A68 /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 96DFC1D9065E01034B4C262FAD966984 /* RNCWebView.m */; }; + 5BCC122BAE29ECBAEB136C7B886C7C8A /* RNFirebaseFirestoreCollectionReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B2D19FE209E1A4918E70FF508FF8AF0 /* RNFirebaseFirestoreCollectionReference.m */; }; 5BE1E55B90CC535E7C3CF5EA357B3612 /* Base.h in Headers */ = {isa = PBXBuildFile; fileRef = 508931DD0D3167182E0C7EB5A34D206E /* Base.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C06E36CD574FBE8FCDF4DB23632E79F /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D6FD24549CFD1B0EDFFEDBE798C54C9 /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C06E36CD574FBE8FCDF4DB23632E79F /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = 606053613276185A680CD0D43DD70AAA /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5C1180DCDA66B2CC0EB7CA7EABA74DCD /* FIRInstallationsIIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D5AAED53C93242320D9C9745B18095E /* FIRInstallationsIIDStore.m */; }; - 5C32CD8A3B4E70301043B885EBBA1F69 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = ADAE76A88219B5296DA02CDD4ECB2FBA /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C635BB81BFDFB1ADD52B81A18A4445E /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 74AC6DFBD0003601B52F8DE3AF61BA14 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C32CD8A3B4E70301043B885EBBA1F69 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DA3557E7979A5896452ED048E1185BB /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C635BB81BFDFB1ADD52B81A18A4445E /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D7C9B295574DF5320A3402BEFD57B09A /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5C6B3EF91CF6927788129874C2A85DC4 /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = 99135951B134FDA8550CDFC21F381396 /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C73CA0113FF28D73B33DD995CB8DB9B /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = A4392652ED21B6B19AF66D94D815A783 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5CA6316BB302B36D6AE2B4A483F3EAB6 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 47CD048DB4EE75F4B79A8E53249E3012 /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C73CA0113FF28D73B33DD995CB8DB9B /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = E28F5BE343EDDBC6960DE3A38B8AC576 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5CA6316BB302B36D6AE2B4A483F3EAB6 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = A46BA424F67F2C0AE8433FE86DF04D66 /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5CCE3FB238F67F4A1AE513C4461B1463 /* RSocketClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 31A7478A71140105AF55B7AAF813239A /* RSocketClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5CEC8F544EB06DB67845490887ADB7EB /* SKHighlightOverlay.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3DA146C09B7AB2F2DCFD5F46F31DEB53 /* SKHighlightOverlay.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 5CF1B5B5750BCAEF93F745D0E4746629 /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 42D90568CF9B3800373795CB9CAD8F84 /* RCTImageShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5D1443CA14941EC385B1380A3F3FD2D8 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = F774838772BFA084164BBD15EB276FCC /* EXAVPlayerData.m */; }; + 5CF1B5B5750BCAEF93F745D0E4746629 /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 840CC2A7C24222B9BF0911C1D2204BE8 /* RCTImageShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5D1443CA14941EC385B1380A3F3FD2D8 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = E82FE94D3F4E5B342B904E3B7D181021 /* EXAVPlayerData.m */; }; 5D1C8EE105AF6A41604212C9FBEC1B04 /* TestObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 007F5CF050DF32FA07CC118BE233C455 /* TestObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D33C608DD5ADB443C60BBCE274EB8D2 /* RNCMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 03318E53C1FAE6FEF2FE77CC95DBFECF /* RNCMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D52EC77A0FD9DDCF15A0892BFF30724 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 06B2203029C3C3AFCDD5DD5318FFCC4F /* RNNotificationCenter.m */; }; + 5D33C608DD5ADB443C60BBCE274EB8D2 /* RNCMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 18B8F4B0EF9FC7F022CAAC681F57D833 /* RNCMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D52EC77A0FD9DDCF15A0892BFF30724 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1366DD549BDDEC657FDE238975488B40 /* RNNotificationCenter.m */; }; 5D85E4597A0EA4601AC058FC8A336266 /* FKUserDefaultsSwizzleUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 55B1C20B517E629D985B3B18258990B0 /* FKUserDefaultsSwizzleUtility.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 5D87A3F2F1AFF3C61BCCF12D3FFBB919 /* SocketOptionMap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B23D6FDF93DD1B322EDC854983FAE2D9 /* SocketOptionMap.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 5D94B0773D7A674CAED8241CC030A3B3 /* OpenSSLUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 633B4F7B73EE964A790E6CF1C2682615 /* OpenSSLUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5D94C85521F651CAF78D0774F739EFFE /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = BDBC260F9E107A8330F46C81000F6DFC /* config_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5DA1958CF4DAD67AEB1A26CA2FBBB7EB /* RNFirebaseAdMob.m in Sources */ = {isa = PBXBuildFile; fileRef = 18599074AEE17E3DE57927E34123B8E3 /* RNFirebaseAdMob.m */; }; + 5DA1958CF4DAD67AEB1A26CA2FBBB7EB /* RNFirebaseAdMob.m in Sources */ = {isa = PBXBuildFile; fileRef = 904690DC9DFF884531DBE890DBC3E7EC /* RNFirebaseAdMob.m */; }; 5DA4697BAFAFAA6BFEA13B36B76B57AE /* Libgen.h in Headers */ = {isa = PBXBuildFile; fileRef = 64F5D452DBBF0D16A4B835ADC487D71C /* Libgen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DC27AEDBD9E3EE36BF2FE1912926BAF /* RNCSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C048DC61E2D9E4D99D1D739E53B64635 /* RNCSafeAreaShadowView.m */; }; + 5DC27AEDBD9E3EE36BF2FE1912926BAF /* RNCSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 47800D3AF599458DC4ECF66DCCB1C520 /* RNCSafeAreaShadowView.m */; }; 5DCE172EC75208EC2A3189C915EBF678 /* EventBaseBackendBase.h in Headers */ = {isa = PBXBuildFile; fileRef = F1838048F02BA54E58AFEEEB54D23364 /* EventBaseBackendBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E833561B54208419B9E85618659A3AE /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7C4B351F8FB06F9DB07A3372945F2B68 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5E8F6FB0B98806087C46839D3C543998 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CDA9DB3C10EE2461F7D5386A7349FF11 /* EXVideoManager.m */; }; - 5EC0E201021C7D613D2D23C7D9072FC4 /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EFAFCF9D2A38BF4A31E5989EE8A6C1C /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E833561B54208419B9E85618659A3AE /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C6D59F279545F2743FE88CFCA871D1AA /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5E8F6FB0B98806087C46839D3C543998 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 24370042F20A0F4C7E9F6D80F56C50B5 /* EXVideoManager.m */; }; + 5EC0E201021C7D613D2D23C7D9072FC4 /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D27F7FEAC197A6C34B0DCF99A6CFA283 /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5EC68AC4CF4EA48990F8D1086394208B /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = DB016C82CC168E317D90FA49A48E576E /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5ED7D21591BE3434BAD27251B09FC2C4 /* ScheduledSingleObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = DD2F2A78ADD1936F72196CD6A8D00E5B /* ScheduledSingleObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EE007B3CAEB291063CB3BB2EFEF737E /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BC1449B2CD4362D1CA4046B1D8AA71C /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5EE007B3CAEB291063CB3BB2EFEF737E /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E9FFF1CA7142E826A297E690DB0A6A55 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5EEE9C81EFF578DA8F518B1C0AB9CB32 /* StampedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 53F1E50015EBD43CF4A44AC38C915425 /* StampedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5F099D8A9A2A8ED220D004516093119B /* GDTCORClock.m in Sources */ = {isa = PBXBuildFile; fileRef = AA91F6C11EC7314478FDE2E0B898D74D /* GDTCORClock.m */; }; - 5F191C5FEB9571699CFED133F0E444D1 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E851E6CD968E6A6AE221C1053E27E8F7 /* REACondNode.m */; }; + 5F191C5FEB9571699CFED133F0E444D1 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AC0B0AA52C26AC27B0F644ED1999263 /* REACondNode.m */; }; 5F2E203D0F81E6C57DAAE8CFAC56710B /* AsyncGeneratorShim.h in Headers */ = {isa = PBXBuildFile; fileRef = 47E81847F376B9ED13D4052F3DB0D23B /* AsyncGeneratorShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B7EDE79C53D1A0BFB62120926DA11087 /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F72C1EF68444D617C1AD2D5EF541DF1 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 248119582169AE2E14B8DB9AC79E8664 /* RCTNetworking.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5F73A1810FE06CEABFF159E5B86FEF71 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = BDFCA872F8F308FFFFC0DDA2B70D7B88 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F988B2A4A7D8078E0577D101940810B /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 89F39CC71B68E39ED4ADE43058483368 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5FB569FBD237B615CF14F490775C837F /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 87F5C92D04AA2E6A5BA2C09C2275A5C2 /* RCTAnimationUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5FBDE897F38FB994BBE94F564E24BDB2 /* RNFirebaseAdMobNativeExpressManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FFBC11ADF2C10BD3FF998B81FA7DDE3 /* RNFirebaseAdMobNativeExpressManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CB5A2CEB39ACDED198DE00257F3B307 /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F72C1EF68444D617C1AD2D5EF541DF1 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = A2C2BD6AFB03830F94794DF027E7A3D1 /* RCTNetworking.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5F73A1810FE06CEABFF159E5B86FEF71 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 18501B0BD0549B5BD1BA3E9EFA8D236D /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F988B2A4A7D8078E0577D101940810B /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 035F8EFB4D7C92664B02AD20AAA7BCB1 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5FB569FBD237B615CF14F490775C837F /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AAA61F995A9B04DA57EC50A762FC18F /* RCTAnimationUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5FBDE897F38FB994BBE94F564E24BDB2 /* RNFirebaseAdMobNativeExpressManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 81455D6D48979B05461A51E085D91314 /* RNFirebaseAdMobNativeExpressManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5FDFDE7CCBFFAA68D99152D78C02ED39 /* AtomicUtil-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FECA93BF616383B99E7EA634F594FB5F /* AtomicUtil-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5FF1ABE162C13243EEB4010193EC6C22 /* Combine-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = EE2470F180040A30D504B633183981B9 /* Combine-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 605639230346E944534ADED2B00E96E5 /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = EF5D4FE795206498890300707EF6CE4B /* GDTCCTNanopbHelpers.m */; }; 60A86E0DA64B94C3016CED19C96C0E66 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 993310A8BA742DA67AC8025E88E94E33 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; 60ACF469233CA22469EEC756ECDB055D /* LifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 068D3645C0B2E35542B23A98DBDC265D /* LifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60CE5C3D3A6584BB97C2DF7A9A3BDD9C /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = DE5CDE7B990E4422CA317D651285C02B /* BSG_KSCrashC.c */; }; - 60E3AA9CFA4C79047B61B69E4B1F9648 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 574D7400D4FA4995E1CA19A91291CB58 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60FFD2D922B804E20A11302D5A3AE607 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 833088975D18E2C0CDDAFC698D9B6EE1 /* RNImageCropPicker-dummy.m */; }; - 611EF16AF39B7C48DEEB1C051D09F099 /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AC56F9DA9CF3A8DD38C1913E720E0D7 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6145080A25BD222CC71B172FFAC2218C /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 78D642BD074ECBCE98D84E1D1F747F5C /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60CE5C3D3A6584BB97C2DF7A9A3BDD9C /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = 4457043744BE9229F5CA40B3CF45C1EC /* BSG_KSCrashC.c */; }; + 60E3AA9CFA4C79047B61B69E4B1F9648 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D7B27D4446D3FBF19ABF958FBD4321B /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60FFD2D922B804E20A11302D5A3AE607 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B3878F5EA9C5FEAE41256E0F054135FD /* RNImageCropPicker-dummy.m */; }; + 611EF16AF39B7C48DEEB1C051D09F099 /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F9315A5C855D9B9CD1B0B17F99FF0A24 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6145080A25BD222CC71B172FFAC2218C /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = C509DE986746D706E0B1ED337AD462CC /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 61475BE3E93F74078F49B9CCA07019B8 /* Stdio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E53E535B0D7E94210A940AAFB705BCEC /* Stdio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 61623E33745D2D46C2CA9D9EF256F2C9 /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DB8EEFC2865862922C0F3D62D40909BE /* RCTValueAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 61623E33745D2D46C2CA9D9EF256F2C9 /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 999F8AF489FF8C4BAC572DC4F3BC0F59 /* RCTValueAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 616F99E58EC3860AD362B2DC0C67277C /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = D4EBF582A50CDBB1D77A0DD2EAD9213E /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; 61728BB54421812F931FBCB7B4FF2BE4 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FD101C730304830BC97FC910A7DB082 /* FileUtil.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 617530231FB583E62F59AFF636820064 /* SanitizeLeak.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 98E3827DA60F55DF0ED6789CD7C94599 /* SanitizeLeak.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 6180AC7AB06E1D1D6E01944FA4CFE5C8 /* ExecutionObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 68B4093DAE4627388150890D8FF25FA3 /* ExecutionObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 618BC8EEE2DCD6EF77E27F834D5B84AB /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 994A71C4449C02301B04DA85D8A982B1 /* EXPermissions-dummy.m */; }; + 618BC8EEE2DCD6EF77E27F834D5B84AB /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0378FA167F5EA4581FEF06DDD52E2799 /* EXPermissions-dummy.m */; }; 61945E2D534282269C85FC62CD40BF23 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = ACDBF46C9C94D75065ED86ABAEE2A5A1 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 619E758999F00A244BBD89AE38C1C8DF /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C315F99CBFABCC17238E3253EA2F661 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61B267925A8A1ECCAA88A2B69131EAF7 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A86B606D84FC5918002098DE6846840 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 619E758999F00A244BBD89AE38C1C8DF /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 28AB3075885ECF649C0F95837736FCCD /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61B267925A8A1ECCAA88A2B69131EAF7 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 77FDF60D10456AE4B6F9A44200B58FC5 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 621D406A7D59BDA14F904CD4B069B21B /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EF308BA1672296F22BBDE80801857F1 /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6238678941BD031252A3C85E53C82C8E /* Sched.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9306EE62AD39ADA40650280B3F6BB8A /* Sched.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 623FC295B29631DF73E03BC69E36032B /* RNFirebaseFirestore.m in Sources */ = {isa = PBXBuildFile; fileRef = A22165C603CF86BBA62AFC8C08B2D7EB /* RNFirebaseFirestore.m */; }; + 623FC295B29631DF73E03BC69E36032B /* RNFirebaseFirestore.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B5EBF120794817293BA6F5FB77BBF83 /* RNFirebaseFirestore.m */; }; 6250372D9758B2074CD9CC7B09ECDFA2 /* SKNamed.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5491F32F8F60ED50CE3102C164314364 /* SKNamed.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 625FB1A1A50F531C209F5950D7FF8475 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = F08851DA08DD037434F74B51751E3EA1 /* alphai_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 626C258D118CB98693D4581066B18804 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = C0F2679A5E0931013FA662954ED431F9 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 626C258D118CB98693D4581066B18804 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6FCCCC1ABBD785F5600AE1A93D645290 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 628C6483159FDCF38407770F1ACE903B /* KeepaliveTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A2216873BA90E168C6F587B532F1C32 /* KeepaliveTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62AA89539DA1AA90B5F53B6A1CFCB024 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C821B113E261AE5237AE0BEC3E208B7 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6331F86DEDD565FF96DBD38F0C427C20 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = C7735874BBB2AF5626E4052A4BD2B566 /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 634B6D66C8BC61A3D3EA8CA7EFF968EA /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 14CC47269B6761A5EA09A8775959799D /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6362DF49BD1FDC17099CCD40DE28B2CF /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = EEEF1FEF57923E087FF4D9233211B421 /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63854BF7B7FBBA60157A488179072BD2 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E739FFFAF59E0686A65318682F53F97 /* BSG_KSSysCtl.c */; }; + 62AA89539DA1AA90B5F53B6A1CFCB024 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = C73A341574CDB13BF48F98C515AE8CF5 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6331F86DEDD565FF96DBD38F0C427C20 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 876C703A1900CBED99237E0C91DC930E /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 634B6D66C8BC61A3D3EA8CA7EFF968EA /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = DE2B13FD4F4DE3C9705E95D588295E09 /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6362DF49BD1FDC17099CCD40DE28B2CF /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = 25B5BF316F09B07498DADC07B47A7B19 /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63854BF7B7FBBA60157A488179072BD2 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 67E712F6D12B287DB7D25638D492FF32 /* BSG_KSSysCtl.c */; }; 63CC635B37FED8C7DEF027CB5462EA7B /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = C4FF0359587A94748FB7CE8936B901FB /* bit_reader_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 640A5B859D78BF300F772830B148CF74 /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 57BDF67B988839CC89CBE458C879E6B6 /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 640D5D2F39A0A64989F2920F9FB0E055 /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = DE7F6277315A36A1D833DE0C44B3E033 /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 640D5D2F39A0A64989F2920F9FB0E055 /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 0507D6DE5F3C35DC7C375FC338FF4B78 /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64352F81329BEC21DFF10C000BE8640A /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = D6BC4EB89FB043565DB890070B5916CA /* SDWebImageDownloaderRequestModifier.m */; }; 6447709A38CB47D0D4B539C0DFF9F728 /* GULSceneDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = D017CF786AC96A572897D8DBCEE96977 /* GULSceneDelegateSwizzler.m */; }; 644DDB8CB93BF7067201BB26F2D53D10 /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD037DC493AB6997B35B7E803E850865 /* SerialExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 6450E79F5C6AFB7273CB9D4497C68DB1 /* ResumeIdentificationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D2E783E2A548CA0579D5CE081E9DD3E /* ResumeIdentificationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 648C1EE6D41D617836426E185AC5AAED /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = A58D33408D0EB2921512E467A46DDDF7 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 649188D94444AFE72F5C875C73621929 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 27CE5F38E7E2C21F4A1C2ADC04919A91 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 648C1EE6D41D617836426E185AC5AAED /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = C776D36B4550491D6AA0BA85FE98693B /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 649188D94444AFE72F5C875C73621929 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 267E5E85FF9CB701B4B72B6906391986 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64C08A1A299F65ACC045C824A64A0DCD /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F99774561F4F74FC925E3F5E9EBDD5C /* Time.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 64CE86C677FE58819125DF1CF00FD92D /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = E0416A48BB81A3B7DCD63873C246F10D /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64CF43A068C98B02A97EC497AD319A30 /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = AB19C2DA349B77375CF0B72E4B2AB3EB /* BSG_KSMach_x86_64.c */; }; + 64CE86C677FE58819125DF1CF00FD92D /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 496AD1B8FEBB2277DA651398AA927A67 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64CF43A068C98B02A97EC497AD319A30 /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = B36102AD4F40C2FB149D0B74592E2CFC /* BSG_KSMach_x86_64.c */; }; 64D7CA904E08C542214D6273B49A823C /* IStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F809D0DCD60269E2E7050B1B4449D77 /* IStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64E791612A7D27AE1C4409A981341CBE /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 83E712003D06246B5467078B593C4363 /* lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 64E83E53B7F40F2CC0A0CF7BC3C8A43C /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 81E59C616C755265CF978E5E118A66CE /* enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 64E9035391D61BFA55BD23B151AD07BB /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 469614418673ECF5A39C6A40E4EAE2F4 /* RNDateTimePickerManager.m */; }; - 650233BB7B2F93FF3BC7F54341C6E361 /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B0F1967BFB375D4506E99B8131B2519 /* 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"; }; }; - 6502E38CB30B4C5057ED72B199AC364C /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FA94BFB94A42E252349264828408B209 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64E9035391D61BFA55BD23B151AD07BB /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 830F4EF9FDF73517E09ACF76EFA248B8 /* RNDateTimePickerManager.m */; }; + 650233BB7B2F93FF3BC7F54341C6E361 /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F79F850B7497FD46240FFEC17889F85 /* 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"; }; }; + 6502E38CB30B4C5057ED72B199AC364C /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3401555266DE1359368A0A813856817B /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6504940F5EB894DE69D5B2CF0FB49455 /* Rcu-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 70978B3A123157C126BAFE83BDBFF4A3 /* Rcu-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6532B3DADCD47A8B33D8A6B7DD0F81CE /* UIColor+SKSonarValueCoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 79E7D2DDD63801B91D88DEA078970414 /* UIColor+SKSonarValueCoder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 653882A69EAFD0F4396408BEF954FFE1 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C41708280F44C5ABDFC17D711D57CD8 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 653882A69EAFD0F4396408BEF954FFE1 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C97A0654B68840BC3AB9EBC96E9681D2 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6555EE2AE374EE32F457F03D348ED0A3 /* GDTCORConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = B7BCA931BFCBC5D7CAE2878B4D6FF022 /* GDTCORConsoleLogger.m */; }; 656610BEFEC50D7F52DD373712B20471 /* SKInvalidation.m in Sources */ = {isa = PBXBuildFile; fileRef = 05E10D9D717D3FF1D79290CB9A54BD38 /* SKInvalidation.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 65678895444B4CA89B9031CB34EFE935 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EA9D90BC42F1BB4D0B77A103B9C3E35B /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 65678895444B4CA89B9031CB34EFE935 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 03C1C434573C40C2233BE5AFE0DE43FD /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 657C87230A2934AED9C6AD06591F370A /* PublishProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 64CFFDEDD3C1D8F8CCAC0F4DF2509B1C /* PublishProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6584F1A61DBB0A4BB4BD9EA418FB70E6 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 2950B3C674F730AC60BB3286C66128E2 /* quant_levels_dec_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 65CA61934FB03CF180290DE31AF56EF4 /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = A86A3C6E957BCDF5D9F50C3BA611EFEA /* enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 65CB92D29B76DFDEC572A3AAE0564298 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = A11FDACF933BFC48C7F25902DCD57908 /* encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65E65D50285248E32BCA727175A9037B /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B72894A5002A1DEC2A532BEE053A8FC /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65EC48B796CD30DB09C4EAAFE113C2AC /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E701E05D9B792A11A62162DE7FBAB43 /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65F20C115C7320F488D580742E04DC93 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = A0127FEFFEA4DAB715DA8E9814B88B22 /* RNCSafeAreaView.m */; }; + 65F20C115C7320F488D580742E04DC93 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = B3434BCB53404E1A7DBD7A6ACCECCEEB /* RNCSafeAreaView.m */; }; 65FED0532D4CBEAD6563E7214A54768B /* SKTouch.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EC9872EC0E581F88E2A0E0207C7E270 /* SKTouch.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6627CD8BA3B27E0CB0BA0E912C78BE51 /* GDTCORTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 08F56AAB8A1F45A88DEF4D9DBE234CED /* GDTCORTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6664EF6453923DE49024DB69641F8109 /* FrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = AE15D1EDBC3474CB8B2033077058368D /* FrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 666F347B84B23221BC4D76B0BB3D521F /* RNFirebaseFirestoreCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = B33E2DA487D6E6682DCF63E4E5299C0A /* RNFirebaseFirestoreCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 666F347B84B23221BC4D76B0BB3D521F /* RNFirebaseFirestoreCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EEA1C3C779C1DCCD15C28A45646777F /* RNFirebaseFirestoreCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; 66811E431F72A69005364E0433281D70 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 4277DB60D1EC8D61D0D72FA1F14F3D5D /* yuv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66821B19957B6374B817C91E73C9D601 /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D0EC160F40518C6771B030C1BB9FE75 /* EXPermissions.m */; }; + 66821B19957B6374B817C91E73C9D601 /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 3823CA8454E02634998A9FF85092F39E /* EXPermissions.m */; }; 66A03981890D9863F11B9D8D04A07AA2 /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = C2CEC68A27993B3355FC318D6B1EA3E6 /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66C5C3110649460A466AD2F6AFAA171C /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D9953979307451128D4E556D376430A /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66D0421E4DDA33160130778834F66E37 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E63E99A20695BB9EE32555A25813A6 /* RNLocalize-dummy.m */; }; - 66D6E62D450BACF145A456166BB45C2B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = DDD9A8FF0995E1241DCED980BF3FAA61 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66EDFE25C763A6E147A5B8AEC67A3449 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = FEDCC95D19CBA4FE7AA7D755C04571E0 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66C5C3110649460A466AD2F6AFAA171C /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ADA589FE173707FA8149C6561C74CE09 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66D0421E4DDA33160130778834F66E37 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 80A42418E28C748EC88A406FAC9D3FC5 /* RNLocalize-dummy.m */; }; + 66D6E62D450BACF145A456166BB45C2B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = E070F59768430E1F763F4FEA905C30C9 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66EDFE25C763A6E147A5B8AEC67A3449 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 67FADDD839A7E8577AEACE3D0B1FE5E2 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 671CCCC4FA52C454C17316202BD0F386 /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = A2F36FC3A058C8D9905595D65EF6FC03 /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 67213F11F20DF2020A3F928D6B627E80 /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DBDD8C26B34485DB619FCD221D039F0 /* SDImageAssetManager.m */; }; 67278E9F64F6827638B4D52D8CF71F42 /* RSKTouchView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C493BCB0409DB9EDD6467CACD5605EB /* RSKTouchView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 67304F639591EAB43001263B341483A1 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E422E47E3BB57CAB5AC2E7F81C8B6A9 /* rescaler_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 6730E006B7764F221BB7F81F7DB749F0 /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EFA7606795FDB5888AFEE892A79A018F /* PromisesObjC-dummy.m */; }; 673967B0EE7ECC4BCDC0A751DC0A828F /* FiberIOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 72976667D86BECB0A3BC6D852C72BC66 /* FiberIOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 673BB15EBF0B152DD8D3B4CC04E13201 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 8275006D7171489B1B0923F4BB8DBE4F /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 673BB15EBF0B152DD8D3B4CC04E13201 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = AF9DD0AD96DBE1ABE4849BA155EA6D3A /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 674B78DEE8CC679498E5DE48188B81FA /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = FCADA8566E47EFBBC1E5CC1591D6B28E /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6757FE0A1CC1ADCC38E0BBDF5BE3C2A8 /* TimedDrivableExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D63835C447BE94F7312B8F41FCF8F9E /* TimedDrivableExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 675BA275D6D0834300AD7B9C224124CF /* CheckedMath.h in Headers */ = {isa = PBXBuildFile; fileRef = A4DBE32307681C219297FF5F98951B89 /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67679FD66E5E1E1F6427743215A9BFDA /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = 750F7E062D511B9213745A1ED368C68E /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67679FD66E5E1E1F6427743215A9BFDA /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = AD09A55A54F460A5D3FF0E8894246C47 /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; 677978C384BC8E68F54A53338361E3C2 /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 8080A2E131398B39B00CD2B495B05C92 /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 677A083618AF312CC3CDA60EFA05BCB8 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = E4E34D60E16609B4903F2C82BFAC7361 /* BugsnagSink.m */; }; - 67A39A15971E99E5454C253E2080289C /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = CDD786035D3470DAC419646B3A0A7E2F /* BSG_KSDynamicLinker.c */; }; - 67BDDCE0EF521A4394DD403549BC2986 /* EXImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 21FC3F7AD7A415BCEC9E446692D850B0 /* EXImageLoader.m */; }; + 677A083618AF312CC3CDA60EFA05BCB8 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = 666EF0C65CE9B1844BC8CF5A6A3DA640 /* BugsnagSink.m */; }; + 67A39A15971E99E5454C253E2080289C /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = 7BC75D3BC751DD5FF51D3C6DA359C679 /* BSG_KSDynamicLinker.c */; }; + 67BDDCE0EF521A4394DD403549BC2986 /* EXImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = E67DC662F60E63C9E493F499FA11A267 /* EXImageLoader.m */; }; 67F1415FB3DD965C1871B2A2CB74C8FC /* GlobalThreadPoolList.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AE17162C64E027C473100BD6B2C05B4 /* GlobalThreadPoolList.h */; settings = {ATTRIBUTES = (Project, ); }; }; 67F172904F7959C4715F3CFE9B1B4B10 /* FIRInstallations.m in Sources */ = {isa = PBXBuildFile; fileRef = CFEB0A20D4BC133A0888BF8E2F7516EE /* FIRInstallations.m */; }; 68169597FBE0AB5B54FC67E15019A84C /* SKObjectHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F0F4B7419A0A8797B365B553C26DDF5 /* SKObjectHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68305A7D8906C121D6E084CF228B4598 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F47506F7D233C846DE592A73AA5D7A2 /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68305A7D8906C121D6E084CF228B4598 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 952B42CF2EC65DCF5379CF006C34718D /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6871111D26354F50F583D2187D9397E6 /* Libgen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5539AD89AEA9861EF1B99D011E04E6CF /* Libgen.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 689CA5357FD9275EE7FC85FBC8F66370 /* GMock.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B25D029817EA978A309499F929477CB /* GMock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68A75E9D1078739344B33B3737E61D48 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 45E343BF066A1B734C22DAC9C8A99AFF /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68B32248A4087D4D903A357B01BF8738 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 852DDB57329071FE7E417C84D72D8048 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68C7196D1EE46E00BBE92E8A229915CE /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 69735FAF2EE9D19F875455375BED5E67 /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68A75E9D1078739344B33B3737E61D48 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 139B202B58505FC6F38C0182D1BF7807 /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68B32248A4087D4D903A357B01BF8738 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = D375FF4A5C3CCECD3FF8C390972806C4 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68C7196D1EE46E00BBE92E8A229915CE /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 49D6583A05D6F61B465A7E3328A8A728 /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 68D2769B6ADE197D4C3196196FEB0412 /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E54644174B74406C94D5183063CF47C1 /* 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"; }; }; 68E14DF5295CA73DF30819A5D35C0D12 /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = AACE10BCD9204EF7D1721622F2974945 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68FA08AFB0147FC1574CEF32F3C4695F /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 05FD565D63FF14AEE82757A428C2A6B2 /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68FC649D07E74F02849E2344498C1E39 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A0F368092D9D7E5A6F338E6BFE5660E /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68FA08AFB0147FC1574CEF32F3C4695F /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B7E866039B0D15406931BCBD123C69B /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68FC649D07E74F02849E2344498C1E39 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 0662549B01092092E7A0143898E914CB /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6901050EF0902C7A013436C58A9B248F /* SysFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8ED78B5FC4AF458214116575D5FD08D2 /* SysFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 69263344AC2EEDC6526EEE47861A35BE /* FlipperCppBridgingResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = BA3CF7A144EF12EBE95954FC10ED1798 /* FlipperCppBridgingResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 69524FD0848A58F018B7677B110D7BCF /* GDTCORReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E9FC9295BF6894CA675511B28B16BB62 /* GDTCORReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1430,10 +1425,10 @@ 6954C7E327E3C06A6AA626163C0C4B69 /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C3C07C9519DAD395D84577B2349F5FD /* FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; 69C4123A15898007F90AC7D2B778DD73 /* GDTCORDataFuture.m in Sources */ = {isa = PBXBuildFile; fileRef = CB9684689C0C8B9E1517F55131E107D2 /* GDTCORDataFuture.m */; }; 69E5F7365CB3D10FF7898098C3146A99 /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = 907ED2C32B312E66F3380CD86D0C2028 /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69F787055B26C7E2B61B5B9B80F3C272 /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = C1B8302E6144ACBFD42B7B1CC9BE1127 /* BSG_KSMach_Arm64.c */; }; + 69F787055B26C7E2B61B5B9B80F3C272 /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = CBAF7AE2FF13513D93C2F5EDFB8F8EDF /* BSG_KSMach_Arm64.c */; }; 69FEE4B83120F441AB20A039513A796E /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BC003F5EF2439B669F24315D544E30A /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A03046C71CF85B2E59E2FBEFA35C326 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FF6933A8827E414F03FE665F8F86110A /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A47866FA2B12335E271AF455D52025E /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D8A7791A3B0A0EEDC802FFFE8A8DA8F /* BSG_KSCrash.m */; }; + 6A03046C71CF85B2E59E2FBEFA35C326 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DEADEAD6C7CCD67A1AE3FC7EE30B7B02 /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A47866FA2B12335E271AF455D52025E /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E1AB60B55766D82096D15603B9E4252 /* BSG_KSCrash.m */; }; 6A6811BCCAFE9B118E3913633F9D1A9D /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 434DD67F0977965E950CE7EE6FF128BE /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6A789FEDD6D65DEB0888A4AB486DB224 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = E421CDD78CFBC69897AB99248C9DE3CC /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; 6A7BB4319F8D74B5D1D1C1D8FEA3C588 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = D8FD6B2BE2BFC5E7D9B2B10CD7DB9210 /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1444,8 +1439,8 @@ 6AF606892AF0C31C6F0EADDA8900C803 /* FKUserDefaultsSwizzleUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = AE56093E9078A473770ECE86FFE0A77D /* FKUserDefaultsSwizzleUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6B20F0EEC49A5600388DD9F9EE9CA2D1 /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = BA9A549EA28C581B319D3B66ADBA9A9E /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6B217CCE28CC0B8DA7822706B41E3E8C /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = DF4E5CD7212197F9EB85998AB69C6321 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B257CAC5E2C34DDAF304C790E898733 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 403F69E50B9F50E302A25797738D2E04 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B2A4C18AEA7A928A2E33A7B5C6BB708 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = 99FCA9864B72846B0670BFF06C050B38 /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B257CAC5E2C34DDAF304C790E898733 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = B0EDF3C69E161A7C793F6DF64F355104 /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B2A4C18AEA7A928A2E33A7B5C6BB708 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B03AB67B2358D17DF310464355CC54F /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6B2C45537C87B11EF65E69E9F333F4F4 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 80944A65FBF34AE80A6FEBF65E9493E2 /* SDImageGIFCoder.m */; }; 6B67B6200914575EE45FB7C1F2A18716 /* Flowables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB67F4FA9C283AF5469880D9B3CB4A1A /* Flowables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 6B6C5353B590B5F7407E42D993C98BCD /* Observer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A0A850F9CE40FFD2FE85F81A1CFA6A9 /* Observer.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1454,79 +1449,79 @@ 6BB0A0E40EDC7AB4948869DCFB90D4E2 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = 57DCDD7BF6C1987F005B2362584030CA /* muxi.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6BEC4D1F3B47EAED77B9E07F0EA70256 /* GDTCOREvent_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C3F7DFD6177F24AA0AEF0B329765F934 /* GDTCOREvent_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6BF37FE9E8ABB36E08295C0B612C29B0 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 6960F072A24C584FEC6810FFC1519A2C /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BFEA5716AA863598AB805E81B5BFE45 /* RNFirebaseEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = AC58807FCD479A6F2650B746BB4FBFFD /* RNFirebaseEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BFEA5716AA863598AB805E81B5BFE45 /* RNFirebaseEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = F9CF41B54E333B76EC739A081A224523 /* RNFirebaseEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C1BF50C54FFCDABA052C0D60E4AA1CB /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 70687A480EF3D6C11ABA886F780E9520 /* quant_levels_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C24EBB7821ECE451CC18A7AD9F1C368 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = DE249746A99AC56A7CA87BF98C330888 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C293AAE8A665126DB65576FB61F2C2E /* NativeExpressComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 57FB57EB684658B26EF51C068CED7380 /* NativeExpressComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C293AAE8A665126DB65576FB61F2C2E /* NativeExpressComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 114CA4B0EE10EFCB1E55FB09D09C1858 /* NativeExpressComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C2AEAC146ADE8FD2C8F6FC813463A9F /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = A5BB2FFFE6D3DB392ECC57F154030858 /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C70DA166CC635856E26D25356B5A6FD /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DDEAE4889C0A5104DCA803F35AC36AB /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C848B57000ECB333F2141484B5061F8 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 50601530BA179B2CA3FA469BF548DC57 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C9CA546126A96EBB44E0EB01CA0C597 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = FCD5362D68B85E6601A2FED4F6E7500B /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CA4114F7B18865EB558884C622ECAA5 /* RCTView+SafeAreaCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FD2C5A75B26AE120DA1A0C22A771FF4 /* RCTView+SafeAreaCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CE4D23FE50DC0994EFB182F5FE54B87 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FE95B0AD41CD2DC937FCB63FB377516 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CED95887EBD2CF89095B6C5EDD7AA82 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = DC27A0095FF48D6786C3E980C983CEE5 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CFCAB7E767E1BBE28175576FD06FC09 /* RCTLinkingPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 25A6614C17B736AC115629DC8B42E299 /* RCTLinkingPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D16844C8F96A2DD292833AA84CD155F /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 26F21C4F043E602684FCF1300BDFC8F7 /* REAPropsNode.m */; }; + 6C848B57000ECB333F2141484B5061F8 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 664FA1123AA2DC6EA9D0BCD12ADCAB11 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C9CA546126A96EBB44E0EB01CA0C597 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CE7F533680E4C4799B9233BBAB2301E /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CA4114F7B18865EB558884C622ECAA5 /* RCTView+SafeAreaCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A2F7764279182700E1E604994C4043 /* RCTView+SafeAreaCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CE4D23FE50DC0994EFB182F5FE54B87 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 82AEF35996658F64D84BC88F7E0C1F38 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CED95887EBD2CF89095B6C5EDD7AA82 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3722D48DE6A5E5A23A9C0ECDCB093EEA /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CFCAB7E767E1BBE28175576FD06FC09 /* RCTLinkingPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B0320E6CC654DDB814551FBE9FEA448 /* RCTLinkingPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D16844C8F96A2DD292833AA84CD155F /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D528A1AF7A4D024C74AE09DBEB4C5EC /* REAPropsNode.m */; }; 6D3150889C73DAD4E43A477FE1892785 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 0AC825A8C701662BD2D24245FBA55E1B /* README.md */; }; - 6D35AB896CC748B13AC4B3C3972EE181 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 51A6B5727D6DBC4C0896F3F90277D0E3 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D35AB896CC748B13AC4B3C3972EE181 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B9821A8D396FA2AC342565F28DFACD5 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6D72A391A5E8B931A40E0EEE1122CE92 /* FIRInstallationsStoredItem.m in Sources */ = {isa = PBXBuildFile; fileRef = F73FA56BEADCF3C038B8E74CF684643B /* FIRInstallationsStoredItem.m */; }; - 6D8104F1766905FA5D32740A209F2A31 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 50F4F2490052CAE69DE71527843602A5 /* READebugNode.m */; }; + 6D8104F1766905FA5D32740A209F2A31 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 32B49D35E505BA8C3BE0CEA015D67415 /* READebugNode.m */; }; 6D904A25444A6BB07820E09B40280DB4 /* Dirent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8EA79EEAAB7293A0804326F36B9AC889 /* Dirent.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 6DB135CE25243C7A87B72013CF246917 /* EXKeepAwake.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B118C388E08FB135AF5C4AF3FBFB753 /* EXKeepAwake.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DB976F647E681AB06E97EDB58F98C41 /* RNCMaskedView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DFBFB9EE3E0BC111F644FFD270312695 /* RNCMaskedView-dummy.m */; }; + 6DB135CE25243C7A87B72013CF246917 /* EXKeepAwake.h in Headers */ = {isa = PBXBuildFile; fileRef = 44861378DF4BF5BD8EBBE0C54AF388D4 /* EXKeepAwake.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DB976F647E681AB06E97EDB58F98C41 /* RNCMaskedView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 38AEF6ACC52C9691E3BB584B952EB817 /* RNCMaskedView-dummy.m */; }; 6DCD55BA285E5153356D0FB6617AF4D0 /* FlowableObserveOnOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B38136BE7F825000980BF45DD6B49CD /* FlowableObserveOnOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6E0920954B6E212D8FED37C2A25D5CD1 /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = EE260BD6913FE04982DD42B73126D681 /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6EB2103944BC372A4EE0748B94A2BCA4 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EE8986FCA597D38BB69720F4708A824 /* KeyboardTrackingViewManager.m */; }; - 6EC20FB3628ED3D4DA15AEE1BCCFA383 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = E86A1500A927E39874D8337AFE45667D /* UMViewManagerAdapterClassesRegistry.m */; }; - 6ECC55AD73F0F5815E451EAD8D434D0D /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 50E233B1E5177E8DA53E63374F960DDF /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6EDB4E90EFB2396C768AA9ECB68B9E98 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C8F1E1F6089D261272D8D03F1ED97CF /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F07790D881EFAD49AA9EFE75FADA672 /* RCTFileReaderModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 672661EC0765FB80ED5E2083213F3A98 /* RCTFileReaderModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 6F1F0DE59B8D85D5C5BBE4827591AFE6 /* RNFirebaseUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A958F3EA31FFEE89B58963F03BF74DF /* RNFirebaseUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EB2103944BC372A4EE0748B94A2BCA4 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 60E65A93CB98B25001A6651D19F6D25D /* KeyboardTrackingViewManager.m */; }; + 6EC20FB3628ED3D4DA15AEE1BCCFA383 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 13770FDD6A9D293A8769FDA90C6FF8C1 /* UMViewManagerAdapterClassesRegistry.m */; }; + 6ECC55AD73F0F5815E451EAD8D434D0D /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 40AC2AC3B6A4FC0AB286F040709123FE /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EDB4E90EFB2396C768AA9ECB68B9E98 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = DCBEA93901E0F18536C3154CDBDE4456 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F07790D881EFAD49AA9EFE75FADA672 /* RCTFileReaderModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = F93691C416830228EA4E922220E4DFDA /* RCTFileReaderModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 6F1F0DE59B8D85D5C5BBE4827591AFE6 /* RNFirebaseUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 70094C1F0EBBD4C09B6B8BF8E0286FF5 /* RNFirebaseUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6F55D5181CC9A51E052914C9FB3FE77F /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F0F42D8DE9C65D239BCC5002B2017DB /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6F88D197CC1AA3E0B50D93FD5F7CF071 /* Future.h in Headers */ = {isa = PBXBuildFile; fileRef = A57941512BEF6D020A629A9322962054 /* Future.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FADD2923098EDB7083BACF1DF28880E /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F74F63D4500638E176854142E804CF0 /* EXWebBrowser-dummy.m */; }; + 6FADD2923098EDB7083BACF1DF28880E /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C30B923B64B40ABD4B468A3ABCACF1C0 /* EXWebBrowser-dummy.m */; }; 6FB0A78F16C8DC9FCA25121E22A34AD5 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C1C9E4FC69D6D477AE135711492DE88 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6FB624CE84ABA6F5B472A098FD3B96CB /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 438B1DE0E62A8B0F75F6556F9D3BAB54 /* iterator_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 6FBDDAF47F6FB7758B11DD8F5B8B3436 /* ThreadedExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5222202571D23C90EC14FF4444E812AD /* ThreadedExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 6FC607CC2D020D816400CAFCFFF7288B /* PriorityUnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E26711C9C0DBFA835B5B74E622BC253 /* PriorityUnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FFF1148634D9472933210CBFC2E6E65 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F8248CD3ADC3F5F6091D2CFEEDCBC10E /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FFF1148634D9472933210CBFC2E6E65 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A03476F89471FF9FB363B50C696B367 /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7003449F5AD5ED5357D584E2C927D1C9 /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 40CD0F0863C85C21A8217DBF0AC3C4D0 /* filters_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 701656AAE9EA2EB14ACF8B21B996906B /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2631ADD27366017C1CF5E6C4B7E68F6F /* RCTCustomInputController.m */; }; - 7024078DAC57D90432E6111E82E7BC2B /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = 8DF9F18D426A2953F9EBA4E425050B81 /* BSG_KSCrashSentry_User.c */; }; + 701656AAE9EA2EB14ACF8B21B996906B /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = EFE19630C364FB0847B192FDB12D4585 /* RCTCustomInputController.m */; }; + 7024078DAC57D90432E6111E82E7BC2B /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = 94789ADB65A3901F0272A7035F8A12E1 /* BSG_KSCrashSentry_User.c */; }; 70499203E2E4E13465AA6BA667887CC1 /* GlobalShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = B7D113CE1DC9A37F7B085B0ECA42F75B /* GlobalShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7051713F98CC30823562EB071DC39C96 /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = AD3DAF7158F5DEC8FF77922EB11427C0 /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 707B2CC24985C389209CE40429E62D49 /* FIRInstallationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = FB1411CF080F2B693F14589EE28CCF08 /* FIRInstallationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70917AA85229371846B2BA9C6982B2D5 /* RCTRedBoxSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = D0B19BB1EEF8E5AA0124189F290A8861 /* RCTRedBoxSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 70917AA85229371846B2BA9C6982B2D5 /* RCTRedBoxSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CE21B72017F351B06D99418F3998EEE /* RCTRedBoxSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 70A55701F794D3275F5989C1F4028042 /* FlipperStep.h in Headers */ = {isa = PBXBuildFile; fileRef = F7B4A3D1B52ECDFF9E7A674301370271 /* FlipperStep.h */; settings = {ATTRIBUTES = (Project, ); }; }; 70B22AAE6D8044176F9BAFA0F2511167 /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 34E4C5FF003511FCD5A7F6A2752F1FA7 /* SDFileAttributeHelper.m */; }; 70C947372918C45265E8AA6243FAE044 /* StreamFragmentAccumulator.h in Headers */ = {isa = PBXBuildFile; fileRef = 33B3D54191A1B4DD4747CFE7113B08E6 /* StreamFragmentAccumulator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70CA057375CA861D8A3729FED91030B3 /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6CDC0EB331DB0D4FA5F4673557464E8B /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 70FD47128E14984FA9DABB052B73161E /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C56F7C925156EE85B46657168DA3106 /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71048C5E632D1CD5ADE2BFCAD39D0D0D /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 447B8DCBF522A8F84954BC51ACD0569E /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70CA057375CA861D8A3729FED91030B3 /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 48DB6C436B370FD869740FF72B025DF1 /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 70FD47128E14984FA9DABB052B73161E /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F56A119ED26BCF09B22BDF0B75B593E /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71048C5E632D1CD5ADE2BFCAD39D0D0D /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = A0ED982208918E631CC8CEFAE53C2933 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 713B6CFB2FEB27D47C3E3C5F2D908A70 /* AsyncSignalHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DAC317C7EB06A759F8B238A9746390C6 /* AsyncSignalHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 715A3D8A7C44869FEACE0514D575E18C /* ProducerConsumerQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BE4456FEB0E18D388A28EA1BE658D11 /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 718F3327BD8BC6C1649C8AF752369610 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 59915589514583DB857FDF711C887880 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 718F3327BD8BC6C1649C8AF752369610 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 49F4B383D4E6610142893012462D0553 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 71A171A31038A2903EE7E79423EB1506 /* FlipperKitLayoutPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 127CD1E1011106B2304548E9248FD62C /* FlipperKitLayoutPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 71A88BD28F32D462CD811AF18696F885 /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 45F0F2DCFFE7E9486B1F265805F680CB /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = EDD126C6D0351882C6B39C1B0A2B3210 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71B0ADC6C2DC2E47E30351AE0747533A /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C0C031D54483C4716ECA6D731C239F4 /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 71B1F6D3D1676C67B9689723295BBBF8 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C108E508B53EF36687AA3DDC919D9B0 /* RNNativeViewHandler.m */; }; - 71BFB0C1F7C39D377180BE4A26405164 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = C0597431E55F8169E3324DC6051A3CD1 /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C55BF6C3CF5F3C835B6ED8CFF6B8C26 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71B0ADC6C2DC2E47E30351AE0747533A /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C913C483F832353449BC7CC52534D81C /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 71B1F6D3D1676C67B9689723295BBBF8 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 15C44261D170A8DF9C8AB211C4227703 /* RNNativeViewHandler.m */; }; + 71BFB0C1F7C39D377180BE4A26405164 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = CAF915294CA0DE133B47DB746A574395 /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 72089BD4C4AB1DEC21AC8B8C15BE2ED0 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = B9A3071E0D8E8007E3BAB588CEA589EF /* SDDeviceHelper.m */; }; - 720F10A6F132AD7458D8B1BD85DE5BB2 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B3262FD84C1E3BB00C4CF6EE49E677B5 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 720F10A6F132AD7458D8B1BD85DE5BB2 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 059FA1B009B2D01A2E1AC3B1ECB200BE /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 721713500B4D40C033B10C063E735067 /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 9502B3630FA0ACFC8E44DB0231E49D4E /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 722BD6977E9660D59526BB0AD44148F8 /* FlipperKitReactPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = C74A6B9B15C395BFB9BB73E4FEFCC17F /* FlipperKitReactPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 725BA7CAA30F06AEDC2A790CB990123E /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DCCD4B155D3FF26274DC1610F26D297A /* REAValueNode.m */; }; - 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DF0598EC4E96419F8C605A212DF295D8 /* RNFlingHandler.m */; }; - 7284BF438F4A908AFDB3AEA753D92D54 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F8EA0880333E9DA3ED04ABBA625281 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 725BA7CAA30F06AEDC2A790CB990123E /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DE30B4F86E8465B83ABD00A3B78E1063 /* REAValueNode.m */; }; + 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 326C71645C00D356FF14EDBB384BFC02 /* RNFlingHandler.m */; }; + 7284BF438F4A908AFDB3AEA753D92D54 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 65490AB6AFA883A433BCB46B9EBEC8AC /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 729543A16C2009AED104FB4361519B63 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = B962EE99644085C11182BFF43968B8DD /* SDDisplayLink.m */; }; - 72A1DCEA3136CEF0217A05E9CC9D768F /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B27C3CD814DEC5AFF14FD42FD880936 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72A1DCEA3136CEF0217A05E9CC9D768F /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6019C343C84778B4FA07EF28A4C2F7F3 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 72A89D0E917A84710512EBBC8A498DBE /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8821673AA05A9298C0CFC7B3AA7B0FB5 /* bit_writer_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72F03A33B89D23334A2BF8C1544CB64B /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 09E3011B17312B959A38467C0123FC4B /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72F03A33B89D23334A2BF8C1544CB64B /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AE91D4BE64AD0DFB21922399E4F8C84B /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 72F98D47E908D160397D2109949F8901 /* GDTCORTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0CDEC01D66844E4510B5EF282B519C /* GDTCORTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 730CF59059356078E40500B6BB498E2C /* OpenSSLThreading.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 562A1BC49C45FBEA1C44CF9D833ED9FE /* OpenSSLThreading.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 730DC14773375905F03EC77556A60EE7 /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D50A0B9839ED6D059771A56CDAC5160 /* RNCAppearanceProvider.m */; }; - 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 25515E093BB5827043AB4142E1B445A0 /* RNSScreenStack.m */; }; + 730DC14773375905F03EC77556A60EE7 /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B393081F65EE0184A857AA62CE4161F /* RNCAppearanceProvider.m */; }; + 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = FA12563AB2B66946EC850692C5564453 /* RNSScreenStack.m */; }; 735677185EDE464C255FC2E8C20CB400 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0C9D0EB752620D220AF34E4887F7E6FC /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 7375257DD805DCD78B8073530A459F64 /* Builtins.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACAF043733D30B36FFA455731AAD69A6 /* Builtins.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 738F9534366A0B4D79D59BCD8E17CA6E /* SKRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EF36CB287F7DB44B3568306B6A1ECA5 /* SKRequestInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; @@ -1534,247 +1529,247 @@ 73C1987309FC66BA1F1ED22729624B83 /* RSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 884A3F9DF38B4194FE972C3A0D33287B /* RSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 73C360D38190B223621C837277090BF2 /* SharedPromise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FD7E959C518BB93B5548494C34BD2DBD /* SharedPromise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 73CE42ADD9095E1C00FD06E526EEF697 /* EDFThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CF44E5B7DF3FFF2EF86931E2C09BEEE /* EDFThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73F47C0D665D977282E99C099016D971 /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F47718EF009AF92BE248AED9D69506D /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73F47C0D665D977282E99C099016D971 /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = A4EC7AA9C7BC50D70AB5A7FA0AA3C6FA /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; 73FC0DD23312E359AAF2BA654EAF7B6F /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C5F90E8404AF111F1776A63E62A4743 /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 73FE47BDC5B749B3E3CFBF41F35F23B1 /* GDTCORUploadPackage.m in Sources */ = {isa = PBXBuildFile; fileRef = C1BBDB076B66B8FACB04FB4FE96C71DC /* GDTCORUploadPackage.m */; }; - 74025B9922DF7341E15B5DAA6EDBC05A /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 31E2C8455EA94AE9E641B248102206B8 /* React-jsiexecutor-dummy.m */; }; + 74025B9922DF7341E15B5DAA6EDBC05A /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B1F0EDFA1EEF54165909FDB5258B45E /* React-jsiexecutor-dummy.m */; }; 741AF7E0277F291C9A0D1BD934784DE5 /* TimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 90C33347B5019D72B0153A47CD71F9C9 /* TimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 74300D3787589F62BD7ED937C2C6B714 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 408433CF1B7EA0B7FF2397A82A33AFEB /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 743DB1E02A7BB6C13E5E07719EB4764D /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E447142861A454EB90784A40F96FE18 /* DoubleConversion-dummy.m */; }; 743E12102CBDF56F168BB165085C8ED9 /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = D937487C3061F03755D71E545664D573 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 744569ED9F08B38A12D22F2F9FC0424C /* SocketAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51C3E2CF4182E8EF20FA41FCE1B1359C /* SocketAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 74466012CDD86409DB862C1330B47343 /* SKSearchResultNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 63F83E6A25D2FF254B453C191F615310 /* SKSearchResultNode.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 74547C67043E4BCDE93F7D9474839E79 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 33B7C5D1D926FC345037DFC006FCC356 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 74560B9C92971D07E35C876489CAC5BD /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = DF8D77ED36497353F79CA30D64E32966 /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 748CBB515393B82D47F544886EDE3446 /* RCTUtilsUIOverride.m in Sources */ = {isa = PBXBuildFile; fileRef = A6AE3A16051DF5AC6EA9519C91C6D99A /* RCTUtilsUIOverride.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 74547C67043E4BCDE93F7D9474839E79 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DCAE2B7CAA8DE69FB38B4C1CC00366F6 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 74560B9C92971D07E35C876489CAC5BD /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = FACD48FEBD3DEAFCAA3F98F0E4C0CC1F /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 748CBB515393B82D47F544886EDE3446 /* RCTUtilsUIOverride.m in Sources */ = {isa = PBXBuildFile; fileRef = F60065F7B272B34B1FA4EFCBA2C2B591 /* RCTUtilsUIOverride.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 74BCEF87E24337003DB52A4C98FEEF2F /* Core-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 70AC7C668181E9A8FEBB9A18B34ABC05 /* Core-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 74BFEE5FD90DDCCFB94D28F70F9F952F /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = DE1413051450C50DB0DFBD6429DA5C89 /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74D294644A5BAD6AFCC3AB3E1D464F48 /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = FB4644FF07D75BA088A2DC60B5CF79B5 /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7506148F3914E0D6F1A1AB594E55B9E1 /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = BE1ADD1FF39C1129F4E5A8E2C8C8ECA5 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74D294644A5BAD6AFCC3AB3E1D464F48 /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = E404649237AF8D3405C5E7A49F44AA22 /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7506148F3914E0D6F1A1AB594E55B9E1 /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 81B007D8765AE2BC1EB467D42206A309 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 75333439D6AC33E0F7ADAE8F60E86FD8 /* FireForgetThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E4F600571076E94B7971D91DFFF8118F /* FireForgetThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7542B46F03BB40C5A9876C63AEA76479 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB14E8B79D4E1EDC3C7F619DB0F76D1 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E8849E3901042473FCB415D574D15750 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75778E70621A1A6EE9A2FA787A37D730 /* RCTImageView.mm in Sources */ = {isa = PBXBuildFile; fileRef = E0FB7A2BCB26E6FA7FAF1995311D73E2 /* RCTImageView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 7542B46F03BB40C5A9876C63AEA76479 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 778BA0DE82DD975541FEA91DEB4E1A69 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A32323E2A9D4274BEA35FD58720BBE89 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75778E70621A1A6EE9A2FA787A37D730 /* RCTImageView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2EF72D08C11EAEC6D06F11EDA261C43C /* RCTImageView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 757C477AF763DFCA1BE5A5D78341AFE8 /* FirebaseCoreDiagnostics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C22D08B07DEC2D822A9AD9429629A308 /* FirebaseCoreDiagnostics-dummy.m */; }; 757FD90124B6536FA19702EAB1BB9355 /* FIRInstallationsErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = D78A0123098D28C5D3E135C01E38E39B /* FIRInstallationsErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75B8BADAC91B540F69B4C9B2B452FF29 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 696B1C6494D9F35BC815B814521219DF /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75C38367AD41BCC14148B858141FD9A2 /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = DC7C17EDE1D3ADAF9E4AAAA4F0805E93 /* RNUserDefaults.m */; }; - 76110E4538EEE7713CF6399084C6A08A /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A1534F22DB54903C6CC1A9A16D27592C /* REAEventNode.m */; }; + 75B8BADAC91B540F69B4C9B2B452FF29 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = F3E85B5EBB79416CEC3F2E3E940D421A /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75C38367AD41BCC14148B858141FD9A2 /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 59B317BE7B6E6992FBF1E2760D5FC1B6 /* RNUserDefaults.m */; }; + 76110E4538EEE7713CF6399084C6A08A /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B6611906E0BECBF166DBD1C43808A24B /* REAEventNode.m */; }; 763CD444AF9E7EA395CFD53721D810A8 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = EB96F6FA78DD5982BC5C32FD2B7DBB65 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; 764F640B2C505140321DA60CF2074D08 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 3922B2324DFA23B70E7FBBBF971AD437 /* tree_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 765E1045CE05FBCD4A3B66341064888F /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E44BC299022EA501E799E13117E8DBCE /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 766B635C7BE0CCE6707FFB964463D053 /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = B7932D0F1549FAE90D2EA9D758631E48 /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 766B635C7BE0CCE6707FFB964463D053 /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EB59FEC70A5E1B56C27548AF3371D44 /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 766BD1F98174D03F873BAA01F87ED011 /* Windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 9657D94D5B94272DCEFAAB4AD0E0F069 /* Windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76764823DEFD4B7F2880A19721C6313A /* stop_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = C611B9834EEFF95ABA916CAEB1CC478E /* stop_watch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7683D1EAD5E3D44A358E26F35D3654CB /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = C733CD9C74A357A76284D361EE462CBF /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76BCF1FCF8D56F43523423D46A8098A5 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C27AF23759BF7A8DD86385A007D97791 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7683D1EAD5E3D44A358E26F35D3654CB /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 93EA10E9544F94CE3D7CF12CB2323E41 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76BCF1FCF8D56F43523423D46A8098A5 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3131204640275CEFD8903EE8F9F962BE /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76CC28957C425E9D74DFA32D3F73953A /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = F331749C73AFBDC65921F6C1FA1B18C0 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76E11DFAA4DC6209C6D3CC2CBF3EFA8A /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = 4088903476B95FE6DF28291572F20B82 /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76EBE6CD51BEEE22F89845516E86EBAA /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 385A850319001F2BE3E12C09663F7280 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76EEE05A743A33A2A0FAC336D130C2C9 /* GDTCORStorageProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 71261B3A5522A3D92F1BA844EA476BB7 /* GDTCORStorageProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76FD2A79BEF913421A313ED50295DF11 /* RequestResponseRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 707B91034B57295DCBBE33F9700D9059 /* RequestResponseRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7715D82AD9F3D0E93C1F5DFE32102B53 /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E93A2F0919CAF3E8CBFEF8A8844BCB8 /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 771A42B5F74050C824EF6A90710BDB46 /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = C484E6A346C7B52FB7A5C7F75ECCA52D /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77622F1A0ABB1224B6239F7ADE18F4CB /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = D709AB9666286F00ED5D6D6A2F4A8D0B /* ARTSolidColor.m */; }; + 7715D82AD9F3D0E93C1F5DFE32102B53 /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1518B6A8A9EE142CED75CCB82B5FE847 /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 771A42B5F74050C824EF6A90710BDB46 /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 61C69A1827D81E16BA3FDA45AC4C1D7D /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77622F1A0ABB1224B6239F7ADE18F4CB /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 3636FA4C4B3FCEB1E89A14123DCDA355 /* ARTSolidColor.m */; }; 776799F6076113258BCCED1723ED4382 /* ThreadName.h in Headers */ = {isa = PBXBuildFile; fileRef = C20319ABD038571475EAE18DDAD747FD /* ThreadName.h */; settings = {ATTRIBUTES = (Project, ); }; }; 77744A82C948F3D83862E0015E612602 /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = 25870310690272D6D92BFBD97E5A2BC8 /* muxinternal.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 777B202C8582C5E0780E559C0ED4F862 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DCB116A084B6610053249AAB840B959 /* UMReactLogHandler.m */; }; + 777B202C8582C5E0780E559C0ED4F862 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = BA20595CD5B1A6DF6915499505DD46FF /* UMReactLogHandler.m */; }; 77ACCFEBB20441467E34B9600FF1FAB2 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = BEE19D01E393D6AED4889E0FE6D0AC9D /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 77B293EF5067D13B9EB06AAB2F947B77 /* Flowable.h in Headers */ = {isa = PBXBuildFile; fileRef = D8B5ACE0E6FA599B800ED969620E15F6 /* Flowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 77B3698D829519200039FAB0F98E726F /* CodingDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = F1695BC522458CDC1A43977CFCEF32C6 /* CodingDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77B46A28B3F86102E403AAB54A83DC0F /* RCTPerfMonitor.mm in Sources */ = {isa = PBXBuildFile; fileRef = B0A371D5A21AC68639256F45BDCA24D4 /* RCTPerfMonitor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 77C8658812D7F0CE1234676F54F192E0 /* ARTShadow.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EA859D080F5B72CD9E8BD9639211BF7 /* ARTShadow.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78319D0098C1839D14DD35C5F572DDCF /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B5CCD8A80C54F72D40316EBB155801CF /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77B46A28B3F86102E403AAB54A83DC0F /* RCTPerfMonitor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 96F0797E7B67C00668BBE5F948D6345A /* RCTPerfMonitor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 77C8658812D7F0CE1234676F54F192E0 /* ARTShadow.h in Headers */ = {isa = PBXBuildFile; fileRef = 012F641FBBA7737BE6C952B09555EC59 /* ARTShadow.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78319D0098C1839D14DD35C5F572DDCF /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A13FC2338F3D6F110DDB43625E805AD8 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7841E1B4F2C70023205BC38857EE74D6 /* Combine.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AFD5B0CD3DB6FE2ABBE27D0B45F4C5E /* Combine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78443FF8F8DBD8F1B0297274AEDCF8CF /* Pods-ShareRocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 74FE0A6812B600DE9F54562F0F69D2DE /* Pods-ShareRocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; 785BC4CF4809020AF5132A2626189D3B /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = 69447CBD78985E97A5634DC4BEB3B679 /* mux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 785CAF95D72E52A3CB51D19B161EF757 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 145A7D59176345B6F215E0E11D6B17F8 /* RNDateTimePicker-dummy.m */; }; + 785CAF95D72E52A3CB51D19B161EF757 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 67FAF651E9D2D60F38774C6DDE7348A7 /* RNDateTimePicker-dummy.m */; }; 7882CEFF17C5B91821AD080799F6FB5D /* IPAddressV6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DDE2BF68CAB2616E23655DB39C7D4A3E /* IPAddressV6.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 7884F03CF9FA79DBEE75B5EF7658A49C /* UIView+Yoga.m in Sources */ = {isa = PBXBuildFile; fileRef = 276A65F3FD717086395DB7D24A64E833 /* UIView+Yoga.m */; }; - 788C6BB15A2BE63266654114F27DFC9F /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F26AD8F4F3D371230E2B519E3A584B8 /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 78915BE17253AFB06827312FC0CCBAF6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = D33C61C8004717F147894A4F457C4CB5 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 788C6BB15A2BE63266654114F27DFC9F /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA94C772C348D2F5AFACA48BE28279B1 /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 78915BE17253AFB06827312FC0CCBAF6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 00FF18650B7A3F163BC7AABF294A2E34 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; 78BB6FDBF3F970AB072D30BEC80DB9B0 /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = FC18FF65788DF7D547828224925E7274 /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78BF0D15DB0070EF5BFCF034FDBA9A7B /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 056FEC49181BE5653FB8F593FF0BB55B /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78BF0D15DB0070EF5BFCF034FDBA9A7B /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 4532E14FEF0122CE6E39807825414AF4 /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 78CA63676DC67FB7253C5FFD5F3F7566 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D2A44021F16E141D89AE08FC81E7BC54 /* 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"; }; }; - 78DAC16D9A5B8098D88681C436F3C6B2 /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = A462A2E1387C3E05B13E454FD9C7C5C3 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78F927721FF33D4B9A04BF10E78C536E /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D33A934B640D0010EFD4513CA46B01A /* UMModuleRegistryProvider.m */; }; - 790322F76C8B7D9855BAB016FF42BBD7 /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C40CA3B5B9D97DCF31953A8A61A49CF5 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78DAC16D9A5B8098D88681C436F3C6B2 /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 80A517C9E8DB3F15A722A352A29BBAA0 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78F927721FF33D4B9A04BF10E78C536E /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 179E8C13443706026087C8C90E6ED7D0 /* UMModuleRegistryProvider.m */; }; + 790322F76C8B7D9855BAB016FF42BBD7 /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B71DE3727ABE7459AB930F0D24F89C12 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7925BA5117C9FA8B8B85A031330AAA42 /* AsymmetricMemoryBarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 50E7DE2231C4C01E96F2EF0256C11ABD /* AsymmetricMemoryBarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7934D62F5DF4DC847EB6890EF8C9FB77 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 23E8E6412A8B80FB18F58A48DCB7C15C /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 794567009289677F590846BBC3EC0ADF /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 21885A4ADAD17766C17F964FF29C82FE /* EXFilePermissionModule.m */; }; + 7934D62F5DF4DC847EB6890EF8C9FB77 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F03D71A97A573DBB970AA100A7DDFA0B /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 794567009289677F590846BBC3EC0ADF /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = FF8557D82213FDE6BE722E56176F5686 /* EXFilePermissionModule.m */; }; 7949FD6EB727E69406421858C3A31123 /* CMakeLists.txt in Sources */ = {isa = PBXBuildFile; fileRef = A4853219A1811FEC6666B9C528C04D9B /* CMakeLists.txt */; }; 7951728F21A13BEC0D339F17249D5804 /* Observables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D1D93DB2CDD8B18C06B607F0BAE717AE /* Observables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 7968BD10264852AA8FD4BA57F5784960 /* IPAddressSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C5CFD76CBC6BBD47BCF0972E23E2004 /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7998B28E952A9C7FB43756166ABEBF61 /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = EF18340EB9B162B1F064BA8EAFAB25B3 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; 79A9269A8CDE8C5B66FBA6E2C4303509 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 57509420978B49C3330ECFF8B8EBF8E2 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79B7DEC0DCB3E71EE1D41FB02653FBD5 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BB5B16C7B70B759347FE367321DD04A /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 79B7DEC0DCB3E71EE1D41FB02653FBD5 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 14C6D660264A8CB7DA5BC37E90AEE322 /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 79BA26C737EFCA1A5749AAE7AC3FC842 /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A778DDD581ED2D015FDBC2547EC4FA0D /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79C687418816B577E9622D673D38A213 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2228D771F5EFF55AA041447138D04359 /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 79C687418816B577E9622D673D38A213 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F15BDDF3430D62B0A017A83E7D76323 /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 79D1B1B06EE6E1F8AADDCBA060A8D0CB /* IOBufQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 0165BAA8EE7266F1ED30DF044C6D3017 /* IOBufQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 79E0AD4F4180F0958392212CA49E755F /* FIRInstallationsHTTPError.m in Sources */ = {isa = PBXBuildFile; fileRef = 65443F9818534C95F2D33F0A8F23D574 /* FIRInstallationsHTTPError.m */; }; - 79E4E9207266A429AE14B16726F40034 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C4E01BA3026E41228999D2A42ABB1876 /* REAConcatNode.m */; }; + 79E4E9207266A429AE14B16726F40034 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 89CFED324866656C4F7098D418D484E4 /* REAConcatNode.m */; }; 7A0EB74832117D4542A2518BDAFAD9E4 /* FBCxxFollyDynamicConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = DD68D1B933AEA3BDA8518B72E32AB135 /* FBCxxFollyDynamicConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A161C90FAC2B1D71FB86C4B45CF885B /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 319B47D9A35D9D659C3A3ACCFACDFAAF /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A161C90FAC2B1D71FB86C4B45CF885B /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 5287B52A2E9759F609606CF11B2ABAB5 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A245D980616242AD065C7FF0609C46A /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 727CEE911D72F12D992FC84DFE6C7E90 /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A2C9312883FF8E666D535E21FE728A6 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 858D05B7E99279A54826542B1B5D68B2 /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7A2C9312883FF8E666D535E21FE728A6 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C175B05619803671EBE3017CC20F955D /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 7A383B2997E0FF8D0D194A0EDFD6CBC2 /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B99F1BB9A0883D3DBBA6E8D1B3723F9 /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A5135422A29083A9AA96DBDDCE35D93 /* ScheduledRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4898F69B4C0225E1DBBCFD6566D34923 /* ScheduledRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A78222EA8111E0D5019C2D5F945758A /* SKStateUpdateCPPWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 20E4377AB83B86A78E53C33FBE57B109 /* SKStateUpdateCPPWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A7834A2F72C293E7AC78093E1B67C6E /* CacheLocality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B50AA58A65EE4E7957C395C893954CD /* CacheLocality.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 7AB70076D594A0A054F93D465F06268A /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 58A7AA742BB72B9CC46855C6A063EB42 /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AD0DBA9E15F69157618464E1122115E /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C78AED4A45BF8EBFEB1300A407736A56 /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AECC3D50F123A379D48712223BB9D53 /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = BE507034EC91D662EA23C3A4B8002D1D /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B393E70142C67758A4E74068C761221 /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 014FD149D02644CEE876F548EC93DB43 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B3EA463A77078AD28811472889B32F6 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = CCDF36D5CBA4D1EAFBFFEB6356372FF6 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AB70076D594A0A054F93D465F06268A /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CF1BAAC7BA0B7A6BF70522697AC7932 /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AD0DBA9E15F69157618464E1122115E /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F2038D105A456660E49DCF35A1ADC3D8 /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AECC3D50F123A379D48712223BB9D53 /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = A52CEA1075CFB48559DE962C61E9A405 /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B393E70142C67758A4E74068C761221 /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = DAC3E4DBB5DAD38F84C500E85D18E30C /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B3EA463A77078AD28811472889B32F6 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A0C368CC1F3074A0E4DD8CF4F07B6C5 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B5442DCEF1DE4B2012EAF97871F3036 /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E110A3A64EA74F01229A6D8918954B7 /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B6F6115673E71640B69E46F867EA6F7 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 1486467413A9889DB23A6D91579D0F47 /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ACF0721D04DEE6D5C1E56141C5C8E4DC /* react-native-cameraroll-dummy.m */; }; + 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B1E0BF6617F882B11E76578E7B841B /* react-native-cameraroll-dummy.m */; }; 7B867BDB50330206036412351BCA3A62 /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E72DAB4A653E073E50E2A1100F41ACA /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B8F82EB921486F892E840153E3EA908 /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E0237BD4E90D915BEF384327688A7EE /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7B9F31AF2CFDDAA733DC57561E908CB5 /* SharedPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = F94BD1D204DCF22BCEDBF671F3E4491B /* SharedPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7BCC08DBECE42EBE69A54DBA30F6B549 /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EA49DF3B79C11213E3096B0A2B77718 /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7BFF4D65ECEFB20ACBDD2BBC2D01CF8E /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 46ECEE1F1FB8E769F87814B37E02C7DF /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C0DB549FA227C02A2B1E6AED3A5B15F /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F2B174BD2BDAEB745C526A9F0ABB786 /* React-jsi-dummy.m */; }; + 7C0DB549FA227C02A2B1E6AED3A5B15F /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 146B5E77E2464DE26AD8CDD7DE35BCF6 /* React-jsi-dummy.m */; }; 7C1666EB58E8990F4CE28BC7508AE115 /* FlowableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = 71EE2CEC574397A082D8CD6DFFA6D1E4 /* FlowableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C2AD3B775432BCF22E34431FC8F3EFE /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = E4769B5ED370A40DF23C904BC98B4E80 /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C2D89A79A5CCE2428023B7CDC78BBBC /* YGLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EA2CCABD3A90686CC86E119016E92F0 /* YGLayout.m */; }; 7C4DA271EB10F9E06486E8335DA8F4BD /* RSocketRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CAECBD8555470A7F074F6AFB206F146 /* RSocketRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7C4DBA9981D6328F8478F72A41244350 /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 692DAA201755341940CB790FB309EF0C /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CA0E37B9E08810873F89B684905C1AA /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = 237F3148163949A0F39743C8DE76F8ED /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7CA0E37B9E08810873F89B684905C1AA /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A8933134A5B3135248092BE692301EC /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 7CD1703B557168ABA37AE8C1A0238E5D /* SKTapListenerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B5B6CB35133A26728301B5DA4DA94CA /* SKTapListenerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7CF643F3FC2F33A94A2EDC7F942752D3 /* ProtocolVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C24B6D79D95254053CCA03B2811EAF6 /* ProtocolVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CFEA0A6052051C538AD0B0F49158099 /* RNFirebaseInstanceId.h in Headers */ = {isa = PBXBuildFile; fileRef = CC56E34364676629C753DC57D2AA659A /* RNFirebaseInstanceId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CFF3687BC9FE4EC0FCE4DE43AC06B06 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 56008A9DB03796D3639D33CDA5BD9263 /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D0FC1CD6DE38EB0602240ED6DA589E1 /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FD2CE14B86C01D0182D5232A65D8AB7 /* BSGOutOfMemoryWatchdog.m */; }; + 7CFEA0A6052051C538AD0B0F49158099 /* RNFirebaseInstanceId.h in Headers */ = {isa = PBXBuildFile; fileRef = 8302E0659CED48BA9B0493F906D280EF /* RNFirebaseInstanceId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CFF3687BC9FE4EC0FCE4DE43AC06B06 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C3D4B1C7E262B5BE03017489A5BE167 /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D0FC1CD6DE38EB0602240ED6DA589E1 /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DA801A0D86CF44C48116E43AEDC8415 /* BSGOutOfMemoryWatchdog.m */; }; 7D2A357365A1488E3468A15CC26CA428 /* RecordIO-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = CD9C204067CD033285E691091009DCB2 /* RecordIO-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7D32CB346A8A737EF45F15BB54F57AFD /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = C5B547F98753F73957FF249602ADA981 /* rescaler_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 7D34A100ED6377A6117EC9F1CB8291AB /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E81C052BDC30A35F1D0F94A8BCB93F3F /* 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"; }; }; 7D38F08E59ABB6BF7E221D088AB83D4D /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0517A3D8E3A08BF3DE37F6F920808853 /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 7D6A5E9C9F6A6D7C4B6CAAB74BA8D214 /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = E6FC69ACB00CC2FE217B6FEE56A61C87 /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D74C0F449D31806561D458B8955CC9C /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 489381BD88BB462EA51AC3844735251C /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DD76BAFD20760145E437E105C5CC283 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7217E237D2A8F4C231EEE6DE8DD0B9CD /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D74C0F449D31806561D458B8955CC9C /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A391F94EF7B73025F56FE30F4ABF580 /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DD76BAFD20760145E437E105C5CC283 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E2F76B6E1E1EB19639E0B346D5E3604 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7DE0EFE6AB2647D5FACD08AF590EA581 /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E6866778088727F4DD526D4BAE0C00C /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DE5523222AE9F4374CE11C62EC4CE68 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6C8750C9EFE82EDFF67C7A02C297E56F /* RCTHTTPRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 7DE5523222AE9F4374CE11C62EC4CE68 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8F62C88B0B8F6B810B7E909D4872B87C /* RCTHTTPRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 7E1CB466C068CBB65A95F740166FD9E8 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = D02E6B9DB917675E5CCAECEFBC7819F4 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E1CC457B4F2BD98BFA3743DD222329F /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 604983AC2EFDD2D9B0108CF938E38A58 /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E1CC457B4F2BD98BFA3743DD222329F /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C32BD94AF345C94380FEC5BC4682F4B /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7E5F55DE3AC17BA4FA9D94CFBB23A89E /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = 64D59E994DDC3D265A32ED3A9AB7ACA2 /* FBLPromise+Retry.m */; }; 7E6785216D5A27AA388421B8CB226AA1 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 8B522DF9D1FB43DDF30B11219D02B194 /* enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 7E78EAD1C901860BE15DA026345506C1 /* GDTCCTCompressionHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 25FC6D35ADBA36B3A2058A46B71ED99F /* GDTCCTCompressionHelper.m */; }; - 7E796C7B6B601FA5CFA6D5154D7B17C1 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 969F4338E2546A7304C7CDCDF06963A6 /* REATransition.m */; }; - 7E7E6C3DC5E177A0D7D6FEF93C8A428D /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C41708280F44C5ABDFC17D711D57CD8 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E796C7B6B601FA5CFA6D5154D7B17C1 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 71C2FECAAE7D706609452121D6EF6ACD /* REATransition.m */; }; + 7E7E6C3DC5E177A0D7D6FEF93C8A428D /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C97A0654B68840BC3AB9EBC96E9681D2 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7E83979670FE945E28099C8EED37EB44 /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = EDCCF263BE056FAF6A969BC36CF5DC1D /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E945B7F9DF2DF5E9B4FADE31A4378FA /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 43B30801029C061FA6A7CB4004C37E50 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E99CC8D8F66D2BADE6A8D3A09292927 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A8479C700A99D42A45C19893F8A5857 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EAB54DB31F8AD2AA68AFE3659D27E89 /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = C68D2008F965DB8E53784194B227ACE7 /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E945B7F9DF2DF5E9B4FADE31A4378FA /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 772FB595D1116D8618377349EAF9C96A /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E99CC8D8F66D2BADE6A8D3A09292927 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = CA7B42287AF4F4F34489CC51E1010918 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EAB54DB31F8AD2AA68AFE3659D27E89 /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FE0DCF2493614DF6C5C6C4EC539AE43 /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7EB2258E75A0CFAEB893EFE5CAB78DAE /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = AA29C7A7535F434B867178E6338D26B5 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7EC87131595CE695AC853CF457AC1477 /* GULSceneDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A9B05892173B8527974566E9A4CCE60 /* GULSceneDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EC96E3BBC648DE9280DD2DFC1A85DC4 /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = EFE0653D22BE12EBA90C1FC022D00913 /* 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"; }; }; - 7EEB477B872B58A6D545BFD8B4981612 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = CBE9F092E3CA7E0A323FBF3F4350A49A /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EF07F5D301B2A8C165F1B15A8EFB2CF /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = B44FCB6AA07EFF8149CAA00C18C413A0 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EC96E3BBC648DE9280DD2DFC1A85DC4 /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = C28015EBA60ACDD15E1763FA95DE2209 /* 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"; }; }; + 7EEB477B872B58A6D545BFD8B4981612 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 542AFB0AB153C9A4E487708AA0006E9C /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EF07F5D301B2A8C165F1B15A8EFB2CF /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = BAA22DDBB90EA6B0B64DCFEEA69CD39D /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7F26FFEED6990F7DE6542F85864BF163 /* AsymmetricMemoryBarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = C407E0C7DB34386D12B44F21A0804AC6 /* AsymmetricMemoryBarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7F2FF85FC360BEEB533BB12DEC940E61 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = B4FFFB601246CD01C2D3DD65FB80D685 /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F587E5E97E38B24059D626558F1FAF8 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = A8C28AB7DDB0812AAA3FD5A41BAFCD6D /* REATransitionAnimation.m */; }; + 7F587E5E97E38B24059D626558F1FAF8 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 67BA0AB05198D276D8103C33A8103FBC /* REATransitionAnimation.m */; }; 7F7C5C9EDDB5F08624115724D21E0DA0 /* FIRInstallationsIIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 6085F2A7F13F2B19547527A44D7198E9 /* FIRInstallationsIIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 804663488445831432C6D6B04C2DAD1E /* ScheduledFrameProcessor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 48076F4983CE8007308CA27053AE9DE8 /* ScheduledFrameProcessor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 806A978726204E5605965748326D6627 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 739785CACCCA66F5001FDDF9D2E43501 /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 806A978726204E5605965748326D6627 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E5AF1BA72A31472E4AF05AD7CA1808D /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8070AA7AE73618DDBA207E20AA25953C /* HardwareConcurrency.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7353A26E1FB111644BA6132B3397E015 /* HardwareConcurrency.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 80736038E8A66A4AF36DE75D3422AFE5 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = D9107F10343A9D0842D5085B25F198F0 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80924E3636CD65EEFFA53B4C7F187373 /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A2332A624FF39009F67CC3A477687DB /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80736038E8A66A4AF36DE75D3422AFE5 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D763DDE6D775B54514BD1AC9020ED53 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80924E3636CD65EEFFA53B4C7F187373 /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C5B460064923AEE386FECAE18993733 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 80A07F3FC502FC926DED2369A414C9B3 /* Optional.h in Headers */ = {isa = PBXBuildFile; fileRef = 33A00DECC9301D1BBEC0A60EE8B99A8A /* Optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; 80C026B0E39AC1F1703DF72A313A900B /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 39C7AED29148A1FB6CBF9BBE2AFB58B5 /* cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 80CDAEE930D06D1D2D6BCD00DEBE8108 /* StreamStateMachineBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A89EFE2052008631ED7EF5F6775D509 /* StreamStateMachineBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 80D2594A93ECDA477CA76FDC03F368B5 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D25D25F813838C74090FBF8F83C6213 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80D7D1F640862031BC32186EEA10A65E /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 490FB0A3ECA38BAD6E8E1167DAD77439 /* 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"; }; }; - 80DC2F0DCF0B1FFC9AF851FD42BD23A8 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AD54FCA63DCA7D0C67F6F026BD7A1C8 /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80D7D1F640862031BC32186EEA10A65E /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 94A12F2CDE548BCEA4F3443158FDB407 /* 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"; }; }; + 80DC2F0DCF0B1FFC9AF851FD42BD23A8 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = CCDC5E18C1BFEA5E8CD4876AEE52C961 /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81071E43B116BEE100693E96C1F9FE77 /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = B2DD1E826DBBF52DF6080A7F85F3D688 /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81308D5B41DDC98C59C1102B81D5EE4E /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = BE8B80ACCF53BCA41AC1082A7BFA65EF /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81308D5B41DDC98C59C1102B81D5EE4E /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F32604F21134142C1C091B6119C30E2 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; 813E4CB01E4386CA919F5664F7E9D09E /* FKPortForwardingCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = E9468203F858002BB65BC64AC815D7E1 /* FKPortForwardingCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8145C77FDDC575D33B405FF7F421A215 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 169A97E652ECB8F659D797AFFF6BC940 /* lossless_enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 81561CA2BD7111B1F6C3D3EC67550617 /* StaticTracepoint-ELFx86.h in Headers */ = {isa = PBXBuildFile; fileRef = B491842CD162C3BC7BCFFD88A22AB94F /* StaticTracepoint-ELFx86.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 815D8ABBA7979021C12E9297F0E5B795 /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F0EA7EFFD6F92FB7ECA84ED25FFA4DDA /* RCTAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 815D8ABBA7979021C12E9297F0E5B795 /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BDC92CDF8B9FFC7427A79BFE9977090D /* RCTAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 816247A876AC24CFC889B8629D8699B2 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F9C8FDD1AE68A48A21FA0412E153E35 /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 817F80FAD6CAC88EA2EA12B86A15C086 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 53827A1BAA34745F5753731158F1E88D /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 817F80FAD6CAC88EA2EA12B86A15C086 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DB848A3694B2A20115E6215C34CBC043 /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 818FFA62B7ED6D4F27667F6428290F80 /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = D5FE7046165690E211F7FFD5DF80CC92 /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 819836474963B13AE93DBA37FF26CF91 /* RNCAsyncStorage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A7FF20675CB7892F4FB555C651D6B8E5 /* RNCAsyncStorage-dummy.m */; }; + 819836474963B13AE93DBA37FF26CF91 /* RNCAsyncStorage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3064F751F46145C00A3F1D8588634343 /* RNCAsyncStorage-dummy.m */; }; 819F83D63B167874E2EE18604EFDA365 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = CCC12E666629CBA68F8FA63EDA522C82 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 81CDD761CE987A83E4B9D0308E37CBBC /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A5F220B6334886ABEE8D6C75154DC47 /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81CE0E950350389881B94CF765F8EA83 /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C0174E7A6077176C3B561C76A3A50C7 /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81DC789630EA64FE7CCB43BD80426A0C /* SoftRealTimeExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AF0F6DED104EACE28E659E12F1F0166 /* SoftRealTimeExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81F1D8104C6D7CE7780E40807E43438B /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B8CB036643D44984F995A2F1DF3C18AA /* REABlockNode.m */; }; + 81F1D8104C6D7CE7780E40807E43438B /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0CD453EF11076459D3E53CB02983A2 /* REABlockNode.m */; }; 81FC60A335BDB739D75D24ED623A8264 /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 1308592F65945CE9422EDDED884EF9B3 /* enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8210666640C5B1AF7DAB2FBA2292A1D1 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = F10EED5C802D21F194A7C2B7067A4348 /* ReactNativeShareExtension.m */; }; + 8210666640C5B1AF7DAB2FBA2292A1D1 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D2CC5174636CE5B3F0AA3B213D99D09 /* ReactNativeShareExtension.m */; }; 82231D09FD382B02393BB0898E36EE4C /* RelaxedConcurrentPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B414757DCBFA6FA63CB5030BFDAE56C /* RelaxedConcurrentPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8235F479BC5ACA11857EEAAF249DB6B7 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 06BB9BF3EDD857DAF1AE0CAA54A507FD /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8235F479BC5ACA11857EEAAF249DB6B7 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 3348F971DB1E990B5590E8EBA0E31AE5 /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 823F08603B32859CE18D9E3D37357A54 /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 0877B7CC18A0B5BBDC61008D68D767BF /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 824AAEAA18CFB3DE727999EC5D6C961A /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C8EBCA61DFAD0D306BADBEE83374B50 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 824AAEAA18CFB3DE727999EC5D6C961A /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 30465E769F2B34F0984617F34B20E439 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; 825A977B244746D1AB62EE93F5ABD142 /* GDTCOREvent+NetworkConnectionInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = D1C58B0EEBA51866F8799FED5F16F4DE /* GDTCOREvent+NetworkConnectionInfo.m */; }; - 828546C2D849220CBE4FC2C7CDAA4240 /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = C8B9C11862042751C14615E6498444B8 /* NSTextStorage+FontScaling.m */; }; + 828546C2D849220CBE4FC2C7CDAA4240 /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = E3D3F1F51A9701774A4230C7CADB7BA9 /* NSTextStorage+FontScaling.m */; }; 829168B41AB0527695E68C1D5380C266 /* JSONSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = C07EFDAF32E458508413BF17981E2CBE /* JSONSchema.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 829DD372488FC133D2BFEC4D238098D3 /* RNFirebaseStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F87E7247324887C6502EDA25DED060 /* RNFirebaseStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82B3ACF24FBA461B54C393C8E8057A62 /* UMErrorCodes.m in Sources */ = {isa = PBXBuildFile; fileRef = BA9D2FECCB6B5D2CFEF057A94D4FCE94 /* UMErrorCodes.m */; }; + 829DD372488FC133D2BFEC4D238098D3 /* RNFirebaseStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B33742E83553D9A3FD50C58851C8469 /* RNFirebaseStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82B3ACF24FBA461B54C393C8E8057A62 /* UMErrorCodes.m in Sources */ = {isa = PBXBuildFile; fileRef = B9072AD49A640B04370FD838CBB9280E /* UMErrorCodes.m */; }; 82BC85853B48599CF7034D4978C66459 /* SKNodeDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A5E8F5770ECA8C93F6E646F3C58A5F0 /* SKNodeDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82BE17CA11C38578EE02F5D438CA1EFB /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CCA1E68DD17EC16118BF6A816B65986 /* EXFileSystemAssetLibraryHandler.m */; }; + 82BE17CA11C38578EE02F5D438CA1EFB /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C950075A6754CB0B42D2A710DD039049 /* EXFileSystemAssetLibraryHandler.m */; }; 82E00AB632629A007250F0155CA70AF1 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D5BA069E6DFCFE1A8F4280D50172973 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 82FAD75153594152D13166FA9C918B07 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B7A2809E52A3687C547497BD4140144 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83136AA76652C7045CA261184E60A544 /* DynamicParser-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = C0BE079B8D2C7A9BCC6894400A116A35 /* DynamicParser-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8323A813DA9029D2C9EB445A8FCD3E89 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F4A0CC84C0513BE8B9846E35F771239 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8344C1B23A7DCE5793D982D670EDED41 /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A2B89C600999072980916EFDBA63AEA /* BSG_KSSignalInfo.c */; }; + 8323A813DA9029D2C9EB445A8FCD3E89 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1726CAA6CD6FA459EAAE84311D966173 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8344C1B23A7DCE5793D982D670EDED41 /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = B1F6E01FF687CF5E64CC893B49A16197 /* BSG_KSSignalInfo.c */; }; 83473148D1A03C53409742D811D3583F /* QueuedImmediateExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A2AC03835AA9B61E4698BDD1F320751 /* QueuedImmediateExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8355F5AC1AF62C88E8E0CC029ED7862C /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 5D7B43E2AE0DA3E677F16D0D6ECBFCC8 /* color_cache_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8361085C392B248183522DFE3B2CE5DD /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 474B6F3D8B930EFEBD3F53CEF5115FDE /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8361085C392B248183522DFE3B2CE5DD /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CFFDEC78DE605882E73BA709F9AC6A22 /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8363FDC00B483DC0C835683A720EF012 /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = E278E225162A389E82A6B92D8C973798 /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 837C128041DAC467276F9B865D3DCA1C /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 64F31E78BE2527B46F88180861AE8CF9 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 837C128041DAC467276F9B865D3DCA1C /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F0D236CFE1440B409DF707C02A8010B /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8393DC193D20A5423A5F36D502C399CA /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = C11F232104618A6DF337628AD70745C9 /* FBLPromise+Then.m */; }; - 83D981D69D42BD8850D6FE8DD2D18CB8 /* RNCSafeAreaProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 08794FC33FD652DF519C9411038FB5A3 /* RNCSafeAreaProvider.m */; }; + 83D981D69D42BD8850D6FE8DD2D18CB8 /* RNCSafeAreaProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B6641E807257CB45283C25B7E62B293 /* RNCSafeAreaProvider.m */; }; 841BEEABB39AFCE2F1A9B9A2F800B860 /* FLEXUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 463444A762A6DD6F36C8B8129303E5E8 /* FLEXUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8439EA0A5BDF6C5C7BD5988ECC8ED470 /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EFDB3D608A8D5F202D496AC45456444 /* ARTPattern.m */; }; - 844702018C1EEA417EC5B7EC5010D8D8 /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = E264446847198B24564078FFE2989119 /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84569A9460D3479F61EACCA135F8995A /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = B04A3000D987FFA9375C5040F1D14A33 /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8439EA0A5BDF6C5C7BD5988ECC8ED470 /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C5762DB28AE321A86A320CA2B254EB0 /* ARTPattern.m */; }; + 84468A447DF9F2C9C2812C3BDD91BB64 /* Pods-ShareRocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 74FE0A6812B600DE9F54562F0F69D2DE /* Pods-ShareRocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 844702018C1EEA417EC5B7EC5010D8D8 /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = C689E9F415906E0BAB059042CF6A948D /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84569A9460D3479F61EACCA135F8995A /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 554E6A74780C762E48B73EABD0C64CEE /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8463BA54CDE10E89F565BD48AF5D85B4 /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = CDE9A7BDC20190CBE6630DC4DBB08F1E /* SDImageIOAnimatedCoder.m */; }; - 846B52FFC3BDD2D2568D127BDEE7FC9B /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A13372A97961B2FCEE907AF7C06F9D8 /* BugsnagCrashReport.m */; }; - 846D662EF516396FA7314B3E2E1BD174 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7F9683149B139470B2049608CBB1D7B7 /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 846B52FFC3BDD2D2568D127BDEE7FC9B /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = AB3A3D569BE058F125B8EA58C1632CD3 /* BugsnagCrashReport.m */; }; + 846D662EF516396FA7314B3E2E1BD174 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = A930CBD0FD05B3ABF9A65B2593FE0A9C /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 84901337E6298387C7597F48A4244F93 /* FIRInstallationsIIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 17D9E3C037E4F36B08BDF14F3C7782AB /* FIRInstallationsIIDTokenStore.m */; }; 84A7473B9A205B904527095ED5D3DA74 /* RequestResponseThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14C26FAC99C1D2CC6FE055A75273A872 /* RequestResponseThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 8502CB4758714A656E2ED14AEFBD8A98 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B2CD74073247E0ABA4E1B68EF1547B2 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 85139AAA0A570EBB566C5015CE3C2EA5 /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B0E5A9598A5732F504D41A4D026BD6E /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8517F23398DC828BCCD67BA41DE24E38 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 94923A18A7B065BEAF5EA283A6A12C58 /* RCTVirtualTextViewManager.m */; }; + 8517F23398DC828BCCD67BA41DE24E38 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 15BBF09FB8F56B02D95139D4A75E513A /* RCTVirtualTextViewManager.m */; }; 854011E8B4665CCA7D3CE510F229C6C0 /* AtomicStruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B8ED577628803471AA06F17FEBF0EF9 /* AtomicStruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85455233A524A6D36F12FB9D3A3E6129 /* RNFirebaseDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 23ADA4CFA5E72A90563F77FFD7F8D2CE /* RNFirebaseDatabase.m */; }; + 85455233A524A6D36F12FB9D3A3E6129 /* RNFirebaseDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = FF5C4F23D4B873252D3A6AE0DF8097A2 /* RNFirebaseDatabase.m */; }; 8547302CC4693C69F676D0FAF738DF38 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = F36BAC743B334156669AB5F54F5D2B88 /* cost_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8562DF2BC796D7D23CE5DD44BC407C01 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 027A4BDF040FB5089179212613E3B3A1 /* RNNotificationCenterListener.m */; }; - 858BDD4EA403C4818D6DCBC21F38DC41 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FFB7D705B4A5244B8A90E9D3A4A6115 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8562DF2BC796D7D23CE5DD44BC407C01 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = E83A88E809AEF3803F4E5A761CE9EBD4 /* RNNotificationCenterListener.m */; }; + 858BDD4EA403C4818D6DCBC21F38DC41 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 66E240E6C80FFA95EE8133B0739BAF24 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; 859CF4DDB4DF8D8BE39DB5AB5FE349B9 /* FutureDAG.h in Headers */ = {isa = PBXBuildFile; fileRef = A1D3BE504280FA7FCA187A950D48BCB7 /* FutureDAG.h */; settings = {ATTRIBUTES = (Project, ); }; }; 85C1168B650CAACD421980E5F1416548 /* FIRInstallationsLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FC7C9D569FFD5217EA66C11E24A7BCE /* FIRInstallationsLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85D1E23F3C30060DC22262360CA05CD0 /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = E12ABAFF3171D02F51399E7A8490FC79 /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85D1E23F3C30060DC22262360CA05CD0 /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CB3B65484B2C7F08B1E373BC74DB759 /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; 85EF72DD40BCFC53D8722FBF1315AA1C /* Payload.h in Headers */ = {isa = PBXBuildFile; fileRef = D6BFDF996B01A912B94084E492836A2C /* Payload.h */; settings = {ATTRIBUTES = (Project, ); }; }; 860728470F4EBC05ED4ED9EED2FACA48 /* FIRInstallationsErrorUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E7212E56B264E284F19A7D721819825C /* FIRInstallationsErrorUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 86413B6185C68AF825C32E586B8BF4B0 /* Phase.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CB73B5E9363EB75C4438BD8545B3E6F /* Phase.h */; settings = {ATTRIBUTES = (Project, ); }; }; 86558F39467D99DD75427289BF7D6D19 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = FB99886C1D76074BC6C12C7256092A39 /* UIView+WebCacheOperation.m */; }; - 866019462A8D0A9F1B3CE6E15B47294D /* RCTRedBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2AF05263F11E9264AB29F3FF7BEF7AB2 /* RCTRedBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 86F9D23859BB7C3DD7A1364A0F155842 /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DA5774B039E5920A5520A367E0DDF2F /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 866019462A8D0A9F1B3CE6E15B47294D /* RCTRedBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9D2728DCA1A94E5FC2AE586207F7114B /* RCTRedBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 86F9D23859BB7C3DD7A1364A0F155842 /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C7A6954C569327CA18E71E12127352E /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8712A013B77EFFFE014DA5E077E5AD8F /* PTProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FF837E921214E57FAC00A022F950067 /* PTProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 875DE806BC05CD6FBB5171B3684B1F2B /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 7800D7967E2F4B8C81BBB95A0BADF9B0 /* QBImagePicker.storyboard */; }; + 875DE806BC05CD6FBB5171B3684B1F2B /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 79603FB6D84DA9CA26C3216A1619C242 /* QBImagePicker.storyboard */; }; 8771DE0E347F59255E887573DD7F53F8 /* SKMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 056ADBB8EC7EC510BBD1C3834CE4F319 /* SKMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 87726AEFF151E25755DBEEB384C7E2A4 /* UnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C8233B54E3EF80BE1946D22E0D87040 /* UnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87768AD792BACA0E657CEA3829636F66 /* RNFirebaseFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = ED7807348F460F24A6796E2FCAFF067C /* RNFirebaseFunctions.m */; }; - 87873D084F83703DE3C009D5A2A0C043 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = AD1C24B6F59776BBD97B229E9442BEC2 /* UMSingletonModule.m */; }; + 87768AD792BACA0E657CEA3829636F66 /* RNFirebaseFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = B27494E5DCDCDE81B6D20D1A273AF99D /* RNFirebaseFunctions.m */; }; + 87873D084F83703DE3C009D5A2A0C043 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CBF7E307870D11E0DF366FFEAAA3568 /* UMSingletonModule.m */; }; 8799A7E7AF7D5000F6488DC84D14E692 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 075EB1E1621767C17080076A7C508105 /* rescaler_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 879A2F12063F7F3EC23F4BB0AC979758 /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = A5A55FFCE4292E4E32CA21DEBA8CFD79 /* FBLPromise.m */; }; 87A323D292E1CDF36C181E54CB70C413 /* QuotientMultiSet-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F83814029243EE4354E9FFC684BFF9D6 /* QuotientMultiSet-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 87BE04CBC078520DB22E157E03434C37 /* SKHiddenWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = D63FBF4C49B281E4555BBCC76309B2EE /* SKHiddenWindow.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 87C6E86E0A3326D7EF29AC082930360B /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = A4434D42050CE6D5CA8C346DB7F50E9B /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87C72733BA76222A5C56FA47429534E5 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 416154B7E09202C63484462EEC3E15F2 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 87CB5DBA0826C9C8AB5991250EA3B6DE /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 53053026D8C22321912DFDD101F6F9F3 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = C72E95A79577DA868BD39B4664B30CA5 /* RNSScreenStackHeaderConfig.m */; }; - 87D1C8D0E94309AE54E7909240E8B83A /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 247B221CDE93B0F8AF6F2E1DE91C2178 /* FFFastImageViewManager.m */; }; - 87D604BE8872A45E434BCCBA813103F4 /* UMUserNotificationCenterProxyInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = ABCF67441147F7505A4D4AE3861302A8 /* UMUserNotificationCenterProxyInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87EBEDB6463EBB931CB123175B4DB568 /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = 755629860A319CC7A0CAC31018519309 /* ARTRenderable.m */; }; + 87C6E86E0A3326D7EF29AC082930360B /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 213F9924FFC6514FD80671209A6BF530 /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87C72733BA76222A5C56FA47429534E5 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FD35075FC3768FFEAAA32C2B085634A2 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 87CB5DBA0826C9C8AB5991250EA3B6DE /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D23851161C87C8AD8C65B50B2E0825F /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 271CE91E6EC0C9097F31B11377FBC7EF /* RNSScreenStackHeaderConfig.m */; }; + 87D1C8D0E94309AE54E7909240E8B83A /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CEEA2AB72524B44262F1239949CA36E0 /* FFFastImageViewManager.m */; }; + 87D604BE8872A45E434BCCBA813103F4 /* UMUserNotificationCenterProxyInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = FE5E10696BC62AFF4EAF70780A1DB264 /* UMUserNotificationCenterProxyInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87EBEDB6463EBB931CB123175B4DB568 /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = 9189B7CFC60E657644EB3DDAC9210209 /* ARTRenderable.m */; }; 87ECC4C043286D06A575B38448A0A66F /* UIApplication+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = ADF64367666308B42395B49531BE2FBB /* UIApplication+RSKImageCropper.m */; }; 8809B9F0FAFDCD89CF323E1489AA3660 /* RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 906873AE10D339C97F90587F4E912DBC /* RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 885EA3B1BA03C6F70CD3DD6FF81A6E97 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FE0F244A1B099EC307B243AB8583E79 /* UIImage+MemoryCacheCost.m */; }; 88601CA34DF66C7A443806B033497F04 /* StringKeyedUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = F9563CDBB00CE3D8E720F62CB0A9D96C /* StringKeyedUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 886EFC385AB165A47AC13C719BCFDA96 /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = C24EE1A964E34FECB1A87A875FAEE2BF /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 887C97BFF8FE6AAB23F2B7A4F365901E /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D9CC335C8C592AEFC9057636EA09D300 /* react-native-safe-area-context-dummy.m */; }; + 886EFC385AB165A47AC13C719BCFDA96 /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CD43B10A20CDA72067E350C4FF8854C /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 887C97BFF8FE6AAB23F2B7A4F365901E /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B66D2E18D1890CB55261D46591E30D3E /* react-native-safe-area-context-dummy.m */; }; 887DC1F1F3429DD83EDC126591F3B6A8 /* OpenSSLCertUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E5618EABF16B6BE7F3023CBED9FF456 /* OpenSSLCertUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88A7546CD0CC5EF28061417BEF92362D /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 9858D08090F22A32B7CC8B17D0FD07AE /* filter_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 88E0E54C89590D83D5BFA15F1331204B /* HazptrObj.h in Headers */ = {isa = PBXBuildFile; fileRef = 42A215B9092D5B963166C1F6BB749044 /* HazptrObj.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -1785,290 +1780,289 @@ 892372828F1C3FB28FAE3D384E5C32F4 /* FrameHeader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF9E7AD61C9216985F645645C9725004 /* FrameHeader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 8936375FFA316F9576C0448D9414F21D /* CertificateUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1455C4759F082E626BB6836F244E2C96 /* CertificateUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 894C64E73E77B4F3B56C3D49CA9C59F2 /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C28D3AF9A04D627813C280AD720F2AE5 /* Random.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8958D59AAD95E09EE3548561B75CAA72 /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = A1213869BBAAEDD07DD56606232430C5 /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8962AB8A9C9B86593534D61FD3B4915F /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = AB15DBA4D06B0F95D1DC5B7E7E59C822 /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8958D59AAD95E09EE3548561B75CAA72 /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = CD13841A20E5E1B13FF9F3E02F7313EE /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8962AB8A9C9B86593534D61FD3B4915F /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FF53C6BFB492D84AFA525364B3D7749 /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 89A1C44FF67BFE028336E28D48080B42 /* Parallel-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 513AA54AD9587A3B06899E8AADC8E5D1 /* Parallel-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 89BD4AA4D3B1EE870D5BC99EDB0FD812 /* UIImage+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 403827E274826CFF30F539519D193F30 /* UIImage+RSKImageCropper.m */; }; 89C3A612CD4ADB81C44209858A136F74 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 1B0C860DA24D708F454DCC5064D32FEE /* cost_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8A1373FBD88F35501478391992C5376C /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = A313721673F604A436A4747E7320DAAD /* huffman_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8A16248DE23D916CBBBFA8DF54392450 /* Observables.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C5A40FE1A90B848643C806855445324 /* Observables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A5B3D6D40DFFDC77EFB3CC4B479600E /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = E9365E0F3C70A00DFFB73C55CE208FA1 /* RCTTextSelection.m */; }; - 8A6AB74E5D979D543445E1AC15D30957 /* EXKeepAwake-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 92621C4B5A088E6D97328052B9A3A2D4 /* EXKeepAwake-dummy.m */; }; - 8A7203DC25E6E40E7ED95BD4ECE3AD5C /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 50E502CB2B7A1EB5FBF82EFA8C9B927F /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A5B3D6D40DFFDC77EFB3CC4B479600E /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = DA3E4C5835932D3BEB8B7986FEDD1D99 /* RCTTextSelection.m */; }; + 8A6AB74E5D979D543445E1AC15D30957 /* EXKeepAwake-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B949C577C91CE50EDE4BE230FB6B0EA8 /* EXKeepAwake-dummy.m */; }; + 8A7203DC25E6E40E7ED95BD4ECE3AD5C /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = C4DE6568F95B2C3EBE3575AB08654B21 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A77D5E1942F02C90AEEF3957255C924 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = FB8D9FC9225755C2093E81F8EC58B9A3 /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A77DDEE62494C3D749EBBAB907565D1 /* FIRInstallationsErrorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = C12036796447184091DA046F4AA6FDDF /* FIRInstallationsErrorUtil.m */; }; - 8A8390D6CD5D28CB550DA998FDAAF223 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = F5E4192AE7921B806BBB7C8B4A0FCB3C /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8A8CC5BB726A951810D3CB4E255AFBB2 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F4B7D09C49BFC8FA482BFC030DC70EA /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AAE349C589934222F73539BBD48FA2F /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2D78B8E80FC6143DC5CEAD2D643B2920 /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8A8390D6CD5D28CB550DA998FDAAF223 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 5946B6702260C561B81B27169BF7B447 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8A8CC5BB726A951810D3CB4E255AFBB2 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BCD3DCC4CA8784083B88B132A508B9DD /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8AAE349C589934222F73539BBD48FA2F /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 703E267F3DC3D5BA002C0B8532D35662 /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8AB9E32DAF6BDF9585F5205FA0736F63 /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = C5E0DA99068CF1070E64E05D5F0589A6 /* tree_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8ACC17FDF17D071CB95330A1E1850858 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = C967A21D4DB245B24B51E5278EB1D7AB /* BugsnagSessionTrackingPayload.m */; }; - 8ADC78D6C0CCBE0336F0FE0F53340F1A /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60C5527B609F93E18346725FD1B1F454 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 8ACC17FDF17D071CB95330A1E1850858 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = 57B883F45FD88207D49734A856377028 /* BugsnagSessionTrackingPayload.m */; }; + 8ADC78D6C0CCBE0336F0FE0F53340F1A /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7CEDE1E96DC29F3EA70A5FBD2A5B064B /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 8AFCA90D1EB93097DE2A5298C729381C /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 4500DCCD43CADD1527758DA5F848FC2B /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B06017BE3E8E65F2B4C459B94742090 /* REAUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = CE04235EC62DB7D7F29A3F37AECFE8D2 /* REAUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B0E5441C89B63D6E7B68E74DE638616 /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DD091C6F83EE0CD038105910C0ADDFD /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B06017BE3E8E65F2B4C459B94742090 /* REAUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E1C7BBCBB1C5B8FBB9FD5DFC86C4FAC /* REAUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B0E5441C89B63D6E7B68E74DE638616 /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 42844D184F4BC602A0E614A5974AC8B8 /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B185D7F0B0EB26DF0FB3A62580B1068 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = F5E0D9130277A6F3085653F6AA2A4DDD /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B1A6727A64798A9A7D8B7AF7C25CCA4 /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = 159820A73CBF9AFAA0320A36EFA5E349 /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B1CB4DE5C9EF20B3719DFE780F2ED88 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CBCF12FDA5C1595B8125D84D561102E /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B1CB4DE5C9EF20B3719DFE780F2ED88 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = A065F6A32D5B68FA00622A733E69E4F0 /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B1FBC37AF98101724B7B6AA22A23490 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = CEAFDCEEFCA09B8A7CCAD985AE3B2DC1 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B445DA6E9CADE8458DD316E4B83DE93 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 32C0C15D205C2A456F02A54148A83B64 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8B4A5EFA46C771631880F96C6D857763 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 3489CB37C9B3ACDD44CF38EA4DD561B0 /* EXDownloadDelegate.m */; }; + 8B4A5EFA46C771631880F96C6D857763 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AADF5C03B492AD37F5BE2BEE9AAB9FF /* EXDownloadDelegate.m */; }; 8B544C209EA7679C75EE239C93C0B563 /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = A39ED56B7975173BFDB659D2B177FE9B /* SDWebImageOperation.m */; }; 8B808C168BCC293074E1671A5CAB5432 /* GDTCOREvent+NetworkConnectionInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = F2CA620EBE3855DA4C134916DEF9A7B9 /* GDTCOREvent+NetworkConnectionInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B8C528BACC409B0720831CF1AE7E240 /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 740A733248063787C4E6381A9A9E6388 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B8C528BACC409B0720831CF1AE7E240 /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B6392E34D1EDBB6F22DCAC11FA7A2CE /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B930FB85F7CB02FF575EB90CF55350F /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = 663730D6B97993DE05DE56E1E64A85A9 /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BA01965AE0F888BE823F704AB0EB6A7 /* RNCSafeAreaProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A2D38415C9BDA898602EC4847A794FC /* RNCSafeAreaProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BA01965AE0F888BE823F704AB0EB6A7 /* RNCSafeAreaProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8209E54DE962763409BF359C1BE2E546 /* RNCSafeAreaProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8BA04E1FA3708A51146E5A1218DA87B3 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 59D0AA3CB733B93E960AB827FF417B7B /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BB881B01F898C5F3A979090A41AF7FD /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = FF346B1F539C0033DC89A3628BB4EB56 /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 11CD4C8274BF810063EAE4979126E31F /* EXConstants.m */; }; - 8BDC780EFAEC1B9826D9B25A85BE47E2 /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 98873A3FDAB5470E663EE8F658A77ABC /* RNCAppearanceProviderManager.m */; }; - 8C00041F49471316D4EC654B1C21A905 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F56F453B57D2D90F9DF91753E5A9C8AD /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 8BB881B01F898C5F3A979090A41AF7FD /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = C00252FEAAC476E15DC46FA4A1E15A0F /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 88F598AA1EFC372C09C827F2A5298EB8 /* EXConstants.m */; }; + 8BDC780EFAEC1B9826D9B25A85BE47E2 /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 98B13B0717FC104AF9C47A2C0CB600EA /* RNCAppearanceProviderManager.m */; }; + 8C00041F49471316D4EC654B1C21A905 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F84239460D5A80372292B67350E2BC8B /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 8C0663F8B96853E59403275B7CF470F0 /* ScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F85CF2A508228A89D77307670C09B0C1 /* ScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C0A640F7F5FA4D7E162DE9284F16BAA /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 4902177CAEFA56F1474E9DF0D3EC09A6 /* vp8i_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C69C078920DA50B9E88B45647B20738 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = A27F1F03F7BC60CAAAFB4C8FF1386CAA /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C69C078920DA50B9E88B45647B20738 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 339B6078FABA3A8B20C8358C15B05E32 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8CA624564BD56CDA821A6C12FB87DF65 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 3097072566A9C6B9EA6C6A732B54717F /* filters_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8CBA61340D8457775EC61BAC42083002 /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A8A6F0742B14C8D349D9BCB716825AEC /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8CC74E310D402BA29146B705FACCBDB5 /* OpenSSLHash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 044C324DA966C314028D2F3B9D0CB553 /* OpenSSLHash.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8CC80E0DEBC0B93E7BC4D5BA8A06D287 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AEF694E046418F4A639846BBCA2C17F /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CD195F8D4797EA381A36F563A0E5F0D /* RNFirebaseAdMobRewardedVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B21BA4FAD083D3D105A46A5E31BD32F /* RNFirebaseAdMobRewardedVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CC80E0DEBC0B93E7BC4D5BA8A06D287 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = DEA63D349F8046FF0925A466C59026F1 /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CD195F8D4797EA381A36F563A0E5F0D /* RNFirebaseAdMobRewardedVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = BAF5AD0C7B79779A4259EEFB6286E588 /* RNFirebaseAdMobRewardedVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8CE299B1BBEBA23B44CDDFD5C12C61CA /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = DFC527850FAFC5440685B7384E42C9EE /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8CE9ED65324F42982FC8FDFDD56649EE /* SKTapListenerImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = CA8F0AEC5B73D4DEDACF2423A7775BCB /* SKTapListenerImpl.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 8D0EE2AEB43B05F35365B75908E3740A /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C9238C9A7502CDE4EEA318937B3C2794 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D0EE2AEB43B05F35365B75908E3740A /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 73065DE1F8840A8ABC2876DF435633A6 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8D105DB328C60025F6EE3BECF043717B /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23BF276F1AE4E94777C66FAFB545C31A /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8D1767AB59653E8540E79B2D42F2E7CF /* EXImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = ECB82060F47068594888AF3BDE08E50C /* EXImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D1767AB59653E8540E79B2D42F2E7CF /* EXImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 56FB941582BED866CCE91B8D70707F87 /* EXImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8D396CB6D3FF882946FDF08D7DFD7701 /* FLEXNetworkRecorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BFE7F1F6FA0BEA225AE855A9EEFA10B /* FLEXNetworkRecorder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8D4F75714A2F85B5F2ECE9860162E0C9 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0AA3C18BAC2940042EF61B66E4F41113 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 8D624EDC48442DF2E2C1044345D16790 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 27CF5439AFE8FA90355B9679CB21494B /* RCTConvert+Text.m */; }; - 8D8BC44C654639CB1C472DD066EE1323 /* Pods-RocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D70D9EBB5B766C22C2364940119C9F1B /* Pods-RocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D9795A39176DCECC68A4E251BDBEED3 /* RCTSettingsPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D9CB1B65131C59EBB47BC1727E119BE /* RCTSettingsPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8DA59E9D05B63A3D98033CCA9DA2B103 /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C86C06DD06CDAB3A0E9C5D8B39F53D1 /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8DBC72BE4083047072D9F1ECAEED3CC1 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = E4BF95C9C73202A4F49C1C4F3F0AFD9C /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D624EDC48442DF2E2C1044345D16790 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F392271B33493EDB35C410C2AF6734D /* RCTConvert+Text.m */; }; + 8D9795A39176DCECC68A4E251BDBEED3 /* RCTSettingsPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D36240A0190F2D89BCCB3B263C40756 /* RCTSettingsPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DA59E9D05B63A3D98033CCA9DA2B103 /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 16B483EE1F7F6BC3070E263688917615 /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8DBC72BE4083047072D9F1ECAEED3CC1 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 78DD90FE0D96F26C130966311D06593D /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8DD2BAF772C271D2D4FAEA77CBFE0CE2 /* SysTime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 781C771BC85D0BDEB37C406384502459 /* SysTime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 8DD4A41C90CD940843CB7A6B4F271A0A /* Sleeper.h in Headers */ = {isa = PBXBuildFile; fileRef = AEE5A96ABF96049FAD05031B5C5209B3 /* Sleeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8DE4C3A8FD9E0E1115308E2A4896FA8A /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = EBDD2425E88112600ADA145269B8A6AA /* GULMutableDictionary.m */; }; 8DEF96274F9BA17DDE42AC2EAE1EC1AE /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = CAEF7BF5B0D67EB2CA6B19A209ED53BF /* UIImage+WebP.m */; }; - 8DF60389EB9916428918923DC8086F1A /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C218912DC56D3A549EA9EFA6336D3CC7 /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8DF60389EB9916428918923DC8086F1A /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C70381B0803791E4B1968F07DB602CBE /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8E035517C8AC7D884CBA5819743A15A3 /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 833769E4C7B4407A1F00E150E3313586 /* endian_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8E24982870C8E41C148791A47D487770 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = B8431C8CFCAAB610AF5886CA7FB28F3D /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8E3E30DA44DAC307FF0AFFC9F890E9AE /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = F885B7B43A41983387381CB7913523CD /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E5BB2DDE8FBB037C835BEBEB5A8814E /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = ECF522805480D2064AB9453B7FE101B3 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8E842C89450F1F42FD0A472547D2DB91 /* RNDateTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = EDD08559E2215CE06A3DEF7092092158 /* RNDateTimePicker.m */; }; + 8E5BB2DDE8FBB037C835BEBEB5A8814E /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 174FCF0707F8C202D77654685238A1D3 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8E842C89450F1F42FD0A472547D2DB91 /* RNDateTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C49DC5AFD28ACC0613C396EA9DF4210 /* RNDateTimePicker.m */; }; 8ECAAD611878CFA4CA1E91A5ACC7FC41 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = C83D992973F17A2D65D6A56AE2411FD8 /* dec_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8EECFE19160CD69752A9D17BE13A0549 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A3AB6894CE98026540443F3ECFFD15A2 /* pl.lproj */; }; + 8EECFE19160CD69752A9D17BE13A0549 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 7FF674B00525A7455BA0FE93983F36BC /* pl.lproj */; }; 8EEEE5C24101D8A3A86527DA4A7B8D05 /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 73B2E6604FDC38ABECCF787CA13EB2A3 /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8EFE2147CC39B1A59725A0A336CBFCD6 /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4570B2791DCDB681C6884144EDF39C85 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F026D24EEBFE343FDBAC023E9D56938 /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = C3DEC4D104F3C26CFD8A08AC5D3426B4 /* quant_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8F0E822E61D22F4B1F22B72D68D3B3A7 /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = A3D19E82F6253E5548882A5A39A7E6B9 /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F1C53837C62D18AB63C32DF23B69F05 /* TcpConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDBEE17B3614A49EF2C714CDD27EC933 /* TcpConnectionFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 8F47D298D362B0669D7EBA48AA0D21E4 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 556767749DE24538CB02EBA61C2DAA2F /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F49598262406F32631A122B489AF25E /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD313F7671D7B76D259DAD10C0545981 /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8F47D298D362B0669D7EBA48AA0D21E4 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 301B5EEE4D976F7960898431238C08AE /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F49598262406F32631A122B489AF25E /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8DA51A5EC856863FC4224D5658CC1326 /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8F7DA096463C9D570850B73D39BE284F /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = 87B9E85AD2708CD9F2F57E0B9468C024 /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F89587395083D23F1F53F8F8CE7AABE /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F264626D6307524A77063BDB881ED581 /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F89587395083D23F1F53F8F8CE7AABE /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = ED1247E2285479CD2809B2F50BA91771 /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8FA27A3BC06AD1CED8F5389442861A4B /* RecordIO.h in Headers */ = {isa = PBXBuildFile; fileRef = 183081D226C94A7516014E21FA983C5F /* RecordIO.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8FB10A988A6DE8AB4FF13B4642AFFF82 /* SKViewDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = A7BAB4ED12A4A8C6D1E464A369EAE565 /* SKViewDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 8FBCED1491F348D833730523C6E63790 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 84CEA15C9F028188FC76B20548085682 /* RCTVirtualTextShadowView.m */; }; + 8FBCED1491F348D833730523C6E63790 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 96C95F158780A207A3DF0187A6F45A94 /* RCTVirtualTextShadowView.m */; }; 8FDC510019D77E1C0D7BA688F8C55E7E /* ManualTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB2FDF9773480E2F063815824369732B /* ManualTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 8FDCF28C63DB7284C66DC2C0C26B8361 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C9899F29C5C44523857D03C40AD583E /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9006761B0D2F13AE8D9DFB4362DA3631 /* SysMembarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4C1B737D6ACED98AC219B441356D8B69 /* SysMembarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 903509784A2416BE966209CFDACA4076 /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F8CEA997F00BBDBFCDC9BD09A8328D9 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 903509784A2416BE966209CFDACA4076 /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AD6394AE6A826BA7B35D3966725AA2CA /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9035970046360BBEAB0136DF92759704 /* File-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B2D7E43FE3D242C173192E4B29C7C53 /* File-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 903F10B3A802BE1A7C55CE787D766035 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = D9D67A48064ACEFA668CF1E62AC1632A /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; 904E61CACB3A8BE0AC1D58731CDEF5E7 /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E8F966910B5A7FE6D117384001D8564 /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90544C74C36B85E098F17E2974C49C2E /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 191CEB22E13262B0BFBCBB1ADF351C22 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = DE8F625CA9B70EFC0ACF66753B2B8C75 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9062E6AF8DE81E533095420BDE289902 /* RNCSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0639111348B07A51454B418635743A /* RNCSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90544C74C36B85E098F17E2974C49C2E /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = BC1F9A15243C716881C044634647BCC6 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = AEAFF8B3B86A75352E5CA5A9E1D4C722 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9062E6AF8DE81E533095420BDE289902 /* RNCSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F1C88F236D315946B52D1E56E73F344 /* RNCSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9065DD549003066B9A069F40D2485CEC /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 106EA4220BA45CD3242A9D0BC7332C3C /* lossless_enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 906C4E8BBA2D21500EAE0AC78DE17092 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F982B0E52AB2E4E1B81DDAB4B8F60CC1 /* 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"; }; }; + 906C4E8BBA2D21500EAE0AC78DE17092 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3807D5E58D3562F760AA950C7D9C01BB /* 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"; }; }; 908397F13209B4A6E2DC2A3D5E34698F /* TimekeeperScheduledExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB6BBDC47E1FA240EF6BEBE531278F14 /* TimekeeperScheduledExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 90971B47C3418E340CF56D3D9E529587 /* RNFirebaseLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = 57BC2564DE7D58D34C118892BB94ED29 /* RNFirebaseLinks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90A33EC5C2A670669E33DBCE1BBFB53C /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 76BBD1CCC87BF6DB2FE482B80D841F12 /* RCTTextView.m */; }; - 90A4FA2B12B95941392C6AB91DC061D3 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 76BD0F72902E48C2CFBCD65755A792B4 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90971B47C3418E340CF56D3D9E529587 /* RNFirebaseLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B9C04E3222A67441A61756262DBFFCA /* RNFirebaseLinks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90A33EC5C2A670669E33DBCE1BBFB53C /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F8B91C07680D10D32506D8BA5EA9600 /* RCTTextView.m */; }; + 90A4FA2B12B95941392C6AB91DC061D3 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C91FD8A4DE74D4BA113984DFE51F805 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90C95F7220758ED79831C1CF363000DC /* SSLSessionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = B981F5CCF893CD06CFD03437E80DCA3C /* SSLSessionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90D47A2F7D1BA712F1391D2371AE5C77 /* Common.h in Headers */ = {isa = PBXBuildFile; fileRef = D9CF2394D44341B54D3A25FF1027D896 /* Common.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90DB84A6D6895BDE8742C4B4D3A683E1 /* TurnSequencer.h in Headers */ = {isa = PBXBuildFile; fileRef = 64013498C54D3FDC3F3E3051E481C81E /* TurnSequencer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90E82D5D145841FBCB0ACDE8334222B8 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 423B63627875801FEB7E4ECA36A7EA84 /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 910C6F324CE795FE033EA8C7ECC59865 /* PThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A673645F2A933818C12FFBA617D84A8C /* PThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 911A4A5CD56BAFF86A1671DDD8843603 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = DF03482AC925EB58BCD8FEE81E27C735 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 911AA4796FD946BD3588E55F4CC55238 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = D0B72DC40E4D609C9D01B5A10F3D02E5 /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 911A4A5CD56BAFF86A1671DDD8843603 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E0C880EB09D63CA8E3E4659D04C69957 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 911AA4796FD946BD3588E55F4CC55238 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CB31498551D90CC3E83F90E8A0DDABA /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; 911D35D4C93E94049058BE6695C7FDC7 /* RSKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 468722DA6A5F7BF2065C3337128D6C37 /* RSKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9120D7BE95FE6542993581EABF38B0DC /* FirebaseInstallations-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AAF057173CD16FD65A7D97790566850 /* FirebaseInstallations-dummy.m */; }; - 913763F48A4D2A547A34E25D0905E3C9 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 437E9354DA6C66E56A1165795756265E /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 913763F48A4D2A547A34E25D0905E3C9 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 78495C40716C7F261C43C20F6A6020D2 /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9154E2A2238ACBBA0FAC221758119C43 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = BBDC1098F40796FF93B00BF55C41C5D4 /* GULReachabilityChecker.m */; }; - 916D0F1BB6A524F34140B43CBF9105F5 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = AE94C387DBEC7942C7E5AAA1ACC5C13D /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 916D0F1BB6A524F34140B43CBF9105F5 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 66255E1A445C31E9B8DEBF523E7B213C /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 916FA53C203CDD1276B204C0641E914C /* ConnectionSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B7A6D080BE05253E70FEBAB8FFECDED /* ConnectionSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; 91A4E3F7372B8CFEFF1DE35BAE442288 /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 7633BB7F050C1951D0C020BD47DD5CCC /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91AD65151392B739A1EAFE57B0742A42 /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 69C9C6813386AF2B515E56A11F952C21 /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91AD65151392B739A1EAFE57B0742A42 /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = EC1A175023CE8618E61DF3CC94DBDA01 /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 91BBF552A2FF6BB3042AA2B96075C326 /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D4E68F669C74E03B1E4A8807DD3C638 /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; 91BED5DEF72E7A2E92556E30A48337E3 /* StreamResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 64BBBE91D0AF7836061BF59939412153 /* StreamResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91FE289F51F96156C8ED18CF9888F106 /* RCTAppearance.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8227AB0A9A09777A728CC25B4E49D9A0 /* RCTAppearance.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 9211D95B45A67D2D9D76D71121F3DA24 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = E7FEFC8BF31652AE75D2A6B5CCF97FE3 /* RCTBackedTextInputDelegateAdapter.m */; }; - 92131AB83F381B6DDCBB859816480676 /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = AE43C7E09828679BC5E0A82EE1A9AAF3 /* BugsnagSessionTrackingApiClient.m */; }; - 923F86F7077D0C0DFABA10FB37D562E7 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = BF99D3FA1B59D96BFE371B6BAC43F123 /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 91FE289F51F96156C8ED18CF9888F106 /* RCTAppearance.mm in Sources */ = {isa = PBXBuildFile; fileRef = C287C0F7C7408A6539BBB097113CA755 /* RCTAppearance.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 9211D95B45A67D2D9D76D71121F3DA24 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 519433B12338DE88625944378658C13C /* RCTBackedTextInputDelegateAdapter.m */; }; + 92131AB83F381B6DDCBB859816480676 /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 522E690D4ABD7E5E39051161803A0237 /* BugsnagSessionTrackingApiClient.m */; }; + 923F86F7077D0C0DFABA10FB37D562E7 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = A9D551E4309D8EA2825168768234E581 /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 928C9250DEB2ADD3214968107989CB5D /* ProgramOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = E8B59FF69585BDEA20ACADA68A597D1D /* ProgramOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9296946BE070ADED28DA5560FBA45DF9 /* Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E79885D71DD91FDC77D1CB86B4BD3CBC /* Folly-dummy.m */; }; 92AA74D1F05BBE5402796AA8225D8834 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 05F0230F308837451B51927D88623BFB /* alpha_processing_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 92AFAE33AD485646B3E7EB8772215A18 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = DF178130FB35B0F86164837E4125CEFB /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; 92DF9D03171AB34F00DD37988294E67A /* YGLayout+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = D2B0944DB26F68CCB5D7A81F49A1A841 /* YGLayout+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92E0F28150B20AB70F5302620AA6AB4D /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C68CF456F99D500678CCA5E50593E0D /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92F22C6A1C5543C01988F3D6A1B500BE /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = D64AC27FE92DADF4D4A9DB08BDCF0F8B /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93020820AD3A13558AE142066790F4B3 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 393719E8E07E42AA1712335F0D76BD52 /* BSG_KSLogger.m */; }; - 934AED685CDCF090D5ED160925EF0D71 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CFCD3BFA6695639F4EDEBCDBC689BF95 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 934EE39A7D777FEAB83179E8B78FBD49 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = FF15DF6D8710A1D72E233A78C4A9D239 /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 92E0F28150B20AB70F5302620AA6AB4D /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D38E6FDD4A61F1F05EA4D9DA4A2853A /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92F22C6A1C5543C01988F3D6A1B500BE /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = E8706E1DA14B12D2BF99066A1CFBE2F5 /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93020820AD3A13558AE142066790F4B3 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 90DF0674E08860B569352D20BD836B67 /* BSG_KSLogger.m */; }; + 934AED685CDCF090D5ED160925EF0D71 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 44FA2E2BDFD4492C7DD867AEE0A192F6 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 934EE39A7D777FEAB83179E8B78FBD49 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = DF132D8E04244DFF406C105C77F67000 /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 935C588017563AEFEB80DC42C91EC15F /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 26E892040FE11059CCF8A12CEA7F3B3E /* lossless_enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 938629F70F1435EDFA4638D7421C6AD4 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F4297F5B8A71095E993382EA72EB207 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 938629F70F1435EDFA4638D7421C6AD4 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C185F8B998CB65285F15AA23AB9A16C2 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 939AF54C8251EC34E539FB93C1766A4F /* AsyncTimeout.h in Headers */ = {isa = PBXBuildFile; fileRef = C4281F09B0FF90C20173A2A5F7208B6C /* AsyncTimeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; 93A0E9A6CC99BE8D70FD6F259C9D5891 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = BE0352323548C847DD880E0DBC955E77 /* quant_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 93B4CF41B4F92A4904AE83D9FD29AC5A /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 04EE446FC64B653149F646C077D3D934 /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93B4CF41B4F92A4904AE83D9FD29AC5A /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F96F4F566619BA087F17E0672BACE93 /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 93ED1C2CEDC4EF1236212F0C80858B6E /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = EEC64A0DCD2E0046255CBC400D036418 /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; 93F0C82780EBEC79DB8700ED1CF96F8D /* GroupVarint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC54B43CCBA34AE2D53C896C74590EF3 /* GroupVarint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 93FCE248F90CE025EE8B96598B4E1722 /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = 77FE8AA76FBC75C95712E64CBDF7DD05 /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93FCE248F90CE025EE8B96598B4E1722 /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = 667A1783ED518ACBF89630EC6FBC8C8A /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 94392DDD913E886B02C132A930C1FDC8 /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = E170B7D134F5E84EAF48809EE0563194 /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9439847058CC81B6D2C14449CAF757A2 /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CDD2B97131CA882E213597CBDCA850E /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; 94717BAE4332BC8022BB19CDB3E538C0 /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = E710C1D3477D55D637DC898F5F428EBC /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 949933AD121308CF99120816674FF6D3 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = B38DFD28341D689393C7AEC5C063A64F /* Bugsnag.m */; }; + 949933AD121308CF99120816674FF6D3 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = AB6A4E2A4BD289D73D1653709C5E37E3 /* Bugsnag.m */; }; 94A072B9A08448DC0F01CA2573467148 /* HHWheelTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 64B2B7D58EA6528FDE8E517CADDC63A1 /* HHWheelTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94C039AE0D8233E82EBBF8CD60D104E1 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C7D5215B0BDA835A65F4F5C7BB27358B /* react-native-webview-dummy.m */; }; + 94C039AE0D8233E82EBBF8CD60D104E1 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D070D2CBA945B841360C64E75B7531C9 /* react-native-webview-dummy.m */; }; 94D2057D96B17B5338176E0EAC6D6118 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = A36CE3017C1F5A32EBEE065CC8855CD9 /* bit_reader_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 94F848D36732CD838F5B99C4A1D7DDC5 /* FIRInstallationsHTTPError.h in Headers */ = {isa = PBXBuildFile; fileRef = 4983905CDDD9456E7C6241113749DD9A /* FIRInstallationsHTTPError.h */; settings = {ATTRIBUTES = (Project, ); }; }; 951BCD0242FD1AD0318E94EF9F9749B8 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 771C7455D3701B1057474FB9F506696D /* SDMemoryCache.m */; }; - 95220E2ABB7A7857B237C2D80C60F6A9 /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = C07C9EBD2EBB6DC37055104767E8F838 /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95220E2ABB7A7857B237C2D80C60F6A9 /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 2880462EE7BDEB965A9165F40601AEE1 /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 953B94BD133A7467F4F38C0B944D76E1 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B832C63D25434FE443A3C81F86AD4F7 /* filters_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95425C77DA0714BA59332C5423094907 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E816A440D4FBA6227C86874FABDCD19 /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95425C77DA0714BA59332C5423094907 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 74A2A83FA393D8943E66E985ACE4F0BA /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9563C62CBE3FBA3E6607079FBEEABC84 /* Fixture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF3E5BD2D554C6B5A5D4612D81996D2D /* Fixture.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9569D11DD8C2CD434F2EC5127AE425A9 /* GoogleDataTransport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 16BF1CF862DC5ECF798A50360C0EE160 /* GoogleDataTransport-dummy.m */; }; - 95B68C33D8A3CA6C685E64643173F8C2 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D20256C34296B182165D221419D1583 /* RNFetchBlobProgress.m */; }; + 95B68C33D8A3CA6C685E64643173F8C2 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A5FDB191B2FCC68878DF1026B2F3823 /* RNFetchBlobProgress.m */; }; 95F1E18B1B527539D5BC182C5A5CD857 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4C9F319863A3E9AA126317EB324BB45 /* 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"; }; }; - 960B81835CCACE99EAF6D7301646A57D /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 94190577BAEEC37307893DA822D0BAD7 /* RNGestureHandler-dummy.m */; }; + 960B81835CCACE99EAF6D7301646A57D /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 601EC67A5DFBEA9EF5A920BEAB9037A4 /* RNGestureHandler-dummy.m */; }; 9648DE8BFD642A580258906D5C4A72AE /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = BF7B9D2F15D064D840EC4BF5CE4EBAF2 /* anim_decode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 964D4EB6DCD5294ECB1B2274765D9318 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A060F3AD7FF09042B53176DE4F6BE83 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 964D4EB6DCD5294ECB1B2274765D9318 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = BBDFE894843235B6191FDDF4E11065A8 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9688F6896053FCA3235E23B12FBA2925 /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E0DAC4DD8D8FBACC1E5BF9B18820D0F /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9690E06E3CF2942C7D7DE920D72633DE /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CD3C566B079AE99E3FB83982AF9C545 /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9699F0953E11FA6A675DCD375DB58C3E /* Flipper-RSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A7F14F402D392BE57FBCF2876E86D236 /* Flipper-RSocket-dummy.m */; }; 96A00C011A72200F5C719AA69C379BFB /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8991A73760A2F18360BB91029A5BE83F /* color_cache_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96B16CBD2DD52DA614AC23267995DCE9 /* UMPermissionsMethodsDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = DA23FA802004150814858F296B06E271 /* UMPermissionsMethodsDelegate.m */; }; + 96B16CBD2DD52DA614AC23267995DCE9 /* UMPermissionsMethodsDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 5294FB1006D3EC816EB96B3F50A7B860 /* UMPermissionsMethodsDelegate.m */; }; 96B1848EDA12E024991DC71441FB7728 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F0EEDDF0CA1745BF7448FA38B67DC5D /* lossless_enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 96B2D8B5FD04F1BFBFD24962C834C7FA /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 50CDFFC3E0F987E0B010AF0F7B6A0C0D /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96B2D8B5FD04F1BFBFD24962C834C7FA /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BC464D2B35ABB9FDB3FB5C07701C76F /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9704F9F1F14DAD1518EDEB3FAB732873 /* FIRDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C51737D911AA7D429A0EAAAEA91B08A /* FIRDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97094C87F27838DB2641D5B3F6F747AB /* RSKImageCropper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8ECA2F21A68ECC4CF80F79A32789911A /* RSKImageCropper-dummy.m */; }; - 970FA39BE3980D80C3BF24070B42C3EB /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A7191EDD6EC5DAD69F0407AA2C1E31B /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 970FA39BE3980D80C3BF24070B42C3EB /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 03BF740E86DFD366676F7BE357CB1CB9 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9734201F36FA9C8328F2A14634BB11E3 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 90642D89B48A1B3A4ABFD9C1F3CF9950 /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 9738E4C9D8B2C022206D0C3A64B10653 /* RCTScrollEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A174FCBA44E8253E94EF53F873F0FA6 /* RCTScrollEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9738E4C9D8B2C022206D0C3A64B10653 /* RCTScrollEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 21BD06F85417A2FC19AEF1446F9BCF05 /* RCTScrollEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 974D3D1D89E9AB50079AF4A57373410F /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 458F564036F6CE604B89D8C515B85152 /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9782D88D88768F2CDF72ED3ED1C70E00 /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = D6F1FB7F281468D9F70331029D55677B /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 978A1FA62E59BA87B857CF2C45096E1D /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 85677DAD4E22AAA5382ED8E3BC3CAFC3 /* RCTNativeAnimatedNodesManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 9782D88D88768F2CDF72ED3ED1C70E00 /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = A8EB97193C365E6E7EAFE31C5912E075 /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 978A1FA62E59BA87B857CF2C45096E1D /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3715501AADC5E79F4B31BF1A441E7E86 /* RCTNativeAnimatedNodesManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 979243DB7BF5C1BFB5966534EA7F7651 /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D49679914FE70C3E027D9C1C08D5A89F /* FirebaseCore-dummy.m */; }; 9796980DC5E2693A40E90235CE55CA24 /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C6444B470DA21473DBF1F1D8A6F8759 /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97B5917244291105CFF124F9A9547419 /* AsyncUDPSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFE33B318F22862F845097FDCE5C1058 /* AsyncUDPSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 97CF55B7E0719297FAEBA79CD5D37988 /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C6CA8F62953BAEB0F8092434A7712E9 /* GULSwizzler.m */; }; 982335F379D5B4FBF9B32E73DD9B5154 /* WarmResumeManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66519C9B614BF6B46A85952E3000445C /* WarmResumeManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 983D6CA5B3B54C113AA7BD7A2CF3095C /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = BB595745BB33ED2B6577CE4E3F7ED950 /* ARTText.m */; }; - 9840746F00CF232B1D6DFD8A1718E10C /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 264B852CD3B4070CAAE523CA5FFBEC83 /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 985F05D68DA486B2AD6D1753D52444FB /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8379467A8B0AAD43D48CACAB090CD6B5 /* REAAlwaysNode.m */; }; - 988D75C014F94B7584204ACED46F3975 /* RNFirebaseAdMobBannerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 582B4B4EF40968FFBF3C53E67990F8E8 /* RNFirebaseAdMobBannerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 983D6CA5B3B54C113AA7BD7A2CF3095C /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = DB5604C9ED19C28003800F8E65692022 /* ARTText.m */; }; + 9840746F00CF232B1D6DFD8A1718E10C /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65E2ED7A5221424D3A7683F9C881A544 /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 985F05D68DA486B2AD6D1753D52444FB /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B7FF2D266FE9A9EB5110887705DA321 /* REAAlwaysNode.m */; }; + 988D75C014F94B7584204ACED46F3975 /* RNFirebaseAdMobBannerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A5CDF8E8EF110508885D8EE58C50B06C /* RNFirebaseAdMobBannerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 98A6067DF7B3EDF22221CC59D86D6060 /* GlobalExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 54EBC6948C77C9B0D5184C24CFE72E60 /* GlobalExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 98BC38F964FA856EBFF4A1910983AD93 /* FIRCoreDiagnosticsConnector.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B6E93E99600E2A2E78D6C3DEA82A418 /* FIRCoreDiagnosticsConnector.m */; }; - 98C4F8C2F74808C13CC9FBBC7D411999 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 9AFEC1A12795E05C8A3BB3055E52B65A /* es.lproj */; }; - 98F4394CA1EE78DF275BDC48DA4339EA /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BA71CFB5BE743092D975B4EF33ABE86 /* ARTNode.m */; }; - 98F5499FC548222E238209963B115D3B /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 50FD58598508C4D9DEF6F64BFFDE308E /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98C4F8C2F74808C13CC9FBBC7D411999 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 1B9C82498C63431AFB222A79E6E16D1C /* es.lproj */; }; + 98F4394CA1EE78DF275BDC48DA4339EA /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AD0336E926D7868080715D0484EE6CA /* ARTNode.m */; }; + 98F5499FC548222E238209963B115D3B /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2302012F151549C70835D721652E9CA6 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 991C9DFB4E1EBB20D56E31715E457B50 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F04E64E8FF9D2C52B118013BC6D9A64 /* lossless.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 992CB0C6A03D842795BDF2045C33951E /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = DBA47DDEAD4D6754F88945C0073C0BBB /* RNDocumentPicker.m */; }; + 992CB0C6A03D842795BDF2045C33951E /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 18BCE9A3CCBCBCC0ECC654C2D00E0318 /* RNDocumentPicker.m */; }; 993DEE091D2ECD262F17F281E60653C7 /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 881C4D86EEB867E8AB55429524C164A8 /* thread_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9951C53F8DF76B21CDD26CE830B47FBE /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 96433AB848C8B2A54945D7CE0E979DD4 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 995C13DB63AB4E9744F9C574B39F789A /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 139C71A179C549AB4501ED4EBB6C2E10 /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 995C13DB63AB4E9744F9C574B39F789A /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 55BAFB6F4B064F5A6021FE4DC931F7FB /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 99678E001CBB1408805660436395E723 /* DelayedDestruction.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A66471CD4E68165E386B80F895A3994 /* DelayedDestruction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 996D4ABCD9CAB8072567D11BB4A77972 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 77BD6C3E902223EC8E562A2F277B8BD5 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A1CAC0112D863F86569C7123C0E65ED /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 00E27FAC0E4D4545A9C6EE57AE84854A /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 996D4ABCD9CAB8072567D11BB4A77972 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = C3038BF806255782FB02991A8ADEC4D2 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A1CAC0112D863F86569C7123C0E65ED /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 53F23C7C1FB440EE722DE3F9A867204C /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A563C719409A7F1D2A79F1A491DCCB1 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = EB65F5A086F84B5E1FEA590AA5BC08B1 /* types.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A6584332A48346E435E1681FAF817BF /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = B56CD397A4A2CEAC002000DCD9D39FCA /* alpha_processing_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9AAB02F415E5FC4AA386B4B262881EEF /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CD7A183075FACE684460A00E3C0C0FF /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AB480E0617FAB77DFDCDF1E49FDFABA /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF316CBE0CA5A9ADFD961E4ED274B55D /* 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"; }; }; + 9AAB02F415E5FC4AA386B4B262881EEF /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 203868200F772E197AA8AEB48A4484E0 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9AB480E0617FAB77DFDCDF1E49FDFABA /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B3E4AAF66C22411968EFAD2546BAB15 /* 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"; }; }; 9AD8AEA336F32F6C793213FA40B07ED5 /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 194B36E18F29E0A2E52DB40AB782A1E9 /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 53735EFB9F05CB52643324CC9137DE1A /* RNCCameraRollManager.m */; }; + 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F4BD87F0484A8760DAAEC616E85E0FD /* RNCCameraRollManager.m */; }; 9AEE62323E7D508CCE862B14ADE42BDA /* FKPortForwardingServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 14C703D5C07CC19F15EE6FAE4467C349 /* FKPortForwardingServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9AF3AC333D8D973E63790414985BCCB4 /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D86963372CDF935FEFEED1F8C0CAD1B /* FBLPromise+All.m */; }; 9B4D7BA740D6D143C5135BEA996C504F /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = AEE97EABF69D45AEDD71B127285F5E10 /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9B5F3A51D09EF1FFC6732A3E9664F8EF /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ACE1A5C881DA3FEA888E20C4DFC8C85 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9B68BF491BB75FAAA081B710C4A019B5 /* UIColor+SKSonarValueCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 218B28488234367B1A4CBAA2AEE25A54 /* UIColor+SKSonarValueCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B6F64DDBE87EB44B326E289C0A1379F /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C9238C9A7502CDE4EEA318937B3C2794 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B7D1422B56339A28AD9D4F4113A4C54 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0626132BA2BF2C2F53356A32CBDABBAA /* RCTStyleAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 9B7D2339739148FAF357EB985200C2AA /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 02ADEF2EBE6BE74990926B31325535DE /* RCTProfileTrampoline-x86_64.S */; }; + 9B6F64DDBE87EB44B326E289C0A1379F /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 73065DE1F8840A8ABC2876DF435633A6 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B7D1422B56339A28AD9D4F4113A4C54 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 510CA58580B4D9AED440EDDFD03F5E09 /* RCTStyleAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 9B7D2339739148FAF357EB985200C2AA /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 97500C0903A8ED5A6554A1D5EBE21E91 /* RCTProfileTrampoline-x86_64.S */; }; 9B9F376651B01626682667F916263D33 /* GDTCOREvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EF3A2D266889D108A68CD6120506782 /* GDTCOREvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9BA3070F2D82AB8E6B229971E126D4B2 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 722F3624449979188DD78BB8102CAA1E /* upsampling_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9BA8D8C40A0F28214F8BF4B31C15A8F8 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 529C3029FA0D10D8FA86294F3CBAB092 /* EXAudioRecordingPermissionRequester.m */; }; + 9BA8D8C40A0F28214F8BF4B31C15A8F8 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ED05566417600D4BA5679AC83552852 /* EXAudioRecordingPermissionRequester.m */; }; 9BD1674F1714F428A9214FBECF3A70CB /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = C9CA04D250814BDEC21277B2753E7B70 /* FBLPromises.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9BD2D2FA032357A4E0957F26F2857EF7 /* EventBaseLocal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 720D21980C4FD7A27028A93A4AB159A8 /* EventBaseLocal.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 9BEC51D393D8EA15CDD2F5111C372E3C /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 24C36A97CAC32C557FFA180623410217 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9BEC9CCAE8723F6FCEBAFF8AFDFE2089 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AF4F688033FC594C5312350D5A4196F /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9BEC51D393D8EA15CDD2F5111C372E3C /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DF6F3496F8688A1C552A282A65030625 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9BEC9CCAE8723F6FCEBAFF8AFDFE2089 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 43665162C9FC3B548258749A74D09AB8 /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9C3FA983775EB1772439679760DDCD26 /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = 42344ED6709C5B76F5BE76C36F1A379C /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9C51952E3EB004507F8D0CE623D3C837 /* F14MapFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 353EE6C33FEA1FBA2171E022A6BD897A /* F14MapFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9C5F0C01FF4777F79659AD5434CD88E2 /* GoogleDataTransportCCTSupport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B124E865FCBD63DF12A08FEAD8E5204 /* GoogleDataTransportCCTSupport-dummy.m */; }; 9C6A5C8A1A300380603454BBB6B72200 /* PasswordInFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83E6DFF90FDADE4F32BBB866DD612256 /* PasswordInFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9C6C20D5C4BE8F71CA3D3F1E8F3587AE /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = B52681B3182A2D46267C820E3699F32B /* SDImageTransformer.m */; }; 9C7B992227884E45708C42CB4298926C /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = CEB7C439EE2527E9C516911B814DE34B /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C86D160EAD50FDAE70F149EC8944D0B /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 7122B0301CE97FCD1569C75445060E4F /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CA86B6E4ED4E03CDBD1845A76675841 /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = ACD580006324A9490802733D59817A1D /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CCBAE2F7B397CCE5B2F4A0389610216 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CD860EB0F92142ED856AA5822697739 /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CE4BBBC558CE96AEB10D5D105E1026E /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 84D77D248D8B76E924E4417A4D9800DC /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C86D160EAD50FDAE70F149EC8944D0B /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = CD4C105DDB1EEFE5A97E40378DC888AF /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CA86B6E4ED4E03CDBD1845A76675841 /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = B5037CEDD30D0F53E3D072E7F82C93FC /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CCBAE2F7B397CCE5B2F4A0389610216 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 193F1BF61A56BA5DA8D05FFB9356D4CB /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CE4BBBC558CE96AEB10D5D105E1026E /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AD327CED0B16E70BBFAC1F8C1CB8E1B /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9CEF58684C0371C5723617778FDCAE9C /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B6404047D3496F7DB92FABA6C69FD367 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9D1919F4348D2AB5D0F25AFFADD7441D /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4B6E1CDA83E69E0B0606D6714E7C127F /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 9D37636BA7F0F4817392EBDD054CE8BD /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 53C2EA867FAAF4242F4816A6E06D4685 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D40193CB85DBCD47F289B51589CE632 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A405C5DEF0838E19B8C9F5D7D7F5631 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D43DF78A03C487B9901718BC83F99B3 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = C204583E3149ED5B14004D44F70870B6 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9D69DBE4C6CD55904653B09557C7F472 /* RCTSettingsPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 55D0A10204E528F27BA1071BD8E43D9C /* RCTSettingsPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 9D6AEC2BADA6415B32183279535FC3FD /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 74E14DD5FD83AE8B00EBE307C8DB6C94 /* RNRotationHandler.m */; }; - 9D7DB8C63567BA4261B7F1C2D66253D3 /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = D5043F42CB101BE1E6DF266ACFD6DDFF /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D37636BA7F0F4817392EBDD054CE8BD /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BD6B9A656BBFCB32E751952127B4D7E1 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D40193CB85DBCD47F289B51589CE632 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FFFD65F89899E7581B14E6D5591A908D /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D43DF78A03C487B9901718BC83F99B3 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = C1E720AF8E7748216929A0D978916EAF /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9D69DBE4C6CD55904653B09557C7F472 /* RCTSettingsPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 35909D4DCD6F551ADC49776A7E457BF5 /* RCTSettingsPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 9D6AEC2BADA6415B32183279535FC3FD /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 28B7C0C3C5C900D6A0D9B128EC437B23 /* RNRotationHandler.m */; }; + 9D7DB8C63567BA4261B7F1C2D66253D3 /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D00CA81827A82C81E011860C4AF806B /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9D8A2D740406E1048CB8E1A98A994667 /* ConnectionContextStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D8E50F8C628C76761489E50813FF2D3 /* ConnectionContextStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9D8D4EA0BAF1DF8818D1DCC72529B339 /* AsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DAE53859ED47C6A11187FF0D51E9DB7 /* AsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9DA028C9DC374A8253C86095F0ABA99A /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B845AD51C1A4A59B02E3A86BD260478 /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9DA425D4E355C44431E6DCB6C10328DE /* SSLErrors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F928DEF1F4C03431EB6FC20885D5B7AB /* SSLErrors.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 9DE9270C04172DD40D69B6D9546516B9 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = A1FCA69C255F8634784234D96A3DCC72 /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E04D8058BC6847CAC65773EED54D05C /* RNFirebaseFirestoreDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FF2675301A1914717195CB49B661D97 /* RNFirebaseFirestoreDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DE9270C04172DD40D69B6D9546516B9 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 22E32B91CF4D5CB550CAB64B98B0D2B2 /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E04D8058BC6847CAC65773EED54D05C /* RNFirebaseFirestoreDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 70AE121D75646634EC15F5B528784892 /* RNFirebaseFirestoreDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E2A037E4D6EF9CD80A27514CB192F30 /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CDD0B49E53E253DD76070CD5F430567 /* FBLPromiseError.m */; }; - 9E44726B3E6CED0E7F3B229765C52343 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 07EC667309D8613638DAC8246AD6FAFD /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E58367E443DD0FD20CD406075AC1BAF /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FF3DD9B9C1335E737870C0ECA10AD76 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E622B9D79EE00F811C5B02B4FC12342 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 125B7D56D814DA4086EBBB0FEF39A12C /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E44726B3E6CED0E7F3B229765C52343 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = D6D3C2E16B0602C74178760CCFD36F05 /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E58367E443DD0FD20CD406075AC1BAF /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 32C24B079339C218064D1D3F89649FD8 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E622B9D79EE00F811C5B02B4FC12342 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 05B62DE0CB2F421B3D6B26554A5EB4D0 /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E7028FA0F2ABF7D93770A85B5558BAC /* ScheduledFrameTransport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DEA2CE6EAF463BF959C6C469CA77AB13 /* ScheduledFrameTransport.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9E8CCA67A59216B83A6C4121D4FB5DFF /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = FF36AFBA13BEF7187C587D6256176EDF /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9EA5C0B783EB521B73FAFDBF1BF1642A /* Shell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8DF85B78C24F26356B7E17B438D4F25 /* Shell.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9ED08F4B9FE456E72BABEF07510E0F65 /* FBCxxFollyDynamicConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1F676EF261CAEC55075292BF38B330E3 /* FBCxxFollyDynamicConvert.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; 9ED9CD281FEFD9101F2D8BB98BCFD18C /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = E0F6C58E2DF711485E4D992D5D375A5F /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F126C1826371F586DAD449F9B02AC69 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = DEA6B6E5794DE17A73763EDA7F2640C0 /* UIView+WebCache.m */; }; - 9F1D654311A7953EE6DE9BE7600544C3 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = FE57B27FCD352BE6A537713A07C9CE57 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F1D654311A7953EE6DE9BE7600544C3 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D075950ACEC1CEB612EE725B66EDF1A4 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F306FCB67D6ADDA635F9D9A81D22BFA /* Cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD6578E9DB7CDF81979D963425A34C54 /* Cursor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; 9F3B692ADD43E5DE7C06A18ED59A21F9 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = D8F5319932C25E358AB24E8ED53D4F06 /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F5B9F9DE3D91E7196A1649FA52EEDAA /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = C2FF9BA9CCE6CACD1C2EE9F1144420AA /* SDAnimatedImagePlayer.m */; }; 9F69F8135343C51A14ECEC3DE3FEC05F /* format_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 60550095E577D0A98614076646C46E63 /* format_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F7405607659697C93649510BB7FBC5B /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3556FDCD6800754D6B7E16B921BD577D /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9F7405607659697C93649510BB7FBC5B /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2259EB0CD35B0B0C3E4A378009A14BEF /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9F7B5FBC79EAF261C231ED68CCA2553F /* StreamThroughputMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2CE43D327AA3E39E0442DC0A05A471C /* StreamThroughputMemory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - 9F8FA661BDBEB4BB9B95E9CF05A4A88A /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C9C390E75F283ABC888301FFBE52BAC4 /* RCTDivisionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 9FC3C9159E55C02263FDC38027901A59 /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = CF1BE94E9EB48F52834BF5C9CD2CC1AD /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9FCA0C85E502C92ACFA86EABD32B2224 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C75BFFAF2381944841560A7E0DDC913F /* react-native-orientation-locker-dummy.m */; }; - A02478583635DC43AF9D1BA278F4ABDD /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = BA63F857FA550BBB06710A27D5F76B84 /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A02936B34ECF830DE1E1034B359D50C0 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 3305EBFCDE2F3D9BE8746FA55736C793 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A031A8D4C70ABFA2E6794E0A997A259C /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 564FA813A54C5B41E4AA514B0CE1DB19 /* react-native-background-timer-dummy.m */; }; + 9F8FA661BDBEB4BB9B95E9CF05A4A88A /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9274BF6ACA6BA16D0FFA807EAFEF2E99 /* RCTDivisionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 9FC3C9159E55C02263FDC38027901A59 /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = EBC8F18223A97621CA35B62BA4B6F2C4 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9FCA0C85E502C92ACFA86EABD32B2224 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 15428E6F440CA7CD6BEBAC2B2FC8A800 /* react-native-orientation-locker-dummy.m */; }; + A02478583635DC43AF9D1BA278F4ABDD /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DD8EAE35A82F325B9433D5269FB7B3F /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A02936B34ECF830DE1E1034B359D50C0 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 86A705C8E8CF8619F488FAF56FA0B184 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A031A8D4C70ABFA2E6794E0A997A259C /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 45E6804A62ABB5756238C59901F264E6 /* react-native-background-timer-dummy.m */; }; A059C81E5903478539477CD5EF45FA2B /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = BA9DFE4C128C09D9E5EB1FC370C41194 /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A06691A45194C29EF1D311E2C72EE52F /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = B3143AC7D783B32CE3A0370B189EAE04 /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A06FEF799AA13ED077FFB3494AEDD1DB /* EXLocalAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8962A3AB1972A134062050FD168AEDE5 /* EXLocalAuthentication-dummy.m */; }; - A0BF45E5F3EAE179E31DC5E47DDD313D /* BitUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 17C7CB6B1D4A3E3E2C7EF4A816EC877A /* BitUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0F47781BEEC2952B78510FD30C65D7D /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FD3C5F2BB3CAF7B49F02185D0568A7C /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A108D0C39E6723A4722696896373F561 /* RNCAsyncStorageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 140F3C7FADB9625463231A741F09EDDA /* RNCAsyncStorageDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A06691A45194C29EF1D311E2C72EE52F /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 068F344C873A22E6EEC3E98A80E8F90A /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A06FEF799AA13ED077FFB3494AEDD1DB /* EXLocalAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9802786C99D260109FB3160F6E40F0FD /* EXLocalAuthentication-dummy.m */; }; + A0BF45E5F3EAE179E31DC5E47DDD313D /* BitUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = EAB9E1841AAF9AC77E59F6FFBEA1177C /* BitUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0F47781BEEC2952B78510FD30C65D7D /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 07A757D98F14B53083B25965F4E3E2BC /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A108D0C39E6723A4722696896373F561 /* RNCAsyncStorageDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EF66DC7902176479EC3A7E6677350CE /* RNCAsyncStorageDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; A110C4BDF27CB8ADE103964E9B1D0CC3 /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = E16109B9EB664F918C2B6A019364F2D1 /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Project, ); }; }; A112F0DEF56645CF1EA28BFCCAFF8332 /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FD00D90B96515E7533FA8D18F3EDA47 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; A123B51082FE44EDECB490C88DE3DFA3 /* GDTCORTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C8D90F5510EA5AE35D352D016D356CE /* GDTCORTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; A134CBE0553F5F3339A4A20A87F18E3C /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 84B32B7E450CEE8D7F9F6783F60C6365 /* filters_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A1471032678B3AD024125ABA40B35D15 /* MallctlHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE9110AA4A8337DA6C2C3EEDDC1063CE /* MallctlHelper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A1582553685734DA47129C215578CE99 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 8813047D84809D331325E58DD5EC4EB6 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1582553685734DA47129C215578CE99 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 06132ECBD22BEA72D2C727E65BD65BEA /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; A15EBE154B437F49646D3509D0113685 /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D564F5D27CBCF3B8EE77307584E0FC11 /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A15EDE1DE8C6DCDFCE68CFF7C31BAF24 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A3C56EA8B1A865CCBEBA9138B63E16E /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A1AE828FC8863E3F751638E4F21734BD /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3123946DEF3421A12E9BAE834F1E3C63 /* RNCommandsHandler.m */; }; + A15EDE1DE8C6DCDFCE68CFF7C31BAF24 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 725C77C4B7C29C1ECCA2E63C3355EB3D /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A1AE828FC8863E3F751638E4F21734BD /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 7196B73093E0A7E6E73BFA7688939872 /* RNCommandsHandler.m */; }; A1BD3EF5F8E40C42F8C2E6311902DF10 /* PTProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F4F7137BD4EB80F3CA17A5174917F1E /* PTProtocol.m */; }; A1CA7EBFC2566496011ABF1D36B56A03 /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D9AEDF7296D9AB36C796BB4D1DF4150 /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; A1D4663851C21E6CE831427D256B8221 /* Instructions.h in Headers */ = {isa = PBXBuildFile; fileRef = E730127AFF93894208BF52F0F6F84552 /* Instructions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A20814ED32ACFBE1A68407431BFA4038 /* RCTSettingsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = E7C2406EB26E7373D603678D269F1956 /* RCTSettingsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - A20A1BF93F6FDF11478EE34FB8F18CDD /* RCTImagePlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = C41320A799460C4301E8ADD1A4D045A3 /* RCTImagePlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A21AA461DFBE94B5DA7E5BEB211CE665 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 212466682BAE7E9458E3FDD6DEEDE465 /* RCTConvert+FFFastImage.m */; }; - A22002A0C7C80FCF08FED28DB6F224E1 /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FC0D0166FB2595C25A22DF7B58C4BA4 /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A20814ED32ACFBE1A68407431BFA4038 /* RCTSettingsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46CBB8B9186B4301E06887D86D332927 /* RCTSettingsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A20A1BF93F6FDF11478EE34FB8F18CDD /* RCTImagePlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 3275CB2BAFADCA7BEE8D21CF409ABA30 /* RCTImagePlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A21AA461DFBE94B5DA7E5BEB211CE665 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B9352897284F5E24FFEDF9755CCB430 /* RCTConvert+FFFastImage.m */; }; + A22002A0C7C80FCF08FED28DB6F224E1 /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = BD026ED98E8135E15F5B4ECB528A1494 /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; A27018554691D73B87FDF4C4F38FFA5E /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D434058588DC6E842D3D280DCB00912 /* 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"; }; }; - A28AC47E8F23967C0141177DB4D7DED4 /* RCTKeyboardObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 149CCEB54C1BE4CF3A0ABD79358751EF /* RCTKeyboardObserver.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A28AC47E8F23967C0141177DB4D7DED4 /* RCTKeyboardObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7AE141C59CDB269A306C102E4EF53DB3 /* RCTKeyboardObserver.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; A28CD67E44E5F6FC59426040908B323C /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = F9C78C720B773766CDC9BF8BBF340064 /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; A2AC30DF5EA70858EE380D76BB0D7697 /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 137BE22EC1DA14334E8037D1A9899318 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; A2D4FC56C5FBD42F95A12900620C2A65 /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6725480D5B0F92AFE93DD41620842F0A /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2076,65 +2070,65 @@ A30A244FB2E4A6C5EB09D2C8567E9F5B /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 399409442F56DEC163C87052645635DC /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; A30E24B8DAB4E9B313DEC9A9B3F70A3C /* PropagateConst.h in Headers */ = {isa = PBXBuildFile; fileRef = FFE0B63AAB7455814F4D4F51B9B4B0F0 /* PropagateConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; A3235E29BA5E0D51FA6508C3DBD5AE17 /* ThreadName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1E2E8FE98F9ED5FBA8DA6B061E3CF4C /* ThreadName.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A3377E75A6E4A4461B63CFAAC884C5F3 /* UMAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 3807015D1473BCE97EBCD824F4768D95 /* UMAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3377E75A6E4A4461B63CFAAC884C5F3 /* UMAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = B2F33DE9A04545AF996611650EDF1C36 /* UMAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; A33AEAE53F5DA1DBE42A13F0F7180FD1 /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = FCCFDB9DE0425A466516DDCBE25CD777 /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; A348E879FA3330E1712179F5B4FAC236 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = D30A5F6D4E615733B864938B01F86BA1 /* vp8l_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A372D39001A447E659CDFBC16C14DCBE /* CacheLocality.h in Headers */ = {isa = PBXBuildFile; fileRef = E28015CFB7B823A373528A421C6F2923 /* CacheLocality.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A389B2C547392252B058625077DD86C9 /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C0A7ED31841E9A3740388ABBCE3A723C /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A389B2C547392252B058625077DD86C9 /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B8C7A0C275CA5F6C3D75DAA0DB1F643F /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A38E1CD55FB4C876BFA4BFFFAE20F7D3 /* FrameSerializer_v1_0.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F3129C9A17E6ABFC260135095287CC1 /* FrameSerializer_v1_0.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A393F9F256FD061ADB964F68150EA99B /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A6D0908A5C598184049B728C746E1834 /* React-CoreModules-dummy.m */; }; - A3B77A398A9F20922A25D059D4FCF451 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = E6358156D78B68B00D4BE4D149283F3A /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3C5B95F92F2124418433EE74AF6D2E1 /* UMModuleRegistryHolderReactModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 83951F110FBE70C27DA463137C925BCF /* UMModuleRegistryHolderReactModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3C99329F26A99A80CC933452619226F /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A4CD029A18F4685FFEA2386D5576A90 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A393F9F256FD061ADB964F68150EA99B /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E5A99D61BC32FDB3E180C15A49884227 /* React-CoreModules-dummy.m */; }; + A3B77A398A9F20922A25D059D4FCF451 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = EB24BF5ED945CA8EAED2266D71BB0232 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3C5B95F92F2124418433EE74AF6D2E1 /* UMModuleRegistryHolderReactModule.h in Headers */ = {isa = PBXBuildFile; fileRef = BC32FB6B0931D32FC17CD84C7381ED93 /* UMModuleRegistryHolderReactModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3C99329F26A99A80CC933452619226F /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BCC255329C1F5DA77E1310CDA1F16BE0 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; A3FEE631937CCE97FD38F800E98895A7 /* UIView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6414F9BABB4450A280B3232696EEECE0 /* UIView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; A42284BAEF9A5D75B15BF4EFC4E4C468 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 7776C2F0879E5D6476A807AB35E0BB0D /* frame_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A42C59477BEC3A7A4D2CEBD6BC4A4F1E /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 37A89F466422593989BBA494562789F4 /* yuv_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A43091390B40A7894AFABD8004B03FF6 /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 89DEBC69C72FAB86A6C4D57C7714F19C /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; A444AC14D1AB1CEDE00F63E32EA7F7E0 /* ObservableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DDDC948C5A7095855026FD526CB2122 /* ObservableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4576BBC57A17E26132B2DEFB9B1B5A6 /* SKViewControllerDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = F5614EA1B4E668ADB31D0C34B9BE29A9 /* SKViewControllerDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4764E8EC572725B1EC20DE1F38F9ADB /* UMPermissionsInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = B97E97DB7AFAC13D5E6F157E5593C7D8 /* UMPermissionsInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4AC2B3B0958347F35A3AE14A82BE595 /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = CC8CE58616903C09E8A1A7FE375264C4 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4764E8EC572725B1EC20DE1F38F9ADB /* UMPermissionsInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 95CA6E0FA8A1D8CD890DA19C8A9AD226 /* UMPermissionsInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4AC2B3B0958347F35A3AE14A82BE595 /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = B74E4AAD40CBD1BF91CDA0ADD5C17560 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4B2A83F3F46087317BDA98ECA699248 /* Select64.h in Headers */ = {isa = PBXBuildFile; fileRef = EE6FFA316C5E886501F769E10E6F04C2 /* Select64.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4DF3AB01471BD888F4FD4EC2E9A21BE /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 953F040C2DA4203914670D7DE272A385 /* FIRComponent.m */; }; A4F849F5F0D9CD393F337409679534FC /* PTUSBHub.h in Headers */ = {isa = PBXBuildFile; fileRef = 39775A8C0155C941E8CC5EAA9FBB4C16 /* PTUSBHub.h */; settings = {ATTRIBUTES = (Project, ); }; }; A50388445DF10ADD6B22876F3F69E902 /* ssim.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A5366E641B196D18C36D850B6F32803 /* ssim.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A530BB82BAF0C755B99BFCE96AC93639 /* BaselinesTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C66CD3BB081E6B8F5FF09E729538BCD /* BaselinesTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A56297DE41EC440968388D0F4A94F43B /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A8900F07EF4F2C1C02C4706CA08672AE /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A574026171CFEEC0EECDE544E2C1330B /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 32D6692C58A15CAE118365DE54D97957 /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A56297DE41EC440968388D0F4A94F43B /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 923CE589C446C840C1F25F0EB6BAA31C /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A574026171CFEEC0EECDE544E2C1330B /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 832319D462FAB4CE77093E0E73C2B140 /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; A578B94A41F41F9D07A358C7D2874C0C /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BC5712BF038099E2747B83FE45D7F50 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A58985DB55A027C61BECD8DC75FEF204 /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = A59A3367288ADAB08AA4A94015AEAA17 /* RCTTextAttributes.m */; }; - A589A7984EA7376E70C72AF061F51B43 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = A77464EF37DA5927C152BFF014210D1F /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A58985DB55A027C61BECD8DC75FEF204 /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 20CB9EC86D31D9D66A76B70A1354F20E /* RCTTextAttributes.m */; }; + A589A7984EA7376E70C72AF061F51B43 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 06D9777B3F196B033B0B7843A294398C /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; A58D964A05070A1687AEF98D527B41B3 /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 064AF5CA1F21861C4AA9F8DF36BA0773 /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5A3684A5E0E259D2E9CFA5D438958C0 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE95D51C92A8BC75C7F4108723F4AE4 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A5A3684A5E0E259D2E9CFA5D438958C0 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = A094DFB5652F74DC9F635E18A3DFDC3E /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; A5CBB0D2840E7F615A3402D241CA4A5F /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 83BB3FF4F7D0EDA8A9AA4E608685A043 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; A5E0249E14EF89BD7EE9DC4EB19DDC64 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DA23D31E9D5059B476C911DCAC4A323 /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; A5F7A295CE8D9AB5DE3F0B75200DD1A2 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 25D52BE28A98C19C5268488B71CD037E /* io_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A602F94288003EADC14BAE8B862E7B77 /* ScopedEventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51B989233D2DCFB9B2D977F11E269CF3 /* ScopedEventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A603B60A6B2B711F9E90CB714A876743 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5925DB433330BD08AA33FABBF4FCA52E /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A62AA3FA69C27BD3BA6787EF1D06B5BC /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E7846734562A86F0F18D518A1A103385 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A603B60A6B2B711F9E90CB714A876743 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 597B3EE2E270E2438269536C4EF1A4EE /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A62AA3FA69C27BD3BA6787EF1D06B5BC /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FC11F78267A3776FD075A5C5E6FEBF1D /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; A6776FF2CD328909E8600FDCF823B0D8 /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BF34DC4EA797B9793EB476CE82E4909 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6819EA409E0033334420B790115A46E /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 94AB3EA544ADE14FA2198F7AC7905656 /* UMReactNativeAdapter.m */; }; - A6AFA852779611E471E81FB7FB479423 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 53F09EABC9DB13F31C94C4D730AD53D8 /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6819EA409E0033334420B790115A46E /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = E43A7C55554F6A25B0C051FBEADE2759 /* UMReactNativeAdapter.m */; }; + A6AFA852779611E471E81FB7FB479423 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 770342D181B3A40DFD2166CFC1D20A45 /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; A6BABFFFD02CC5A923F1B76BE536EA3B /* BlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = D9EDB0192FA9FC531B82B0AC8C991FF9 /* BlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6CAEE624647B633DA1FE379F3335BD9 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 201506DCFFE14B340C726A0F0563D72C /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6E5A41B5330A56303AC69C291ED1DB6 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 47BB49A7A88CDA666966A40A60D0472B /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6CAEE624647B633DA1FE379F3335BD9 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = AE05B3A2F623970E866232B06AE5FEBB /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6E5A41B5330A56303AC69C291ED1DB6 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 547F3064DCFDF7833EBE18E14AA873EF /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A70100EBBD9722DAA244ECEF1BDCCF92 /* File.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE445D0B15F8DF1243B7A0F53F6CC68E /* File.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; A7255A0E5A0B85CF61AEC27F539A8AD1 /* AsyncTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 53874D6EBB1C2337463823F2596E32C1 /* AsyncTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; A73A92EE393BA7EFB5EF12271CD5AE1C /* ResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EA407246DA23AF877A0AC11A59FCC6B /* ResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; A74265F5E9D3396D998C4D41384D939E /* QuotientMultiSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 33952517031EF6D62F284EC8A4AAE650 /* QuotientMultiSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; A748C7204AF3ED67608DB14125036794 /* SafeAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 0519831A7389E3FD1F01F9B872C14C26 /* SafeAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A75253B6013C5FAD19A4DEF9805308C9 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 64F31E78BE2527B46F88180861AE8CF9 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7556B80E5501E08DA08A33C9535A31D /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 62AA18061B5817E5FE1A408600036362 /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A75253B6013C5FAD19A4DEF9805308C9 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F0D236CFE1440B409DF707C02A8010B /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7556B80E5501E08DA08A33C9535A31D /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AB9A338105236D77A1F05D7CF2BF40F /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; A75F67BAE109D953729054CA3FCE37CB /* Flipper-PeerTalk-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 753C142452FC46968E9DD7933F00877E /* Flipper-PeerTalk-dummy.m */; }; A7721978FA34EA5CD4BB6F8FD361657D /* filters_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 89FA77E838754CA3661D42AB224F42E4 /* filters_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A7774B196AF28DD549E0CDF4807F7B08 /* ConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = C3E8026D2B56521C2BBAAC34B4B75E48 /* ConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; A791685400809D96C26DFA3858AD4DA0 /* SetupResumeAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = F89AC34C60188365F35B3219B72C38C0 /* SetupResumeAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7A7525768BA7795D9437CCCC3E9523A /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = D87BC4659B21C43E2DE2DC8B806E7DF3 /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7AC684A30CC732372746DC226BC7D7F /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D5E964FC44F2AA7D4C3EF7A41690D224 /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A7AC684A30CC732372746DC226BC7D7F /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 865C0286C7A7DD463DBC414E87BA43F8 /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A7BE4D326DF6F9381E4D49A1C6A2F6D6 /* AtomicNotification.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD224B7991A06769084E373BD2C36812 /* AtomicNotification.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - A7C6CA4554F58BB1C409F0F4A97C1656 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A98F0C5C2BBC051FE79A61AB612C24E1 /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7CFFB6114517AB27EA824EDAF6F1055 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 469DD77831E65227AA6C84B6C2B2AC01 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7D57A898342D32D6D087A8B3B880AFF /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F775CA009736DE4DD87CF5B45C553E53 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7C6CA4554F58BB1C409F0F4A97C1656 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A9DB80364CF202FBE54AC30880A387D /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7CFFB6114517AB27EA824EDAF6F1055 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 12D783C1B21FB89199B4E71FAC7425C4 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7D57A898342D32D6D087A8B3B880AFF /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C7BEF1633847DC3583DF0FE67E8B86BA /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7FE4D8E743D00ECB115E087D53587C7 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = 94A0F0C2B168029BE21DD002A1D3014D /* cost.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A814790EEE1DB78F2C8EDC04096D870D /* Fcntl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F10A46E052312AA2D141721324EBC6B3 /* Fcntl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; A82A71AA973E93441F2A2C34E1D2178B /* FIRInstallationsItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 963D71C0E93EFAE8B7D88349754F9DD4 /* FIRInstallationsItem.m */; }; @@ -2142,199 +2136,200 @@ A83DF000E730CC16B797CA08DB29B9CA /* FlowableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = E702511CB604799D32133909BD9C08EA /* FlowableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; A85E3E09CE5A1C1FCBE000C05F72FC0D /* MemoryMapping.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B72E9EBEF6A12B5430864B87015FD3D4 /* MemoryMapping.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; A86F7C0A488320ED06BFA2B846DA26FA /* RSKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = AE72A5CF938D526606C348B5A2B8B6AC /* RSKInternalUtility.m */; }; - A8850F1916921859A3847D004162D497 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C8F1E1F6089D261272D8D03F1ED97CF /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CB519AF1317C224A0079038A6E765DC /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FA86B460D2D7CF23574D4E10D10EF7A /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8BE07ED93A4F36C2658BC2D58944C35 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A43995AA71DF326C4A3EB8629602CCD /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8E01CE5F1EEE7260BF5757057CEF643 /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 32697D5DA0B612CE8AFF865E3133F083 /* BSGSerialization.m */; }; + A8850F1916921859A3847D004162D497 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = DCBEA93901E0F18536C3154CDBDE4456 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 55CD13CF5E879E6A37D171DCBA4823CF /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B6314BDE215CD2AB5D0E5DF9377C33E /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8BE07ED93A4F36C2658BC2D58944C35 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 571E674F3336AF09EB19B31663956F6C /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8E01CE5F1EEE7260BF5757057CEF643 /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = D1523E4D3D33FAF8B667ED1676211965 /* BSGSerialization.m */; }; A8F65854124450A07A7180E05C65D284 /* YGLayoutExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = E43EB0F46632FA8C2CC6E97D21978FBA /* YGLayoutExtensions.swift */; }; - A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0094CAE67569F4423CDD1130F0BDA500 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DF13E0F96EBCD3D9CA5D788138682C68 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; A91E2FEF560C2FB37C85DD84F1B01CFF /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 03BE24F4F18839DA0DF090854262D0F6 /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A925E1BBAE734866DD93941974FCB644 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 12FE2ACF3C60F48E6F74E827FC5BDB82 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A96C68C0C268482DDD4103E565FF1C77 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CA934B616778A58F79F91943D21AD163 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A925E1BBAE734866DD93941974FCB644 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 621222848BBBC14CAC6EA0ED52150978 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A96C68C0C268482DDD4103E565FF1C77 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 43F95AD8EB203A4BF4297B8F95FA894A /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A976416CE94836C67A780BDA4CC35100 /* AsyncSSLSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 878349428891F192D307BD872F246FAD /* AsyncSSLSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A99A29500A84A17672C54F80F175DCEC /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ABC7ED6892A1D14E1B7C12C170D4345 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A99A29500A84A17672C54F80F175DCEC /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = D654A042E466E53EFB2D56A8F7112B37 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; A9C22AB6A1DFF4957F5564EE589A4A64 /* DelayedDestructionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = D81BCB488A688F932AE45EF8B3C5E5B3 /* DelayedDestructionBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9E69DA1D793E8F8FDBBA1BF0892E119 /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FE28F16D50478462D0AEE7BF714D884 /* BSG_KSCrashIdentifier.m */; }; + A9E69DA1D793E8F8FDBBA1BF0892E119 /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = E29655ABA3D738C02F961D55C57A27DA /* BSG_KSCrashIdentifier.m */; }; AA0833E0CD30D0CC1E832C8D53373D1E /* ChannelRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F03305D95B13901C45D0E5D488973FD6 /* ChannelRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - AA395570884B9EDD2EFF69F413B2EE8B /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 617B59A4E91152675FA15196E979E7D4 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA395570884B9EDD2EFF69F413B2EE8B /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 6019F4A967CF7F183D45D3DCB5D50BC1 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; AA41B806DDD2464BA472118CA6EB6576 /* SaturatingSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 43534F0D85442B9E619CF5E9D9F45B0F /* SaturatingSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA49DBEB959622BC320A0C55CBB53722 /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = A41064C9FA8F1A7C29EFF9F8B583AF54 /* RCTInputAccessoryView.m */; }; - AA4B2C35721761FB29A7BCDF53A358A4 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CB71456404F9CED77678659966DC7E12 /* QBAlbumsViewController.m */; }; - AA5F944B8A228102EAB6BF9BF25031DA /* EXRemoteNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = F5B78C6A4B84127419E4C2CB6762402D /* EXRemoteNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA49DBEB959622BC320A0C55CBB53722 /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = B8407A284EE1A7F497670355C67DD270 /* RCTInputAccessoryView.m */; }; + AA4B2C35721761FB29A7BCDF53A358A4 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F8990EE6E59AABBD982F7605E36C990 /* QBAlbumsViewController.m */; }; + AA5F944B8A228102EAB6BF9BF25031DA /* EXRemoteNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 97DD6E501C8BBE027A870A3E4C025DD6 /* EXRemoteNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; AA71EAB157D4DA18A57F72BBE833E954 /* FIRInstallationsStoredAuthToken.h in Headers */ = {isa = PBXBuildFile; fileRef = C57CE1955BB7CFE1A4709E580CA99940 /* FIRInstallationsStoredAuthToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; AA98E5E760C605F57551D3D6192E5225 /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = A90E37B9D68B7238C8515BEA1EBE91FE /* mips_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAA397302AB9735FEE54E85069DF673B /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = BC7275CE001F4FCC4605B05417942BB7 /* RNFetchBlobNetwork.m */; }; - AAC20D7627D16FE0093FD265E896DEA1 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 34B9077B77809D6B9B552D2BFA10F8C3 /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AAE3C47A93D1E6B9C643FEB27927CE4E /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = F66E026AD4035C4B969CBBC952928F48 /* EXReactNativeUserNotificationCenterProxy.m */; }; + AAA397302AB9735FEE54E85069DF673B /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D9B427C03288A0DB252985BBDFE5599 /* RNFetchBlobNetwork.m */; }; + AAC20D7627D16FE0093FD265E896DEA1 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = CD5FECA91017F9422141D82A951DCF12 /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AAE3C47A93D1E6B9C643FEB27927CE4E /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 16FE72EAB6AEFE327C8261520F3A4A77 /* EXReactNativeUserNotificationCenterProxy.m */; }; AAEC54ADA9A9C0A6DD785E903782EFB3 /* ssim_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 457ABA7722CF7E4B51B0F0B3990BACA1 /* ssim_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AAEDC523773D6B13C078505D8B0973C0 /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 373D9CFD1D5D8E68722A9BF8BA08B629 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAEDC523773D6B13C078505D8B0973C0 /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D5F99BBC99BD67D8F8550C6EE870E0B /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; AAF05BFDD102FD660418FD7AE198030D /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 803326B8F3CE781120385D0CEB449FA4 /* analysis_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AB04017D38E62DF07CEBA7D22022A0DD /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = EAF1CB55BA567376FA0B97F48D19DEBE /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB0C50C0B3F909061C6A5A0892C77B3B /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 33F85B092F6064A0ED2AA95A2188EB1B /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; AB0D233175695AD5A5CFF80D84E56874 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = CEB3C3DE564317AFAD5D00F480B050DC /* anim_encode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AB21B48DF0CEA00D94C8AF2781E9A2A3 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = F4AD38E0B6EC319AA34AEEDBD78E6F51 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB59C6234A9993C6BE675204C9AB2EE6 /* EXImageLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F99470B4CFB1DFF0E1519B85AFA600A /* EXImageLoader-dummy.m */; }; + AB21B48DF0CEA00D94C8AF2781E9A2A3 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = A618B8630154703739DBD50828EA56B5 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB59C6234A9993C6BE675204C9AB2EE6 /* EXImageLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7014FF39C1FF978F5BD752ECEFB37727 /* EXImageLoader-dummy.m */; }; AB5FA629662137136E8341AD06FC1978 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E789D47D086753F372989959FF35FC2 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; AB66FEE1AD76390C20E69570385B29AD /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 53651B34A56593ECD757F02DBF8481B3 /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - AB6B1C527596D3144A8E068B20847368 /* RNFirebaseDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 92007FF67C73E7C4B6A81B82D3A7810E /* RNFirebaseDatabaseReference.m */; }; - AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A5B84D8D191ADDAEECEB3851DFBC0F6 /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB6B1C527596D3144A8E068B20847368 /* RNFirebaseDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CDCE1E47B7388E3909F728A49F23635 /* RNFirebaseDatabaseReference.m */; }; + AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FE975E8BCD76AD2AAD0FF69DD966703 /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABCD3CDD7AD0B48F038E8BDF3399A5FD /* IOThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 216CF2691BAD265246BFA60A93ED9D42 /* IOThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; ABE4C7F45E23A98AB7CDA0ABC75E19FA /* SKDispatchQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 139202B54DD94BAC1B38C9EB2380E47B /* SKDispatchQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABE92E6DD473C1C3130AFCA71ACCF240 /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = E1744DA8B3810869EDBEFD26A77EFD9D /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABF126106FD8D877441956C3AF553EEF /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = EB9AA65A09BAC02C00A55ADCD67D1B98 /* pb_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABF8D2E2E1BB9810CDDE4BD97264E33F /* SKEnvironmentVariables.m in Sources */ = {isa = PBXBuildFile; fileRef = 7120A386D905D0ABD4459D5329E0B215 /* SKEnvironmentVariables.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; ABF99A187E110B6F62BB3441ABCCC206 /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = BB9A451D14DEAAA3AD94DBE2736F4F4A /* FBLPromise+Reduce.m */; }; - AC123C0D22624AB059F2EDB2C55A4115 /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = EDA6323AE8935DC7449DD61F1AFA19DC /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC123C0D22624AB059F2EDB2C55A4115 /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9292869F1C5E1E48FECCDACD25352C47 /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC2903679DA7B6240539795ABD3F3FBA /* RSocketStateMachine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C90C73FCAC18187A8A58E68D7D0F1752 /* RSocketStateMachine.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; AC2A4B9D1168607041C3A0DB2ECB4636 /* Semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 685E1F09883F281A395F2B2B7981B173 /* Semaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC2E600E71A57F53043FCCCA443D8E3C /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BCE74587D3EB3186469314D0C81FEDB /* RCTInterpolationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + AC2E600E71A57F53043FCCCA443D8E3C /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F60F336DC55778EA0711B81C90113C75 /* RCTInterpolationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; AC32932952C3DFEDD41B409756F6F777 /* AtomicReadMostlyMainPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = FB73DF7B7BA890A12D30D59FA1F2774B /* AtomicReadMostlyMainPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC352F1ACD856937CFBF55A36C6E6D30 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D317B01532D8171FD0933F1D90EDB1 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC352F1ACD856937CFBF55A36C6E6D30 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9649698622E9DCAA00534EB0CA4CA0AB /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC3624864E7F8698E97EF22EF270A5F1 /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = D670DDBD2F6E5F61745FB208D43BBD5F /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC3905F52FE0809F628BCC0CF306E76F /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 2C80263B941C199881AAD0480066051A /* picture_tools_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - ACB6DBC72055A867888113D9CD5B715C /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 99410C58C15B024D3AE97571C8B66664 /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + ACB6DBC72055A867888113D9CD5B715C /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 66286C5F8DB2CF11DFF305B325446B19 /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; ACE7F710533E4AC5D694E89A3877D51F /* SKNamed.h in Headers */ = {isa = PBXBuildFile; fileRef = CFF0D0EB4C41A1552334AD771EBF534C /* SKNamed.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD0DA245B890349D01A915A669A813DC /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 13839A8281BCFDFAEAECA7819DD04C4D /* REASetNode.m */; }; - AD15E974D8793EA9FA3799E5793CC334 /* RNCSafeAreaViewEdges.h in Headers */ = {isa = PBXBuildFile; fileRef = 97FC6BD7C0618EAA750D1B4108648ECF /* RNCSafeAreaViewEdges.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD0DA245B890349D01A915A669A813DC /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 58C717B100AAD10D99A0B2368DF058EA /* REASetNode.m */; }; + AD15E974D8793EA9FA3799E5793CC334 /* RNCSafeAreaViewEdges.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D5FAF06DEF3F2C27DE379E9BA2F4B00 /* RNCSafeAreaViewEdges.h */; settings = {ATTRIBUTES = (Project, ); }; }; AD2FCDFC407F22399AA03C8D219CB35A /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = E215EFB6073591F6E2FF5E01B38E345D /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD766F8E538630FCAA9DD71EAE9F86D2 /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 405FF0F93527FF8267B2465C55E555BA /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD8B355E377543CD09CE6F54DF1FF9F4 /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 13073D43FC4026FEFC9288215CA8B051 /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD766F8E538630FCAA9DD71EAE9F86D2 /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C7524862A968BA3C7A17FA5522756C5 /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD8B355E377543CD09CE6F54DF1FF9F4 /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = A5A88B7A922E2D9C2F863A94F09E37E6 /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; AD96A58A131956BB8C9879F48A442247 /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = A5A10F34324B6C322E444D3BEC47318B /* SDGraphicsImageRenderer.m */; }; - ADDDC9248A6F312AD540F1D3E1D2F888 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1039BBF6BD28A96EC30DD7CB8F7FA870 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADDDC9248A6F312AD540F1D3E1D2F888 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = C1F71DCB5E48D4EEF4564414654247FA /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; AE026FA2E0FD35314CAB62FA85B127D3 /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C2CB39E6AB98330E4DC3B91371B039A /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; AE3574F9F3880AC0BB6A51947E420FEB /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C4CBAB83E3C0050DBDDD9AAE2B6D40B /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE35F51C28C993A1ED2EFAD1C5B4A08C /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = FEE12A9E98B8D825BBCE044BB9BDD0FD /* REAFunctionNode.m */; }; - AE5A86615D0136412F914D9EB421D86F /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FF0ADF5DC6D3FF308AECA808C0C7E30 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AE696B4A35AF464F62260BA86B736EC9 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = AB627D2AB477CA3CD3CD2976B9D5382F /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE99249C668CAF3BC44DABC8BA941249 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 33C501A1A12B23A1737140EC045E0289 /* React-cxxreact-dummy.m */; }; + AE35F51C28C993A1ED2EFAD1C5B4A08C /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 42AA672DF68A359D83BC2DA365764DBB /* REAFunctionNode.m */; }; + AE5A86615D0136412F914D9EB421D86F /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 77F24755131B0F7358D3A57F63039575 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AE696B4A35AF464F62260BA86B736EC9 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 690ECC4A894247FA177E6143FA9B4171 /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE99249C668CAF3BC44DABC8BA941249 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FECA065D211ECD58DC4A33E8E4F13BA2 /* React-cxxreact-dummy.m */; }; AE9BAD5416D1788A60DA1E7F3ED08F51 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 6F767B24439339E2DBC2EDBD71881066 /* dec_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AEB27C1EC087D6AAD63447C482C26AB7 /* RSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 09B718FA6415F3DC19B116A3F8AC7A80 /* RSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AEC4034BDBC291C3369745C3115A90D8 /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = F6D896DF889FC496FE599DB11FA9E0D3 /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AEC4034BDBC291C3369745C3115A90D8 /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = C61D243EB276F04767E5A555DC5ABD08 /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; AED318D41C7F3BE4C37C7FB57249C483 /* HardwareConcurrency.h in Headers */ = {isa = PBXBuildFile; fileRef = 15C0951EF4FA4F461B307CF6F26BFAB6 /* HardwareConcurrency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AED86CD66E589042814E7FA334BE0790 /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = FEC14D37AD94DAECA2EAF070894A6381 /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AED86CD66E589042814E7FA334BE0790 /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = 0437717A3CA4E8F2306033621154FB8D /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; AEF02D003A6C637C4E79B072ADE0A70D /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = F53C113A3ACB2993EE41CEFB1F9BF31C /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AEF42982A3A95308AF9611FC36E58B26 /* RCTNativeAnimatedModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8B06148A16E66822E0D7B561CFC1EF7D /* RCTNativeAnimatedModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + AEF42982A3A95308AF9611FC36E58B26 /* RCTNativeAnimatedModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = A6BC86E3BEA741E29A8DEEABC27592D7 /* RCTNativeAnimatedModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; AF05B4B144F28758071058C7E8FD1640 /* ScopedTraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 36CA48016AC8CF0F80FC04D682B01F9C /* ScopedTraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF1D206C1E91A995683BA28C56E6E8EC /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = C50B1B626E2C3ACAB2EB1703D353DD47 /* LNInterpolable.m */; }; + AF1D206C1E91A995683BA28C56E6E8EC /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = C7B94C3DDDFC4546093A9F4C1BFA3665 /* LNInterpolable.m */; }; AF3ABFF1553A775B32EB8EFC443D7305 /* SysResource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7B38CF963E4B5EBF6F336D06B440921 /* SysResource.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; AF94C7B27B49E1FDDF351596F49886B9 /* SKBufferingPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6B62D7C50D2225FDE4B7E2EC357C7E69 /* SKBufferingPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - AFA1747D7903B71E12ED58F61E2A35F4 /* BannerComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 123BCBAAC647F3A369933558170BD9F4 /* BannerComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFA1747D7903B71E12ED58F61E2A35F4 /* BannerComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = E1267B87B5E59D656061CB97B29CA63D /* BannerComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; B01E94A5DB2F0ACF14D31760C121B225 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AAA25DC9C51F2D3F1B5D1BBE81DD06D /* UIImage+MultiFormat.m */; }; B0293EF73AFB370CF8D66F32A68DFBFD /* UICollectionView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 52E15219291B4AD1CBB4041F5220B7E9 /* UICollectionView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; B02A53EAF212B4BF6CA79C1D9501549F /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = 950DC6BA39A9B2A0B4CFCBC9C5DDE665 /* FIRInstallationsItem+RegisterInstallationAPI.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B042D39C0C78EEB53F92CD779043E7F6 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 36A5BF922FAFED826AF8644C774A3DBC /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B04C1E49A57CACC60F17F76082838191 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AE9D6D7F0077A5B4EDED9DB57BCFD8A /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B042D39C0C78EEB53F92CD779043E7F6 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = AED0B857FAB2612A3C02EEFB0394AACC /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B04C1E49A57CACC60F17F76082838191 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 95D0801481BF92F86FC8EF6B5AA1C38E /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B05521F41DF6AD44A22725CBD8B1C16F /* Framer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7404418532E9BD80BBB9405C10211C52 /* Framer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; B05C48490091D1554925127884D267CE /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = D07C68A89645AB0B40080D5FB18AF91A /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0881CA09218A618A785683BE4C79CC8 /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C9FCF945444DD05ECD9D1A6D9CDF2D2 /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0881CA09218A618A785683BE4C79CC8 /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EA1AA7CEE6953D24970BB2C5DC96EF4 /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B0ED107F3AAF83FDD3035D0B3D864953 /* GCDAsyncUdpSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 786589B89ED794E83071FD6343477557 /* GCDAsyncUdpSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B11CA48DA91BE9D78A09D892242DB4C8 /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4032C4C557F3A1F04712FAE17E9EAF26 /* RNJitsiMeetViewManager.m */; }; - B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = CEB6982058473F3EB5B8DA8791154910 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B12AD0D904923BBD956FF1A6D89EF7E8 /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = B99C92243C54BCFBD07F15E26C67CFBE /* Color+Interpolation.m */; }; - B13C0BF250F77AAB2226545533D79A54 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E2967776DBB8C2491E39D6BE35D0275B /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B15A90827FD84A3A1F79DE8E2630486E /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 474A87575CEA38A9E52970DFF7AEAB43 /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B11CA48DA91BE9D78A09D892242DB4C8 /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F2668002AB9B4E751068F15C25494A8 /* RNJitsiMeetViewManager.m */; }; + B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AD0A5CB1D0D3CD2BCA009B81F9BB319 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B12AD0D904923BBD956FF1A6D89EF7E8 /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E6891CF027EC21C81236309DBFBD638 /* Color+Interpolation.m */; }; + B13C0BF250F77AAB2226545533D79A54 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EBF839F5B8DF93BF4FEC1E59D5AA016 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B15A90827FD84A3A1F79DE8E2630486E /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 242769661A070BE96392D9823B30A215 /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B199F4C45C3FC5E1C5EAB6EA690EDA67 /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = 56A3089E1AF3ED6EF31C8F1B27D7E3FA /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; B19C8210EF9AE5488C1603055CF085D0 /* GDTCCTPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = BF519A127C0E7F964AC9FF650FD7AAAE /* GDTCCTPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; B19F61D3F34687101A8E5B7BE2B4EAF3 /* TcpConnectionAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C6CBC0C1CB06C8DAD383CE6F3FDE6E4 /* TcpConnectionAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; B1C08C504986DA3CFE5A380DB723081E /* ThreadedRepeatingFunctionRunner.h in Headers */ = {isa = PBXBuildFile; fileRef = E2D1B133318B83CC336785C91785D681 /* ThreadedRepeatingFunctionRunner.h */; settings = {ATTRIBUTES = (Project, ); }; }; B1C753FE90549D728716F43E12DDADC0 /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = 22D4DF2E82D37065989833E6A83E8EEE /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1DC50C9C897484260DE304B56E3FBDC /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7502B382F060A689307030BFB63EC280 /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1E5D2A6D98AFFA7757879EF1D62694F /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 78CFC35A3CC83CBFA7DCA5AFC6FB7185 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1DC50C9C897484260DE304B56E3FBDC /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D76FEAA5F7428F3090F1F0705793F83 /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1E5D2A6D98AFFA7757879EF1D62694F /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 13E2E0C047B47EB7A4680733F16D12ED /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; B20E2104DD60A194165542B0AA180628 /* MasterPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = A2E40DD2E9D2404F4D1228100017FB63 /* MasterPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B21ED47165915C21EF394F4CA8C6DE71 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 16BC366877988251F04BB8A901CA5FCE /* RNFetchBlobRequest.m */; }; - B23E67E4C9BE3A1C7B6E94B36BBA23A4 /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 97C30C1EC16E4D7BF1E3192F02285C77 /* RCTConvert+RNNotifications.m */; }; - B2679FA44A18368E0569B37207A535C5 /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 847F0DE87D9F5EA07C384415DA780F83 /* REAOperatorNode.m */; }; + B21ED47165915C21EF394F4CA8C6DE71 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 17ADA862895BAB659A680E04957FF98D /* RNFetchBlobRequest.m */; }; + B23E67E4C9BE3A1C7B6E94B36BBA23A4 /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = A4A926B9AEFB38F0C367919B6A7CE86A /* RCTConvert+RNNotifications.m */; }; + B2679FA44A18368E0569B37207A535C5 /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 46D1F7CE56719D6DFEDCFB327CB81F39 /* REAOperatorNode.m */; }; B286814FE12B03656F533F95A27E6699 /* SKStateUpdateCPPWrapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = D902F332899320E93E02D84D939FFA28 /* SKStateUpdateCPPWrapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - B29473DF36DAF4E8EBD4667D6DBC717D /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E3F7D9AF8CA85FA31381F3C1E5A53EEB /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B2A1662DAC4C5D56E5DBDE9F7A56C09B /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = CA0E451936088034A8C77715E4FCCF7B /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B29473DF36DAF4E8EBD4667D6DBC717D /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4159D63DA40AB47FC3FA88C36B339089 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B2A1662DAC4C5D56E5DBDE9F7A56C09B /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 62599D7EAB6F281DFC84A316E703B7FE /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; B2ADBA919A83F3489D1643A24A241C8B /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = DAC73F3CECA41478519413F49926203D /* FIRConfiguration.m */; }; - B2D7E5D0798F269609AD21592B9F9843 /* RCTImageURLLoaderWithAttribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BDD9AD6CBDA0656FB33DD8C1354B565 /* RCTImageURLLoaderWithAttribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2D7E5D0798F269609AD21592B9F9843 /* RCTImageURLLoaderWithAttribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 14B0D68B2DA30553100958FBD3462504 /* RCTImageURLLoaderWithAttribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; B2EF5C82BC611CBDF4B346F0502EF1CF /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = B762A6594DFA43F71BC11583945B2AC4 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2F9BCDF64953778607DF09F5E955CEC /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 1435A5F30752CD73BD4A3E3394EB0EFF /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3182D6C3C0A4B073C751F68DB727998 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 50CDFFC3E0F987E0B010AF0F7B6A0C0D /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B31FD9F623593C92C57AAD4C85353B96 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = C02BFBD577016E09BB0A9A67D08B7290 /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B2F9BCDF64953778607DF09F5E955CEC /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AB1F71D319813D2CCEF3F7688B599E8 /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3182D6C3C0A4B073C751F68DB727998 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BC464D2B35ABB9FDB3FB5C07701C76F /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B31FD9F623593C92C57AAD4C85353B96 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 965E6D72E195FB1D0E95053C70D3D3B1 /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B33E52DD3539A7CE133743B32AA0A785 /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 32DC7ABAC6A190D72BD38D21F3B51E48 /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; B3DA463FE22DD22C783EA37F931CEFC9 /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = E24FCB4952C86FCF76EDC7C1D0E561E8 /* FIRLogger.m */; }; B3F14FDA0D22D6BBA1A8665801D74FDA /* ScheduledSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 599970E94039218125B53C62427803DD /* ScheduledSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3F297ECCAE6B3DCAE6CECB743F916B3 /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA2060F52377558351C43D46F0379845 /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B410AD52D34F133BEF01D2BEEDFABF8C /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = 18B25B2B339EA2F0D269DA97D6979384 /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B41D1BE775A5E1E71F079E1661B1553C /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DF7C10E2CA08CA750381E0305B01342 /* EXAV.m */; }; - B43D4373ACC84F4651349E2C0584EA84 /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = D0CD50DECA479B51EAB670564F7B7B7F /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 05F0473BC278863B6BBF9D7DCC8A3051 /* RNGestureHandlerRegistry.m */; }; - B46D8BAE4C9ACE396EE6E38D21C53C39 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FBD94102E34B2FB6F59A4A6E8F50EBE /* FFFastImageSource.m */; }; - B4739208CCD185642B0D5DCC2FC489E0 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A944B362F74B5E301A83ECDA64AEE10 /* DeviceUID.m */; }; + B3F297ECCAE6B3DCAE6CECB743F916B3 /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2CDE903C3BDEDE5D08F16FC3BE3ECB21 /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B410AD52D34F133BEF01D2BEEDFABF8C /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = 92847C60F1DF3FC7F44A8640A6238EF2 /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B41D1BE775A5E1E71F079E1661B1553C /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B8781B3DB75EA93F6DDD2118C4DF36E /* EXAV.m */; }; + B43D4373ACC84F4651349E2C0584EA84 /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F58A2DE39E8CBA92F7371D3C190D816 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E785381130F293A905F3147E42EA834 /* RNGestureHandlerRegistry.m */; }; + B46D8BAE4C9ACE396EE6E38D21C53C39 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 925033ABA65EC4A4A0569F0BB931F5F8 /* FFFastImageSource.m */; }; + B4739208CCD185642B0D5DCC2FC489E0 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = EE794BB16C18F3ED406FDFEAD0BE8B67 /* DeviceUID.m */; }; B50672BBDED3036FC7ED6BF41CAA049D /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AA4E2E650FB2F10CD6B28690D080A14 /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; B54B8FEC222B2A26021ED66D627DC63C /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 04AB6BB53E4F9261BD400BCA26111B30 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; B57AC832F696B961129F42E68DA0914F /* SKSearchResultNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 15FB8184718A34EB222FD57DB483C14D /* SKSearchResultNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B61FD3AA8214DE7386C1FC11C8D29267 /* RCTConvert+UIBackgroundFetchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 46043EA22750F5C014FAC7118BBA397B /* RCTConvert+UIBackgroundFetchResult.m */; }; + B61FD3AA8214DE7386C1FC11C8D29267 /* RCTConvert+UIBackgroundFetchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = AAFA04A6AA5D6D51ACDF9A5D0D2A6E9C /* RCTConvert+UIBackgroundFetchResult.m */; }; B625D5784F759BE494CD345370277911 /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E26D4A9819C02B1477264B691BBB58A /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B63190A3185A392452E244869C86BA24 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2185D5433F48B8B084131511CFF6F88A /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B63190A3185A392452E244869C86BA24 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = AF36392F1D7B314507E4BD61C3E5E701 /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; B63DAFB06AC2D02D95A8CF66D6E1FECA /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1568F3D2E05D423FDC41CFBDA6C91D33 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; B6593DA8207ABB3E1214F7D025C2AEB0 /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = 498C62399F6E7CF8C62EED33F4268C25 /* FBLPromise+Delay.m */; }; - B67E435AC80EC2BAB981F94F5D607C59 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E67B37021122702D85563E203C2FA96 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6842E62885EBBE6CA0C133734CBD26A /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 94D018CAF5AFA03EE3483AF9FE1B9AAE /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B67E435AC80EC2BAB981F94F5D607C59 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = A3C976C0C9E4692B59E23F4569D6001A /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6842E62885EBBE6CA0C133734CBD26A /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2811128BCAC24E68D241E515303FD488 /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; B68CCC3524E9472D12E6E84D5D64B33D /* FIRInstallationsStoredAuthToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 99D0BB4896A95C56B733C88FD61658B9 /* FIRInstallationsStoredAuthToken.m */; }; B6AFF1D2AC43774591A5DEED821AF788 /* ClientResumeStatusCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 76598B6A6BF3D748F21701E68BE3BDBB /* ClientResumeStatusCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; B6C5B18E7D63F47D4127BEFAEB0E082E /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 326C1C8C0F48FC5A36BCAA9A48BB4735 /* FIRVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6E3A26C40D3CE8046F2A4E6F2E526D9 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = EB0F2E6BE8BDE409BE62FE776AAE5C15 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6EA4E205997B8C4DE9F5EE2C46D4FB6 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CDCEE67BE04AD6AD8026326D187151A9 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6E3A26C40D3CE8046F2A4E6F2E526D9 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F65DEA5CF1CEBED1414DEEE84F27C5D /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6EA4E205997B8C4DE9F5EE2C46D4FB6 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 147E4035E6C050595E076374B843483B /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; B70227D69A6C4A9AAC333E9A6BC9B3BF /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = E8BE1BA1EAFFFB8328E7F20969E2E6FC /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; B759270B24D2CBE4F50041D28432CE75 /* HazptrObjLinked.h in Headers */ = {isa = PBXBuildFile; fileRef = 2149CA39B150BD8657AE5F8ADF6B95F2 /* HazptrObjLinked.h */; settings = {ATTRIBUTES = (Project, ); }; }; B767F6175EFBE5741993405BBEBE97D6 /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = 29B090899F53FC663285262C68375363 /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Project, ); }; }; B79379EE30EB5B9FAB3B9E5DDFAF509D /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 7DEB3E43E56226ACBF6894AE3C077389 /* lossless_enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B7960B2A4F1B3A056186D0BCD8F4EBAD /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AC9046FC579AB3098D2E25E77291FDA /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7960B2A4F1B3A056186D0BCD8F4EBAD /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 49FA0CAA013304A6C10DF62971F3D60E /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; B79E683059398347D30F641EB0D6D947 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = FC235C09984F2578184426088A6F00A2 /* FIROptions.m */; }; - B7ACE0423F22C8093B0347B15D5E6DF7 /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 67BD8F0F05A2995677B644E6C936AA2D /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7ACE0423F22C8093B0347B15D5E6DF7 /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = BC1EA21A8C048E4C30E64D18709CBE84 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; B7B02CF69AD8090F7EC4BDF6B106340B /* AsyncPipe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61B997809B2EF78B20C8B716EB9FC9C9 /* AsyncPipe.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; B7B1C326E18E2566E54AA59FFF788C28 /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 58FA7CFB9960B64D469F5745D1A48216 /* vp8_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B7BDE180DE1B36F39AF1EB08FFBC40F9 /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E6E3D47CFDBFB8BA79AA8C7A1BDD36C /* react-native-notifications-dummy.m */; }; - B7DBE33CE276F58E6F233BA4D78F093D /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 97C7F766B25433997B07B1C978B966FC /* BSG_KSCrashSentry_CPPException.mm */; }; - B7DFA107ED277F43F7F2BAC8F7E62403 /* RNFirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D89DE4A9E5689C45C23744162FF7B0D /* RNFirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7BDE180DE1B36F39AF1EB08FFBC40F9 /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 67CBBF1CF1083F83626E0E358313F7EA /* react-native-notifications-dummy.m */; }; + B7DBE33CE276F58E6F233BA4D78F093D /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9880EE0D5ABA07FDC55C47F6B699B88D /* BSG_KSCrashSentry_CPPException.mm */; }; + B7DFA107ED277F43F7F2BAC8F7E62403 /* RNFirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = E6380C5E127BF624781A1E19119B1A74 /* RNFirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; B7FD8E55781BD2B09D63E76DCDF4A3A2 /* FlipperDiagnosticsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 26587EC6A915959D983534FD3CECF9E5 /* FlipperDiagnosticsViewController.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - B803FBAD88A96C3E5446FC5948528C39 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = BB1BF29072A4F7C70FC2C39711F7FDF4 /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B80A5602ADDC9557632BB5C6BCB3DB03 /* UMErrorCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 2767680CE41ED19D766E69468F280AFD /* UMErrorCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B803FBAD88A96C3E5446FC5948528C39 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B66A87BE01399931A4DB29AB2E47E88 /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B80A5602ADDC9557632BB5C6BCB3DB03 /* UMErrorCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D4FBB5B861B2C912EAE982A1D1CF0BC /* UMErrorCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; B8143F787828257EC3C64CF3782049B8 /* Hazptr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B79DBBE85DC254ABEF25C5D20CC1299 /* Hazptr.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; B81828DD93DB85C0683EE36DD5EBE95F /* AsyncSignalHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 789DDC8433638B37CEF864380CBF1BB1 /* AsyncSignalHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B82032A92F84669EA74AA0D58915F302 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 00947C580ABCC7B722ECB8D7D351E6F7 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B82032A92F84669EA74AA0D58915F302 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 873BE1042A7120FDD0D647CC3B4B5D6D /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; B8317134B45F9440FFFEFF835F1613A9 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = 23FFB8AAC78F63DE6D89521A6E71CF10 /* common_sse2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B833FB9D115B433EC0105072048CB9BF /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = D94A4FC53AED68F8848D4EA0F216B06F /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B83F8B847341E98718FA2955E7BD865A /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E0C1D43ADC74B4277BB727935011CD8 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B8452766055CC04DBE28676D43F70E27 /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = FC76F239BF3B62D1ACCD0007933BDF72 /* RCTBaseTextInputShadowView.m */; }; + B833FB9D115B433EC0105072048CB9BF /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D2CA121B037274579E5BB4A1323ADDF /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B83F8B847341E98718FA2955E7BD865A /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 61BEE51AE3CAC5006678B55C26A7476D /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B8452766055CC04DBE28676D43F70E27 /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = DCBC7728CF60EED657D74457555870AA /* RCTBaseTextInputShadowView.m */; }; B8502C80D8E6C9931169155C3D26010A /* ResumeIdentificationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = D5C64C4B734B2F6E62C632650F55CB49 /* ResumeIdentificationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; B85C42718BEFCF4BA75650A4251641CF /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = E2516D63BEA2B740D3E80F31D007E2E6 /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; B860E187C366E80D3D751472B347400F /* FlipperKitReactPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 75CE5261F6D214187F4CF7BE26545838 /* FlipperKitReactPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; B89AF5E7D20106708B8A403401C035E7 /* SysSyscall.h in Headers */ = {isa = PBXBuildFile; fileRef = 56DFDE0F7096307BDD052E55BA03D153 /* SysSyscall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B89E3A3447915DDB4DFD9C50DCE2D762 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D8835DFC24DE1B46F747338F9C259C6B /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B89E3A3447915DDB4DFD9C50DCE2D762 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = CEF512E1556F1CA7C06B1CAF5E44A019 /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; B8CDBCB2063AD7729F98BB1F42114206 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = B64C39B4332656AD3F2E4E6BCE0650E5 /* UIImage+Transform.m */; }; B8DFD92B4164576447420BA5B4E9657E /* GDTCORRegistrar.h in Headers */ = {isa = PBXBuildFile; fileRef = 627254BAAADA6D360990561CA2616E52 /* GDTCORRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B90CD4D3B727E243BB7741E701F84E18 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EDDB0BF77E0162298A4164C90A4F5EB /* Pods-RocketChatRN-dummy.m */; }; B91776339604D97A896D26A18DD95CCC /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = B2FF725B7868244D2B9354B579024EFD /* SDWebImageError.m */; }; B91E70B671250005FA74AD2BC312CA08 /* libwebp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AF33804C90B2F27596A938C6965F0D4 /* libwebp-dummy.m */; }; B94722DA2E0A483D06286C0BDFE937B6 /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = BAC48720B210406AD0EC07D11DC2CEA8 /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B948BB6AB8F03C5EA60D9BCA3F8ADC54 /* RCTImagePlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8FFCAD5827966A8DE8809D1414255B0E /* RCTImagePlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - B9A14EB621D0FB90A99FFEDBF1C4C5A6 /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 10444C68A034B8B32F03D93EBBF935DF /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9A3BE02909B5E7C23AA24C087C11A9E /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2751DEFB13CE7F313B750145F8315914 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9B73F905DA515472B22E42E9EE1954B /* RCTLinkingPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 669FFDF2DE29C85E089E798B671D17B3 /* RCTLinkingPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - B9D1154CD997F0702268F81D59B6406C /* RNFirebase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1326137DEEA71E097D28136A3A4EC4A3 /* RNFirebase-dummy.m */; }; + B948BB6AB8F03C5EA60D9BCA3F8ADC54 /* RCTImagePlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1221EFC2F3735F558EBD5D919D9C02C0 /* RCTImagePlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + B9A14EB621D0FB90A99FFEDBF1C4C5A6 /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = EB82921F2E02FC1ECFB4492D20963B69 /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9A3BE02909B5E7C23AA24C087C11A9E /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A8F042A10FEB0CAF97AD9D4B19791E2 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9B73F905DA515472B22E42E9EE1954B /* RCTLinkingPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0985EF0291EB48A10F62D7DD1750389E /* RCTLinkingPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + B9D1154CD997F0702268F81D59B6406C /* RNFirebase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B499C9A9B19CB0B1CC863F5BCF6AA978 /* RNFirebase-dummy.m */; }; B9D989270BF39444739B9D53F28332CB /* cost_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = BDF673AF32381A3BA2BFE10AD51BDAC6 /* cost_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B9E9A4C8414CC010B04907511592478C /* RNFirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 950FA3E66045AE57058D56A5E8E11B95 /* RNFirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9EDCDF3FAC046611DB90A9950FC0F52 /* RNFirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 3481A38292488F28E5A6CF01D5EA7CCE /* RNFirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9E9A4C8414CC010B04907511592478C /* RNFirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = D722A405FA19C6CC7008096B753DC674 /* RNFirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9EDCDF3FAC046611DB90A9950FC0F52 /* RNFirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 04A4858962E3693181010CCE66F5B5C7 /* RNFirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; B9F471E76219FEF567A697FCAC6988A6 /* RecordIO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1311FD33BCC6D1D96DA1E1320127C8B1 /* RecordIO.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - B9FB25A6662D91DE4E9F30FD760ECA2B /* RCTUtilsUIOverride.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DAF4B359C47429B3B0D698854CA7E83 /* RCTUtilsUIOverride.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA2CD348EC967C9A230CEBAC06ADEB71 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = A5B407CB7FB98FE235ED25666DD2A4A7 /* UIResponder+FirstResponder.m */; }; + B9FB25A6662D91DE4E9F30FD760ECA2B /* RCTUtilsUIOverride.h in Headers */ = {isa = PBXBuildFile; fileRef = 55E7F734212F1B8C723A64FA02A7D0B5 /* RCTUtilsUIOverride.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA2CD348EC967C9A230CEBAC06ADEB71 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = B2E4A081F15DF5441C9E66AAB59FB0CB /* UIResponder+FirstResponder.m */; }; BA320783C2C9624896E06C34E9BF688F /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C51EAC64D5DC8E7AD2158B3EF4BE014 /* vp8i_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA5E0CA71A36D82490FA1A0B3127E89D /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = D44BAFFBC0BFBE6966C8552BC70F1388 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA884E615C31E28E4084698CB73A0AA8 /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = E4FA37A4BB3A256BB3748C57BCFB7444 /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA8AF0CCF12B99D7536C662611ADB1FD /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B3A36A060481037E0B081A183379270 /* GDTCCTUploader.m */; }; BA997D0A220566AB86D6FF4BDE3FA2C0 /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = F3C2CE01C00846AFEA01081D39470057 /* SDImageCachesManagerOperation.m */; }; - BAAF1FE5B7910872AF80471430B0D4FD /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C26224BFC9F7CAF1BAA53D76D222B62 /* RNReanimated-dummy.m */; }; + BAAF1FE5B7910872AF80471430B0D4FD /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E79FDE1EF9E842BE4E0E95A77B70CEBE /* RNReanimated-dummy.m */; }; BAB34DC9AE18D51771AD2EFF9AE9E82E /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D6C60021AE285818245003443143D156 /* NetOps.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - BAB4242AB0145F5AF6043535E7E14C07 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = E138989E28E0CBEE52F963CE389779E8 /* RCTProfileTrampoline-arm64.S */; }; - BB0753E38ECF0A3D20B3D17FDA002525 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FAF2CA43B8035437F93508EE9003AD7 /* RCTBaseTextShadowView.m */; }; + BAB4242AB0145F5AF6043535E7E14C07 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = 5AD338F2C06887E2F1C96561BAE8D24C /* RCTProfileTrampoline-arm64.S */; }; + BB0753E38ECF0A3D20B3D17FDA002525 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 14CDB6C90A2173FB61767133510DC0CF /* RCTBaseTextShadowView.m */; }; BB0E48F804C4577F614C7C4144E7757A /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 172F043EAC6C52FB5E4FEFBB8A7414BF /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB6E05C3DE3BA57A47108822797DD27D /* RCTImageLoaderWithAttributionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 565BE9B8724E8F9DD645CFB25EFE6CA5 /* RCTImageLoaderWithAttributionProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB6E05C3DE3BA57A47108822797DD27D /* RCTImageLoaderWithAttributionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 463F245DA6911B939013A87A485C003E /* RCTImageLoaderWithAttributionProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; BB72C52113C41EE2194D3A3EA913DC69 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 787AA91E97EBC57A19735F2F1F6F0331 /* webpi_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB8D91196242AFE19E79B921D659EE74 /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = DC4E149D47C8711B5127CE4B75308EF1 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB8D91196242AFE19E79B921D659EE74 /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F27146AEF64C6E7181C8D981C69E02A /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; BB91AF0B1144084593E5017E91C3A237 /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FDD6EA6431F87023A34C67F0F2AE41B /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; BBAB76A21C95354A81832F9C5F856D09 /* SKResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DB290718569F62EF6393B2E7A71FFA2 /* SKResponseInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; BBB4E8EEF50C70033F406A49F2040ED3 /* SysMman.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A393F8488B18D1536D2F02287AC8ECA /* SysMman.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -2342,46 +2337,47 @@ BBC83955233A742A5693B1C7A40E2E1D /* RequestResponseResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B0A3E4E88F1771BE23E4E08DD7A2FFF8 /* RequestResponseResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; BBEA2040AB1AB4C04EC266B5965CEA76 /* Try-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = BA7907E3054238613ED46592ACB57C28 /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; BBEF57329313254ED8F52D89464F39C6 /* FlipperStep.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3389D4D1E3F77F09829A7ACD37FA8A6E /* FlipperStep.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - BC09034C66F7BDEB05FC6DF3A6D2B7D2 /* CallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BE507CE36D4C90FBA38F2E85F6EAAA3 /* CallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC09034C66F7BDEB05FC6DF3A6D2B7D2 /* CallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FCE97B87F2004AF515FCBD601F5AECB /* CallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; BC383056F1DB2F7478B30CCF6FFE5F60 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = D9EC99C72D868B3A7BC823FE6FD40B3F /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC41EDFC95D158F607DE441FBD7205D3 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = C9155BBDA5E01B68FF923EEB79990AF4 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BC41EDFC95D158F607DE441FBD7205D3 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 085AA56D2492CA1A3C9A0DC8DE31B50D /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; BC5B61B37C8BCD8467E30F6D9F15783C /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = B670D78AEA5F1926FD7248B63B0717BF /* SDImageCacheDefine.m */; }; BC618200543E0DFEF8921BCFBC97D579 /* AtomicNotification-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = ED2C183AE153088411F27862D87C05C9 /* AtomicNotification-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC6530F3F8CE6345A867199080359250 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 487E3FEF367BF978805E546FCE64BCB2 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC6530F3F8CE6345A867199080359250 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E23C1C01B395E92820B7E2797F5A561 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; BC726EC62C981E8283E5D854F08EE647 /* SingletonRelaxedCounter.h in Headers */ = {isa = PBXBuildFile; fileRef = F0A85D7A09133E03844A2CF18195CB8D /* SingletonRelaxedCounter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC96F7ECB77D069E3F7256A1284D7D22 /* RCTTiming.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4ECC1133CD66CE037AC97303759C6DB0 /* RCTTiming.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - BCC6BAAAC00E3426AC2DF5559231EAF6 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A0AE1F909E2334BA4F0E4BDCC7D9C45C /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC96F7ECB77D069E3F7256A1284D7D22 /* RCTTiming.mm in Sources */ = {isa = PBXBuildFile; fileRef = A82E856B1804DF5549E0D6DF090F378A /* RCTTiming.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + BCC6BAAAC00E3426AC2DF5559231EAF6 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F0F9EF97E346B71CB7B7758D32084716 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; BCD873A143E0D34BEC00AA959AD55659 /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D9104ED8685F165F835159990D4F58E /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; BCDD72F20390EC6D23080FC948D4EC3B /* HazptrThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 2761477FB5731BF97BEA495423F22DA4 /* HazptrThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCE287AB23E636C9B4A9CA60EB400D52 /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 61A59992915560BF800EF136C199BE56 /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCE4A2AF4D01811C7693014AE1612E24 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 36B1EA524695A5235642D338CFACE993 /* en.lproj */; }; + BCE287AB23E636C9B4A9CA60EB400D52 /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D4431D0F08E347ED38DDC4A9144E80 /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCE4A2AF4D01811C7693014AE1612E24 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 797D9702416A12F6F03B62ABBDFFB6A2 /* en.lproj */; }; BD0D4A0B32634B1D13D9E57BD4D4DAD8 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 85EB48D9F74F32170CCC452CF6783E97 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD1D9E289B85888E5A0DA85BFDB7A306 /* common_sse41.h in Headers */ = {isa = PBXBuildFile; fileRef = ABA8FBB1DDA1BB0BDF1DD400099651DE /* common_sse41.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD30D501178A064D19E7DB0BDEED207C /* GDTCORTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = F67FF5C363C76D77ED33D6D936A9626E /* GDTCORTransformer.m */; }; - BDADC8329AD00834CF153FD2DB953E04 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B27C3CD814DEC5AFF14FD42FD880936 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BDADC8329AD00834CF153FD2DB953E04 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6019C343C84778B4FA07EF28A4C2F7F3 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; BDC1917353224F29E170FF5FFB75F6BE /* ManualExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 410141CF3DACA5A1583864981B69968E /* ManualExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; BDD8E02DC0DE315460C8452A92E64F0C /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1859615519D2E48F8924D355559455A6 /* 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"; }; }; BDE17974FF49ED73F08298CDC7E01D5F /* FlipperResponderImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = C1E5E494A829407FF8BD55A891B14826 /* FlipperResponderImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; BDFABD15A8D4DB4905425E02902B21C3 /* AtomicNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 270D70A64C3266A193849A260BD97F8B /* AtomicNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE13FFBC3ECD1D252D25888F6B0FF93A /* SKTapListener.h in Headers */ = {isa = PBXBuildFile; fileRef = C3C6707F29DE74544B084E88253702C8 /* SKTapListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE40EDBCF4471381FF28E7701C8FEA69 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = B88423B41F85BDF119CA2DFADB166825 /* bit_reader_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - BE495B8B88591823B448C899FCDC22A3 /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8221DB088F1F97FA01608BCBB7F6805 /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BE495B8B88591823B448C899FCDC22A3 /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8211CC783A953C15807F8A106728E35C /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; BE6F8D3062484095226992E20BB339DA /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F02F6E994B9537FC420EA54EDEC36571 /* SafeAssert.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; BE7C61DDD06679BA1298ABA9CF18CDA5 /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = EC58DB4A0FDE2AEE215C48D99BD4E6CC /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; BEA7DD3B32ECCC8891AF8E6EB931B571 /* ParkingLot.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D58017FD68E21AD1CB0739DE13EB5F3 /* ParkingLot.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEAE3668C99FF6B70535D14ADBFC1971 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C7D1B455671EA056C902123DDB90E26 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BEAE3668C99FF6B70535D14ADBFC1971 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = DF062F0947A341275A25E7705736DF21 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; BEB8A46866B0036585164D48371F67F3 /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = E4E2648211201464652B1487C44C900F /* rescaler_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; BEED64FF0DAE73F86741D0DF21B4CBD6 /* RSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC79CB545AD11717DEFBA8A8762449C9 /* RSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; BF08BC85875ECC5F80F249620BA6FF98 /* GDTCORReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = C73D217F3AF5A47F79A4D961287F1212 /* GDTCORReachability.m */; }; + BF257B6DB0846F3C0D58FDF9677DD393 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C44288E4F9D989101F85D6BC24EA9B5 /* Pods-ShareRocketChatRN-dummy.m */; }; BF4FDCC4F1BC4069129114C5CC7C0E3D /* ReadMostlySharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AA51B1BFE86323A2C6ACD6D95E5E6EF /* ReadMostlySharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF600203ED20170B32D07A27FE9D63D5 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E63113E3489FE47881A391D1384385D /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF600203ED20170B32D07A27FE9D63D5 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 93BCC47DF9FF77EA4C8D86B59E660960 /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF649BCAE7F16742B4A6781A42372DFC /* LifoSem.h in Headers */ = {isa = PBXBuildFile; fileRef = DFA07EEEB8570BD73E25EC6F93C4AF90 /* LifoSem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF8DD81AF5CA47EDA91EECC241516063 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = 7B67AFD966DA52D78F3F3FBEBDE7E78B /* BSG_KSCrashType.c */; }; - BFA315F1B904E334EA552B6D6A6848F8 /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C3ACBCD984A4A11C1B429B020F1B81C /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF8DD81AF5CA47EDA91EECC241516063 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = 2DF08470844D08D3FCDD27490BC8F6CB /* BSG_KSCrashType.c */; }; + BFA315F1B904E334EA552B6D6A6848F8 /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 132B36BD3CA6361522B25BE2CC599617 /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; BFCC85691AED43515CACDCDB566E10EE /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = A706122612151D161E2D2E611C819ACE /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFD25A0DCB8C16E01937EF26DBA8E7B1 /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CDDDB2FC493FE58DBE223EE05AD05F4 /* ARTBrush.m */; }; - BFDBEDA2F9345FED6BF31A72192A415E /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F3C3E84FE030DC137DCA3DE564F34749 /* REATransformNode.m */; }; - C0212109D1A2A2C10AAC8340C845DC73 /* RCTI18nManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1F2D8B1A106F59DD53D8F961BDA2346D /* RCTI18nManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + BFD25A0DCB8C16E01937EF26DBA8E7B1 /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = F30F51FF6DE53B9A4689AB030BAEFBE3 /* ARTBrush.m */; }; + BFDBEDA2F9345FED6BF31A72192A415E /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 34FCABCB381FAB48F9745EF9062FCBB6 /* REATransformNode.m */; }; + C0212109D1A2A2C10AAC8340C845DC73 /* RCTI18nManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 02076217C68670657003164127656BB5 /* RCTI18nManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; C057DE004A17A3F8D3B35D884C28C883 /* DynamicBoundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 35E0D02970C5BB6EC2EFA5478256E115 /* DynamicBoundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; C06443B16AB8E3BFD89427A2B4B49DEB /* SKHiddenWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = EB79F4597D795053C773D200E7806FBC /* SKHiddenWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; C06E0853195162D78F258D0F541B2CAD /* RSKImageCropViewController+Protected.h in Headers */ = {isa = PBXBuildFile; fileRef = D9FF6760F7D70B64394EA79D41B64CBF /* RSKImageCropViewController+Protected.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2390,228 +2386,228 @@ C0A2023B19676FAABBBA6B2BC4D9F8F5 /* FrameTransportImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 007F51799207C1556B23F3D8F8C1F218 /* FrameTransportImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; C0A325EF483D590E330CAE0754811F0E /* yuv_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 5FA06D199CC04C071D159F75EEB0F8D1 /* yuv_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; C0A764E2A7162F96CDC19C3FBB3941BA /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 604670516571B225E964B9ABE7EB5968 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0ACB39A2A62B6BE2B02F8A7AB97A14F /* RNFirebaseLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = 47E106347AA5264F3182C3270E9B7D23 /* RNFirebaseLinks.m */; }; + C0ACB39A2A62B6BE2B02F8A7AB97A14F /* RNFirebaseLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = 8871093A45BB8898DF03296EC4CED5EC /* RNFirebaseLinks.m */; }; C0E488789FEA375C81FE2F74F4AA9D58 /* EventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FFFDCD49160C16CA5FD6315148B4F07B /* EventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C0FCDF752209039DE050D739046CA841 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F08A534E16C64957338A0CE5064E4C0 /* RCTUIImageViewAnimated.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - C10FBABE08506DAFC414E706F80196A9 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 4442821F5922C2837AF490FF6733A42B /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0FCDF752209039DE050D739046CA841 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = F9A8B20448B23252F18508B27F43AA01 /* RCTUIImageViewAnimated.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C10FBABE08506DAFC414E706F80196A9 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 91BF4AF0A71BD3E3D6F415C2E1844FC1 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; C11DD2F2A0EC13794D0F91C78BD33660 /* BasicTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F9B0C29282F358A364C74AE8CADE12A /* BasicTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C13607802A82E097C94614A6F16A33AE /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F2A3944BFF7C3DD1AA2993E0A8F21D48 /* RNVectorIcons-dummy.m */; }; - C13EFBDE5744BB83A5A6033903378641 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6D91F1C7FC160F085A0887B9A504B834 /* InspectorInterfaces.cpp */; }; - C1527E631CCA0A9E697CE853758205F9 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 93C833509B4E07D36E97B0CAA0070E83 /* RNPanHandler.m */; }; - C17FB5AEA62C5636EF99FC0311BF2FB3 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = 865498C402B4E5F0DD79725D4441BC07 /* BSG_KSCrashSentry_NSException.m */; }; - C19100CFF6BD15D5AFE3EC100C926ADF /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C910DEB0F6609AF005E02036652D748 /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C13607802A82E097C94614A6F16A33AE /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BB89127F31A0E8631FEE39AAE27F683 /* RNVectorIcons-dummy.m */; }; + C13EFBDE5744BB83A5A6033903378641 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8CEDA1CC0E35E88DDA65F4DC4C0EC84 /* InspectorInterfaces.cpp */; }; + C1527E631CCA0A9E697CE853758205F9 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 255791213825BDEE0B9D20D5A9527FBC /* RNPanHandler.m */; }; + C17FB5AEA62C5636EF99FC0311BF2FB3 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B7949B169E5EECF0CC451DF9753930 /* BSG_KSCrashSentry_NSException.m */; }; + C19100CFF6BD15D5AFE3EC100C926ADF /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BBE3368DB226DB877914F70A20906B2 /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; C1E765069FBFC5049BDD3048CF48C443 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 965529006449D25900B4312A5DF2523C /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; C2210BD937C3EFB00A98950CDF17E200 /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D86C30001BA5E9D611749856BA32230 /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; C28013B0E6EE2B2312C28F6C894195C2 /* SmallLocks.h in Headers */ = {isa = PBXBuildFile; fileRef = D86404E62D00A42BC3480DCEFAD40A6B /* SmallLocks.h */; settings = {ATTRIBUTES = (Project, ); }; }; C280FBA6CB4B66759E107B5F44C4873B /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BDBA3B64038AF0758E644C9E892DCFF /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C298975604349C2BB0E1BA4F33DC37C9 /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = DF92CE034A458C57CFC9FDD2166F2176 /* 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"; }; }; - C29D2737771EAE9744B4FA2AF8CD3927 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = CD6E14841088CB752B6312D567BFFFE9 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C298975604349C2BB0E1BA4F33DC37C9 /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0973AA78A5A1F3D9E86E1E0096E24E59 /* 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"; }; }; + C29D2737771EAE9744B4FA2AF8CD3927 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = FDB438421B7D53597F45E5484ECA47E0 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; C2A20A2FC7C090819B293CF1B8AE1C79 /* TimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E00E9A2E6EC961FB7015E670B330551 /* TimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2C92CE1A68EF439A391D8CB91F831AC /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C55A44A457F10A97820FAB548C8F44A /* RCTRawTextViewManager.m */; }; - C2CD982B19A3149D14C0DD99C903BA27 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D8B10E7B4093EA180B50CC5E3CED277E /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2C92CE1A68EF439A391D8CB91F831AC /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 740034F52B2C9C06CACF931F5389A374 /* RCTRawTextViewManager.m */; }; + C2CD982B19A3149D14C0DD99C903BA27 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 210AF6D0BB0B919F971CFAEE89D4FD44 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C2D28B4B3FBFC6E8C78FF52F978104E4 /* AsyncSocketBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 80E15FB8F7DDD721FF85A6AA2F26F77F /* AsyncSocketBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2E7DC0C436E0EAA9FAF9517CAF48A97 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 99E92B76B0F8521D83C293ABF6FEC47F /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C2E7DC0C436E0EAA9FAF9517CAF48A97 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 195EDDD4EAE52DAA85438274E906F9B1 /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C3349FD62950CE68B534E08E98989248 /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = 570029F8BCE61753E91796B10138DE8D /* filters.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; C35C08137C73A031B842E342644BA18C /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 8141F4C2DBBE6FD9F84261552C9F3769 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; C375C167B744F2795615999A24BFDCF4 /* SingletonStackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BF6E5EC72095214FB6546581FFEEE21 /* SingletonStackTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; C39D561E85EFC337D50ED754F7246617 /* StreamFragmentAccumulator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B08EC2AE6AE6421C1E5B1910083B1DE /* StreamFragmentAccumulator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C3ACE4D0C00034561584FEFEAA6F9016 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = BFFC411F07683C9450E4200CA2760991 /* RNPushKitEventListener.m */; }; - C3AF87D9D12C1AEC2EE36F4AAFCD8A97 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6109228AD003D537CE60FBA075433CAB /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3ACE4D0C00034561584FEFEAA6F9016 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = B8D725DFB1F4C03BE8C7BA961AA793C6 /* RNPushKitEventListener.m */; }; + C3AF87D9D12C1AEC2EE36F4AAFCD8A97 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 80CFA61EA0B5D4667D7441DB40FDAFEA /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; C3BC1E0AA405968BB6EF6C6CFC4C639A /* AtomicSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 28F4BD11D608B29BFD0B2EA33C846AEA /* AtomicSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3D075B877A7097CA3E91A1A67E36A39 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = A1302FD8C4F8F08CA345E43026D50654 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3D46DB31D5CA3166F7DB6B8CD502DBE /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = CD6FB009D4E50D67DF92F21F8DAFE5BE /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3DF2BDF751ACE6F70AEA46E964F80CC /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F327DF5D1EF9193E97A40C31E991E13 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C3D075B877A7097CA3E91A1A67E36A39 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = C5E4029F0F04274F6FE1BE3AFDE192F0 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3D46DB31D5CA3166F7DB6B8CD502DBE /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BBD89B386138AC734E76FEB46720463 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3DF2BDF751ACE6F70AEA46E964F80CC /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B9B3D22E193441427526B68B9AE4EAF /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C3E036FEC576797A6BFFFD89A6BDFCFC /* Fixture.h in Headers */ = {isa = PBXBuildFile; fileRef = 26355BDA8ACAED4B5B52CE2D7896BCE9 /* Fixture.h */; settings = {ATTRIBUTES = (Project, ); }; }; C3E14453F764B48F93D114B6F06DB8F8 /* SocketAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A284E5C8ED6619014004F9F23BADEB1 /* SocketAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; C4121604E1F1CE075F2594D362577B7E /* SKRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = D6378D7C4460E3706422526FC7B02790 /* SKRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4190620ED58E5958E162C56DF3BC389 /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CAB3A635E372DA342C80E4E1538A8189 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4190620ED58E5958E162C56DF3BC389 /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8490DE5D7810B423327A7A23C99F990A /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; C4307E73DDD599B8D73C2F25D0D8C3B3 /* RSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 677328F64B117500B16665C480D5EEC0 /* RSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; C448A7F24667926FFE2CA75A251C6249 /* Log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 218C9C4CC995AE9EBF1ECF84FEFEA9EA /* Log.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; C448B82E54D115C72AB59F4F6BE72C16 /* WaitOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = CB1D4B7E31F361A7CF4AA4BEE1246517 /* WaitOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4700FC8D4591A4BEF06FBDB6F9D6812 /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = ED01C7BBEE2469668C100E6C64B6B39F /* BSG_KSMach_x86_32.c */; }; + C4700FC8D4591A4BEF06FBDB6F9D6812 /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = 1CE361FE0D4BD192E996ADA0397B17B7 /* BSG_KSMach_x86_32.c */; }; C470700CB17359170121D3848FE063BC /* Benchmarks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36BC595DFF8CB1CB7E39F0DEF96F5EB1 /* Benchmarks.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C479D38C287606B149EAD8AF8F0532B2 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6ED941F53DF92721599437932A10C44C /* QBSlomoIconView.m */; }; - C47A8BDB0918FCB122CB5FAF28A4D5AD /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = E94FC1C094B87AA5B9F330ED67E9B2D0 /* RCTBlobManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - C49DDDA4E8518BFB2BDE88FDE0C8A5AC /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BDCF30F98EA76B27C11322BBFACB3F /* React-RCTAnimation-dummy.m */; }; + C479D38C287606B149EAD8AF8F0532B2 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E64AA61F9FB110E17E1BF13DF20F1A0 /* QBSlomoIconView.m */; }; + C47A8BDB0918FCB122CB5FAF28A4D5AD /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 67C6BA4C82A212B40F1071C6557671AE /* RCTBlobManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C49DDDA4E8518BFB2BDE88FDE0C8A5AC /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B3B80503ED2A3688559AABB1B838752E /* React-RCTAnimation-dummy.m */; }; C4A377EE7504F7B0BEA766EFD9885DD8 /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = 53A068B00CB30837397FF64FE68BEA95 /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4C0690D0CC7D0EFC458CE9E1C67B9A2 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46726F35FDD4FA684D6C10085DD089D1 /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4C0690D0CC7D0EFC458CE9E1C67B9A2 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7723B709B97658061BC395D02723E9DF /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C4CF1A9274B26F538346FA24265C245B /* ExceptionWrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3EF71BA9825407811D79C109B9096405 /* ExceptionWrapper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; C4ECEC9864CEFBADAB76ACF75704CFF3 /* FlipperConnectionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = B160D2C5FBA458FEA51D4041D0BCFB11 /* FlipperConnectionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; C51C3D70CCB9260030FA831AF35788CC /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = A5711F1C2346B03337D5B19F4C3979E2 /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; C52EA3FB913ADE72343ED96051402BD4 /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DBAA5A67FE1FC63A1065005C74D13EC8 /* SDWebImage-dummy.m */; }; - C53E701EF1D59823F42034EEDB90ED79 /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 710B3241F8E7A3841B4E7BFC4FE094BB /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C53E701EF1D59823F42034EEDB90ED79 /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 94421D05FF42B5520560508983C521D3 /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; C54D5160B45A0C5EEF25E42C9361598B /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = FE46758639181FC6497B58527D37A4A1 /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5754429324490E0B719A268D20FDD4F /* Tearable.h in Headers */ = {isa = PBXBuildFile; fileRef = 44BF4DB7E982E0A4109C4C15028DF1D1 /* Tearable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C57BE850AD61F126370C11804774D465 /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = C1E4A437404DFDC3AF95DECB10C31E21 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C581E04803E07B777CFAB982B06F6515 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = E2C653BA98A073B45B33E340C973D86D /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C57BE850AD61F126370C11804774D465 /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AB3E45BA424F5C874A1658BD2FF6C55 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C581E04803E07B777CFAB982B06F6515 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 348A822DF6D38054DCE41F06CA6513B5 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; C589A35739F4BFB30A730B9898674387 /* ScheduledSingleSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF852D38B1E23A6121F49AA814196624 /* ScheduledSingleSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; C594A31CA074A02AC4A482543C626257 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = B0B19B592656BD9CC8100E880516AB3A /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5A63C751653FE433E1E8DE64CC61E39 /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7892AF4AD3191D445D336955F63664EB /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C5DD3BF95D9FB28F7148A8EECE77A93C /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = D9F1014F239236BC5F2F41AB81D21B01 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5A63C751653FE433E1E8DE64CC61E39 /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CA5EB000FAB712A0E1C018282F6F7B3 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C5DD3BF95D9FB28F7148A8EECE77A93C /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 1475F643FA2C29EC263FCAAB5242CF40 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; C61606AB4B09AD3974A7A65C762E5F1C /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = E41635B0C90A557F36FBA2C3F7213926 /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C67D0F5DEB6F068A8453FA1A2921CE32 /* RCTTVNavigationEventEmitter.mm in Sources */ = {isa = PBXBuildFile; fileRef = BB7507710AD9CEE099C15445BF9E94A2 /* RCTTVNavigationEventEmitter.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C67D0F5DEB6F068A8453FA1A2921CE32 /* RCTTVNavigationEventEmitter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6F12D0637B3D2526773BD8BBEB9ACA0A /* RCTTVNavigationEventEmitter.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; C67E74CD75F4E6B9D8ADDD965B00F75F /* Unistd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2D12A063B372699162E406DDB4F6ED8 /* Unistd.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C680AAB543D4CFDB99EF76CED42462E4 /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = CE890AED702E2B7D65D9C57CA1C84A4C /* ObservingInputAccessoryView.m */; }; - C6896F42011DE55D6973292599D4A3E4 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E9181469A87B74FBE318400C549AAFA /* BugsnagReactNative.m */; }; + C680AAB543D4CFDB99EF76CED42462E4 /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = B4F36FE51EF529464449400DF1808669 /* ObservingInputAccessoryView.m */; }; + C6896F42011DE55D6973292599D4A3E4 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D6EA589126F31CF5869987B619AB175 /* BugsnagReactNative.m */; }; C69D82AAFB23D14F38C990FDD557510B /* FlipperKitLayoutPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = C856EA4C772FC5D8FDF1B227D52075BC /* FlipperKitLayoutPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6A936FCFCA729233A8763BEE3CA052B /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F65ADC86C3EEA501595787CC5B00FF0 /* RNNotifications.m */; }; + C6A936FCFCA729233A8763BEE3CA052B /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = E2A5C7FEDF5324A60792BB6AB8DBC936 /* RNNotifications.m */; }; C6B1A2F2FB22FD061CBDEBC73699BF85 /* Retrying.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C9FACF7BE8CABF1A8C5A956E9169D20 /* Retrying.h */; settings = {ATTRIBUTES = (Project, ); }; }; C6CC8CC7678B10107D83F3250F05CA3E /* RSocketErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 06B58C5BE0FB638D9C4152C2BBFB0541 /* RSocketErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; C6E3FFB8A72569EFE2929C9FCA7D9009 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63684F773F68086B7AFAAF0A6C831AFB /* 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"; }; }; - C6E8A155E4A808F940A640CA96DCFD89 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AF5DA9FACDF827C7904FE02231E8A02B /* React-RCTNetwork-dummy.m */; }; - C6F23BF09870212DD14AB8BB5BE54720 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = F2C2DFAAE79C00DD3A4A99DCB8ECA3B7 /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6F9B4904ABB416A99C913DDF6EC210A /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5550464D5561100A4BAB8AE0084BF335 /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C6E8A155E4A808F940A640CA96DCFD89 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CF99954ABA0F0E1C81EF170CF757AF1 /* React-RCTNetwork-dummy.m */; }; + C6F23BF09870212DD14AB8BB5BE54720 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = F37A78F5CB57D71EA098A72686187367 /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6F9B4904ABB416A99C913DDF6EC210A /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = ACC49D210A52FB0039AE7951BEA5A57D /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C6FD6C0DC9F80A90245FCF4CA62032FF /* FrameHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6677EEAD784A5DB213F7C91D9A820EDA /* FrameHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6FF1B92FDD6FFE0C9F1C50A0A7C95D8 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 6A01959049459F6180CDF12E9BF2E794 /* RCTProfileTrampoline-arm.S */; }; + C6FF1B92FDD6FFE0C9F1C50A0A7C95D8 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 41D15151FC10125BFAAF9639B1E786E8 /* RCTProfileTrampoline-arm.S */; }; C705373FEB64A9758E0642ADACF65A94 /* PriorityLifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A9D28C1FE5235A48F4E83F0AA0C01AA /* PriorityLifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; C716E94E1FC3FD317F9317D4B823F47B /* SKViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 34E775840571C0EE3226EC1C1E0D2D89 /* SKViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; C722F120971D6AAD6A8DFC845041263A /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 760BA912701FF7BACCF4B8550FE363FD /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; C72CC6BD3565CD3EC264AF9A1ACA561A /* Flipper-DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E9A08106247C981C9CB70A47A55548FC /* Flipper-DoubleConversion-dummy.m */; }; - C74CEEC16CE658ED09054C50F88A9BFA /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = 12465FEC11132425BF0FFA79B10C0558 /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C74D336962240FCC776B8DC81312E56D /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 63A4E654F582CBCE2393A56FB247C076 /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C79C1C099A4E3D41A76FCFCB94D45A0A /* MessageQueueThreadCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 7675103AA92A4E8D188145E91E92730B /* MessageQueueThreadCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C74CEEC16CE658ED09054C50F88A9BFA /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D268B1BF2F2FFB76E78692A5A53834C /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C74D336962240FCC776B8DC81312E56D /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8E8A5018197A18920C5BE5FF9C041454 /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C79C1C099A4E3D41A76FCFCB94D45A0A /* MessageQueueThreadCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 8880B3A541ECB9C5780F8A64D1B41C18 /* MessageQueueThreadCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7A173E1725C1373814BB51FE821C9FC /* FIRInstallationsItem.h in Headers */ = {isa = PBXBuildFile; fileRef = C91D0C35443EDCA61DC536A7777222CE /* FIRInstallationsItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7A3E57940443B5D7E81822829D93FD7 /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 67DEC3CEBDF826564BC379BD72DAB258 /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7A3E57940443B5D7E81822829D93FD7 /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 219157DA3F91DD505AB71D9D598F3952 /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7A9C914D1147D6A5DD39398DF218798 /* ConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = E008D088ECFBC0055C52C9B8FFF48BE2 /* ConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7AC334C71CD87B757084ED03CABC794 /* SequencedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 941320936BE5D0EF4CFCB3AD914D1BF1 /* SequencedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7B54C967318F61468B5526684FC207A /* RNCMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8126B9B4A24FA3479FB554D1A0C8D1CA /* RNCMaskedViewManager.m */; }; + C7B54C967318F61468B5526684FC207A /* RNCMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CC23B91C02AAA9E443E23B245F2F5C89 /* RNCMaskedViewManager.m */; }; C7EBA3555289B8BBEDD910BDB3C7FCC5 /* SSLSessionImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F19B1D2D1D3E6D0CDFD362FDF60E68E /* SSLSessionImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C7F5BB6C7FCAD904664AE2800AA4713C /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 90B55EA33B950C64B25090F072B8B472 /* BugsnagNotifier.m */; }; + C7F5BB6C7FCAD904664AE2800AA4713C /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 97299D7DF64C3A37AFAA626EFE383397 /* BugsnagNotifier.m */; }; C805F6088C0BA02E7153F45BB0997ABA /* Flipper-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C520D41113FE32C6C9167648A90D442A /* Flipper-Folly-dummy.m */; }; C86859572C69BC64FFBD0CDE09D902BF /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BEA148826FBB5E958D57D606913DCE4 /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8820AA0E2B0ABE921571E52B40F5A56 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = A89985B8D6B7454457C079CABB112119 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8820AA0E2B0ABE921571E52B40F5A56 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = C30408675328543FB4553B0DDB54A527 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; C8A1E2B5B461F13C1F45D6B15FFD6DE8 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 40BAFE338E7AB738B25B647E7368DB91 /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; C8DC7F316AA448EFF2750D2E38A093BD /* IOBuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD4C88170E5E9ABBAA25E326FD4556DE /* IOBuf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - C90AFF718E45E2616D23519AC26AD09A /* UMAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 1641694B922617A51FF834292C8E44B3 /* UMAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C90AFF718E45E2616D23519AC26AD09A /* UMAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D53514A3C384B54BD8665A811F7FFAE /* UMAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; C935EA88458F6D63A29BBB247BC8EE2A /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = ED85ED2327D4E496F23675F165E5EEFF /* UIImage+ForceDecode.m */; }; - C940D03C9052AA2516156A393AFB5D41 /* RNFirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = DEB422D3B76E77B2B06F217E5FD64CCF /* RNFirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C94909826EB31FE3C9016B6E13C2FCF6 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = A03BE085C2E0CAA3999ED8B435C119A8 /* UMViewManagerAdapter.m */; }; + C940D03C9052AA2516156A393AFB5D41 /* RNFirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 16A90F1D00A6A9FE05A53BB7E056F287 /* RNFirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C94909826EB31FE3C9016B6E13C2FCF6 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E09A1470F4B3283C05E781D8775627F /* UMViewManagerAdapter.m */; }; C996524E284ABF18068EFC4E43751D3D /* FlipperKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 23798023D9032C3422CF7ED2CD4868BD /* FlipperKit-dummy.m */; }; - C9EDCC5CE69F87DCB8DC82E1C7455285 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = E1DE80D90C565FAD31CC5F26AECDF252 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C9EF8A6C951E50AD3B3D88D47A9D569B /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FE95B0AD41CD2DC937FCB63FB377516 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9EDCC5CE69F87DCB8DC82E1C7455285 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = DB3ED2C7C0845409CA9E960C11096A52 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C9EF8A6C951E50AD3B3D88D47A9D569B /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 82AEF35996658F64D84BC88F7E0C1F38 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA1B639183072FD3D497C782D81793C6 /* Subscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = D42E726424ECEB4787BA7B6C50BCB3BA /* Subscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA28EB9031E5E5659B2CA1F6BF10E4A2 /* RNFirebase.m in Sources */ = {isa = PBXBuildFile; fileRef = F9AB58141DE09EF4AC8B4F0FDA2A9CD1 /* RNFirebase.m */; }; - CA339FABE24CC2DB0B928D4BD89E2C1F /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = B058920ABF87FB0263219FD9D0228A1C /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA346BB90844C8A182A003AD3F622192 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9872589A0210618DBDA33C90F6F9EAED /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CA28EB9031E5E5659B2CA1F6BF10E4A2 /* RNFirebase.m in Sources */ = {isa = PBXBuildFile; fileRef = 081C56CE4BFD93DB7E0C290CBAA30FAC /* RNFirebase.m */; }; + CA339FABE24CC2DB0B928D4BD89E2C1F /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = F58C31634DED40B665D872550F49F254 /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA346BB90844C8A182A003AD3F622192 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7F990959DFBA2E0065F0AC917787355C /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CA358CA581FCD7B53B91B2DD197E9052 /* FireAndForgetResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = BE86EF1665A73265C0AE5A2B03F40783 /* FireAndForgetResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA424AC6B355B3DFDFD75FC85D27D2B9 /* FIRInstallationsIDController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A3DB6A871C64B1CF548EAF68DBD8C43 /* FIRInstallationsIDController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA450AEB2A714A74FB125D41DEBE56C4 /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 52FA14C797DD21BCB477C6135376D908 /* RCTAnimatedImage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - CA67199CAF85BD631A173567EACB114D /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = A621B444001C82637FAD3190B2A8A5F1 /* Orientation.m */; }; + CA450AEB2A714A74FB125D41DEBE56C4 /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = A79C1A4DBFDA57CFC27127DBB2A11675 /* RCTAnimatedImage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + CA67199CAF85BD631A173567EACB114D /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = C0DDAFD4DA5593CA0C4A0BE516FDD389 /* Orientation.m */; }; CA6E8BCDD8BA3F3A19D47CFD4CA9E6E0 /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 14497A25CB2E5E21FE9A71EA9FCAEE44 /* msa_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA7C3CCDF100231E301CFFE195B6FA17 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 2ED14333F4EBF2AFFD8909008BD5B197 /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; CA7F2680DDBC7A3D04FBED8EF5242924 /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 855FCE02606A98B69A4A7D2A87D05A23 /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA8D0188358400F296BEF9AF39B41632 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 412F3CC7709CF5225D74E43E35F39640 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; CAA79EA2F883D11144D8FFD4130687FB /* SysStat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93252A0BF5CCD57ABB693879E346D7E1 /* SysStat.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; CAB7B5DC1D0EB61717767389C3232654 /* SSLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 19AAFC294F13245488AE17A972FE38A4 /* SSLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CAC7B70AE74EBD9280EA43FCB75DE9B5 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = E533079A5A60ED45D2840B8F31B01B66 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CAC7E02596426939C6B1169EB15CFA6A /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = BB9E5B3EFEA74F851055B14191C29B87 /* RNEventEmitter.m */; }; - CADB95A31F2F4B8A80B5C6C4D7F4DB38 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = FADDCB66AE8BC9E7C8DFB025BAD562C6 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CAC7B70AE74EBD9280EA43FCB75DE9B5 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 93292D6AF38BF2943EFBF8B1D6EEE038 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CAC7E02596426939C6B1169EB15CFA6A /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F926D61524B0E52E67BC8EDEE7B51BE /* RNEventEmitter.m */; }; + CADB95A31F2F4B8A80B5C6C4D7F4DB38 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = D9BD6D3361B305856056293EB356277C /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CAEA7F7BBB0FE8A1CC81D246E71CF1A6 /* BitVectorCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 64F6B673866A97E956ECA208E93D2EE5 /* BitVectorCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB0D74E997007796BD50F14F96295806 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = AF4B0DD7FBEC49BA7A3A041162A97120 /* UMExportedModule.m */; }; - CB53CB8940FA626EDC9DA002C71F0199 /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B3C7E4123287CD6897A3CA379BE17A43 /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB75321A593E9F9CF14DC01E77D2B71F /* RNFirebaseFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = B810357A23274F0F984C0685A76D3696 /* RNFirebaseFunctions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB0D74E997007796BD50F14F96295806 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EF46D893D5EF3C63BA34A09AE98E2BF /* UMExportedModule.m */; }; + CB53CB8940FA626EDC9DA002C71F0199 /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 37388F09D65D14D696B8377C74230141 /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB75321A593E9F9CF14DC01E77D2B71F /* RNFirebaseFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = 4138EDFF1D6B8CB144423BF576B3E152 /* RNFirebaseFunctions.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB7AF504CF55228FE97BE27D1AA84EB7 /* TcpConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 88F1CA2640C620519C4B83ABA9AAB387 /* TcpConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBB4C50DABAB2D82A6DDA813CC909A1A /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 97DDBC044CE7DA5CCCE4A31EF03BAB65 /* RCTUITextField.m */; }; + CBB4C50DABAB2D82A6DDA813CC909A1A /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A0F5AAA833DA71DA10BB80D25011C40 /* RCTUITextField.m */; }; CBD6C33EDA705688C4E4D90AB9F52DFD /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = F1FED56A0BD356904BFD90C41C60BBA3 /* FBLPromise+Timeout.m */; }; - CBDA33DF25A0B3889FDE9EAD72F6C6F2 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D48981D86849DBE434AA8B89B6DE997 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC0C82C53785C1930CFE2B2816A38858 /* RCTImageEditingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = D6318E5B6B7DC173B03E2ADAA68800A5 /* RCTImageEditingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - CC2AB736007F0715B7BDD403B7D738E6 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A3B44B0EE5021D9B6F9B6FDB5B2FB27 /* UMCore-dummy.m */; }; - CC2E7A5892E595B5BA476ED0030918DC /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 274F0C5E12F8002678AC0075BEC38942 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBDA33DF25A0B3889FDE9EAD72F6C6F2 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 43CAF30BB64826D5129049AA9370F37E /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC0C82C53785C1930CFE2B2816A38858 /* RCTImageEditingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 86EB2B49100A566446F58F5AF84AEE1D /* RCTImageEditingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + CC2AB736007F0715B7BDD403B7D738E6 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FFEB65DE690608D57881E1435448C0E5 /* UMCore-dummy.m */; }; + CC2E7A5892E595B5BA476ED0030918DC /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = CA06FCA140EB7C5019462186D832A831 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; CC60FD647487AB617149066737938DBC /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 761CF731D02089080806F374986C8AF0 /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC6A0BE35082DBB5289101DECECF77D8 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DBF4D24AFC5285B24DF28C06AA633AB /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC7566760F4B12E3E0E4E0E37F7FEDC9 /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = E55871F9C2198B66272FDFED3493DDC5 /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC8C89F32092A2B0EA79F08C72D037AA /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 35557C57F235E90EB2ACCFF11F014BE9 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC6A0BE35082DBB5289101DECECF77D8 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D24DC138C1453017E887875FEA11B809 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC7566760F4B12E3E0E4E0E37F7FEDC9 /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 802ED9C305FDA6D2B37979075D2C7B1D /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC8C89F32092A2B0EA79F08C72D037AA /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = B02BAC2241E1E2A9886B5F0E1CDE816F /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCB6F59AABF0E21BC0F9A4A9021C9181 /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = BB68B1029621082D6F3449180E194484 /* alpha_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - CCBDDDE01F7D70E7A680F5C8A65FC3F1 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A8D197A0AD529686EE251B7CBA051CE /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCBDDDE01F7D70E7A680F5C8A65FC3F1 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DAE698D83C3018DA7D94A29BCA3C2F99 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCD493CA845E56EFFB36328003F1B60A /* LockTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F15483934B6E08E8CEBE2CC5A1B465B /* LockTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD112F3E6CF0C8643C9C8AF17A5302E9 /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AD2B6D719ADA2E1D3B263FE4F910F46 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD13075789AC57DE43330658CAA0DCD2 /* RCTAppState.mm in Sources */ = {isa = PBXBuildFile; fileRef = B3878F1E993194C0070DF632755735F6 /* RCTAppState.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + CD112F3E6CF0C8643C9C8AF17A5302E9 /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = B783F8FC0E87A8D40872ADF5E4EDED31 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD13075789AC57DE43330658CAA0DCD2 /* RCTAppState.mm in Sources */ = {isa = PBXBuildFile; fileRef = D1E0D03066BD59D10E00E6B714CE377F /* RCTAppState.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; CD1FB10AF746E63E2B5968C20FF87173 /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C2E7263666D64DD3383131E446D675F /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Project, ); }; }; CD52A4AFC3FD3D2461A0A97D88D9013B /* Common.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D09D3B346118EA147B444C718299AE4 /* Common.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; CD567A9B1C02C888612E19605619CB13 /* Types.h in Headers */ = {isa = PBXBuildFile; fileRef = 129EF408AAB22BAA1FFC899CA2743286 /* Types.h */; settings = {ATTRIBUTES = (Project, ); }; }; CD6E94CA433866EB0CE7F4274BC0D7C0 /* TimedDrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = DC53DF962492C30428EE3CA2285C86A7 /* TimedDrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD7DF4058DA2853BB82D8FD9E7E33F0E /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EF267CDF7C5FA740D80DCCE1093F7B7 /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD7DF4058DA2853BB82D8FD9E7E33F0E /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = FBCD1127E89D870CA14518D0A1517292 /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; CD804FB79353F1D929886460D8F8817E /* RSocketConnectionEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = FC08E55E970220E686A21BCC4171AEB3 /* RSocketConnectionEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD973F58FC399073BDFBBC113C88728A /* RCTBlobPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 75FB45C7226ED96D42AC27B019D7C154 /* RCTBlobPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + CD973F58FC399073BDFBBC113C88728A /* RCTBlobPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = D1CC9ACC381EE5231F95FC6BBD4A5E5B /* RCTBlobPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; CDA2E0586EEA705D076F557E182B0848 /* FrameTransportImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E387E9A45644C2A715A8254E353E53F /* FrameTransportImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDBF9E5042AA209F0DC26458C3E0A33A /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AE6BB988C37FE97D1678C6BC28C1501 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDD8EF76014DBDD339CB5EB4289FD974 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 7007E718875B8F5572CFEFC35B2EFF4B /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CDBF9E5042AA209F0DC26458C3E0A33A /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C277F93CB86935DA998421E5E116812 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDD8EF76014DBDD339CB5EB4289FD974 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = D052E7C8B38525A9FF57769BCE258C67 /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CDE265747CB7B6A680D6189792C377CB /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = AD8424E56E214DA123484849471B9F60 /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE05E508D9AC27EE29A29EE19C9818EF /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = AC1667AFA251D0B12C4A273F4A6DB8F2 /* Compression.m */; }; + CE05E508D9AC27EE29A29EE19C9818EF /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 895BE465EC3EE2A360286B0A0E693612 /* Compression.m */; }; CE0C6EB5F386C798A10DE6CF9D9D3163 /* SKHighlightOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 6841A78971D85A941CD8351ECDA7F450 /* SKHighlightOverlay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE25C95BBF3F1E5830A8EF8E1F7A9929 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 78BB8675C806A5A0065A184F76F86922 /* RootView.m */; }; + CE25C95BBF3F1E5830A8EF8E1F7A9929 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 316F4799926A85CDE6CF0D3FDCB71582 /* RootView.m */; }; CE3A139FD95866808065114C3CE2F2F5 /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = D161D1CD4354D0B6D9B314DFCA658CD7 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE5150E60AB674AB60524EF055A64D8D /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D2347F1D47BD749FDA5FA70F9B5EA75 /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE535C17252BAFF7F01344DCD59DE2AD /* AsyncServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 00ED0947E7C56C338297FCD518F450BB /* AsyncServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE535CDEB9D6DBBB9E70C19F3BE1369E /* RNCSafeAreaViewMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CCE025922FB4CA88EB49C8B913D1801 /* RNCSafeAreaViewMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE5B0C859F1EC24A652A91AAECC40B5C /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EA7D1FBF69E61F7830FB148A5E50990 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE7B88EEC6948188535038D487BC28B4 /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DED67D16CA9A33AD31C49901B1634BE /* React-RCTBlob-dummy.m */; }; + CE535CDEB9D6DBBB9E70C19F3BE1369E /* RNCSafeAreaViewMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 808FE3CC4D8A4029B70902E3007DF3C7 /* RNCSafeAreaViewMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE5B0C859F1EC24A652A91AAECC40B5C /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 50C1E4FECD032821D51F31AA95167B25 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE7B88EEC6948188535038D487BC28B4 /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F43C7D5C11048F34C6597BD2D94D21A7 /* React-RCTBlob-dummy.m */; }; CE8B8A61CC8002F9B980D10E9FECD1B5 /* FIRInstallationsAPIService.h in Headers */ = {isa = PBXBuildFile; fileRef = 220F92F77A59A58888FDA1B79641A324 /* FIRInstallationsAPIService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE8CF5C0C2C84E7FA4BDE6058199BD86 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B14C4E56BD11C9AD9E7D7CC67D321A4 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE8CF5C0C2C84E7FA4BDE6058199BD86 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F9D723C11951EE73400111FF975738CF /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; CEAC4026292553F61925463F50AAD811 /* StreamsWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5EA031AE10CB8C054D8F8AD27C8D814 /* StreamsWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; CEAE8036251091EE26E6E066741C0E86 /* FIRInstallationsStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = BB4A8A6BA372FDC79C395901A139CD7E /* FIRInstallationsStatus.h */; settings = {ATTRIBUTES = (Project, ); }; }; CECC1FBE7FC467B747E6C2BA8B0CCFE0 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BA0A22B2CF6460059F6EF22F8A6E81B /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEDAFDB3B3EA3DCE1E62FF82FCD516E3 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 3938FC31FF56249B4E10A15443534921 /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEDAFDB3B3EA3DCE1E62FF82FCD516E3 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = CEB2AC17D76CB6BCB416C99E16094195 /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; CEF123E9C8B4FD3D3654297488F5C198 /* GDTCORUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = 950A7A3F1F79B290137A6CD100BEA185 /* GDTCORUploadCoordinator.m */; }; - CEF6DC752682E4243AC785B96B9158C4 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 0221AC15766186E7DCF679FB4AD3B495 /* RNBridgeModule.m */; }; - CF2D3F2E3A348ADF3DBD9EF35343E212 /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 19CB053CF23AFCD3BA264178A105A854 /* EXAV-dummy.m */; }; + CEF6DC752682E4243AC785B96B9158C4 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = C06042E7541D08DF05F09BD91C949D80 /* RNBridgeModule.m */; }; + CF2D3F2E3A348ADF3DBD9EF35343E212 /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 78FC559638FFDE5C5C63798C6C8F7376 /* EXAV-dummy.m */; }; CF414AEB4CBAD8DF30894113E61CD76B /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = D3151F5AA5498492CA230FCF27400CD0 /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF44D440631F5B8957AD89ADED1F1D10 /* FlipperDiagnosticsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A416D059E005D2144C88BA1A85790FA /* FlipperDiagnosticsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF48FE22C5AA6A7005BC079B79517D56 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B89925743BFA191F4C929424A14E0F0 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF4DF7F6E87AA3A94C5A5FBE827815D8 /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 41FE7C4DC3FAC003F1B598A2B9F5C053 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF48FE22C5AA6A7005BC079B79517D56 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B8717805EEDF11C0D8EB246D0AF1BCF /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF4DF7F6E87AA3A94C5A5FBE827815D8 /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CBD05527E67FFE2EF6D8830D363818A /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF80B9F4958D0C931B081B404CE9284E /* GDTCORUploadPackage.h in Headers */ = {isa = PBXBuildFile; fileRef = A0DB89335435413CEDC7E2202D0CE2AC /* GDTCORUploadPackage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF8A9457FD8A625D62F1C5B42B5CDB88 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FD8226FCC7309B2337EB58188BAFC55 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + CF8A9457FD8A625D62F1C5B42B5CDB88 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B98F3145D2BA05F5B984472D1F6A2504 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; CF951D21CFD9031FE384D48969D63034 /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DBCE57D2CC931F4BE40AD14D0D2979B /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF9F05AC93CD70E3F63B06ACFE0E4F30 /* GDTCORAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DD9693B486CD4C8709FF42213D434F1 /* GDTCORAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CFA7D57801B17592FB386DD9D64B0B4A /* RCTLocalAssetImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = C3F72457D7FEF7EA647F6E8C29B3C62B /* RCTLocalAssetImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + CFA7D57801B17592FB386DD9D64B0B4A /* RCTLocalAssetImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = AB695411AF55B0DA52CE3E4F9F2D96D2 /* RCTLocalAssetImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; CFEA96EBFA4939A78536A1C1A6DD63D7 /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 75E87BBF6015436EFF6B5B3AB1BB25A6 /* lossless_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D0108264911D29A92E4A0F784F7D000A /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 116FD789F72BCE8CECF811A67F7E8458 /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D017A2D31E3E20C791F6F44D7A01B8A6 /* RNCSafeAreaProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 08B854B9FB03F126D377C8BD3083158C /* RNCSafeAreaProviderManager.m */; }; + D0108264911D29A92E4A0F784F7D000A /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A2CA0802FCE6955DD507300B8328B1F /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D017A2D31E3E20C791F6F44D7A01B8A6 /* RNCSafeAreaProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B0DF15F8869A312D206396C99779577 /* RNCSafeAreaProviderManager.m */; }; D02983F9F8E968E99F28AC389A5C34EF /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 59B552994943BC4F3821FC44D6AA93A7 /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; D034FC411932B8C3C8F83C7E9D7687EA /* RangeCommon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF2EAA45F70C4D1A366106F071FD2362 /* RangeCommon.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - D0667C2FF38D83D7109D27C016A9D8F2 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 77A9C0F349533D8942E9CE893B5B7308 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0667C2FF38D83D7109D27C016A9D8F2 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 98DF8ED2FF840E36AA190E7AEFD3E79B /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; D0CC2110764169A031BB05D078F35A7F /* AsyncUDPServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F560D70310532BD6D8DF4D57B77F99 /* AsyncUDPServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0E1D34AF074E0454077772E3BF6B079 /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 84E2ED926657E49C1145928B73B70718 /* BSGConnectivity.m */; }; + D0E1D34AF074E0454077772E3BF6B079 /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = E965D873B420C837AC529798128E532C /* BSGConnectivity.m */; }; D1249775C6575028B25BE687B4F0C982 /* FKUserDefaultsPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 86ACE019DD91832EF8BFFDBD6F4AA667 /* FKUserDefaultsPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; D15B1D25AFE4F0CB60215790F195A38D /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = AE88B84C1DA2D74F566C9C1F7F72CFE4 /* quant_levels_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D18081D33C6AD5B2343DCBBC2CF61BB2 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7217E237D2A8F4C231EEE6DE8DD0B9CD /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D18081D33C6AD5B2343DCBBC2CF61BB2 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E2F76B6E1E1EB19639E0B346D5E3604 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; D199E0C3F8DF1441C00AAAE2E597A99B /* Future-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 647D10C24327EA02C38729D823266A25 /* Future-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1A09E1E3713069EE95C7B2D1CF845BF /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = E8D3B8F52EEE1AAD7AF95F4D98371347 /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D1A09E1E3713069EE95C7B2D1CF845BF /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AD5E726A25BEF67B9CB75353A83FC11 /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D1C6F6705A1FE1010070DCC4A3102D3F /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = F10B6E9FB3CCF467E6832F03D1449E3B /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; D1DEC09BFB8020649801F18884526D9D /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A590BC60B56755728ECA16D8679EB22 /* SDImageCoder.m */; }; - D20919318EC23971CB63831D24F3955B /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 08ACE5ED8E4F4E120D549B4619FE61BA /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D20919318EC23971CB63831D24F3955B /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ACE70D6FBF609A3BE8037EA4A534CFF /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D20CB1F465B6DEC72F0A0FB85325E552 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = ED18491DC3AB97238509DFB603377910 /* yuv.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D23230B6BDBF204F574436EC80D5795B /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C9C1795F7FDCC3C5AF33C63B06DB187 /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D29943598FA75CCE4393E3AB70854DB6 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D09C4D3471AD4C2FCF718AA4409903D7 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D29D44E4839A3581CC7F03BFC1497A51 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 1815B27D3154618D4A51C2618D82DAB7 /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 44AF5B74897837122FCB1F6C88514382 /* RNLongPressHandler.m */; }; - D2B279573F702220400EB7E904392303 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 0981862D8B4B0A9BF6D227952C1B5AB8 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D29943598FA75CCE4393E3AB70854DB6 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A14E0D87C342ACA2A7F7E27AF1B68617 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D29D44E4839A3581CC7F03BFC1497A51 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B4162732273A002E95916D9053C936B /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E92624035021AD1CB1174358688560E /* RNLongPressHandler.m */; }; + D2B279573F702220400EB7E904392303 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = C8738D724EB5C0B73994234D19F32E94 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; D2E11DF07AAD7072CC507F7E383B4FE3 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = 2465EEC076DAD80C81BE4185445B2A9D /* pb.h */; settings = {ATTRIBUTES = (Project, ); }; }; D2EF73B37E88FF241247DD0776642D6F /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99649E983CFDAF5A5FFBCC9F63DE58D4 /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; D2F61C74B5DDE79B769222FCC98C82F6 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F0C154ADC65F8BA13EE5E51E1390E4E /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D343EFB9E30EB3366E9FC4842C03757E /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = AE2BA269FC8F7B708D9C56011444A49D /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D343EFB9E30EB3366E9FC4842C03757E /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = A42D2B3CF00BA2B3485C21C51CB84E49 /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; D3461F25CB195DE12347CFB156107C31 /* Payload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AD02296AB653CD27FCFA46922CDFBBE /* Payload.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - D34EA63B7BC10C3B54AC07BB3DE56978 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F235122697705D62E08B57C7B9483E66 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3579009269FEC6A34542333B942C9FB /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E1C0FD671C82989A3D3C58576B986687 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D34EA63B7BC10C3B54AC07BB3DE56978 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A6338FFA1BF9B037B6F0C6519132F1A /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3579009269FEC6A34542333B942C9FB /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FE6B350E840F2144EAD90E076BD88311 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; D39505AA86E323C96932E3A04B1A0351 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A734FB82B4D1E2AC1CA9C34F994604C /* alpha_processing.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D39629D5BD5717BD08135885F724851C /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = FC094B5674B29F3C7EE5840E3F4FCCAE /* BugsnagCrashSentry.m */; }; - D39901BEC90B8BE64935C7372BE4D371 /* RCTConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 483B294389BFC1A333B174C9EE7424D3 /* RCTConstants.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D39629D5BD5717BD08135885F724851C /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = A293EC2DCDBF9361BF57D53D69463EAF /* BugsnagCrashSentry.m */; }; + D39901BEC90B8BE64935C7372BE4D371 /* RCTConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 776F984856C9327EF832DDD4A191BB60 /* RCTConstants.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D3B16597778203DE6EDD2C915FC363E2 /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = DA1E0B387C0503DAE734788BE8C16855 /* yuv_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D3BBAAEC1BB62E99D63C32C6742A60ED /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DF6BA5C53B6AD87C2C553B17AC43728 /* UMLogManager.m */; }; - D3BE4AC7988B7A740B423AF784E299E1 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = 492536DC8DE6C57B7A06571A85F557EA /* ARTSurfaceView.m */; }; + D3BBAAEC1BB62E99D63C32C6742A60ED /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D680E0D869CE4873BD807007905089E /* UMLogManager.m */; }; + D3BE4AC7988B7A740B423AF784E299E1 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = 76420227D28412B923B6F8B25E130F86 /* ARTSurfaceView.m */; }; D3C108FFA4787ECDB0A68E07CDF2BDBA /* FlowableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 852B3E03F6B7C8F358073121F4243AA8 /* FlowableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3C839E16CBE186C0BE387F94B00165D /* RCTDeviceInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = B6173EB95FDD9752DE5D5A3FE50BDD39 /* RCTDeviceInfo.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - D3F1F2786E81D2998037E666F2138400 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B524BF132646DAB58666BAEE74F53B86 /* REAParamNode.m */; }; + D3C839E16CBE186C0BE387F94B00165D /* RCTDeviceInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = 80A568B9B044A020997E0E87DB7B4CF6 /* RCTDeviceInfo.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + D3F1F2786E81D2998037E666F2138400 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = BBC0B2BE955E924540B8D8A2D4A59001 /* REAParamNode.m */; }; D4040F200D00D6261963F43CBE89C880 /* KeepaliveTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3B661D63CB8E4F265BC5AAFEBAB482A6 /* KeepaliveTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - D411323A01E0FB6595BFB07200F5BAA0 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 555F885B0D04FB0091104CA4361C6E81 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D411323A01E0FB6595BFB07200F5BAA0 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 05D8A89AFB0E4913D4350C843480FB8B /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; D41E53EF9B0E35CDFF682EDEAA2B70AD /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = E898D5CC2804FC6CAFFB81DCF6D138A7 /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E2D64ECC5835599A6514F50D193FEC7A /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D636A3760924F31F2E4AF8DC7FDF1457 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; D44F4B162A48877F712281A9ACDD787D /* EventBaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 81BB52EF1378C7072DF399F588A97E4E /* EventBaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D46DB93B022EA46CE68A0AC363D5BAC4 /* RCTStatusBarManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0ECCB6FAFF8614DB159F724F44861AAB /* RCTStatusBarManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - D4854148BBD285293974A3574283014A /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B0F7DAF876312D7B591AE13DEFED38F /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D46DB93B022EA46CE68A0AC363D5BAC4 /* RCTStatusBarManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 60F910794D2AEF0D95487DBDFCBC9C1E /* RCTStatusBarManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + D4854148BBD285293974A3574283014A /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D169C66ED71787413B3BE64DBDB90D26 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; D49C2B5AD12F94C14929E9614A269641 /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DE90D9AC64CC789B0287C1A80B3A674 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; D4CCA1BA396882B6AC8AE5EF772DB855 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CB6A8BB8C8B864596CF0473DFD589CA /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4EE7FF64A89536083DBE4FCB3D2C5FD /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = 11E31942837740BFD1F989749590B93B /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4EE7FF64A89536083DBE4FCB3D2C5FD /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = FF732703275D3A56A4C17FF1BA210E11 /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; D4F870A3745DAC99F9D1DE10267A3FDC /* Codel.h in Headers */ = {isa = PBXBuildFile; fileRef = FE52830DF5CB21EA5B1AE66B44B95413 /* Codel.h */; settings = {ATTRIBUTES = (Project, ); }; }; D50276F979C7915BC1E670A13F14C468 /* FlipperRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 79A7652E2CA6CD7A4BF43A9DE8BBCC52 /* FlipperRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; D5127E8BB6E9A1A9B7F449A6C3D8F2E2 /* PublisherBase.h in Headers */ = {isa = PBXBuildFile; fileRef = CC26518B462C7C18AD0566A2D78F6468 /* PublisherBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2623,169 +2619,169 @@ D59D6B91B38D40385B5671A02C789FFD /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 344455418677B550C102ADC52DFCAA76 /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; D5B67F8483C8FB4C3B5356D28C3374D7 /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = 29B35AFC1D40CA8D7FC1A6D8123E238F /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; D5C7E82437FE04F2CD8A96072D2E9593 /* FIRInstallationsAPIService.m in Sources */ = {isa = PBXBuildFile; fileRef = 207190979E1C3EC1E0DA1D3D40E86F17 /* FIRInstallationsAPIService.m */; }; - D5EB936081DE1ABD23F6EF6E9A31D4A9 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 1847A9120986DF8A84BD996E25133F73 /* RNGestureHandlerModule.m */; }; + D5EB936081DE1ABD23F6EF6E9A31D4A9 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 12FFB1CBAFA64B76F01F3573019176D1 /* RNGestureHandlerModule.m */; }; D6147C5ED241AC483FF409EE1CAD9E12 /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = B8B672560B173A79679DEFFBA84C70A5 /* FIRInstallationsItem+RegisterInstallationAPI.m */; }; - D633250EED186E817206A31F4E170C99 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 62ADE56762E9C113E092F71C61884D10 /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D63D855F5E5694B1078376751720F336 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B83AF1D415F0617AB05BEE783FD1524 /* UMModuleRegistryAdapter.m */; }; - D64F6039BAB8836544F7C0A4B8D04F32 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AC98D1BE9683B2CB2C454621F2280DD /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D633250EED186E817206A31F4E170C99 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = F3C325EBFB4B2EA1E1153643601F409D /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D63D855F5E5694B1078376751720F336 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = DA899EB45EC9B57268155D598B7FBA5B /* UMModuleRegistryAdapter.m */; }; + D64F6039BAB8836544F7C0A4B8D04F32 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = 52993449D46219F4CB752405BFBB3E73 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; D657B1508E0606220A7DAFC0D6614475 /* EliasFanoCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = EB6B8E9E54916AC4287652A8764EDCFE /* EliasFanoCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D65D905E1500A2BDD75E310C0E2C97FA /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = BAA23C1CF418176CF23145E87404A612 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6889E1CF5492CAF58DE17FB57EB93BA /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 79FB308682ED8F39C509C6FA263119A7 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D65D905E1500A2BDD75E310C0E2C97FA /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = E2DC3EE57D9478800D5F721D930B70B8 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6889E1CF5492CAF58DE17FB57EB93BA /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = EE59CC08F54BCE62F1F1CCAF1DD64AAF /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; D69223C42741872E5B2A529FA5828F8E /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 77FD8DB8FB6FD0282DEB41D410F329CF /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - D6BE43E386E838E2F1C713789DFF481D /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = E265D20CED969AF5718CC2576B0D2FCC /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D71EEB365C42671A5A3E1D412C6118A4 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D53E39F99E7E0402FABF134698E1B16F /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6BE43E386E838E2F1C713789DFF481D /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = 282EB84C2822C44597857D035DF0CA33 /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D71EEB365C42671A5A3E1D412C6118A4 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 59EA5FD29A858A36792BCF999ADACFDB /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; D72503B8233647DFAB18589EFE0F1091 /* ExecutorWithPriority.h in Headers */ = {isa = PBXBuildFile; fileRef = EC05A6B47FC3B6DA0EF08F20EB8B30DA /* ExecutorWithPriority.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7356315BF8062584A1CE7E4ACD15EF1 /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = 80123E4CE5856A3193DD48852416B8D4 /* BSG_KSMach.c */; }; + D7356315BF8062584A1CE7E4ACD15EF1 /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = 94C7297C0105DD72124B500255D687C0 /* BSG_KSMach.c */; }; D7386042B011F13F43898B1B9A5DEE54 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = D84A2AC75061051C62EF7AAB2CE0ED5B /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; D73C476373DBCB99DBDA5E3D9583A35A /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EF2FDC6DD223C088FBD4D0C90FB9486 /* GULNetworkConstants.m */; }; - D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = C163185A8C47364FE801EA2D186E4314 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = A5288D0138C700F37D5F9544FDCE7EC9 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7690664E9554486C6A08570CCA16219 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 44919622BD454671DB4D66170BABA29F /* alpha_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D76D243B815E6B6FBC1319E69838AC67 /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 57784F65BD8985275C9A5F6E04C78FE7 /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; D77CF59BDB5FC2113CF820C1C8CEC5DC /* FLEXNetworkObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = FFD0365953B805435F038F1DA8230E14 /* FLEXNetworkObserver.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; D7E5C384A3818E74886E35808F0E358B /* RValueReferenceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = EAB75F734DB509881BF344E366E90952 /* RValueReferenceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7EE17DC61F2C233EA1F0DB1D29A9473 /* NamedThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = F6F294F71453C531ACB159172A062002 /* NamedThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D811B574E795DB5E3BBD364643701297 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 483014B9AD6D877783DD88E8D0B8AD11 /* ImageCropPicker.m */; }; - D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 95D3073A483921704D78E97838E101D3 /* RNCAssetsLibraryRequestHandler.m */; }; + D811B574E795DB5E3BBD364643701297 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ABF27AEEA3801A53BD643449C4C7BFF /* ImageCropPicker.m */; }; + D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 36F050A574CB74D41B5E61D2016343A7 /* RNCAssetsLibraryRequestHandler.m */; }; D82111A4E6432431C15468B9E171C02B /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = BB84B82EDB64DF3AB770311125FA3C6F /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; D82A9BB2212B45FA75D895A40645B283 /* QueuedImmediateExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D303BCC0DF61B7DDE96777EF8365574C /* QueuedImmediateExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; D84F3F96DACBE38500F49916290FCB29 /* GroupVarintDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E27F9AE20DF152DC7F768A46F5E3A16 /* GroupVarintDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; D86127EDB743996C7268E4EC78797A46 /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = 116C7CEB27CD7820875966685B7D8C81 /* FBLPromise+Always.m */; }; D88C31D279C21999DD8E5D38378AF5F4 /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = D40E104D3809AC98D25DA6DFEC523567 /* GULNetworkURLSession.m */; }; - D8A4FDD0CECED20763327BBFCBD15B23 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 459E720AF3048001A28D86AB1813580C /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8A85963A2D21C1579FAB3528EE4157D /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DB50946D34C0843D5418E4DF571D536 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D8A4FDD0CECED20763327BBFCBD15B23 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = E87D4A792FAD154490E6F61C7EB69E9E /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8A85963A2D21C1579FAB3528EE4157D /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = D4F3018A89BBEE04902A5387DA3DEEF0 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D8BB8787764B7EB4D18B8371DFCDDB62 /* TimekeeperScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 12257C95C8415E77F77118EAD42C5283 /* TimekeeperScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8BE1C65E30421034BDF3B754E368854 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C11B76031D69F7EBD8459372BAA8DCC /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8C07DB43458BB67C3DE4C4ECC0074A4 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 77B3A3647D8A9C0E25E04391CF75E9FA /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D8F0C0DA31A17B805ED9F1CF41673F8A /* RNCSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = E496A1597D2C8132C654D45BB3F241D6 /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9161027757C44A3F0538F626A0F1C75 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = DF03482AC925EB58BCD8FEE81E27C735 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D92CAE62ECAFE549B7CADB800BE130C3 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C9D1F46BBF12863547B9E44C7D331BD /* RNJitsiMeetView.m */; }; - D93D8D29DA246204947AA3E291D57A71 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 62BC3E74BA827A2EEF3D1A1840C389C1 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D942DF7B87B23857D907B43E8D40B6C8 /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C7289159049E31701895AEDF256DE9BB /* RCTInputAccessoryShadowView.m */; }; - D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 63A1581D25708EBDFC5772BEF67E7B5B /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9818AAFEEE3ADE3426F8CEFD018BF08 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4A57AAD4F3D69657E8D24CBC1659818 /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D9840E859E25D2072D4E5546E72D9C09 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A0BD1EDF40A187E8200F57B14DACE0D /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D986C95FAAA3C9232D94D3CBC10130B9 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1451F1374D41FEC6691A399289ED3015 /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D9AF634317E7F9D5802F08016A42573F /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 2E8C1DBF25BB49301681AE4675992A9A /* BSG_KSMach_Arm.c */; }; + D8BE1C65E30421034BDF3B754E368854 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 56A6667B68AB72AE11F59C206EBC2909 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8C07DB43458BB67C3DE4C4ECC0074A4 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = B437F16764983919DA87773F3DA36059 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D8F0C0DA31A17B805ED9F1CF41673F8A /* RNCSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = BE830A908B06CF2B0AF559629ECA48C4 /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9161027757C44A3F0538F626A0F1C75 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E0C880EB09D63CA8E3E4659D04C69957 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D92CAE62ECAFE549B7CADB800BE130C3 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0706C0DEEDF57CFC4FF50B50D4D56F3F /* RNJitsiMeetView.m */; }; + D93D8D29DA246204947AA3E291D57A71 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = A357C1C79D11A5E4B03E38EBCD13B1EE /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D942DF7B87B23857D907B43E8D40B6C8 /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = B81358FFB5D63A92212033F18E143BC6 /* RCTInputAccessoryShadowView.m */; }; + D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 64CBC7D750748F9F96DADA161A097832 /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9818AAFEEE3ADE3426F8CEFD018BF08 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C093D15DB44B6A039662E2B3127C1B1 /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D9840E859E25D2072D4E5546E72D9C09 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 412FCE5B237E1D17DF34BCA16B90BC36 /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D986C95FAAA3C9232D94D3CBC10130B9 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = F88FC068C80A53582D786FB470E5582C /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D9AF634317E7F9D5802F08016A42573F /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 30450DE09FEEB6C27389510E3E2E3C11 /* BSG_KSMach_Arm.c */; }; D9CE5C4ED521A9CCCEE7E5371A8FEC83 /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 8917BA8D0AFD14A5E50ED75288A0C10A /* SDWebImageOptionsProcessor.m */; }; - D9DF18476953552CD71C30DABF23E52E /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 104F2E03F055BC209F368334BCAFFD3A /* BugsnagSession.m */; }; - D9E85C15A4C7B9BC786776755CBE4E10 /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C22F7E35FDC62277F9BC5267264D97D /* RCTFrameAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - D9E8EF785F0508D50522BF668E520107 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FBEC66F0A4DAC6123D0B270954B7004 /* EXHaptics-dummy.m */; }; + D9DF18476953552CD71C30DABF23E52E /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = B3F59C591C756A06B15DEC6C6A4D8972 /* BugsnagSession.m */; }; + D9E85C15A4C7B9BC786776755CBE4E10 /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = C4A918DB1835AD192E2CE23A6F8131D8 /* RCTFrameAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + D9E8EF785F0508D50522BF668E520107 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B5B02C086BC48A81B5F652D79BA0FA9 /* EXHaptics-dummy.m */; }; DA28A006984C9041039EA6EEB0F8195F /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 90537B1020C62F8000E181300CE2388B /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA2A500F2405B86DEEDCB9FC6C8CC0B6 /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 7806EFF9CCD6E7DF393105EA4EFE60C4 /* BSG_KSSystemInfo.m */; }; + DA2A500F2405B86DEEDCB9FC6C8CC0B6 /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 0073D3E4D887E3A919D638EB781C9C20 /* BSG_KSSystemInfo.m */; }; DA3E756FDDBB22F63B92675EE270BFD9 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 64F4AD60856C32501C6F0BB036AE666A /* cpu.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; DA5203CF64B1E9D5DAA840D3417F241E /* StaticTracepoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AA6D2182A38C3561B140B2E997661B5 /* StaticTracepoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 07C5BA84758EAE136D02C19BC92E32A7 /* RNSScreen.m */; }; + DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 86F1C24ED17E1DC0E97426478AB1312E /* RNSScreen.m */; }; DA6126735254CBAD81AE08F7B1ED78B7 /* DrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E58EC4A32463C065C5565A34EDD61677 /* DrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA74636CD45F5B96E9705928A634522D /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = FB5A0CD79F1E53BE13EB6F4C591D9B13 /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA74636CD45F5B96E9705928A634522D /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = CA7FD6D34DE6846070D5EC863A88B82F /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; DA8E7E9B1199739DD8242F7D627AA01D /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 02D4EE66505B739A233275617D19E90B /* FBLPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = CD9F04093EDD60E5467A82D034D381C9 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F098421D9F3F53D0590E880A70989A68 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; DAAE0E3FED2202C7C92F463A7C4BAA2E /* CertificateUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 39D08AE05367AED5E02CBD69FBEBDA5B /* CertificateUtils.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - DAB77630ECE8FFDE64A9BEFBD0B44DFF /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = 787FE71387CF1F85BA4E9DF6D97CE264 /* RNFetchBlobFS.m */; }; + DAB77630ECE8FFDE64A9BEFBD0B44DFF /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = D58700AA53D869B15626EEA39FC664A7 /* RNFetchBlobFS.m */; }; DAFC2F91BEA931FB9BA022CB9B77CA90 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 1202E3F998555BA59A10D4B421FA45DF /* backward_references_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; DB23770DDD223F6F66DD3161FEED485E /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = A9EFFD37252C00A7675848AE074A106D /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; DB5A7C7920EAF6928FBD7479829670B3 /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E87E6CA6F24F95340E8EE9EF3FE0850 /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 892ACACF678844715CB306AFD8C18753 /* RNGestureHandler.m */; }; - DB802AF253B585166A65DE3AF2807ACA /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E81EC930DD4B3E8A08B14D713C62A96 /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E6023936F6F9DBE9F2C12ABD20BC269 /* RNGestureHandler.m */; }; + DB802AF253B585166A65DE3AF2807ACA /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = 99F43DDAD9C6F4155504DF0EE3360570 /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; DB961B674D484615508DB15C8C03E3A7 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = FE392A777F740FCC1F1EFC731F72ED82 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB9717086AE45CE81AA97C3D12CDE9C7 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 27B47193B9A5F70C9FC551D403944866 /* rn-fetch-blob-dummy.m */; }; - DB98C51FFD075C2E920AE1CFE2B57068 /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 600E11526FC1B31D3900246187123E89 /* ARTGroupManager.m */; }; + DB9717086AE45CE81AA97C3D12CDE9C7 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D062DBF9D19AE40D0DC6BB5D4AACB42 /* rn-fetch-blob-dummy.m */; }; + DB98C51FFD075C2E920AE1CFE2B57068 /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C8FD457D5B45029B94B994FBA0B61D1F /* ARTGroupManager.m */; }; DB99B89B363F703C56CC1CA9540AC911 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 66F22EA9D4C27DF77911F6FE1C1B0FE0 /* SDAnimatedImageView.m */; }; - DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = A595BE706668D105B4C902B56126AC98 /* RNGestureHandlerButton.m */; }; - DBB7C961CF22090D0F1F8FB705151A2D /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 60452327D46CD26998CD827F6F8E7B21 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 958B3176F6D956FE1FAD81868DF72378 /* RNGestureHandlerButton.m */; }; + DBB7C961CF22090D0F1F8FB705151A2D /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CA74F7AE406D898D8DC5AF4957AD1D4 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; DBBFB726B54D132205F42D6FD8E81979 /* GDTCCTPrioritizer.m in Sources */ = {isa = PBXBuildFile; fileRef = EF0F68A91E168C44451761944275BEF0 /* GDTCCTPrioritizer.m */; }; - DBD6857FB4D7DF12D570243ECD9C73AD /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = BFA1EF4D9A7595A080E824D231F1C702 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBFAFC7FD12442E27B09353B999EACC3 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5A7654B4C703570917FC019CD6FB717 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - DC03FCBF6A0FA06C65EA19F08571B9E5 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 55DC61064D7A4D14AA291832CD233B1F /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC138CE0F250720A264B598D27AB4C84 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CFD4E37FCB41DFC0E9A17BFA73CCD48 /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC22B9ED9AEC92C3C5BB77EBB9B54CA4 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C88B7C68A22A41BF671FF5473A7AC4C /* RCTModuloAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - DC236F473EAB0803CB9FA676FAEB4377 /* RNFirebaseDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 547E4D6E09F65BE8DEB5595A5D04DB00 /* RNFirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBD6857FB4D7DF12D570243ECD9C73AD /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = E93D126B448F75F301364547ED319491 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DBFAFC7FD12442E27B09353B999EACC3 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FEDC3047D4C3E65989E6A15D1D0362BA /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + DC03FCBF6A0FA06C65EA19F08571B9E5 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7551B0B2226551F5D2489251DAA5E552 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC138CE0F250720A264B598D27AB4C84 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = B79B7BD72A8038B9D770EE572F3927F2 /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC22B9ED9AEC92C3C5BB77EBB9B54CA4 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B06E08B8212F6FB80D7BE496DF65C45 /* RCTModuloAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + DC236F473EAB0803CB9FA676FAEB4377 /* RNFirebaseDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = FB511DCBCB8C1E39F08170011B1EC53C /* RNFirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; DC28E96BA8BC8E051CA66420F836DDB5 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = E48FF60598432561EA3B912A67001EF5 /* idec_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DC83F9A19E21E99237CA1E1903EE6DFD /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = C39A5EB4E3CE8AA00EAAAE47434F871E /* RNBackgroundTimer.m */; }; + DC83F9A19E21E99237CA1E1903EE6DFD /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = FDE5B9F0DB89F28D60E8BB63C7725CCC /* RNBackgroundTimer.m */; }; DC91434903C0446DBE4EC705CEBBB6DE /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A8A380780648A9AA51D1CDE20D48218 /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCB2CC92DA3D38F80AD358E0E1F41FA5 /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = AF023C883F422DA6A47D2C7FABB249A0 /* QBVideoIndicatorView.m */; }; + DCB2CC92DA3D38F80AD358E0E1F41FA5 /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = A54474AD5A01A43B6E5C7B3E70AA79D3 /* QBVideoIndicatorView.m */; }; DCC79093B0298C5C73431BAB4A5CD43A /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 900F049E757FE3B0BEFD489FEC8CC87C /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; DCDCE485909B5CE0B0BC06693D89E54E /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 11932AF3F442722C6FDCD514FC54133E /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; DD0172C138C004D1206227573AB94742 /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = 585929899B30C1025E4A709195FC4CEA /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; DD0ED0194269A9546678AE2F538F3017 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AAD5C30DAD4C5EB37A880FA003C77F1 /* SDImageFrame.m */; }; - DD1BC3892CC8386218B2AC5A82F6D729 /* ReactNativeKeyboardInput-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CA90EA4E58E7529F8578C7076B74E136 /* ReactNativeKeyboardInput-dummy.m */; }; + DD1BC3892CC8386218B2AC5A82F6D729 /* ReactNativeKeyboardInput-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C8DBA11BE7155D3CA87FBB981D9E5DBC /* ReactNativeKeyboardInput-dummy.m */; }; DD31E664C8D93EBC57110B8E97E90E9C /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = 8407BCAD5AD1DB51CAC5DFD17942506C /* NSImage+Compatibility.m */; }; DD4C7A9E5CA5013D7786CFA9D177B890 /* FixedString.h in Headers */ = {isa = PBXBuildFile; fileRef = C7B5E92950A22AAC32BA05BA9C3AC80C /* FixedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD5E5AE9110DDEC1969C9AEB96A26D7A /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B71C4EC02710E0C2AD933374DC2CBA5 /* BSG_KSCrashDoctor.m */; }; + DD5E5AE9110DDEC1969C9AEB96A26D7A /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = 022CBFB6D2A9E47BAB3AAE24023C4341 /* BSG_KSCrashDoctor.m */; }; DD62E087ABC9059C2E7E3104FF8A8835 /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 169CF9C407F24C79419DCA9222CB9318 /* GULLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD631AAE5B18CDDA00ED19CF2081DDB3 /* RNFirebaseInstanceId.m in Sources */ = {isa = PBXBuildFile; fileRef = D24747C3BEA18E87BA7491E443BE13F9 /* RNFirebaseInstanceId.m */; }; - DD8331D4F1339F9333C4665A0589D24B /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 381E485B872E78BA9520875768779D42 /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDE256F5734BB9FFB186080C5B47E01F /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 09E3011B17312B959A38467C0123FC4B /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD631AAE5B18CDDA00ED19CF2081DDB3 /* RNFirebaseInstanceId.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F572F6EA40A72FC30E52A3BFCBC80BA /* RNFirebaseInstanceId.m */; }; + DD8331D4F1339F9333C4665A0589D24B /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 96A1B73A3452F7D8A584C4A04C826258 /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDE256F5734BB9FFB186080C5B47E01F /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AE91D4BE64AD0DFB21922399E4F8C84B /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; DDE321B7B9538F10B934152A17769962 /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = B219962AC4DDD3DB4BF1314B52062DFB /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; DDEECFFF302A446DF9F1194D17A36925 /* FutureSplitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 370F4C7AA1DEB0D3A3169588D360A9F8 /* FutureSplitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE0EEF1A731CE26A87DF2824C0EA61B3 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B38541B457DEF769B21EBCD7B0AEA4B /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE0EEF1A731CE26A87DF2824C0EA61B3 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F601F7F19B95F612BE5D94CB8FB5DDB /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; DE362CD58EB6E55028F789361187A702 /* ThreadCachedArena.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29E47FEDD187A358688BEA85EDFBB3BC /* ThreadCachedArena.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - DE3C8E08E38361EC13B19AF977A7F012 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = FC62EE3D482E365E56024FE8B612D7CA /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE3C8E08E38361EC13B19AF977A7F012 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B57BB2FDBAF15E25406E1AD1BF08B9D7 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; DE9795B12DC6F34813DDA08D4B8BA982 /* FrameType.h in Headers */ = {isa = PBXBuildFile; fileRef = 579DC6D5908AC81B1E3A4C952192D04B /* FrameType.h */; settings = {ATTRIBUTES = (Project, ); }; }; DEBFD8640231926B88FE3CD4FDDDF381 /* ManualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E6CDB819EAD7C970698E1BA550A0B871 /* ManualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; DEDBA7D5E0A65DE6FE7B04A4E3B87CDD /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 52F9F955925687D141D53630BFEE5C36 /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DEE4EA1E653EC166B12DE85CB96230FD /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = FDD64D0F88E2C0BE02AC4EE251307A2A /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEE4EA1E653EC166B12DE85CB96230FD /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 4618477813FDE649A3245EF154BD7355 /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF404DA0B392DB192D47AC020D531A9A /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F7B6D673F33A2DD3BD8ED538388A839 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF7078E5269EF7551228DFC3F9501FEC /* FrameFlags.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2E0B7FA697F1E29B5912DDC969BCA91 /* FrameFlags.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; DF75C756DB80CBFDFD43D0A99F83D035 /* PolyDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 80D171B86FCFDD5BDEF8591E75E17B76 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF8D5DA3700432625CCA28276EBC56FE /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A5790B049B47159870C8A79F47F8748 /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF9256449C0F2EFC90E1BFC1763DB46F /* RCTAlertManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = CAB0C63FC8922ECF883FC7F217E727F5 /* RCTAlertManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - DF9CDE086F36000D7C8E6834838EAAA6 /* RNFirebasePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E0474ADF523E01E0CB4B9930DD9D438 /* RNFirebasePerformance.m */; }; + DF9256449C0F2EFC90E1BFC1763DB46F /* RCTAlertManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = FF2614EB0FA07010280C4B240EAD5A9C /* RCTAlertManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + DF9CDE086F36000D7C8E6834838EAAA6 /* RNFirebasePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = DE25AB36DF1683FB80CBFF80590FB05D /* RNFirebasePerformance.m */; }; DFA2F79F9121657E2DF8E7DDE482828C /* ThreadCachedInts.h in Headers */ = {isa = PBXBuildFile; fileRef = BEAF58E01C33A2C8648ABAB5B76051A7 /* ThreadCachedInts.h */; settings = {ATTRIBUTES = (Project, ); }; }; DFB1AFA14DA04F33017F0086D60693CF /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = D3DF2E2C76682D78850B1C27CC588C12 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFFC4019C4EF86FD6A5A8A62F767ADDE /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A114E7E7641DE0E9E85B5BC6D7F7044 /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E00AE219C77E8D17BBBF9A091E04A29D /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A2E36F623BDC96728EFCD9D1A8DDBCE /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFFC4019C4EF86FD6A5A8A62F767ADDE /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = EA5A439F4076CE9EF35C6E8028D1DA2A /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E00AE219C77E8D17BBBF9A091E04A29D /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = EAACA436CF9DDA9300A82EFFF2F51DB4 /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; E00BC402FDDAB7D225D87AB8410D1B1A /* DecoratedAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 54C7FDF8AB0C24C4635437749CA79C62 /* DecoratedAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E00FAD0FDB26AF9FE9B56ED65F8587EB /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F3EABA8585CA3821A70440DE9644798 /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E00FAD0FDB26AF9FE9B56ED65F8587EB /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = A94D69AEA667E8006F0C1D8968940527 /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; E0362698CD153611761F5468EE9F1CB5 /* FlipperRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = BDEFF41527DB8DB7AB27F051FD302834 /* FlipperRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; E050964E1AB1383EA71092C52BA08CAC /* Syslog.h in Headers */ = {isa = PBXBuildFile; fileRef = C5ECF20665EC1D3F469FF3AF289E90EB /* Syslog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E053534668BD0F090E588EA79CAC026A /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = 880C494587018B97FA8145B269186028 /* BSG_KSObjC.c */; }; + E053534668BD0F090E588EA79CAC026A /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = D7CBE2E576A6F7D3D91B521B10F2EF4D /* BSG_KSObjC.c */; }; E06FF2EA4D8E7057808DAECF514487B2 /* RSKImageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = CE31A0F5E3EA614BF4602F172DABE60E /* RSKImageScrollView.m */; }; E087DB435044D30051DCE1885634E2C9 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = BAC583BC017048E348F4C7A651E76E47 /* UIImageView+HighlightedWebCache.m */; }; E0A65AF86EC06BDC7937CA9CB9972285 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 05EFFF3F828809F4D688B2C16C00550C /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; E0A95348DFCA5B73FAE577A45F6822FD /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = FD89E877061D905E9B19FC9BEEAC05A3 /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0C46A52452ABB7A82187CF8BADC033D /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = C332354CE32553AE1D10339068F3F17B /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0D24084E545AFDA689960BB764202E3 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = D2A860FA24F85C1048D62057EB4A8297 /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E0F5FE366AD6B4F64411919D22AF271E /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8717F287702A9C6C38AA55E7AB95B0DF /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E10071787CB631AD444940A8906FF5F9 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 50A93D4815E9A8F99BA52DDF7F226000 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + E0C46A52452ABB7A82187CF8BADC033D /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = E87C6EEEC92FDE90E7B6AC175FAC3285 /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0D24084E545AFDA689960BB764202E3 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = CDA0866B9897FAC421362ECD9C0F37DC /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E0F5FE366AD6B4F64411919D22AF271E /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4319E28705732D3B24EC2FA2C675FC59 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E10071787CB631AD444940A8906FF5F9 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD9BBC759FF18CDB2E66AEA651AF7C0D /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; E1266B55B38842C13A05CFD3DF2E4C0D /* StaticSingletonManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3754E206186745C3D9A8EE51218F5A5E /* StaticSingletonManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - E13457FACFBE0A02A510B6A2FA0976A9 /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = EA44ACEDEE1F1FF7B1994EF60272F3CA /* RCTTextShadowView.m */; }; - E155D2FA7860A20F4D688252FEE7C5EF /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = E843670879CA7CD7B3EDC89F66951D99 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E19B575090355E623900BC4E520EE66A /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D273679235B8B62AFE2DA61DF071BE70 /* REATransitionManager.m */; }; + E13457FACFBE0A02A510B6A2FA0976A9 /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9653EA4AC521C28DAB9C8200F2FCA8A8 /* RCTTextShadowView.m */; }; + E155D2FA7860A20F4D688252FEE7C5EF /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E706780438019BAC0624C99374DFAB0 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E19B575090355E623900BC4E520EE66A /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 07AC649517922DB0149873C06CBD1FEA /* REATransitionManager.m */; }; E1B270459C9A3A1F331BAB2B69F8B319 /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = 27DF4FFC237F06C5693622AA55FF8069 /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1C92AEEAF907D9FBB3D536670867DE4 /* UMAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = D78966FD8B3B4035E81DC0546AA2E366 /* UMAppLoaderProvider.m */; }; + E1C92AEEAF907D9FBB3D536670867DE4 /* UMAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E570402A50ED7C68E0E7373C90CE0A4 /* UMAppLoaderProvider.m */; }; E1C98A18F4F7534AC0A3D36EDB71822B /* GDTCOREventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 70D5D57246C4A8D93F5E3E5F81118E82 /* GDTCOREventDataObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; E1E6C85C75FFE608F8639A084D7ADD81 /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E0FBDDD93079F0A14972E00EFB08F32 /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E200867DC2C7080B4818C3CC6A4A0B18 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5597149807C5CD9062AF0D8023D0B074 /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E200867DC2C7080B4818C3CC6A4A0B18 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = C0997D9A668A59B0FC36DB784D90DE80 /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E2067AE94EC192C9626F836E18255B3D /* SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AA5BA75C3F022CEBA5F14374FA0378C /* SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; E22214E4EF2CE522B3E8311CF4A002F9 /* FrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FD7D48A89F4C89BE5FAC0AE983DC9A2 /* FrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; E265227A4C1DB2311EFF7D1A481C37A6 /* SSLOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F7B13717527AB425E33EC231CD27A4A /* SSLOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; E275864857518C091CD5FF4CEEE87FB0 /* PTChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 886FA80E50E6E53041041372306C7192 /* PTChannel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E289DD56FB9A64EB8AA6A75ACA0F9CD3 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = B7A5C8CB88C1D2EDD86B5D8FA276A452 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E2E490B23FB206AE0B3CD336767D0DC4 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FE3B1419A93B1EB88EA99EE971138C2 /* RNDeviceInfo-dummy.m */; }; - E2E5AC3481B7CEC723E71F315B175F36 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 9945AD5713750C36E0A34FAAA28D97AE /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2E63F80091EF95DB669379D32B18540 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 74F24B597314054D87C8C1F6195DB87D /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E289DD56FB9A64EB8AA6A75ACA0F9CD3 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E2BF6EC3E88E1C806354E565BC9D9CC /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E2E490B23FB206AE0B3CD336767D0DC4 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E849D8C7E504EE5598FEF4AFAEB654D /* RNDeviceInfo-dummy.m */; }; + E2E5AC3481B7CEC723E71F315B175F36 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 733CC4552309CEF6291BDC64C72BBABD /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2E63F80091EF95DB669379D32B18540 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 521CF97A86252ACD0DA65DB914A16C34 /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; E2EE20BD16B60C9E9C8F5745895E4CEB /* RSKImageCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 60449B27A12259B39C496269C8EFCFAD /* RSKImageCropViewController.m */; }; - E2FF9B95985AF9F0893B58D3A56E8F8E /* RCTNetworkPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 09E1EB493AC7120B1A44A4A8DB7DB263 /* RCTNetworkPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + E2FF9B95985AF9F0893B58D3A56E8F8E /* RCTNetworkPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = B7DA5543C58A10BE6E175610A60BD331 /* RCTNetworkPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; E305DF061F26647A3385379DB71FFDC6 /* RequestResponseRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = A84B2126B26B6F8F513DC38027D01476 /* RequestResponseRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E30DBF6F24A1AA672DB410F688B108B5 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = EC3D5D021E2F22216428F54B28857BF7 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E30DBF6F24A1AA672DB410F688B108B5 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 34A5BE7E358A31EA4B8857F91CC1EE5B /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; E35C6D7DE7A931B32026F76A9CD0ADF1 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = BD94B545CF0CE2E3B9229D6515A7F0D6 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; E36CE82EE6E8EB310110289E09673AA7 /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = 3600814DD008F55BB46FDB23644C5EA2 /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E39E3634C4CA7E2E69BB72A8AF9DF0DC /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EFC0079859E42358B491F854702DB88B /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3BEB1D6134538FEB6EF8E1F561712D1 /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = FC1169799DC69BE14CE10CA9F70E27B4 /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3C2AA2EF8BF87E30448B374DC2AC287 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 32D62F9FE254D779D1AF7414AED6EF81 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E39E3634C4CA7E2E69BB72A8AF9DF0DC /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 763C0A908BCF2279C3ED9035CD99E96F /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3BEB1D6134538FEB6EF8E1F561712D1 /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A3F61FD9CE62EC5A7611996C05EDA43 /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3C2AA2EF8BF87E30448B374DC2AC287 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DD0D936FD3A5A59177806D1D0665B3F /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; E3D417E505AF2104EB996901585FD373 /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = 222DDC2B4FFCB6970555879212622815 /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3D899247BA051EF2CCED618D78F98BD /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = 019000D78E96C67B33027B1AC4CBE890 /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3D899247BA051EF2CCED618D78F98BD /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = EE0B40365C5A9E83E019BDB1A385DC54 /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; E3DEE879EF45B3369CCA589810AC4F9D /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = 91B02DE46170937025FB43F1144861F1 /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3EF52EAA4DDBA2C5783321F550DC1EC /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F35E6510C4EDF9E7C2CC215DC47AD10 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E3EF52EAA4DDBA2C5783321F550DC1EC /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 22928AA35601628141F5B47FCCDC85D1 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E3F33BB478775D7C31E8EFF44424CABC /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B5471CC595123375FF0DA18C40826E73 /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3F93C06523AB7C891246F4F5AD44B0D /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B3FA3257FB94308CDE8DD831FA9ACF1 /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3FCFE46DD5FB40E8C723A5AB913D248 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E3B49CBFF762A1C703210855E543C2E /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3FFAD5E1E8EB56B739FE7117329E4AA /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 429EC9BDA101E3155E8BA23E62D9E72D /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3F93C06523AB7C891246F4F5AD44B0D /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4839D1232C584CB3BF2D190E1849BFD6 /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3FCFE46DD5FB40E8C723A5AB913D248 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = C38EBA586D9D97D483BF33FF6214541E /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3FFAD5E1E8EB56B739FE7117329E4AA /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C9C6204F679A278A71A7D39DB493997 /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; E4346CBB30A1CE0D0CCFC60AB0111070 /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = AD4E1057656461228D8BC02EC88E2FB4 /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; E435A140ED65F86C87BCE291EDA0F8FE /* StringKeyedUnorderedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D4641F587498E427490898CA0E10BAC /* StringKeyedUnorderedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F688B0918BF24C5CD7FA3EAC9AEDA883 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BCF1EE7814D86414EB59001B5C2E1208 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; E44CC82BF34E84E10A31CF56B0A6337A /* SKYogaKitHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3478AEF60CF975B80483F24893ED01A6 /* SKYogaKitHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E46F43ADFBAD3F9789D0F8A633EF8A2B /* RCTRedBoxSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 51441DAC4CCB0A6CE1CA2B3A3DFE8FFC /* RCTRedBoxSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E46F43ADFBAD3F9789D0F8A633EF8A2B /* RCTRedBoxSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 63B04B3AD8A9E854F90EBA08B53C25F5 /* RCTRedBoxSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; E490A09CBBCE0CDE87FE320AACBA49B5 /* Async.h in Headers */ = {isa = PBXBuildFile; fileRef = C7C284DB208CAE466AA7BFD5AE0DE3E4 /* Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; E49188CCEC47F2B014FEF6031EED26C5 /* PTPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CC38ADB2846AE34F45CA010EF842901 /* PTPrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; E49C99B16AE53555FE7A7CB8A8BE5382 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = BDC6EADEFAFEEA3CC421D1D8706BE1F2 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -2798,108 +2794,109 @@ E4FE62A73A78E2082178236455F1A718 /* Shell.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C183ADB6DBB0DE5FE8D6DF0B8B3820D /* Shell.h */; settings = {ATTRIBUTES = (Project, ); }; }; E54627196D731B399218E48C6FA9CF9C /* FBDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = DAFAFDA223DEE59D35E812DD10ABB64C /* FBDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; E547BCB79227691987B5794BFB30C99D /* StackTraceUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 226F9D0C0D2F82062B4EBF5A763A916E /* StackTraceUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E554598FD317EE9149AB8454AA9059F8 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2536DDA97AD131C68C0518E3B194F4BC /* RNScreens-dummy.m */; }; - E56618D37F0F6C8E1894028F83D901E7 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AC334934F62742F915EBBBECD557BA52 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E554598FD317EE9149AB8454AA9059F8 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E61FE486B1C309A3C3A8EDD1DF1994A /* RNScreens-dummy.m */; }; + E56618D37F0F6C8E1894028F83D901E7 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D20FD0EDBF8575B53E078E4EEE4972D /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E5782D8BD91896AAF55C1CBCBEF37684 /* SDImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E2825CBDB965A6FE1E73E9F2739870F /* SDImageWebPCoder.m */; }; E5CC97DD2276BCDD567C0F159E753813 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = D438DA78F21E96F690BB9917585CACFB /* SDImageLoader.m */; }; - E5EC406439D4AF312D4EB82CF3EAFDF9 /* RCTNetworkTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = B8A8F62CD1B59B1B4A915981F0934129 /* RCTNetworkTask.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - E5FB31F6C23D375DE5CBC98123BE9B8D /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D00155A74656D652638CCCA43B402754 /* RNGestureHandlerManager.m */; }; + E5EC406439D4AF312D4EB82CF3EAFDF9 /* RCTNetworkTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = D7089DA72758BEA1CA52D22B76C9BAA9 /* RCTNetworkTask.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + E5FB31F6C23D375DE5CBC98123BE9B8D /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B970A1D21CBA9FD07FAF69CB26244BEA /* RNGestureHandlerManager.m */; }; E5FF1743F9D79897E8139453D5C34C92 /* AsyncPipe.h in Headers */ = {isa = PBXBuildFile; fileRef = E58400A644A9B682CCC01FB4F5FC5918 /* AsyncPipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6335683CD8324A549F41BBB5F393D3A /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = 334755F233628245C1D01956028DA931 /* ARTShape.m */; }; + E6335683CD8324A549F41BBB5F393D3A /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = 91C1B02EC5CC1A22AFA2EABF24E6F8BC /* ARTShape.m */; }; E636F64793DF12561685F8A8C80F63FF /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 96B8361313C96BE095FA055B86C358AA /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; E67F1572C88EAE81A75D56813DC25A81 /* Init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67229F49490CA9AC27DAFA4CEC3A419E /* Init.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - E6B28EC2EAA76DA7CBCA209D55786E4C /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 777DB95C529E023178F362938B1B2C7E /* RNFastImage-dummy.m */; }; + E6B28EC2EAA76DA7CBCA209D55786E4C /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 01A2F80513EC5CD2FF3D15100993F0EA /* RNFastImage-dummy.m */; }; E6C3AC1533E09AB22822D392C9B9CFCC /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = F830D7A467353BE7FFC483C48DF75AC9 /* FIRDependency.m */; }; E6E661E87351F35E9363075A0879E1B8 /* UIView+Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DAC2F0D55F0D7EDFC1A71F1788BB63A /* UIView+Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6EEA57B39231F94F387361EDBC11C38 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = E1551C8062D1ED0104DBC41541A65C2F /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6F7B9CEE9EFBFBE390A29BFBC562255 /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 60635D6B0CBD0F7C59C17DF1470E9A88 /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E6EEA57B39231F94F387361EDBC11C38 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = E151DED940CE3340E8776922A596C1A4 /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6F7B9CEE9EFBFBE390A29BFBC562255 /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = FE58ED4E5902F18A8C8827EB5F4252F2 /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E6FE2807B85DDFB3EA91EEF768018D80 /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 82FDE4F89CDD3CB8322AD5AF2D2AAD04 /* dec_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; E707A2FAC0C36218BA2830206A0D76B0 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = AA5459247FBFB4744801D694000EE1A2 /* NSButton+WebCache.m */; }; E71ABA1C157CF07D0AB0F5123F4B3DF8 /* FlipperUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = AE763C2D1EF03E214CE34CABCDB31EFC /* FlipperUtil.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; E71B7C43CA2B681CE0F3BE76936B0452 /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = BC451CA059F0B0B1CB569B66829A1E0B /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E72DABDE93F1A7CE6ABCABB7826FC731 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 12DCA4210F595CEC6392C49D0448A1CB /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E72DABDE93F1A7CE6ABCABB7826FC731 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CFF810079ED974101746B6406EEC2A3 /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7584AD4F81B71B32D045FCA44EBC026 /* SKDescriptorMapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2C43C3E16E41E3F8C049D78F0280E02A /* SKDescriptorMapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - E76931DBEBF9716593668E19CED50263 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = D4CB377774658A47456D1529B052C7EC /* RCTBaseTextInputView.m */; }; - E79CC0FEF54CA45A7593ADEDEFEDF2F7 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A904A75FC50154E2FBAF567CB3737BE2 /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E76931DBEBF9716593668E19CED50263 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6962DCFBB4ED7C0AA562F55252D69C48 /* RCTBaseTextInputView.m */; }; + E79CC0FEF54CA45A7593ADEDEFEDF2F7 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 803F54955BFC53F9F770F85B17C5A931 /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; E79E09130D1B077C25C4840E4C51B025 /* HazptrRec.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FA394ACA7C44B4C9B2B5516E8F68792 /* HazptrRec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7A5F444042456C0ED617E5BD78C8D41 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = CDA31622F4E079135E89048AD4D3BFD3 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7A5F444042456C0ED617E5BD78C8D41 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 369ADF9B197315DB3178B1EE2554EEEF /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7B341F66C139B10A13B3829F1EF50BF /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = AEC82876CF0DF742EAF9B1FBB466153A /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7BD9FFCE36687BDCA52879B12903E20 /* ExecutorWithPriority.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9FBD50E9063031FACDB5234DD759A0E /* ExecutorWithPriority.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; E7C35E716B800BD4F5E87951BB2B21B6 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 36C34866DBCF5BBE9CF21BCF066F4F09 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7C43AA674EF98DB10295D5A0FDEF294 /* UIImage+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = E3850E79F71D621ADC40A39FE30A4F1A /* UIImage+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; E7D2340812F03790C705D669D0BECD8D /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4BCECFB05C7458380B93A21BF9E05BA /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - E800B9775C2890021CD5E850C1902AE5 /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = A38575B3B8EA9243005150A893EA2112 /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E81B4FD413363CBA1C3EF0C8871AF34F /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 200A3530239A107CD98D893C9A4DAA61 /* REACallFuncNode.m */; }; + E800B9775C2890021CD5E850C1902AE5 /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 138168BFFA885998B62730BAA91E5035 /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E81B4FD413363CBA1C3EF0C8871AF34F /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3426C360D3C4577EEE2921BB9B5D80D9 /* REACallFuncNode.m */; }; E82C91CC8CEB33B774DB5E1C9E5D8FB8 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 762E440D9D75C4C9887AF701527F0CCE /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E853513BCE291CEE0B0E1CA5D20B1809 /* RNFirebaseAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = CFF6B84DE629461467249913044B6E0C /* RNFirebaseAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E853513BCE291CEE0B0E1CA5D20B1809 /* RNFirebaseAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 897A1D4B1BF35C4A5A25B3A1E935CFC7 /* RNFirebaseAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; E86715E049DB72C646A5223D1367BA05 /* AsyncTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 732F426137A71CDED017B2E603514755 /* AsyncTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E88CCC48841EDF21CCE4162898C3A67A /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = B9BDDD78B1DEAC3FD1A250ADB412D8D5 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E893729E87251274E6D1D3B51566E3B4 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ABB5695E72294DF01503F46F8958E57 /* RNCAppearance.m */; }; - E8995EBE55A6CB262BBBE43F5A8C476D /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = D7F2E42BCDF6367B224D7E349E95B1AD /* BSG_KSCrashReport.c */; }; - E89D296821E52EC4446DEA0176A80531 /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A53285CF74D6D28B879D3E7A6A7497A /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E88CCC48841EDF21CCE4162898C3A67A /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = CA603878C1DE3C10E2DDD81E789F53F6 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E893729E87251274E6D1D3B51566E3B4 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 2445B3AEA2EB41FE786A830866206CC5 /* RNCAppearance.m */; }; + E8995EBE55A6CB262BBBE43F5A8C476D /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = 4074950A1EF759EDFC43E7FFC54E10C9 /* BSG_KSCrashReport.c */; }; + E89D296821E52EC4446DEA0176A80531 /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E30F1C4217918056ADF25E6F7F6D9CA /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; E8A3095A649700DAC4035399D6F9253F /* FIRInstallationsLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 2367D19C603A3B08B7440895E32D82C6 /* FIRInstallationsLogger.m */; }; - E8A6ABDCF3C0C5876058B074C4E29BB6 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D48E0D6D11687E2ADD4E55BBDFE1495 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E8A6ABDCF3C0C5876058B074C4E29BB6 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = E1D4D993C8965906F4AC01EDF9794E04 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; E8BEE2CF803308491014F4084284C941 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD94EA6C56C571A5119413782C817379 /* 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"; }; }; - E8CEFACE95B22A5EE6355422706B5E1A /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 258D5FDD1098DA394D695543A5EC6D96 /* BugsnagKSCrashSysInfoParser.m */; }; + E8CEFACE95B22A5EE6355422706B5E1A /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A57A7FE26B4B00118D3600D48D730F6 /* BugsnagKSCrashSysInfoParser.m */; }; E8E57DC7FD3E1405D821BA98E547E940 /* CancellationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E0A5E5379B080007D7EB8A706911E252 /* CancellationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; E8F8A1FD8DA38CF4A4223242F5E905FD /* GDTCORDataFuture.h in Headers */ = {isa = PBXBuildFile; fileRef = 259BBB31FEC3712023900184D0A6BC38 /* GDTCORDataFuture.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E909C3B354A842A014E4C9C2F341F55C /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = D8BC6D684FC93C5BBD851B095B4BCA6C /* BSG_KSCrashReportStore.m */; }; - E930EFA4028C347FB207A0C4EF2AB204 /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B3EB9B2850535DAE8A7F3F6AFD80475 /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E909C3B354A842A014E4C9C2F341F55C /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 62759A446D1F8442C9A5345C330972CF /* BSG_KSCrashReportStore.m */; }; + E930EFA4028C347FB207A0C4EF2AB204 /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = C40710EF5BFEB932034122504680A890 /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; E9420AC963BB88173D440157F5C2F49B /* ConsumerBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 74143D9BEC871DB962F613209A3A8AE5 /* ConsumerBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; E955BABD4485D7B2B958836126D6196A /* Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 130E85034A2A0DB5D9F092021F917922 /* Cursor.h */; settings = {ATTRIBUTES = (Project, ); }; }; E9724524AA9D6AF0B15DE2A0E50866CC /* ColdClass.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8ED60728838621F539415E4077A7154 /* 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"; }; }; - E97AC526AA9C09756D6D691D576366E7 /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A3741B86AFDBCB513EABA7C00306FB0 /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E97AC526AA9C09756D6D691D576366E7 /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 4883947AD6457823408432CF2F2A9855 /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E98690E099869FCA322CDB7C8AB9B323 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 068CB8333E3EA16C3C8382BF5A3277A0 /* webp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 58351C11CCD5FF39C4071FB4205A6F18 /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9A3CC8E413540C894C020ABF96AD215 /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = 7D5815080B2F35050BC245DC143DE4B1 /* BSG_KSFileUtils.c */; }; + E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AC76AE772DB09D38355994F8629937C /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9A3CC8E413540C894C020ABF96AD215 /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = 19538F70BF6F89C938158F0B4CB5FBA2 /* BSG_KSFileUtils.c */; }; E9A824AE0E78956A27149966A7E03D42 /* SKViewControllerDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = DA898CEFED39AA72F200D8C1DD7AE9B9 /* SKViewControllerDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - E9AA3E90817EB0A8CD2A00F94D3F005D /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D362AD8B48052F1E3700D074E0C392D /* ReactCommon-dummy.m */; }; - E9ACBB81BB2D21567E75CB08C2B132A4 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B4A3049C0EB886C67137CBFFD354348 /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9B3CCF9119F1CA395816741CFF9A3F1 /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 121C2910524BBEFA9563EB74C2921F8F /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E9C187BA8A39A6E5DC981B6BCD05DE81 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F9465904A9EF8D7F027216ADBAD985 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9CB3E4BBC56D018906CC137FDCC2218 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 80989FD1E3A28D668EEF944CEBF3D75D /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9AA3E90817EB0A8CD2A00F94D3F005D /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A5F8BDF0DA8AEB57878C86E6EF91B6C5 /* ReactCommon-dummy.m */; }; + E9ACBB81BB2D21567E75CB08C2B132A4 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 77805B47D86EDBD0A364610ED6275A8A /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9B3CCF9119F1CA395816741CFF9A3F1 /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6106D7C1994AD20E5452355DDAB741F4 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E9C187BA8A39A6E5DC981B6BCD05DE81 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 51BC2C70407FE660DA8DCC9C94623F65 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9CB3E4BBC56D018906CC137FDCC2218 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = B8AC1F7295F1E50FFCC9984CEBB13EFE /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA0FBF913FD0E76C393BC35D6CF6F339 /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = B3485A505BF6FDFEDE8C828BF52B50E8 /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA1177A39135D58784EC37A4E968A7C4 /* SKButtonDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = FD350C2D53E9E7F3DD5CB8D2B1ECB3D9 /* SKButtonDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; EA3D6A64F2CFE7B38FF1161EBA89FD0D /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = ADAC875F4B48A2C4ADC94005F6B4478E /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; EA4E9E8232435EE430E8A5864860B289 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8245AEA1767AE69C8E76AFC7EAB967A0 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA6CE73D410804EC6E57F5220D5163D2 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 530DADB2FB61BD3E084E3AC0FA61255A /* RCTTrackingAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + EA6CE73D410804EC6E57F5220D5163D2 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D62A483C99C907BD9DB3A5EDA32B5119 /* RCTTrackingAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; EA82D914F7C4376FA679563B04C8C252 /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C582724293C833125C4A1A2AA4CE4FA /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; EAA2B4C60F7BDB41A80308A76A4D9848 /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AC6A269C5C9BDCF2C63D254462FF5E8 /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; EABBB15709D35D5F8EA21BC4880847C9 /* UICollectionView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4082D85A971AC99A76C09BAB6AAF6714 /* UICollectionView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; EABEB2DE7ADB678B7E0DCFFBB64EA5F5 /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = 2470637122C75BBA356F1484669B3A80 /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; EAC3C6074678F577E47481233D845A7F /* OpenSSLVersionFinder.h in Headers */ = {isa = PBXBuildFile; fileRef = F6CB2A66C13E457EED5F54B9238D2892 /* OpenSSLVersionFinder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EAE7EB64A517307EEDACB23392569599 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = A055F23165266D3F07A6EDFF9AB5D5C8 /* BSG_KSCrashSentry_MachException.c */; }; - EB15609268E86B4D0F86331DBA9B9028 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 184BA109B3E3ED82B00E700254AF3AD7 /* REABezierNode.m */; }; - EB25A6FBE311C5DDA2C62825FC450926 /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = C561B80406BEB168381F3AF9E2A3004C /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EAE7EB64A517307EEDACB23392569599 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = AA14D360EBA3D7252F32289CDC41F445 /* BSG_KSCrashSentry_MachException.c */; }; + EB15609268E86B4D0F86331DBA9B9028 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 120C9FC1E18B6D9F7594AF5D1B391E8C /* REABezierNode.m */; }; + EB25A6FBE311C5DDA2C62825FC450926 /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = CD71779C8AF26267D2D4FFF7FED8D385 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; EB2C44784270DFBA3B582FB79FB0B4CA /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = E11720C8437E0D5F25B9999FA856078E /* alpha_processing_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; EB3971376915EF8F6758C39F0A90EF35 /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BC06829E7F061E65C930F3116DD80F1 /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 913EC418AF05573D3B6922EDCAAA5BCF /* RNGestureHandlerEvents.m */; }; - EBA878971E9F0642C4A9BB01CC1CF5CF /* EXKeepAwake.m in Sources */ = {isa = PBXBuildFile; fileRef = 4369D81D63471C3982BABEBFC22901CD /* EXKeepAwake.m */; }; + EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 669B13A11D2D35219F6A985F9EA1D116 /* RNGestureHandlerEvents.m */; }; + EBA878971E9F0642C4A9BB01CC1CF5CF /* EXKeepAwake.m in Sources */ = {isa = PBXBuildFile; fileRef = 42E328D9467A29FAEADF41946D086934 /* EXKeepAwake.m */; }; EBB0B32AE8A9FE7267668D1F2DF10CE4 /* FramedReader.h in Headers */ = {isa = PBXBuildFile; fileRef = D0546800109BE6E261341AA3BFFD39AD /* FramedReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBC0F9270448ECBF6E1A9B635E245FD0 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = B7EFEB5088F345DB3CAA9406AFE2B53B /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EBC0F9270448ECBF6E1A9B635E245FD0 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A30482EEE93A686B919A3624181BF11 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; EBDA10C96D8A27B909F8DB3B0A7C32F1 /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 13EF0915712C8F78394138D0B6A2A050 /* pb_decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBFD540945522362ECEE6BE93F273482 /* RNFirebaseAdMobBannerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D5C0679C8FA015D5C911901384EE4D6A /* RNFirebaseAdMobBannerManager.m */; }; + EBFD540945522362ECEE6BE93F273482 /* RNFirebaseAdMobBannerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D7C9681AD4FC32C1A296370A50A91D /* RNFirebaseAdMobBannerManager.m */; }; + EC39C670961A4D854F480A78B6BF6C17 /* Pods-RocketChatRN-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D70D9EBB5B766C22C2364940119C9F1B /* Pods-RocketChatRN-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; EC60D5885663C26EC9E47C3CBEC60DF1 /* Sockets.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF62339FBA85228EAE5E41137BD5F3B7 /* Sockets.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; EC6C3231D7D2C1200CB6826C0A9CEE53 /* GULSceneDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4899AB8F9FDD2B76CEB7644F2948E5F7 /* GULSceneDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC6FEA75CC5E02F4EC760C49A764BF56 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 44273F4E9B42941C20D465C19E4081EB /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC6FEA75CC5E02F4EC760C49A764BF56 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4994B85608AC3DB0BA8A8A09FE5DF3B1 /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; EC90A4E51EF3B2F0B3EBC17E4880A9C2 /* SetupResumeAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E42EB11146478ED93A18225F403E840E /* SetupResumeAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; ECB6B7BA94B66641FE3315168B7D0F3D /* FlipperKitNetworkPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4A0E338E3F9FE79FA92EFA49A9F69A57 /* FlipperKitNetworkPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - ECBA10F950524D80B5078713F5AD858F /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0777B403F17F492A3B73D37EFB89229C /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECFB29DE3E310D2CF27F7C2D40F93A9A /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = D7D5330BA7F406E82D2A64AD902CE53B /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECBA10F950524D80B5078713F5AD858F /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 097304B85CEFD59E754BFDB02493670C /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECFB29DE3E310D2CF27F7C2D40F93A9A /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = AE3939FF02321F51D68A78D9F3D63612 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; ED241C44D1BE21C144A33B37AD586BD7 /* EventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BCAA040F9FA9E6FFABB25A7E813998E /* EventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; ED368130DB855003BACEA28F8A340D7A /* OpenSSLPtrTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D5435566FD9029F4DF3D7B66E556287 /* OpenSSLPtrTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED429D2623150E0DB78AE2FF534E555D /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = 257204B30240739B7940D1A0D164DF58 /* BSG_KSBacktrace.c */; }; + ED429D2623150E0DB78AE2FF534E555D /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F89E7C766676876642A532B7A7C4292 /* BSG_KSBacktrace.c */; }; ED62691B003B2C54B15DD706EBD7FA6B /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = EC00A2FB16072B5624DA498C2104B846 /* histogram_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; ED95751FEA58215AFA04947C656EF88D /* ColdResumeHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4942470818BCDEBFF9C422A2948E9EC6 /* ColdResumeHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; EDD81D5D065ECC3489D1E01E230664E5 /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C99D44016E628B64067CB76CD65802F1 /* SDImageLoadersManager.m */; }; EDDC688091DA36B599E3070AF38C8E58 /* SKScrollViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DACA332008F6AC6A637EFFB7C462A0C /* SKScrollViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE12DC119553B31EDCD3458F6E314E08 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4049EA977C8B11EC8AB6CE994017B186 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EE12DC119553B31EDCD3458F6E314E08 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A826AE008128B6E8E8CA026B6F74C55 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; EE26C68BA1E4A373F6AA58F711E44168 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = FF67601B849AD8043039ACE8C73DF64E /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; EE545CCD58E4A2E2390092397FF90035 /* DestructorCheck.h in Headers */ = {isa = PBXBuildFile; fileRef = B6753785BC3312CA19994B9A755DE71A /* DestructorCheck.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE6C34D5DC88F870B40D305A75D38553 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8F9F12C986912FA2B49124546F609219 /* de.lproj */; }; + EE6C34D5DC88F870B40D305A75D38553 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B6D8350560E1A7302D0F874FE3FB728F /* de.lproj */; }; EE7F301F7EB3117BC1E77E72245E3FDA /* Sse.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61B88246C4A900BA197443CAB45F14FE /* Sse.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; EE8A83128D8380211CB6876B0BD6CC89 /* Benchmark.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7EFF5BAD4FB9D3B56591A6EB08CB68CD /* Benchmark.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - EEC8F25A4CD8C7F41690C1DBFE4D31D4 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = B6857FE0A012F6B7148319EFD9FF9451 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EEC8F25A4CD8C7F41690C1DBFE4D31D4 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D776BE09C723AE22C0969BB41D621A3 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; EECE8417F87A642504A215B21A1BD894 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 08FFFB8DCC4CA701C2E53003617B3D8D /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; EEEE7946609F4EB86E6A6971970E1A7C /* DistributedMutexSpecializations.h in Headers */ = {isa = PBXBuildFile; fileRef = FCC0AA0FB200B90A95C98B02F8909AC5 /* DistributedMutexSpecializations.h */; settings = {ATTRIBUTES = (Project, ); }; }; EEF97C679BEE5F2A9C7F7D95720C9AF6 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 1BD82A494878B6A4248FE55C00040CEF /* lossless_enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; @@ -2911,16 +2908,16 @@ EF6ED61C297982CF31DF19548C24548C /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FFC7BEC01126D2D45B723A922A686D7 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; EF78A78AAD79DFDE72D424FF8F35DB23 /* GlobalExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 549FE3EB49CE7968D8904A19CBB172AA /* GlobalExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; EF7E6C878AB8A30D92FFA18861A908EF /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FBAEB1D6479328FFAA044B920BC1017 /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF8E20FC60FEDE81B71F5AE86978AACA /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D5038AAD663414FC2313263B1DE2E738 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF8E20FC60FEDE81B71F5AE86978AACA /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B57915A482CF88D5E2A8D63B6036B11 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFD68E385A78185DD955ABACB421ED01 /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DFA724D628BD57FDF265E525439C4D8 /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFDA25149EA9A68F536F11701E46BDA4 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 106537DDCF13EBC231A968E46FEADCC8 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFDA25149EA9A68F536F11701E46BDA4 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E63F7141C969087C35F64F57DDA59F4 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFDDDA86D58A5A3B5A5C52CD2E4684D8 /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F13B7FAEC573229469545471760C164 /* random_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFFA7E6647BD21D78B6DAF725C5E62E5 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 2369BE8BA480523C31349754A50AC8B3 /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFFF616FD9B0B9494F7242A085F23A95 /* NotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 13A3F70480AE9C876EE9D620059A8E89 /* NotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F01494E1D98DEC7F2602E362E9CDD818 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = D4CEC3C8952503C4CA46E9C7A1C49047 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F01494E1D98DEC7F2602E362E9CDD818 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = AAABB15E265670BAEFAF10C03A14D140 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F026131495373C5DE569B201034D9101 /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 235F0F5C7BFD7081642DC8ABF5028694 /* cost_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F029DBE2241C707F43B4AEF3919C8C0C /* NestedCommandLineApp.h in Headers */ = {isa = PBXBuildFile; fileRef = C1C21254D9F7C2191C713FBCCC1E8103 /* NestedCommandLineApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E43154BEEBFE6BDFF52BFF59F2F5CA1 /* RNPinchHandler.m */; }; + F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 56A237E6BCD357D07916D1B97DE90BA6 /* RNPinchHandler.m */; }; F062B79236AA526A32FA60C8582C91A7 /* AtFork.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA3F2CFCB12B1B29744C28647FD6CF3D /* AtFork.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F06D028A6F88B5E5C99E9486691C1816 /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = D850BB62E6C022FEAA267C2CE99A4AEC /* SDImageHEICCoder.m */; }; F089F83DA2C72E81AD2B58C6535A6626 /* Executor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24A71B5F7EF5A6B61FDF7263F39918B6 /* Executor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -2931,31 +2928,31 @@ F1270B3BF10D921BCFC9023E8D24D71D /* LockFreeRingBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = BE815080F7E80173CA594AFF25777BA4 /* LockFreeRingBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; F128E5421AFDD733B6EA5E6DC0BDBBBF /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = D8E439BA476130C23BF7C6A07CF4DB84 /* dec_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F13D5204BA38F81E8AABCCEEFF2EBB49 /* EventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = D36C1F0EC78A2845C14FB2963EA0A08D /* EventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F15168851413744B3EF7AADCD0B323B2 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = FC2DC5C86F5CECF620384916C4995D9B /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F15C77BBB508B9EE00B7C25733685310 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 096530808622CCBD0AE02939C955F3D6 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F15168851413744B3EF7AADCD0B323B2 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = C711D2E1163EF0022FF8D0A3E51BC1D2 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F15C77BBB508B9EE00B7C25733685310 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 2446945A75F9ED8B563C794EE127EFF1 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; F15DE35EBA4CB4B476438C0692A0950A /* FIRHeartbeatInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = A99491D7D2C016F06275D579B43CF450 /* FIRHeartbeatInfo.m */; }; F161334CFD6395BBE0856CEBF4DE186B /* WaitOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93278509708B753DDDF596BCD5A12AAF /* WaitOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F1CFAD1BBFF7E0BDA26021957C170257 /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 14E41D64006AC957B237BD217C6506ED /* vp8_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1D29EEE977196CF2060E83F8D6DC9F4 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = B25E6C1397474967CB632772D4F63866 /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1D29EEE977196CF2060E83F8D6DC9F4 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = A1933BBD02D38ACD2CDFDE37C780B203 /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; F1D8204CAEC154C28A303A0B0E0D8B7A /* TimeoutManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3579C5645A59C212E9D4838934B24C7D /* TimeoutManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F1E1333AEA9A20A7D09582045666A987 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = DC92F37702AA404B9EEFC33B82445BC7 /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1E9F4F61494F37A09D095B3675E4A8F /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 72D348AD963FD80AA19656A4C004FAC7 /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F20C9E3E4D0BE9C8724AFD7556F663C8 /* RCTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 2428F07E26FB454DF0A967A4F6AE3FA0 /* RCTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F232397B38A23317C4A05F4975207C25 /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = DCEC1BBDA66CBCA038CFCAF6348C0923 /* BugsnagFileStore.m */; }; - F242BAB0E83DD4405CC1FCE0D2D9B7BA /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AAB56A3E9F02762A877ADADABED82F3 /* RNCWKProcessPoolManager.m */; }; - F252EE542CF5FAC448CADE1D81F56DF6 /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 64EAAA7D3E3B9EA2C22622919AB96085 /* RCTCustomKeyboardViewController.m */; }; + F1E1333AEA9A20A7D09582045666A987 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 403B97CA3C282DFD03D871C0B93C94C3 /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1E9F4F61494F37A09D095B3675E4A8F /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C1B1B6FB49BD282706FFC998F667D2BB /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F20C9E3E4D0BE9C8724AFD7556F663C8 /* RCTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = E61A1C5653AD0EA4AF8BFDD95F9D03F9 /* RCTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F232397B38A23317C4A05F4975207C25 /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 24012F8C88185EFC677404541CA2CC3D /* BugsnagFileStore.m */; }; + F242BAB0E83DD4405CC1FCE0D2D9B7BA /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E88C1639E456C9CF45039744B34B73A /* RNCWKProcessPoolManager.m */; }; + F252EE542CF5FAC448CADE1D81F56DF6 /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BC18AE76FC996D1CA1994A9A06890ACC /* RCTCustomKeyboardViewController.m */; }; F253676650181C9AB4472384CDCFE3B9 /* CGGeometry+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 937CD84033EBCEC7530AD7CD9164827E /* CGGeometry+RSKImageCropper.m */; }; F255767A43EB01B5324B1B7536288503 /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = FFED175A51D1C78378F5B09D9BBE61E6 /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; F25A24D58F9DB18D19FA4AF42B7466B0 /* FIRInstallationsSingleOperationPromiseCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 5066B5D622B74FA829E74EC57A9A4A3D /* FIRInstallationsSingleOperationPromiseCache.m */; }; - F262E5F995D10548509FDF5E5834B607 /* RCTAnimationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 69257681AA1662D7FD8A126E8B78350D /* RCTAnimationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + F262E5F995D10548509FDF5E5834B607 /* RCTAnimationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = C073DF562B22E808041D0CF63D4109DD /* RCTAnimationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; F26A41277C12D8FFF8439BA0A0DAE745 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = CB239D55874C02D4160E9D47CB6FCB94 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; F272955FEB837F77CA7044A8841831DB /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BD8BE2EBFD0D1839043AD8540CA84EF /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; F2A8DA1AC957383ED61BC129CBFEE9AE /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = C9C5D8DA10F83B08DD9DD499558F760F /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - F2C1EAB86A623FD0E3AE7D85B984C89E /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0414BF0BBB66ECC4D8141C234CF79791 /* RCTBaseTextViewManager.m */; }; - F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 85A6112AD0D87A2AE6595A4C3628D59D /* RNTapHandler.m */; }; - F2F6974CB2911E6E418367E261E1CB4A /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 286EDA02ED5D09F9992ABE65ABD78CA8 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2C1EAB86A623FD0E3AE7D85B984C89E /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 540A1F20D5A6249AA5AD6B23B89DFB6E /* RCTBaseTextViewManager.m */; }; + F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 2877B9421293EC9697DC663C8D7EDF7F /* RNTapHandler.m */; }; + F2F6974CB2911E6E418367E261E1CB4A /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E70AA0D505488567C4D017F3E4247C6 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; F32F2C636023C27F22172F64D4D1936D /* EventUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CDAA627AE174F13FE1B9E69D7208E8C /* EventUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3636AAE48C74951140FBFEF7AD11D19 /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E246AF0BBED7036FBE5BB7342F0E2387 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3636AAE48C74951140FBFEF7AD11D19 /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 17D30F11B146D9CCDD98E5C067F9ED9E /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; F3A009B81FF8A92B347826968ED9AF1E /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = D64899346B43035B56313D189AA3D2C4 /* demux.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F3B34CBCC961EF36E3ACA1228C478F39 /* FlipperConnectionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CC50E959A5495A654034EF93E1B8E0E0 /* FlipperConnectionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; F3B80E2B758010DEDA95D8CD4B00CB84 /* OpenSSL.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4F147C150A48C9E88C17FC5E015667A /* OpenSSL.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; @@ -2964,130 +2961,130 @@ F4227A5A22C299DB2F673D8875C42BAD /* picture_psnr_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = EDD16EA40620A7D3F4320345E38B0524 /* picture_psnr_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F42591F023436E2D251408E0F6DC9E9F /* GTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 224E8D43D381D0811A55497FFB86EF3C /* GTest.h */; settings = {ATTRIBUTES = (Project, ); }; }; F43EF5DB5AC2D8D783DCCDD92DEF2232 /* HHWheelTimer-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ADC689FA4AE6037B5D50C5C5F4919F3 /* HHWheelTimer-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F458466F3BF75C1058975EECD1F9FD6D /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 850ED263FA09AEE617847B2309FD3D09 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F489673F5E89F0C8C8621528F0F3BD78 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = F12B3E9A08BDB290145E3B2BD5B66667 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F458466F3BF75C1058975EECD1F9FD6D /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = BF8C8B7FF6D66300305C1F59EFC6CD24 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F489673F5E89F0C8C8621528F0F3BD78 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9AE1E2D41BCF3547C5D6E9285A7A0044 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F48A0381C51B2F0D24730133B0C5D5FA /* GlobalThreadPoolList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 64415099B48A04C24817DF97120535EF /* GlobalThreadPoolList.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F48DC19A7DE41508D245FE55D1995E1A /* ColdResumeHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6878A8C96A8BE10ACFCB2F39236042DF /* ColdResumeHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; F49F1B5A4B1DA201D133771E9923D648 /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E4D2EAFA010A26A974FC40FEF1E3EA9 /* webp_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F4A5AF62639EE12B25A134CC761AE115 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = E76D46F06A84B4B9286B578A69AD010D /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4A5AF62639EE12B25A134CC761AE115 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D36876618AF8C1D5CFD7D670B6F00E6 /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; F4E86361F0A277D41AF92EEC1D515841 /* FIRInstallationsSingleOperationPromiseCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 443289FF1C17B6682DA35AFA742DE759 /* FIRInstallationsSingleOperationPromiseCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; F4F2AD90553CB120BC682940433493B8 /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = 38E81F4118D306076092074303DE64B1 /* lossless.h */; settings = {ATTRIBUTES = (Project, ); }; }; F4FA192DF8E95C26C55DAC65EE6B310F /* EmitterFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B959778F5883A6A16C96D03C7B7874A /* EmitterFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; F506CCC7C34A049D1253C979B7807514 /* SKNetworkReporter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F8D2E0EAABE90445655F7E1C4320FBD /* SKNetworkReporter.h */; settings = {ATTRIBUTES = (Project, ); }; }; F5106A9D245E7C593DA00BD467654ADF /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = F5E59825E1567763251F6BA3C07E114F /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F518CDF6FC7F5085F4C33D36E71E6B35 /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 2290F20C2B8587B16AAAA9195860246E /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F518CDF6FC7F5085F4C33D36E71E6B35 /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = CF8C9936AA62CBAF5CB03F867530BBA4 /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; F5292BB5CF2C799435F4B1E53237DFA4 /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = 55DA2DD30D165E94C2C29486587D8067 /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; F555F8C238747A97FF295FA277B84567 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = B82AE2359819957CA87A9C9347903301 /* lossless_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5569D7601768A0E8A97A9EDE6CCE8E0 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 80A2AE040566CF877A70391D5194AF89 /* RNNotificationsStore.m */; }; + F5569D7601768A0E8A97A9EDE6CCE8E0 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = BA7C3D0D2512BAEF12730C83AE7FAED1 /* RNNotificationsStore.m */; }; F557D614321C8F93BE3F898A9BCAA82A /* ParkingLot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 150FBEA326FCD79CA0FD0D0D0723C09C /* ParkingLot.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F567ADBF1B3738DBB51490CA6B7CE24E /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9678206A159276B63BD2EB7EF1B3C227 /* QBImagePickerController.m */; }; + F567ADBF1B3738DBB51490CA6B7CE24E /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 195A99A9AAE66B3B55102C6367345DEF /* QBImagePickerController.m */; }; F5978CC4D77598D1A49F9D24FA00C184 /* EventCount.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D1957EB80E04FA9CAFD53E047A2AB63 /* EventCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; F5E977F9F31FB31665D9BB76A04FFF46 /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = B431121E46F939344C25942872284812 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; F6086ADBCBE0EF97E2FEAD8C5415439D /* MemoryIdler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 992D961E24F23CBFB94C80495AF2AF3D /* MemoryIdler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F60BE74EC0CAAE86DF95B244A4C5151B /* UIColor+SDHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = FF3F5880EA2798E9F1380057A2F66360 /* UIColor+SDHexString.m */; }; - F60DB066439D039A0455DFA72FCFD83F /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = DAC74069D9D5F477EAEF1DD93F60EAD1 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F629573D9A6915E4B81534F7AEFF6C94 /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = B7E7467BEE8E6F86B0DCABC64CF81B8E /* BugsnagConfiguration.m */; }; - F64B30462C3E89F7E2EF6BB6F90F0B57 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EACE5B4C9E08B4DDD8549B2C025DC9D /* BugsnagHandledState.m */; }; + F60DB066439D039A0455DFA72FCFD83F /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = D605E4032C2B8C36BFF8913353987F7C /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F629573D9A6915E4B81534F7AEFF6C94 /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = FDDFD02E5EBF885F87AB856DB146E86C /* BugsnagConfiguration.m */; }; + F64B30462C3E89F7E2EF6BB6F90F0B57 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = F38418884820E6FC828755774B24358F /* BugsnagHandledState.m */; }; F657530EEA9AC9426F2F7045A997234F /* Singleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C76AD245DCE1D4DE8C58E276B04D5AC /* Singleton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F670C6D440F38F5C8CB289D1D0A50C7B /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 83433962F347CF9964944E8ECF30B5FC /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F670C6D440F38F5C8CB289D1D0A50C7B /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C65CED781EB4FC243BC413608DAD050 /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F679A1C3FFB46A8DA72E9B7078375DDD /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 38398CBE1093B9B3DBD3232473146B9C /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F69B2A01BCC45CE52653888D2D954540 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F8915E6DDB9DB9DC5F4B4D32959B660 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6CA15782A2C0C1E88AD0B2314B7655D /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 88CC26E86C4581E34F084F45491BF81B /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F6EAE7F32B58579065F02A073AE50A0D /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = 8184F44209E35FCFB3882EFAB43FF84C /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F69B2A01BCC45CE52653888D2D954540 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = D464E9DAC2B1BE6EDB9F6AD3AF16B765 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6CA15782A2C0C1E88AD0B2314B7655D /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24E2A2315152475E8843250F3226DF23 /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F6EAE7F32B58579065F02A073AE50A0D /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = 12F6BF576F39BBF07C412D2932C37709 /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F6F66797F0FC78C2248492479CBE62CE /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF3F7FEA5474D69FE2649113E76B0399 /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F70C1B48EE8C32FBC9AF78B84C715BB0 /* TLSDefinitions.h in Headers */ = {isa = PBXBuildFile; fileRef = C97C339316168DB04985D4F5AAB468BB /* TLSDefinitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; F714A528842E6AC83C6A9282ABE869CD /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 65EAC4A06F298959AC7D59F15810CB5C /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F718E29630F179BE5B516894C8601FBA /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B85DCA7215DCC24721034BA8491D07D1 /* RCTSinglelineTextInputViewManager.m */; }; + F718E29630F179BE5B516894C8601FBA /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 526516976CC7F4E76034F56C74AA7C44 /* RCTSinglelineTextInputViewManager.m */; }; F75DC605FC8D1F7681541CE667AB7CB4 /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = BB5155F3E43B110DAF3E79535861EC66 /* huffman_encode_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F76B9F350B7C4018D1A20BBAB9D61AEB /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 0053F156D7C435536B98212B3917B386 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7792BF3636610713062788116665BF3 /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DA3592506DCD6118EF12506F070EE5E /* RNCSafeAreaViewManager.m */; }; - F78CCFD0E705F38836EC90A08A0D099E /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5A5D66A3F340FAF357C3C23740B2CCA /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + F76B9F350B7C4018D1A20BBAB9D61AEB /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 31EC6B0BD5D9A627723E4231C736DAF9 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7792BF3636610713062788116665BF3 /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E4ABDEC2C13ED3F5E92A40AEF18AB0C /* RNCSafeAreaViewManager.m */; }; + F78CCFD0E705F38836EC90A08A0D099E /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD18ACAE2DA63187FD13B4505B223276 /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; F79075F88B5F0A11693594549A7B8C5F /* SKScrollViewDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = A3B579D0718FD897A3F357CDFDAAC02B /* SKScrollViewDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; F792B40741251C6B961A49C5E56AC7EB /* ScheduledFrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BF15DF569A38692EECB32ADF50BE67B /* ScheduledFrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7957488A7E05B294D0FDCB86F08DE8B /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BA0B40E78FBC5BEADCE390C45C701B1A /* react-native-slider-dummy.m */; }; - F7A599510F9FFC45C84600ECE6EB69A7 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD22B7DF933DE95063DBFA9AB621CA2E /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + F7957488A7E05B294D0FDCB86F08DE8B /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FE2865D78BF371822DD76F8FB6EB511 /* react-native-slider-dummy.m */; }; + F7A599510F9FFC45C84600ECE6EB69A7 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6E3C879B99E3089F3C34AF2D70352518 /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; F7AA02141B7C9712F22D1023EE2FA272 /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 005C39B0D6A55407361C60CF39DF33E1 /* syntax_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F7ACA0219D0817840C5BDC9A69E4BF5C /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A6DACFE14CC5DD3EFE1FF52CAE46B0B /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F8382867AA53861CD193DAF210EAE2DD /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = DBE52C59AA142A99D50F0AA974CC635D /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; F83D6DC16A3DDE2C67D8E9F41EF111A9 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = C27C187C03F06420FA43B0A4C0750F7C /* yuv_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F868B0F2EB72D34861497F45B6754CFD /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FB7BB567A6CAE2F752CECF9B7CDB70C /* CString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F87291CF6BE44C7D989180B811879180 /* ProtocolVersion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25CF3561507F48600D3F453131A2C062 /* ProtocolVersion.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - F8D2633BB510B8BEDB93A5A5E3F3060C /* RCTLinkingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = E700032730765E8D6A7310102C555CB4 /* RCTLinkingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + F8D2633BB510B8BEDB93A5A5E3F3060C /* RCTLinkingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = F4B0666AC296292B90F6ECD283BDE0CD /* RCTLinkingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; F8DF4276E3FB3B7C5B8439933EF119CF /* FLEXNetworkRecorder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3ECEA23C3832F940BD691FAEE3B87476 /* FLEXNetworkRecorder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - F91923107338828C1B57FC4D410102FD /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 77B189D27912E55B5B6BCFE03D2D42B4 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F91923107338828C1B57FC4D410102FD /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2605A02400E1642034EBC1AA76F1A945 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F9231F6B75F9828C1E7E7BACA93EC40C /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = B6C50FC767115CAE492253E1F49D9B55 /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F93061647B578E8C3199EE4628107A1E /* RCTImageViewManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = D406B162AD1A9BB2D5ED8E49D2583638 /* RCTImageViewManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + F93061647B578E8C3199EE4628107A1E /* RCTImageViewManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = ABFF0EAB8FEBF013FDD823EEB2ADA203 /* RCTImageViewManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; F93B81DDDAEA148C915D38C6EFCEB3D5 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 42BF9AC1EF2FE819707D1E091F5FC121 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; F96192C5BD1E33227FEF89509259CDCF /* GULKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 34F3F080B4AB992EDEF5C1C466626A9F /* GULKeychainUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F96D1655C792D82A40819E223055836E /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0E46A58A12FC794BA1AE3A482A5DC6DC /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F96D1655C792D82A40819E223055836E /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C6D29CCF8C317AD3563755137F8E38D7 /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F97BED093A11441ADBF6C0E05D48E8CE /* ProxyLockable.h in Headers */ = {isa = PBXBuildFile; fileRef = 626AD4468A7B3178C7FB17065BF68665 /* ProxyLockable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F99C6EF148A5F929C6714A10414821BB /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D826E60BC234B9FF7AD9EE10C96EE99B /* react-native-jitsi-meet-dummy.m */; }; + F99C6EF148A5F929C6714A10414821BB /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 012E2487C335188A68E118F6209D8FD9 /* react-native-jitsi-meet-dummy.m */; }; F9C79E07315E4101EE1E6284DBE96B6D /* json_patch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F553972880C3A400C12E0D3D21C1A6E /* json_patch.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; F9D66462790E3ECCB90C80157BFEE731 /* DeferFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 61C2419C4E20F84041A371C056FDD39B /* DeferFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA0913FA65B2D27FCAFE7E072BCDA6B8 /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C910CC24C086E197750941C95262852 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA0913FA65B2D27FCAFE7E072BCDA6B8 /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 74EFF811C1FB271E3414A12DD20A63E7 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; FA14342E79B4712BB89BFD6F442A6A64 /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = AA2469C485F9FE943B5569FFE2527565 /* enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = E88F78294801819BD69BE99ED540E704 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = DA97570F844984C4A3EB9C5094249D1E /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; FA4153C149EF3F1DDED6E4846513C67F /* ThriftStreamShim.h in Headers */ = {isa = PBXBuildFile; fileRef = 18C92F5067A0D9C793BDED8B6AF2293E /* ThriftStreamShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA41B3CEA87D34E244EA46A8F06EBCD1 /* BannerComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 055EA80443EBCEC8F7C23CE5DC385C56 /* BannerComponent.m */; }; + FA41B3CEA87D34E244EA46A8F06EBCD1 /* BannerComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 09C17593FD6EFC409D89860A3FE97E23 /* BannerComponent.m */; }; FA4347EF4A800F16CE57D834D4859D8D /* CocoaAsyncSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3007ADEE69DAF25EEED4EB1CDA5B2089 /* CocoaAsyncSocket-dummy.m */; }; - FA6CDEB2A292F61C8FA52F4239629B79 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CD4E032F91D695EB8DD21783BFA10A01 /* RNVectorIconsManager.m */; }; + FA6CDEB2A292F61C8FA52F4239629B79 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E61BD1682BC89BA8714CEB46FF523A5 /* RNVectorIconsManager.m */; }; FA7B91BBFE85B37005DA2A166EA97D07 /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = EE9E30CA68CB867C1C2E594FB4678686 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; FAE7FB7F49C39C5CC3B15E412575429D /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 69350944D9C493AFF7281E61F33B7D24 /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB0F92706EF1B0B3F1CCF387BAFC3433 /* RSocketStats.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA53CD80191E2DA2D6F6430CE1DC3FE5 /* RSocketStats.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; FB0FC8AE6675285761278B79CA6D28FA /* InlineExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F8F7CBD2B1FAC92FBC8A7461B2E5DEDE /* InlineExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB3DE01BC34DE183A41B48871808F975 /* RCTSourceCode.mm in Sources */ = {isa = PBXBuildFile; fileRef = E499E992ADE815C14367F331C98405B2 /* RCTSourceCode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + FB3DE01BC34DE183A41B48871808F975 /* RCTSourceCode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 92BDDD31A80B689CDF040BD06B39DFDC /* RCTSourceCode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; FB3F02BE14AE9F8DB2CEDA38C6A80300 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BD9328209611FF1811B056BE8AC0384 /* 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"; }; }; - FB68E4F21B1748E1957D68800AFD3CA1 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 71B79A38172EF9EE71FB0A05E099512E /* RCTImageUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - FB72FD83F67C894AD142EB1845000CF2 /* RNCAsyncStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 71BA7B037466AF872EABED21FFCA4F3D /* RNCAsyncStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB813826D2D03C2BB7AAC1130C477D8F /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = F0F8ECDEFFE4E135FB39B000FF214874 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FB68E4F21B1748E1957D68800AFD3CA1 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = C9CD2287E9245C164B8AB5D2C23A44DD /* RCTImageUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + FB72FD83F67C894AD142EB1845000CF2 /* RNCAsyncStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = AA611B1662B50B50C01F0F334CEAE12A /* RNCAsyncStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB813826D2D03C2BB7AAC1130C477D8F /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = A0C2828F2B4FF05802F9848E410B8618 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FB8C1E2C48F2AD8515C5E099C749C5BF /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C538E3BAFE7FB9B1F45E990DDC0E9D87 /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB92EE439043A66D7DA98BFDC70A3E17 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = C1A22A0CCAA83F4432C1D88100CB077A /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB9DEAA3FF6C672E354650B1ECAF88D1 /* RNCSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D7561A1F3D2AEBED36E92BC3042E4BF /* RNCSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB9DEAA3FF6C672E354650B1ECAF88D1 /* RNCSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A23350B887B3391EDC956A74EB776B1 /* RNCSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; FBBA5CBD3A64DB549CC7D70A8158B368 /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6588555BE590BBE9C4C708DE251C5267 /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; FBC0D2805C929A4C5832392FC8E13163 /* ThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 29B0B355A6EF8ED64F63AFA79704D980 /* ThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; FBD7C4826F1DD46AE003317225C0D984 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = DCA1E0D1BC1C44D03756BBF4B8CABC5F /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; FBED05764440E7FEF17C007B2437FB0D /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EA70478866168C127052F19BD9EDFD8 /* FIRVersion.m */; }; - FBED8C83DADC53ED21AFE070E8625622 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 87FD3BC45223DF4888204BDA75328D7B /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FBED8C83DADC53ED21AFE070E8625622 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C5D9F9AC093F604362132BFBDFCBED4 /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FBF4EEFCACA4C3C85581D62F93473E7F /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = DDCB993469467EC1426890E2EC115BD5 /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC26ECFC0E452C0B1FC7543F2EBC89C8 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 02CFB7E4EAB9656948616C6F37F150D1 /* RCTMultilineTextInputView.m */; }; + FC26ECFC0E452C0B1FC7543F2EBC89C8 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 92CB1C452D3102ED2053B96D83B67867 /* RCTMultilineTextInputView.m */; }; FC6B3ABED8B138EF2E98AD6E2819FBF0 /* PasswordInFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ED9667598D8EA6FD3FDEE12FA763DAB /* PasswordInFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC759D82AFEEBB0CDCFA7B4D29B2D9CF /* RCTTVNavigationEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F5F09B295F2D3446244328E54525852 /* RCTTVNavigationEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC759D82AFEEBB0CDCFA7B4D29B2D9CF /* RCTTVNavigationEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 26E35B845A5B19D9353458A64BCD1FDE /* RCTTVNavigationEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; FC75D51E54C6036FB1E4A073F39DE7B2 /* ScheduledSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = C52A0895B240C1BAE40AE6AACF1ADC63 /* ScheduledSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; FC775095597914294ABF7C56BF70052A /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = CEB8150ADB2616065D796E11D415F2F8 /* FIRComponentContainer.m */; }; FC87714A41923AA16685BCF5EA2F22F7 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EDB771581C668A716F2929172EA45F25 /* SDImageCodersManager.m */; }; - FC98D260B0CFC32AFF56A78B6D25EEFA /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AB135E598AEE7B5B14E3597613A98A4 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC98E27E7370D5E45EE6140BE503DD6E /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = DD38F2F2FA7D1CA194A4316CC114CE7C /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCA9C6B6B3DC07E4BC8A9ECC0A5E19C8 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CC60C4C23BBB6DFBB67F6C49C13440A5 /* React-Core-dummy.m */; }; + FC98D260B0CFC32AFF56A78B6D25EEFA /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DE38E8A98A2D833FCEC276EC68AB084 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC98E27E7370D5E45EE6140BE503DD6E /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D78775B7EF9D8518ACABB535901FF01 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCA9C6B6B3DC07E4BC8A9ECC0A5E19C8 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CC05D15E4FBC13017DC21AC3516AB05 /* React-Core-dummy.m */; }; FCC4D9CA0739EB52E8ACD925155F5C8F /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = FBCE2FDF0CE0B180C2AF59536B663A8D /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCC5B2ABD1B7DB7019EF1DF3AF45565F /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B2BDC1075053600BB48E4327B127095 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FCC5B2ABD1B7DB7019EF1DF3AF45565F /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 78D2CA12ADB80CE1E5BAF738F5A9026D /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FCD3515E17588302448E1EEEDB5DE753 /* FlipperClient.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0C35EEE4B1FA28E5625E404638F05B55 /* FlipperClient.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - FCDC5F5AF807DB5781447F7EC845B581 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 91B36F266B9D8615A7218FF77A6F09CA /* RNDeviceInfo.m */; }; + FCDC5F5AF807DB5781447F7EC845B581 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 31757C4EB15476B1F9D587841D3879E3 /* RNDeviceInfo.m */; }; FCE3A33F83836596ACAE1381D52942AB /* Cursor-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 190F437DFDFBAE254A394990FFA10E7E /* Cursor-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD0A3452882955D51AE629E3813489BA /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 81BDB57F53D39DBC0E0DE2D840B68111 /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FD0FD721DD68A6C1A0E02CD6C8D21303 /* EXUserNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = ECD7DBDB498A909518124AA224354D4D /* EXUserNotificationPermissionRequester.m */; }; - FD309F3148AABB6FF5CE94800C8CEEC5 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A405C5DEF0838E19B8C9F5D7D7F5631 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD4075015771EB548EE8ADB386FA5E20 /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = 08F1F3E5061E92E19B7F12E323613901 /* REANode.m */; }; - FD8440A64A1004A0B0E3D18D6E2AFAD2 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = F526B81DD346CBF3318256EC6D0D00F0 /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD0A3452882955D51AE629E3813489BA /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = ACA8142D7D50DEBD97F0FFAA8B39FFC6 /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FD0FD721DD68A6C1A0E02CD6C8D21303 /* EXUserNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 0092F410401125F086E544C457666685 /* EXUserNotificationPermissionRequester.m */; }; + FD309F3148AABB6FF5CE94800C8CEEC5 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FFFD65F89899E7581B14E6D5591A908D /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD4075015771EB548EE8ADB386FA5E20 /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AEE5D2A36E70EE7613ABFA94AA0963F /* REANode.m */; }; + FD8440A64A1004A0B0E3D18D6E2AFAD2 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = BE32E40EE45E7FEEDBABBB1F632D9BA1 /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; FDD5FCFCFF3A1F08C968E2B47BEEF20A /* SSLErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 804A45CCD959C9996B35D180C052F917 /* SSLErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; FDD98AFFE343DEF1281990CB755B5933 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 694E9D704A4770B63763819605BA1D5D /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; FDE050EAD80EBE0E02D981562F432050 /* ThreadLocalDetail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4207D75DF1458D3ACE11B078B04F1652 /* ThreadLocalDetail.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; FE01338F38ED1D4F33168220521C0B44 /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F4E6559ACBC02C36028E184C9B0CFC /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE568F942AC8C78A9288A55D7EDAD5C6 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 07DC53839E3BF5F28191DD0BA3F31A48 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FE568F942AC8C78A9288A55D7EDAD5C6 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 452265926F4F1AD477B398E738D0A447 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FE570C55427946ABBAB0EF448040C12E /* CancelingSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D9AF9F4D617C3D191A7755710F262C0 /* CancelingSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE5B55CC4A37EF0D7B2C1E92CAF12F99 /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 40F59D5A484EB698DDFE890E2BFEB5DC /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A7ED7C867EFB1AADF601062F778482C /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 052395D38A52B075BFC4AF3A27C3D0C5 /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE9B01DC938E8FF1AE38579797F5CBB0 /* EnvUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EBD7D64F48D5A37CCB258F80F759C95 /* EnvUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEE81DDBC8EE950322B4DFBC3C91A8F5 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = C88933EF5580895A52694BD12032F2A6 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF20886F669DA038DCB2D84F30D71D5E /* IOBufQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3CB0803F076C784C3212867D467D430 /* IOBufQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors"; }; }; - FF217BF4F60D6ABBE53FF634B951F784 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = E664162CC3D20649879EE5C9EE42FF99 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF217BF4F60D6ABBE53FF634B951F784 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = AA1CEE6105502CBCFEDAB7DF17BDDD23 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF25A72AFBFDD3B1F8A677B56EE3F6C6 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = A4F1BB4AD11B8B0876DE2E21A6833B04 /* rescaler_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FF26719BB69A2F1411F3516CE44D4912 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0555DEA8CCC5B069C0C2EE89E97498DA /* RCTAdditionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - FF28A2B722BF2ACB2EEEA732848F44CD /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = B60927F207660FF1F534FEC57BF761D7 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF60B7B41824DC680D901D24F8DB2F78 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E0DFA6854FAB0AE1641D77286FC5DDE3 /* EXFileSystemLocalFileHandler.m */; }; - FF6C3E3D7803F7C47C69F0D1971E6E0B /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AC3A335A71373D11D159DC48AD1B476 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF7C6B581125343FB5108C6A39FCBFFB /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 50B45D92C822BE77215EC7547CFF15C6 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF26719BB69A2F1411F3516CE44D4912 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A38739075BE8C49655328CA01FDB4211 /* RCTAdditionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + FF28A2B722BF2ACB2EEEA732848F44CD /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F5CB58018AACF27CE0F42652F58CB11 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF60B7B41824DC680D901D24F8DB2F78 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DFB1CAD034D1624F51C2B27B1F1CBE7 /* EXFileSystemLocalFileHandler.m */; }; + FF6C3E3D7803F7C47C69F0D1971E6E0B /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 250942542A3D8F65322D0B4FA88A34F6 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF7C6B581125343FB5108C6A39FCBFFB /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F788F3F64412D163EC0A7F7DABF475F0 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF8366ADAE423B2AFB5753C39F314128 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 762377E0E59BA8A87334A694F6F9118B /* alpha_processing_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FF9E21A6087B13223BBAD7DE03C03FB7 /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3448FC55C8E82FA0CDC44861D2A94718 /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF9E21A6087B13223BBAD7DE03C03FB7 /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 12FF562F1E14A2A6E6D05ECDBC87737B /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; FFA5B034E4A506917A5D5ECDF9E13251 /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F5A50D7A065476A0C4747B680D7254E6 /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; FFC03B7D8F37AE0403024D9BD66DB19C /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E8C89747EB135ADAEFAE0B2E90A1C51 /* vp8li_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; FFE8ABF8136FB927DC4744C89D988D59 /* GULKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 2347307F0AE2F59567C970617E229854 /* GULKeychainUtils.m */; }; @@ -3095,12 +3092,12 @@ /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 012B6E31000B9C7B50203C445166E8D0 /* PBXContainerItemProxy */ = { + 0065B82346B0B7F7A3FF7835C266F541 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; }; 013C8C712E31279FB89EBADB1C1A4BC4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3109,19 +3106,19 @@ remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; remoteInfo = UMFileSystemInterface; }; - 01B7E2B77CFBD925BCAA5EE41E2360D6 /* PBXContainerItemProxy */ = { + 01AFDF4CAA6CF2622FBB7C6636273A9E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; }; - 01C8A4087E0DCFE7278E113AD6885B61 /* PBXContainerItemProxy */ = { + 01B7E2B77CFBD925BCAA5EE41E2360D6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; - remoteInfo = CocoaLibEvent; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; 01C9B473BC5FF516A57C61FAAAD8049F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3130,6 +3127,13 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; + 021B0FA153DBCAEEB1A677D7728D7B37 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; + }; 02884AC05BC4B650EBE6E310CA3916B7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3137,19 +3141,26 @@ remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; remoteInfo = UMFileSystemInterface; }; - 0323F991328F97F668050CC1F09AEFF6 /* PBXContainerItemProxy */ = { + 031555B004F8700543B44A242D267F66 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; - remoteInfo = EXKeepAwake; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; }; - 039E8CBD37C5983167F040B9350FA534 /* PBXContainerItemProxy */ = { + 0385A53417915629901AE62E9C22DF04 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; - remoteInfo = RNUserDefaults; + remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; + remoteInfo = RSKImageCropper; + }; + 038BA7E4E83CCFAF747D3771CA84497B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; }; 040622B4EF3FFAC25FCB8BED372F45F5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3158,12 +3169,12 @@ remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; remoteInfo = FirebaseCoreDiagnostics; }; - 0457AC86F2F2F169E373C29F0CB64E88 /* PBXContainerItemProxy */ = { + 044A08F746E3FE4D703B6FD9576E63CD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; 0460274CCCBB15E986D75C4F43071A5F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3172,33 +3183,33 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 04992C00E6EBE5373FE7EFBC57507B72 /* PBXContainerItemProxy */ = { + 0692C5A45BE21CF7509A1C2C39B5E0EE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; }; - 051F5DCCB690390EAB9C1207EB2428F1 /* PBXContainerItemProxy */ = { + 0724F085AD56B3250975E01660D751DA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; - remoteInfo = Crashlytics; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; }; - 06238F09DE81970920F8FB3CB188A752 /* PBXContainerItemProxy */ = { + 09058C4773C962F25A99A05A20686EC8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; + remoteInfo = CocoaLibEvent; }; - 0864129FFA1C9FE7A7E2F408EA14705C /* PBXContainerItemProxy */ = { + 09499C072D69A77822477918EB1FAC3F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; 0A78C568CA90DDDEBA5BDB1A9F02EBD9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3214,12 +3225,33 @@ remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; remoteInfo = "React-jsiexecutor"; }; - 0CE11FC0203744D7E107AE16B6A8C7CC /* PBXContainerItemProxy */ = { + 0B1936A65C759365DACA7DBFC78E4E31 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; + remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; + remoteInfo = EXImageLoader; + }; + 0C856D67B0F9D69F4A0A402471B9A1CD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; + }; + 0D431E9B7570E094A7FCCFE124B6777C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; + }; + 0D5508EDDBB014C6F80887B386B684C8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; }; 0DBDC3964B7166E1CC00C4929706C8F0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3228,26 +3260,33 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - 0DEF6E66DFC16CDC50C902C561CA5EA1 /* PBXContainerItemProxy */ = { + 0F2BFDCE1221DD97F09CC6C36F69E2AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - 0FD6A4ED78388214475895E97458EB68 /* PBXContainerItemProxy */ = { + 0F3608D02111F878B8A532F70BA27877 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - 10262EA3089B20C23C65722192009691 /* PBXContainerItemProxy */ = { + 0FA749002CDCBB778D498F37FA9E1044 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; + 0FD6A4ED78388214475895E97458EB68 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; 10C2BEA52A3170A3F51CFAF499B2C693 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3263,12 +3302,12 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 113D310048CCDBA4829745D03E7C5EB4 /* PBXContainerItemProxy */ = { + 119DB4BFEE4B3A855EA0904185BB6401 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; }; 1202CD0D4E7F78CCFBB9BAF05625B5D2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3277,12 +3316,12 @@ remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; remoteInfo = "boost-for-react-native"; }; - 1227D1FB7E27665C424F0F15E124E59E /* PBXContainerItemProxy */ = { + 1250B13283DF6C827095574E8536A36A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; 13791CBAE3B4CCAF1FC636BA2BBD9DE4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3291,12 +3330,19 @@ remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; remoteInfo = UMConstantsInterface; }; - 137C2EA56581466C052C35663441B214 /* PBXContainerItemProxy */ = { + 13C55A91A3CB8024316B04B976A803F4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 27E277B43A5F7AE00EC5051AB99AC38E; - remoteInfo = ReactNativeKeyboardTrackingView; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + 13DED3B15C4599CF6C10EF16EBCE12B2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; + remoteInfo = "react-native-safe-area-context"; }; 14BB3DAC17135FD28DBB5B1361FD079A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3319,12 +3365,12 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 17F8EC1275B4E6633AD6431F19A9E1DD /* PBXContainerItemProxy */ = { + 166BB0AE37B589FA0BC062DCFDF66490 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; - remoteInfo = UMAppLoader; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; }; 1842322FCC293F8D40D3185CF322FF92 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3333,26 +3379,19 @@ remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; remoteInfo = "React-RCTBlob"; }; - 18A8A853FDBA952676258AF9A219E053 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; - remoteInfo = UMTaskManagerInterface; - }; - 19F7171BD534372A0EFDBA36CC5BA297 /* PBXContainerItemProxy */ = { + 18833468301DAF1070D05ABDB4F2EA2E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; }; - 19FFA4D76F413735B1A492707578C908 /* PBXContainerItemProxy */ = { + 1A7C443E2DE4659BAC334D2616271AF9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; - remoteInfo = EXWebBrowser; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; }; 1B209875BE1A2519F69D4DFF0948FFAC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3361,33 +3400,33 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 1B81F8C0565FADEB45A711ED943895AD /* PBXContainerItemProxy */ = { + 1B25BAD809DD51C8C17A22D9924B4661 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 27E277B43A5F7AE00EC5051AB99AC38E; remoteInfo = ReactNativeKeyboardTrackingView; }; - 1B916168DEA3C9F7676FA3590811525C /* PBXContainerItemProxy */ = { + 1B40B34EE1816BC0313A066CDD74ECBB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; }; - 1CADAE3BD5BDEE1695D2D3E4635CC7E0 /* PBXContainerItemProxy */ = { + 1BF4D0803FA1BA32646C976C30757958 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; }; - 1D95D863811FBD1B356071611606D1D3 /* PBXContainerItemProxy */ = { + 1D60BD5A2AAB2444316BAF24184D8FB7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; }; 1EECCDC5376D77D4DC29D8ACA3551B3F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3396,12 +3435,19 @@ remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; remoteInfo = Yoga; }; - 1F4A7616363E0961A58CA41935200E36 /* PBXContainerItemProxy */ = { + 1EFA9622A71562087A1B6DB0DD7DEA93 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; - remoteInfo = "react-native-webview"; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; + }; + 1F6BB76A4007F77FE050A4031B538B3F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; }; 1F6D1D516291934964CB96DF667AC71C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3410,12 +3456,19 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 217A3152041B91AC2C69C5E57D6F9C47 /* PBXContainerItemProxy */ = { + 1F859D1C9A82FFAA5F3E423B7D7D8114 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; + }; + 1FE84BBFE3187BF12BB6935EA5534851 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; + remoteInfo = EXHaptics; }; 21B7FFD1A14C9DCA797642821E09A7B1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3424,12 +3477,19 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 221CAE049F4AB86CB031AC422F732424 /* PBXContainerItemProxy */ = { + 21E3AAF5A01782E4AE2BC7B5B6216C86 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; + remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; + remoteInfo = FirebaseCoreDiagnosticsInterop; + }; + 21EE8DE14B6C57FB03272AF15235EE11 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; }; 2284921B4FC397971FFFACC555D01A18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3445,19 +3505,12 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 244E5D6DEF2503D7C675692C46AD761A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; - }; - 245FAA2D4288BB2D9D7C8C290A2E4173 /* PBXContainerItemProxy */ = { + 23C02F45DF0051AF4B4CFDDBCA108677 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; }; 2539C386890D7883A108FF4E3829524A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3480,13 +3533,6 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 262124D87F940F49B36C9748D58C48D8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; - }; 269E90A4666876CC5B9B5CB8454B71F7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3494,12 +3540,12 @@ remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; remoteInfo = "React-RCTAnimation"; }; - 27F49C59E4ECECC0F1AD44D9418C2E98 /* PBXContainerItemProxy */ = { + 270C7919A17837871D996EC671E60249 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; - remoteInfo = UMCameraInterface; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; }; 286C7DA34EBE9F8A3EC10424B36A30C8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3508,6 +3554,13 @@ remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; remoteInfo = "Flipper-RSocket"; }; + 28E7CAFB1777028F4490AC005F918B93 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; + remoteInfo = UMTaskManagerInterface; + }; 28E9E87BF06330725E1FF3E5A023FE61 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3515,12 +3568,26 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 297A2B84FC17D6F7F91153C9C3334C7B /* PBXContainerItemProxy */ = { + 29AA65FCC711F353EF18D657546DA2F8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; + }; + 29B93056AB7ADFEA987EE975A4C94CDC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; + }; + 2A2EF3B4AF1656FA1D3310E5AA46B100 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; }; 2AB4E316E2673B76ACA537189D619922 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3529,19 +3596,33 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 2CE32DBC2709206E2054AE28B010E175 /* PBXContainerItemProxy */ = { + 2B1333BFD9FA436DD4BE6137437CEA9E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; + remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; + remoteInfo = EXWebBrowser; }; - 2E3FCD4E164C20DF6149425A23C418C9 /* PBXContainerItemProxy */ = { + 2CB43F268A1853EB13305DBF0FB147FA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; + }; + 2D66320257EB31B3981906944FD54CF1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; + }; + 2DACDC433DEF81DAF2FBA8393FF64845 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; 2F33AF4C1C0B51002BC93979F647366E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3550,6 +3631,13 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + 2F451AEE60BBEA5AE1EC8DC2D1F1F49A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; + }; 2FECF1896BBEFF162E79DB1B4AE97494 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3578,47 +3666,47 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 30EC7A400C70E10F3722731C54F15542 /* PBXContainerItemProxy */ = { + 32DB7DF4E89B48C00B28388F70F51EEA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; }; - 31B6D878932415CEEFE8C8A835FF17BE /* PBXContainerItemProxy */ = { + 3368FE6ED43AB2C0992BFDDA52797BE7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; }; - 34DE7C292D92E3CB1F5D90FC054FCBA3 /* PBXContainerItemProxy */ = { + 3493519DACDAAEE46860321CCD682AFE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; - 3507BD48B392827B556CFC338ED9DE2C /* PBXContainerItemProxy */ = { + 34BC66599A01B19CEC87174F9B6DA131 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; - remoteInfo = UMCameraInterface; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; }; - 35919A43D7796D975ADA32B79DAB5B88 /* PBXContainerItemProxy */ = { + 34DE7C292D92E3CB1F5D90FC054FCBA3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; - 3597FB537A4F5019D5421F89B3AA90F3 /* PBXContainerItemProxy */ = { + 353F585C7ADACA2363ED3D037D388FD8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; }; 35A10B7FC1F84462218C13545EB7FB88 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3627,12 +3715,19 @@ remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; remoteInfo = PromisesObjC; }; - 3612DC2F5B92A76BED684DFEB53F5156 /* PBXContainerItemProxy */ = { + 360866ECA89FF8B1D73E46A62E529454 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; + remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; + remoteInfo = EXKeepAwake; + }; + 360C0613EA580B6608B7C51B33877F31 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; }; 36984564ED77D3FA35292387EE92F363 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3648,6 +3743,20 @@ remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; remoteInfo = "boost-for-react-native"; }; + 380BA391EB9395A080532739722A5980 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; + }; + 38763BE63B64C0CC355805108A0D7250 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; + }; 38EA73CE3C061B8768A17C136BC136B7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3655,89 +3764,89 @@ remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; remoteInfo = "React-RCTVibration"; }; - 39CD33DB7DC4569D42431023259B76CF /* PBXContainerItemProxy */ = { + 38FDEFCA4E4FA8406285E30E025030D7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; }; - 3AEF996ACD3624F5D0525CCA0F787201 /* PBXContainerItemProxy */ = { + 3990DBFD49A76736961C88B9091A13A4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; }; - 3B2CB4C09D3A44183329A2C1357EC2EF /* PBXContainerItemProxy */ = { + 39CD33DB7DC4569D42431023259B76CF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - 3B9FBEE4B2B6D2D98D3E9DEA0E5910C3 /* PBXContainerItemProxy */ = { + 3B2807E3FE9D5DD5EEAEFA156B4D7EB5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; - remoteInfo = "Flipper-DoubleConversion"; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; }; - 3C9D25674D8973B33CAD9955B6E9082C /* PBXContainerItemProxy */ = { + 3B2CB4C09D3A44183329A2C1357EC2EF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; }; - 3CAD605631D93011CB127DF26BB5855F /* PBXContainerItemProxy */ = { + 3C311CA3D69CA794CFFA10D7F19FA551 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; - remoteInfo = EXLocalAuthentication; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; }; - 3D08869D2D5C89ED73ACFB6FD5621227 /* PBXContainerItemProxy */ = { + 3E4CD36F9EC3B65498E3DB16276FF67A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; - remoteInfo = "Flipper-PeerTalk"; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; - 3D1BF08E2D556F98377224E12140D456 /* PBXContainerItemProxy */ = { + 3E91FD90206247D5B162FD60ACECA835 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; }; - 3DD3903DB817956DFC2FC8339F36E8D7 /* PBXContainerItemProxy */ = { + 4033A4DC07C9D71A13885FFD7F357458 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; - remoteInfo = RNFirebase; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - 3E4CD36F9EC3B65498E3DB16276FF67A /* PBXContainerItemProxy */ = { + 4109B8AFEA1CA87565966C659194CE6F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; - 42234504C7FF67CDFFCAF6B4CAD7F517 /* PBXContainerItemProxy */ = { + 430870FBE16F1FD41809D7C8BEFC5DC4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; + remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; + remoteInfo = FirebaseCoreDiagnosticsInterop; }; - 4356C23A90B8E137C947C8E3E45D4C23 /* PBXContainerItemProxy */ = { + 4343AD886482E901C9589A7890F3DABC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; - remoteInfo = UMSensorsInterface; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; }; 437B65583B16B649BD8F25DF7359E61D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3753,19 +3862,19 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - 449D79087AC8EFD285D3D6948D363A86 /* PBXContainerItemProxy */ = { + 4441C46CA91F603AC40C8E3813E02919 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; }; - 44CBDE61952FBC28F86C739EBC4AB8C2 /* PBXContainerItemProxy */ = { + 449D79087AC8EFD285D3D6948D363A86 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; - remoteInfo = "react-native-background-timer"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; 455009ED9ED8F59E3D7880EA52A66B11 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3781,12 +3890,19 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 47C15B465F430F5AA1F87F556D8BC4F0 /* PBXContainerItemProxy */ = { + 46E7505632F5492D20D4900E9A06F815 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; + }; + 47116BDC2069880395B20D2E721A0DF8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; 47CDAF2090697A38D58C4D7A13E2CC2F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3795,26 +3911,33 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 49CECD17031457623F27667B19749B43 /* PBXContainerItemProxy */ = { + 47D9AA5DE9898ECC256174DEA6ABC6FF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; }; - 4A8F0BE217B301EC2E43425B0A5F21EC /* PBXContainerItemProxy */ = { + 493DD40A6D9A3B3022736253673CD456 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; }; - 4AC169329774617BA6B8F3F614E8E2CE /* PBXContainerItemProxy */ = { + 49B2FB183C0363437E4A08C1B4011FD4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; + }; + 4B63642631923F106C622B73EF065A01 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; }; 4C6653A5CA1CE41FC050930288153C50 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3823,26 +3946,26 @@ remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; remoteInfo = RCTRequired; }; - 4C8957D6D63B4DFC721520B173AD5D7E /* PBXContainerItemProxy */ = { + 4C977CF2D51F459694032880A1F55587 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; }; - 4CC9310248550CE20442255A925333A5 /* PBXContainerItemProxy */ = { + 4E17DFE25504DE8C2F3BC368A0F8F85C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; }; - 4CE4C00F0CB7FF9472D6B23967581F2A /* PBXContainerItemProxy */ = { + 4EB11D12423290F050BDB32C2C893BFE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; + remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; + remoteInfo = RNUserDefaults; }; 4EC2A48991B69891116F09993FBAC1BC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3858,19 +3981,26 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - 4F32EDCE5B3A12D06CE0D50B6AF3545F /* PBXContainerItemProxy */ = { + 50114E647EDB2937CDAA4B75317200B7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; - remoteInfo = RNCAsyncStorage; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - 4F982604C49A2BD0F1E05AA077E90EEC /* PBXContainerItemProxy */ = { + 51F8A39EC9A10E1173E62CCDC73F4F97 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; + remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; + remoteInfo = UMAppLoader; + }; + 52D7312886D16C191A69BD562E7FBC21 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; + remoteInfo = UMAppLoader; }; 52D75569EE8B532085465A5470C6C390 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3893,19 +4023,12 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 547A97FCEF3B5F496F346B56B569B1FC /* PBXContainerItemProxy */ = { + 5481117445925143DE32D33A0FE91521 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; - }; - 548DFBC4940FA536EDADD9274D48F26C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; }; 553C9E2156C22165A3D5F8E54F781E1E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3928,6 +4051,13 @@ remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; remoteInfo = "React-RCTLinking"; }; + 55DC1CE9D07BE0344A390062840FF11C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; + }; 56C91901D2770AB6795E24C1123C4FCC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3935,19 +4065,19 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - 5825B399C704E26C1BCB6B61F19FDB71 /* PBXContainerItemProxy */ = { + 5708A3455DCBA9A62042FCB37153DE97 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; }; - 5915E8006D75569F464804839856A9C5 /* PBXContainerItemProxy */ = { + 589926F54AC5FF60EC4D81357A5B6842 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; }; 592671C6C3F74111AF89BE688E45B730 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3977,13 +4107,6 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 5C716264B10214580C06B36EBC231789 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; - remoteInfo = EXPermissions; - }; 5D7263A8C3B911982BA2A84F9C447C16 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3991,48 +4114,27 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 5DCA67E832A9675BB0A0994ED38A5284 /* PBXContainerItemProxy */ = { + 5DB7F97DE91806103B61DBCC61FF0C85 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; }; - 5EED9A44D7E37951C7239080722062AE /* PBXContainerItemProxy */ = { + 5DCA67E832A9675BB0A0994ED38A5284 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 5F16023EAC1F1EB07B1F66863C1A8EF2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; - remoteInfo = FlipperKit; - }; - 5FAB23E385BA05DBED57BAF876723AED /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; - }; - 5FE28374E7632DBC75D4A5D58FAC3ADB /* PBXContainerItemProxy */ = { + 5EED9A44D7E37951C7239080722062AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 5FF7C26F074B004B268EDBE2CE7D7D31 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; - }; 60A0EA9E2BD9CEC64E95082A2A9E3B65 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4047,12 +4149,12 @@ remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; remoteInfo = UMPermissionsInterface; }; - 61878CFB3F586AE186108990A431EB64 /* PBXContainerItemProxy */ = { + 61426AB042ACC8C915D8B7DCA4DCB98D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; 619EEBECABCD9B0BBCAB20D81A8AE764 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4061,27 +4163,6 @@ remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; - 623627DBDEC607D90F43FC2EE0AFCF2D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; - }; - 6243B5380DE7572F20F68EE582599719 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; - remoteInfo = EXKeepAwake; - }; - 642361D0ADF645370385D06B396110ED /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; 6423924A022902547DBE5FC8EF93BD4D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4089,12 +4170,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 644D050C69124CC642E63531715DFECC /* PBXContainerItemProxy */ = { + 645321059809539F71C97DA230D8456B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; }; 6514B943829E36F02B9A139465155A84 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4103,6 +4184,13 @@ remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; remoteInfo = Flipper; }; + 651DA1781930146F96CBE024EC221FCF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; + remoteInfo = UMCameraInterface; + }; 65F1482F271C028DB3676FA82CE9C9EC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4110,47 +4198,47 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 666A5F249A3AA80B1D46125C42872342 /* PBXContainerItemProxy */ = { + 6782FA854213AADBCC13DEDEE0785732 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; - remoteInfo = "react-native-safe-area-context"; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; }; - 6736F72960F6002FF4A3CF65915D000E /* PBXContainerItemProxy */ = { + 68398EDCB17F0A6D8CEE83EC1EB7E137 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; + }; + 6872644DF7C4A17AB5193829D2794A82 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - 682D55C33CE77D1D22FE2E939A062C2B /* PBXContainerItemProxy */ = { + 68E4772B5A28F6802F7CC91472F2E828 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; remoteInfo = "rn-extensions-share"; }; - 68398EDCB17F0A6D8CEE83EC1EB7E137 /* PBXContainerItemProxy */ = { + 690494113528102E3DA789534616DC8C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; - }; - 685E92EDBC430330C804A55B8F8878B3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; }; - 686BC32D1C6CCC457FE2565F332BABCE /* PBXContainerItemProxy */ = { + 69A63A820F50153817D04A50BDC03272 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; - remoteInfo = EXHaptics; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; }; 69C4D7766C312F032D5267A5354EEDFE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4166,13 +4254,6 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 6A352984A742DA189FB8046B104E649F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; - remoteInfo = UMReactNativeAdapter; - }; 6B208C6A49DF0227CFB52DEC61D41F38 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4187,20 +4268,6 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - 6C1876B42A8A11CAD3F4F695CDA925C5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; - }; - 6C268D987CA614E5B63919CDA4EA447F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; - remoteInfo = EXPermissions; - }; 6C2F4A0DAC27B8CC1550B7060BBD3B66 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4208,61 +4275,61 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 6D67EFEBD531F532E3038CAA6D274C44 /* PBXContainerItemProxy */ = { + 6D90F18E32C4E657BC9CA54E6F611DAA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; }; - 6D7BFAEBB699B1285C90F5B301EA2DFC /* PBXContainerItemProxy */ = { + 6E0F5F25DDCF1759D45031621E96590D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - 6E0F5F25DDCF1759D45031621E96590D /* PBXContainerItemProxy */ = { + 6EF4187B15E51427DF939B1A0C098ED0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; }; - 6E305EFA6CA49BC3193707CC134B410C /* PBXContainerItemProxy */ = { + 6F114F5156AAB293844B1F2ECA5D8598 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; - 6E717D4CFDB10347250AECA14017ACD3 /* PBXContainerItemProxy */ = { + 6F3BFA1700F4AD8B8AB51F4F7A157858 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - 6E8DE6BDF28E1F509FAEFEBD2EF06C79 /* PBXContainerItemProxy */ = { + 6F40D53701E3633C0C4AAC94CF244DC5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; - remoteInfo = EXLocalAuthentication; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; }; - 6F3BFA1700F4AD8B8AB51F4F7A157858 /* PBXContainerItemProxy */ = { + 6F4366AF34218EFBB7B27468E271C98C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; + remoteInfo = "Flipper-DoubleConversion"; }; - 6F7F04555C3F3B75491B971CAC243E4E /* PBXContainerItemProxy */ = { + 6FC0A4E967E6F53D2BD2B0DCE46D9CCF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; - remoteInfo = EXConstants; + remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; + remoteInfo = UMSensorsInterface; }; 6FF8F75EF6992288E8D349C09CF22BD3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4278,26 +4345,19 @@ remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; remoteInfo = Crashlytics; }; - 705FABF8970AA0635666C3BFDA63D7CB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; - }; - 71AA0A9F4AF2861DC65C634DCA84DA29 /* PBXContainerItemProxy */ = { + 701291BC6CD4C3AA18275ACE387FE70A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; }; - 721922D52B0FCC4904CB6A9DC5B0F513 /* PBXContainerItemProxy */ = { + 703BF00A879AEA63E9D7CC6088AA5FB8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 449C1066B8C16DEDB966DCB632828E44; - remoteInfo = RNAudio; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; }; 729C920815C311E1D586861019E10612 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4327,6 +4387,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 74113676160F37B393AB55911779346B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; + remoteInfo = RNCAsyncStorage; + }; 74C2CAAD882619C327EBDCCC07631937 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4334,33 +4401,40 @@ remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; remoteInfo = Fabric; }; - 7581ED2D9DC49A86B186710998456FB7 /* PBXContainerItemProxy */ = { + 77650DB9BCD15D3DBD659DF4437F2533 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 7591D4886E50377DD63D58E2B727CAD7 /* PBXContainerItemProxy */ = { + 77788032BA10030FFF2413A94AD58C6A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; }; - 75A14AF211679514F264E7F0DF803B07 /* PBXContainerItemProxy */ = { + 77965761592DD3250430BD1AABDE6601 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; }; - 77650DB9BCD15D3DBD659DF4437F2533 /* PBXContainerItemProxy */ = { + 790CBCBE87BE40D190F8E625A0AC8FF2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; + remoteInfo = Fabric; + }; + 799C74A0726AF456D1C5D644513B1E8C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; }; 7A89F7EA8C0CCE4C1799109D360F0F8D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4383,33 +4457,33 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - 7CBA093BB5F4F39B712F2AF488BEEC02 /* PBXContainerItemProxy */ = { + 7C2CEDFA6599040FF198248D1337A42B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; }; - 7CC878764E325DF5D6D1F598241F3FC1 /* PBXContainerItemProxy */ = { + 7C38D8BD5E0F4455A5D19EB6159AFF37 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; + remoteInfo = Crashlytics; }; - 7D209FDD21AC8016C90C101B929B5426 /* PBXContainerItemProxy */ = { + 7CBA093BB5F4F39B712F2AF488BEEC02 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 7D7E343C7C927F27F36C93F45E00971B /* PBXContainerItemProxy */ = { + 7CC878764E325DF5D6D1F598241F3FC1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 449C1066B8C16DEDB966DCB632828E44; - remoteInfo = RNAudio; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; 7D9A4DEA0175BC4538E1272B3B0504FD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4418,27 +4492,13 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 7DDD6FE55BBB3E679C5550D19E0C634F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; - }; - 7E5CF4EB9B0B0447DA4E25A106293A73 /* PBXContainerItemProxy */ = { + 7E8FAAA37C4B768DCD827D0F00A146A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 64F427905796B33B78A704063422979D; remoteInfo = "rn-fetch-blob"; }; - 7E740B3EA4C3D227C7CDD81A256D4856 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; - }; 8074B236F0C465FFAA342F8D44BC108D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4460,19 +4520,12 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 8135C638E8BA5FD09534BEE55259A5BD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; - }; - 81A1D83097B7AE95C8A5857EC5E10AE7 /* PBXContainerItemProxy */ = { + 815D22F0C7554B66C20F0883A9CED355 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; }; 81B20C29D8DE0AECFEEA7BFC3548E125 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4481,20 +4534,6 @@ remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; remoteInfo = UMConstantsInterface; }; - 81F8896C5DB1BCE0407DE2B61AD3D6F9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; - }; - 825E6B70DF984A80754D23A4950D7438 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; - remoteInfo = EXImageLoader; - }; 82B12BA2AABCF09A5F85DF84C0BDD0AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4502,54 +4541,54 @@ remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; remoteInfo = PromisesObjC; }; - 8302F21982A3EFCDC6FD0714DAE85EEB /* PBXContainerItemProxy */ = { + 82BCBC9FD278C2697F8072A1C1133910 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; }; - 839AF7ADA9594F89244CF78223DBD467 /* PBXContainerItemProxy */ = { + 85526C6F5E52C7506C5ADA9B14A322F7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; }; - 83D2618D2C50A897754D642E84FF5923 /* PBXContainerItemProxy */ = { + 85AB64E01EB845F2A0EDEF3EAF922184 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; }; - 84082BE82B89E7C124EA0026CADD5A98 /* PBXContainerItemProxy */ = { + 85BB3AA9E636EB9AF4B867331A2004CB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; + remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; + remoteInfo = UMFaceDetectorInterface; }; - 84C7A31872934114867DB1B3868C9EE5 /* PBXContainerItemProxy */ = { + 87C5F0D0DF5CFCFD47266C1B8FCAABDB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; - remoteInfo = RSKImageCropper; + remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; + remoteInfo = EXLocalAuthentication; }; - 86183DE889527A9647EEAC01222F58F2 /* PBXContainerItemProxy */ = { + 87DDD74C6168E8F38B8554781DEEC63B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; - remoteInfo = EXImageLoader; + remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; + remoteInfo = CocoaLibEvent; }; - 87DDD74C6168E8F38B8554781DEEC63B /* PBXContainerItemProxy */ = { + 87FA06E532CFAF4310731BCD488B28F6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; - remoteInfo = CocoaLibEvent; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; }; 882BEE9E8FCF0A6BD665F01DFBEF822B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4565,13 +4604,6 @@ remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; - 889B4629741816E3830F8BF948F984C6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; - }; 88BF67064CFFE8794B0B07782EB28354 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4579,47 +4611,33 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 8905D9550652F9ACC7DC0827EE1C2607 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; - remoteInfo = "Flipper-DoubleConversion"; - }; - 894B471BA7FD2341B3F517268F61BA1F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; - 8A6CA7E78A119BDA035F13C1C2874552 /* PBXContainerItemProxy */ = { + 8A14312C3654C8DD052FA4D7B18A08DD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; - remoteInfo = RNImageCropPicker; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; }; - 8A6FF4D0F60D1A1737F944D831B6F746 /* PBXContainerItemProxy */ = { + 8AB84C7F5DF090ABC99AA77E573DFA9A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; + remoteInfo = EXLocalAuthentication; }; - 8B72922AC4529AC0B7D77BE93B230132 /* PBXContainerItemProxy */ = { + 8C081151D12C5FE077D585FB660C38C5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; + remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; + remoteInfo = EXPermissions; }; - 8CCBAA9D14AB79F06954DD34A2731FCD /* PBXContainerItemProxy */ = { + 8C5B5CD9BB0D40B73548BCEC1730C79E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; - remoteInfo = EXWebBrowser; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; 8CD598B3122E1B5D5E0411E9F8DFF385 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4642,13 +4660,6 @@ remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; remoteInfo = Yoga; }; - 8E8FADFE18B61A9C7EA803AAD965E322 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; - remoteInfo = UMAppLoader; - }; 8E91990EDE03926388322CD5BC7E9596 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4663,19 +4674,26 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 90F215D1E26A8D8D4244B203701AAB00 /* PBXContainerItemProxy */ = { + 914920FE125E08820136442E6C40FF7E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + 919588A70490EE27CDF56AA88435272E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; remoteInfo = EXAV; }; - 914920FE125E08820136442E6C40FF7E /* PBXContainerItemProxy */ = { + 919C5B44CB96FD514CAA4B01D32F84C6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; + remoteInfo = "Flipper-DoubleConversion"; }; 91EE084DD583BBFC5B94D7F82B78A6A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4684,13 +4702,6 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 923376C74AF4DFE8BA454FE5909DD20C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; - }; 924025D4D8E604372CC80524DD2E97F8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4712,19 +4723,40 @@ remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; remoteInfo = "Flipper-Folly"; }; - 955AAE1FE6E875B0E70E957463F8FB11 /* PBXContainerItemProxy */ = { + 949557E6EBA8D03E95E55C475275DC55 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; }; - 9564EEBF40E15A31A8E7CC8D8C0E37D2 /* PBXContainerItemProxy */ = { + 94CE8279DAB4AA4045EB3D38F811E33A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; + }; + 950A8F8744FDC0016988B1185DBFE28B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; + }; + 9555102BAED557A0B13D44272EBC9F1C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; + remoteInfo = EXImageLoader; + }; + 95A4FC1581E8A001F1227046E64C4580 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; }; 95D6942673DEF26CD96965BD3A7F39D6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4733,12 +4765,19 @@ remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; remoteInfo = "React-RCTText"; }; - 96F661024B66FE3559C7774BB419C99D /* PBXContainerItemProxy */ = { + 98F46713659942DB73475BFB15D951A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; + }; + 99E3855087138B534412E888776D0804 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; }; 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4747,12 +4786,12 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 9A9AF991BD38A26E4991C70E12B3E338 /* PBXContainerItemProxy */ = { + 9B4F64F9C1AAB77C8B1DB313744B3990 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; }; 9BAAC27A785084FD67CA13B8EDA42C7D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4761,6 +4800,13 @@ remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; remoteInfo = "Flipper-Folly"; }; + 9CC029F303117E7997F002DFF9B7FADD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; + }; 9D5A278B1D609214380E444D1D5DFFEE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4768,6 +4814,20 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; + 9DADAD2C725CD30150F8EA261622F635 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; + }; + 9E1B41910A1E3EA9033D26E0732E2EBE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; + }; 9E534D42CEE0BAE16AFBC5CDD1AE05CE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4782,26 +4842,40 @@ remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; remoteInfo = "boost-for-react-native"; }; - 9FEEE5A7B6225B791A62FF6B93A364EE /* PBXContainerItemProxy */ = { + 9F97CDB866088A6D1AB366734DC82222 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; }; - A0514ECFACC7F0E9DCCFE507BC6414A4 /* PBXContainerItemProxy */ = { + 9FDA086596C2F4F04BABDB99309DD8B2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; }; - A19DF5E0EFE248F59AFA5C74EF0DFEC2 /* PBXContainerItemProxy */ = { + A00FC153514218F035B7E8B40A0F61AB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; - remoteInfo = UMTaskManagerInterface; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; + }; + A0621A2B42E0D2DFBF1626FAC54A7E95 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; + }; + A1D6201F091A38966DE678E49A48CE90 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; A21650743E2C37A78D811B8920A0B860 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4810,40 +4884,40 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - A243488DBA17CD164C4860C26B1E6385 /* PBXContainerItemProxy */ = { + A2C2F03D44D94585CB2010EF37F36292 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; }; - A352A2546D195F5EAB5CFEAF573EE5A5 /* PBXContainerItemProxy */ = { + A3EFF8927F04351666F413BC0DCE8B46 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; - A473FE384ECC0A5305C9C74DC4AA4FE5 /* PBXContainerItemProxy */ = { + A46C12B91C09C3659509E0A2006EBDEB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; }; - A6230F7EEE1ACF1F51FC6517BFAA3C8C /* PBXContainerItemProxy */ = { + A51F447F24DD10435A203FA28A61097F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; - remoteInfo = FirebaseCoreDiagnosticsInterop; + remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; + remoteInfo = RNUserDefaults; }; - A669E7A301270A2DDAF00B85D781585A /* PBXContainerItemProxy */ = { + A581FDE13125B91CE0406372CAD495BE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; + remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; + remoteInfo = RSKImageCropper; }; A6D3FBE192729DD81F271A1FC6DA3AC7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4852,12 +4926,26 @@ remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; - A70634994F83F832F25CF3F2767EA577 /* PBXContainerItemProxy */ = { + A753A24DEBE37F0975456719D6FF03A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; - remoteInfo = EXAV; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; + }; + A75F817332E5014998BB41D5D396D4DA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; + remoteInfo = RNCMaskedView; + }; + A78781D24053EDF20C4F9616F916726E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; }; A7E5D397C11338DEED5E896EF959836C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4866,12 +4954,12 @@ remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; remoteInfo = libwebp; }; - A85E89D4FB7CA935A92B4AB152E73C5B /* PBXContainerItemProxy */ = { + A7F64F029F71A4ABD9D4B649550C49E9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; A86A3721252494F286B714B8A88F95BA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4880,12 +4968,12 @@ remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; remoteInfo = "Flipper-Folly"; }; - A897D0E88033885E5D7E049FBA306557 /* PBXContainerItemProxy */ = { + A9242CEAF7FFBD0B07A40EB61366AA2D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; - remoteInfo = UMBarCodeScannerInterface; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; }; A948FF4AC90480FCBFC7BBA8916F351F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4894,35 +4982,28 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - AA16D97646B953B5DE25C0F786EB4D0B /* PBXContainerItemProxy */ = { + A979BF6AB0E5B6E88DC9532E2B6E435E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; - remoteInfo = RNUserDefaults; - }; - AA5B8F43EAD114EE3717346D55C72BE5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; }; - AAE5A28788B8F479BB26A4207392F53B /* PBXContainerItemProxy */ = { + A9B56F141C6AAC96E58CC9F41996A85A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; - remoteInfo = FlipperKit; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - AB127B7AC6926A555A6A6FC702B198D8 /* PBXContainerItemProxy */ = { + AA5B8F43EAD114EE3717346D55C72BE5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - AC36F5A23C7659EEF3D1CCCB7421A131 /* PBXContainerItemProxy */ = { + AC2FE1C0602B7AF331598CE3809BB3FC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; @@ -4936,19 +5017,19 @@ remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; remoteInfo = CocoaAsyncSocket; }; - AC6D2E0D2044713E0891D41AF811ACCA /* PBXContainerItemProxy */ = { + AC84F99FFCDD55ED1AF1592DD12E2DEF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 33B041E5D061336F88B875C8B86E45FB; - remoteInfo = ReactNativeKeyboardInput; + remoteGlobalIDString = 27E277B43A5F7AE00EC5051AB99AC38E; + remoteInfo = ReactNativeKeyboardTrackingView; }; - AC9C0601DAAAEE96A7829DE927A63A35 /* PBXContainerItemProxy */ = { + AD05FE5DFB550E1D7D69C8C37DC28186 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = 33B041E5D061336F88B875C8B86E45FB; + remoteInfo = ReactNativeKeyboardInput; }; AD772911BB22AACF6D82C7659AC43148 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4957,6 +5038,13 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + AE5F1A2AD93CA37CFE5A916CAC8B09BC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0CF4D9052577C85B6B8C4E957332626B; + remoteInfo = EXKeepAwake; + }; AE7111F2927DD7B05F869FBCAFD506C0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4978,54 +5066,47 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - B016F73616BD062B510476739F12C437 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; - }; - B0F7C761F918E18B1D0EEEAFB32C5029 /* PBXContainerItemProxy */ = { + AFF707C40035F46A8334DFC9783BAD29 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 868B90C74770285449C60DBA82181479; - remoteInfo = EXFileSystem; + remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; + remoteInfo = FlipperKit; }; - B182109061561F8260E028E35AE84834 /* PBXContainerItemProxy */ = { + B016F73616BD062B510476739F12C437 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; }; - B1CDEFA1365BCB532C7D56E79CB21624 /* PBXContainerItemProxy */ = { + B08A8724879997615F03A6A5ABBE7918 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - B2F273D9B85840547D0C458F7741B6B6 /* PBXContainerItemProxy */ = { + B2F47CFA3A341501917A2B4068CE1557 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; }; - B38FB333782EF76F150C8C7CA582A8EF /* PBXContainerItemProxy */ = { + B3A01A4439D0D10A063FC8A085DBCE8F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - B3A01A4439D0D10A063FC8A085DBCE8F /* PBXContainerItemProxy */ = { + B3AC97C4C55FC0B1199602F331051454 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; }; B3F501C8895365B2E84048FB6C665944 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5041,19 +5122,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - B42A7A869D992BA4DB3CF5080446DFBF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; - }; - B42AB67030F3497A99DD3DEFEAE57712 /* PBXContainerItemProxy */ = { + B4827814E75522E683C0013EAA71A252 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; - remoteInfo = UMFaceDetectorInterface; + remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; + remoteInfo = EXAV; }; B4E7AA2F388BF06D09134ABA91287970 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5076,6 +5150,13 @@ remoteGlobalIDString = 014495932E402CA67C37681988047CA2; remoteInfo = UMFontInterface; }; + B71A73EB0EF2BF6826D0A0A060A095C0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; + }; B751513B14C19C0FA5699BF3C6A6103C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5083,40 +5164,47 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - B765F6580593CA66972B16001E901AEE /* PBXContainerItemProxy */ = { + B77AF950DFD810A712CADAA03D959E74 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; - remoteInfo = UMFaceDetectorInterface; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; }; - B77EC1A3590605F7F303BFA0F423C646 /* PBXContainerItemProxy */ = { + B8BD3850EF5EC46632709B1A723296F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - B82293B9E6A3296AA27328595327F9B8 /* PBXContainerItemProxy */ = { + B8E2819D888C83C49815412B015A2ACD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; }; - B9EEA885BAF142FCA381D83672647BF6 /* PBXContainerItemProxy */ = { + B8E4E999272CD0D6F359F4557A4ED87F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; + remoteInfo = UMTaskManagerInterface; }; - BA7B7E1F2CF0D45AE8FC7320A03337D6 /* PBXContainerItemProxy */ = { + B9C424064E69761B7F38172BC6C7D618 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; + }; + BA41ACE5BAB5838BDF3B2E29120DFF20 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; + remoteInfo = RNCMaskedView; }; BA9E3A8B825153221034FDB7B6A40DD0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5125,47 +5213,47 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; - BB161EB6C6BB407192EB7CD70EAA2AF3 /* PBXContainerItemProxy */ = { + BAEA30C24A5D2F89D14BD53C0ADB09C1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; + remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; + remoteInfo = RNFirebase; }; - BBDC7C661CA5567D3925BC0747CAAEC5 /* PBXContainerItemProxy */ = { + BB4126C128EB1D0587D442D98AA35103 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = 868B90C74770285449C60DBA82181479; + remoteInfo = EXFileSystem; }; - BCBB0BB67512B1EE5D9FC19E1D158165 /* PBXContainerItemProxy */ = { + BBDC7C661CA5567D3925BC0747CAAEC5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; - BE0DA9D5A9956AE2715C11C1AE7AC86F /* PBXContainerItemProxy */ = { + BD75F4EFEA19EED1D0AAC20C98EE7712 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; + remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; + remoteInfo = UMSensorsInterface; }; - BE237984A2200A73DBA16ED3579E8BEE /* PBXContainerItemProxy */ = { + BE06AF7132FD74B99BE842AE71BEA649 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; - remoteInfo = RNCAsyncStorage; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; }; - BE33BC644F700F14C28AB6288F04A377 /* PBXContainerItemProxy */ = { + BE7DDD65DE83B4CDEE169294C6384FC3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; - remoteInfo = RSKImageCropper; + remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; + remoteInfo = EXConstants; }; BF32D407ED9D0F154DE76F25EEB923DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5188,33 +5276,26 @@ remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; remoteInfo = FirebaseCoreDiagnosticsInterop; }; - BFF966814809AC138A75A03363F74170 /* PBXContainerItemProxy */ = { + C0154815F7FAEB96560D9B7F7777BCF6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; - remoteInfo = Fabric; - }; - C06F3735F551BCC5AB2B6C61FC941617 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; }; - C1D3AEE4D2FEA05EBDCE3A43E5C08707 /* PBXContainerItemProxy */ = { + C0A2BCEC0A015BBB7C1F865419D951D7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; - remoteInfo = "react-native-safe-area-context"; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - C23BB79C36BAB0253DC82F033D877286 /* PBXContainerItemProxy */ = { + C221653910B9C2B6238F641652562E6E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; C266DDB269EE618DE8FA720583C9C81B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5223,26 +5304,26 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - C37E10135CA6C05B846F3506C7F16D61 /* PBXContainerItemProxy */ = { + C27C31C47762897F088C5C3C3E99C7B3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; - remoteInfo = RNImageCropPicker; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; - C5792CABC007D0A7A4E11F4A976C441D /* PBXContainerItemProxy */ = { + C2AE6048EF083653FA2606100AA5B147 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 89F573A6B1292B3B2296B2206BFDC3D7; + remoteInfo = RNCAsyncStorage; }; - C58BBBD418E6F3778E7EA7161CD806CA /* PBXContainerItemProxy */ = { + C5792CABC007D0A7A4E11F4A976C441D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; C5C74D9E7DA1AA3DC76770DCBD7CC27C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5265,26 +5346,26 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - C6C64E1E52A2544CA03B7973DFC5F635 /* PBXContainerItemProxy */ = { + C6FB783E0F0B781F24F3E63FACA0E42A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - C6FB783E0F0B781F24F3E63FACA0E42A /* PBXContainerItemProxy */ = { + C735692ADAB6141B68DDC31A6BFFB6AF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; + remoteInfo = EXWebBrowser; }; - C7A71D296A06DEFFACAC95769713AB88 /* PBXContainerItemProxy */ = { + C880E3ECF30FF8F42D0CEE21BC0848B5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; + remoteInfo = Crashlytics; }; C8CA4B534CE37351B06EDF9C3744C014 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5293,12 +5374,12 @@ remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; remoteInfo = FirebaseInstallations; }; - C924141874094D028FB642F223B799DA /* PBXContainerItemProxy */ = { + C95E2C5763A3E043AF1E65C97B4FB9A2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; C9A96638BA1FF6B3D2046312346C0E9B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5314,27 +5395,6 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - C9CD3B03306F8775ACFF54CBE838C68E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; - }; - CA40F60DD5EE5CF7F6AFA03BB4863188 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; - }; - CAA85907C7C17AFB0A10B1530C2BE4E4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; - remoteInfo = UMSensorsInterface; - }; CAAFA5AEF75D91014E0A847946B5CD1B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5349,13 +5409,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - CB03CD17FDCABA719768C607406BEB2F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; - }; CBBD408BB7D70EE08646E3F8BD770069 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5377,13 +5430,6 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - CCBF64AD9DF5D129E7BCD151F2EF81E6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; - remoteInfo = "react-native-background-timer"; - }; CD3509DBFFF8BB18722CE453F9003BD4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5391,27 +5437,6 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - CE12D0235200FECDFC6E74CF0A1D212D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - CE542961701E278768ED1BA423934B23 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; - }; - CF0FE25543B2D6CED188B88FD2FF87E5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; - }; CF87F655D13B486B7A39F4A5166807A5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5419,13 +5444,6 @@ remoteGlobalIDString = 6D979AB5FDA2E858850D9903776A30B3; remoteInfo = "RNImageCropPicker-QBImagePicker"; }; - D00B27B963BA508B1C8AC2E7E18743D2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; - }; D07A2073C8416FD3ABDA2FC695482B1F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5433,26 +5451,12 @@ remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; remoteInfo = Firebase; }; - D0CD9F95D7AF114C7FA72B1CD427B3BF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; - remoteInfo = EXHaptics; - }; - D1379898B669373AB3FEECEA86DD36B7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; - }; - D16209CB92E2B310A78EC1EB8F1232B2 /* PBXContainerItemProxy */ = { + D0E4A73293F3E7A7B48C578945225BA9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 868B90C74770285449C60DBA82181479; + remoteInfo = EXFileSystem; }; D19900A8FD578E00B4FDAFCE6EE7C8CC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5496,20 +5500,6 @@ remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; remoteInfo = "React-jsinspector"; }; - D525D6ACA7B1B78DD462D10E15FE1F5F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; - }; - D5441E0DE33B91B5B638940730AF5F96 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; - remoteInfo = Fabric; - }; D57C0DD9800DB5B6699D08359FEF3AEE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5524,12 +5514,12 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - D6092560EDE137614C92BED34B9AE2FF /* PBXContainerItemProxy */ = { + D5CB33F704AF988E058AD3F63E0192B1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; - remoteInfo = RNCMaskedView; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; }; D62C017428E93B98F00E023C43EC1EE8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5538,40 +5528,33 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - D677AFC4CC2D97D3DDE846F41F92E216 /* PBXContainerItemProxy */ = { + D685642B4187BD2EDEB37C38DBB2A6FF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; - }; - D73D7BA595B1E9DA6DC89A0B9F769F49 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; + remoteInfo = UMBarCodeScannerInterface; }; - D7A33C551BF0BFCEE920C8B2119BF542 /* PBXContainerItemProxy */ = { + D6DDD54731A3E64A5F61409BB3B92C3E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; }; - D87770F20C781AA9DA01FBD8E4736763 /* PBXContainerItemProxy */ = { + D7737E2002FC572BA6E3F073A47C8284 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; }; - D8D8C376BD01ACE11AF31C74BEFCF6C5 /* PBXContainerItemProxy */ = { + D7CE17DB715435A93E1DCB1B219F0D52 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; DA7D2B89AC64EE5AF84FBFEB65251C98 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5580,40 +5563,40 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - DB021704D3F01D4EF451CFDE6D168943 /* PBXContainerItemProxy */ = { + DAC3BDD0D671FD2004BE6BD478EF49D2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; - remoteInfo = RNDateTimePicker; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; - DB0847A53B2FA0A3C99B225E97C243C6 /* PBXContainerItemProxy */ = { + DD717108B1E120FC5F974874A0443F4F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1A0445474DA11CA659C4BCC5AB64B1BF; - remoteInfo = RNCMaskedView; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; }; - DB8E6C2B826259CD8BC9F60B2D50D0F4 /* PBXContainerItemProxy */ = { + DDFCA674E1FE8DC1DB86D5A0C0A1FB6A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - DC53500068069FA76A13081AFB08E2CF /* PBXContainerItemProxy */ = { + DE1C7C689B37F00200CE5F410E00FAE1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; }; - DDFCA674E1FE8DC1DB86D5A0C0A1FB6A /* PBXContainerItemProxy */ = { + DE29C289C18ADC9DE56FAA864C4CB100 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; }; DE426B84920AAD68A99A39CB81DA3490 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5622,6 +5605,13 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; + DE86C43E2A30CA89BC81FB250A0B8928 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; + }; DF12C5D7BB68C2724D2F39A531F2A52A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -5636,26 +5626,26 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - DFC509BBFDD853A8D299A1455023C72B /* PBXContainerItemProxy */ = { + E01B54E261FEB5A02C9630BD3B2C09E9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; + remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; + remoteInfo = EXHaptics; }; - E151C3507E1AC3F51E6253967970D729 /* PBXContainerItemProxy */ = { + E0299D0D33D3FA7A02DB29B4D21FD535 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; - E295AEA66CFDD6623A312A4734A37AB5 /* PBXContainerItemProxy */ = { + E151C3507E1AC3F51E6253967970D729 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; - remoteInfo = UMReactNativeAdapter; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; E2A7D57EF8EAB020233EDC68A9ECF68D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5664,33 +5654,40 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - E2ED9F097AA42802FCCF6DD879C4EB79 /* PBXContainerItemProxy */ = { + E31C940641607DEDCBC7B8C6E6E64019 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; + remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; + remoteInfo = EXPermissions; }; - E33F96D95B2EE0D5217037F7BD3115A5 /* PBXContainerItemProxy */ = { + E333D2BC9DCB3CEB462FE2054F25C633 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; + remoteInfo = UMBarCodeScannerInterface; }; - E51C66421462312696F2D01BD169C9E3 /* PBXContainerItemProxy */ = { + E49F409AB968685E124DD7405E2D489A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - E548EF4E15DC9B249703DF7C569CE90B /* PBXContainerItemProxy */ = { + E4C7F995188052D342E252C80502B081 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; - remoteInfo = "react-native-webview"; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; + }; + E4DE17D7388756F49645BD57B4F0E980 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; + remoteInfo = RNFirebase; }; E679399E70A1302F64F34F5147A0D753 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -5699,1588 +5696,1539 @@ remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; remoteInfo = "Flipper-Glog"; }; - E79050B7B79BB88D74178F90A19D9ECF /* PBXContainerItemProxy */ = { + E6DE9590FB09A446D469C84816B6B64E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; + remoteInfo = EXConstants; }; - E7E2CA5641EE4FEA39D5724A4CE38E31 /* PBXContainerItemProxy */ = { + E6E85C84E0BF3664B3621AA181051EE3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; - remoteInfo = CocoaLibEvent; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; }; - E8524B7128B54F7936616A550BEB7203 /* PBXContainerItemProxy */ = { + E727A93D64726B41F339008BC12302D7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - E87EAF6AF192C2BAC70D150EEF007592 /* PBXContainerItemProxy */ = { + E79050B7B79BB88D74178F90A19D9ECF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - E8D57349E6188E7731DBA51BCC24F3B0 /* PBXContainerItemProxy */ = { + E7F339F18D8BA7448E4D6B54C6421E0B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; }; - EAA9F477386E52EB30E75431006FAA8C /* PBXContainerItemProxy */ = { + E8524B7128B54F7936616A550BEB7203 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; - EC9888C5259A96C5952907392BBDB28F /* PBXContainerItemProxy */ = { + E8A3F4167B676EA70EDCB3CF63F5AE5A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; }; - ECADD9C57FC2C24C9729ACF2EB4520A8 /* PBXContainerItemProxy */ = { + E981CDFE391D527326105F1383C2ECC9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; + remoteInfo = UMCameraInterface; }; - ECDA3E11587890F6131BBCCEE8B3A5A3 /* PBXContainerItemProxy */ = { + E9C72A12081D84A6526BEBC7F09BFE66 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; - remoteInfo = "Flipper-PeerTalk"; + remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; + remoteInfo = "react-native-safe-area-context"; }; - ED466F782FCAD6F97E9AEE113C58905E /* PBXContainerItemProxy */ = { + EA26F9F28F30E44D919F6383ABA51263 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; - remoteInfo = RNFirebase; + remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; + remoteInfo = UMFaceDetectorInterface; }; - EF935A0094EFA2395E9453F7D9C75DF4 /* PBXContainerItemProxy */ = { + EA6AC0810303CFCFB243AAA16854B53B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; + remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; + remoteInfo = Fabric; }; - F00A3AD284C3AE098AFC0F2C255A6452 /* PBXContainerItemProxy */ = { + EAA9F477386E52EB30E75431006FAA8C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; - remoteInfo = EXConstants; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - F0270D4E6F206819F8BB666203201160 /* PBXContainerItemProxy */ = { + EB0C055B0E0016C7B096D81A758B7001 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; }; - F02CC3076A54CCCA5F221E28F3E20FAE /* PBXContainerItemProxy */ = { + EC7697094172CB627368A3F7E519B0D3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; }; - F0866E4673899AF51D540EF97B44B4D1 /* PBXContainerItemProxy */ = { + ECADD9C57FC2C24C9729ACF2EB4520A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; - F1312F6BB267898F9763CFCAB2225B1F /* PBXContainerItemProxy */ = { + ECDA3E11587890F6131BBCCEE8B3A5A3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; }; - F13412B1EC8D97A0134A577EFE4FFBFA /* PBXContainerItemProxy */ = { + EE37E96258B3A9663D7FA47F4690AB0E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; }; - F142B4DF83D0AEA677D3ABE7D7E5BA0C /* PBXContainerItemProxy */ = { + EFB92E0669EEF7479DE9848F2182CA33 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 64F427905796B33B78A704063422979D; + remoteInfo = "rn-fetch-blob"; }; - F1D31400DE78E76FE461920F078645F1 /* PBXContainerItemProxy */ = { + F020BEFB830FD6540D54FBFCB1D1BC59 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; + remoteInfo = FlipperKit; }; - F2E57867E76DED400D1A4035EF3D8735 /* PBXContainerItemProxy */ = { + F02CC3076A54CCCA5F221E28F3E20FAE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; - F2F7A2A57746511D774A16249C56F981 /* PBXContainerItemProxy */ = { + F0D0A7EE6C9AED4F4CFB71C0051CB115 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; }; - F31739D22AB136C7DEEBCAFFFCE1CF90 /* PBXContainerItemProxy */ = { + F13412B1EC8D97A0134A577EFE4FFBFA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - F4034DDE7024E1C58C11E10ADB7724EA /* PBXContainerItemProxy */ = { + F142B4DF83D0AEA677D3ABE7D7E5BA0C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; - remoteInfo = Crashlytics; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; }; - F40F967DB5AFDF925A6D54E4FB17CA0A /* PBXContainerItemProxy */ = { + F1D31400DE78E76FE461920F078645F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - F45C8B23AAE6EA8FD3DD2D67F77A66DD /* PBXContainerItemProxy */ = { + F2A2AB545389241F9F6AF85BDCFAF677 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; }; - F4703B1B1058B7A8D057AD4F8AFFEAA2 /* PBXContainerItemProxy */ = { + F2D91EB18CF0695B654F7EBBF54FFBBB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; + remoteGlobalIDString = D63EF582C3FFEAFBF76242E9637C6E0A; + remoteInfo = CocoaLibEvent; }; - F47B5413B8735C1D7011155D11D69E4F /* PBXContainerItemProxy */ = { + F2E57867E76DED400D1A4035EF3D8735 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; - remoteInfo = UMBarCodeScannerInterface; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; }; - F4C3D2F5F697D1FF431D6CCD1DC2E2C4 /* PBXContainerItemProxy */ = { + F37E2B471F05EF12E577020D8EB5ED82 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; - F56EBC18CB64EE0482444624DFEC06A2 /* PBXContainerItemProxy */ = { + F40F967DB5AFDF925A6D54E4FB17CA0A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - F5AB0832E10BD6B650CDAA9D6700A955 /* PBXContainerItemProxy */ = { + F4FB7B20C0A6964D1736AD06470E3990 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 868B90C74770285449C60DBA82181479; - remoteInfo = EXFileSystem; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; }; - F6A14184DE3C02C257A7298719E4FD9B /* PBXContainerItemProxy */ = { + F54C6CB3A06BB759FDCD6285308EBC5D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; - F7E84F06FCDF6D783EAB427DD266F1C4 /* PBXContainerItemProxy */ = { + F56EBC18CB64EE0482444624DFEC06A2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; - remoteInfo = FirebaseCoreDiagnosticsInterop; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - F811C2CFEEF4976187C1F2ACEB105D5F /* PBXContainerItemProxy */ = { + F5F71A33675B26833D2E212E7F681AE0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; }; - F8979DAB3B05DADF40B66DB3410CA732 /* PBXContainerItemProxy */ = { + F632C19CDFE37BDDF3B623C03A8764EB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; }; - F8CFE6F279DB272E9F6E36635CFEBF0B /* PBXContainerItemProxy */ = { + F6A14184DE3C02C257A7298719E4FD9B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; - F9BC7D28AD87790D95A38C36E89FA025 /* PBXContainerItemProxy */ = { + F99E3B061EFB5906B0231D5865DB11AC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; }; - FA21F973340DE63A3E52A43007D42844 /* PBXContainerItemProxy */ = { + F9A9360399852B73ACBCD5D6F63BF901 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; }; - FA5C86A90420903CA42E08EC8584B824 /* PBXContainerItemProxy */ = { + F9BC7D28AD87790D95A38C36E89FA025 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - FB4B9BDA30D2FCA6AC90A933C6936801 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - FB6EA7F53397D6BAA834F970A1CFE9BF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; - }; - FC77D8C041630A4415313362FCF92C27 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; - remoteInfo = RNDateTimePicker; - }; - FC9ECE85F287C504E4BF453D581199F5 /* PBXContainerItemProxy */ = { + FA5C86A90420903CA42E08EC8584B824 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - FD34C96679BF0F4BC88604C97BC1A5A3 /* PBXContainerItemProxy */ = { + FAEB9F4A6AB511DCB766DE84AEB6F3E8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; }; - FF88C51032D281BDEA5ACBD2E9CB8F18 /* PBXContainerItemProxy */ = { + FC8B9BC4501E476CE138F3986882D50B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; - remoteInfo = "Flipper-PeerTalk"; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ 0003504E25CFCD737EB3599D97FA8714 /* pqueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pqueue.h; path = ios/include/openssl/pqueue.h; sourceTree = ""; }; + 0009FFC47EC4A57867FDE71D40CA588C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 00109D4376D4411B9CED1D4935F7F659 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; 0013F7D2E78BC3DB84DD98AA76CA9955 /* Flipper-Glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Glog-prefix.pch"; sourceTree = ""; }; - 0021C6A7A997A06C2776B974C7821251 /* RNFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebase.h; path = RNFirebase/RNFirebase.h; sourceTree = ""; }; - 0053F156D7C435536B98212B3917B386 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; 005C39B0D6A55407361C60CF39DF33E1 /* syntax_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax_enc.c; path = src/enc/syntax_enc.c; sourceTree = ""; }; - 005FE8CEE0A32FC4A24106623708ACF3 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; + 0073D3E4D887E3A919D638EB781C9C20 /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; + 00774184117AC245750248BA3D74C714 /* 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; }; 007F51799207C1556B23F3D8F8C1F218 /* FrameTransportImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameTransportImpl.cpp; path = rsocket/framing/FrameTransportImpl.cpp; sourceTree = ""; }; - 007F599147497FC96A4178C305AEABCD /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; 007F5CF050DF32FA07CC118BE233C455 /* TestObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestObserver.h; path = yarpl/observable/TestObserver.h; sourceTree = ""; }; 00855890B735951AA5162A55E8A97890 /* Launder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Launder.h; path = folly/lang/Launder.h; sourceTree = ""; }; - 00947C580ABCC7B722ECB8D7D351E6F7 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; - 0094CAE67569F4423CDD1130F0BDA500 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; + 0092F410401125F086E544C457666685 /* EXUserNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXUserNotificationPermissionRequester.m; sourceTree = ""; }; 00B5C72529406EE9732D26B824356D9F /* FlipperInitConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperInitConfig.h; path = xplat/Flipper/FlipperInitConfig.h; sourceTree = ""; }; - 00B683AE6E1CBC46286F76D903C3CCCA /* EXLocalAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXLocalAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 00CBC60CA92F11200494D717671FEDDB /* RCTDevMenu.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevMenu.mm; sourceTree = ""; }; - 00E07C03A34E87743AE4F9B6459A323F /* RNAudio-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNAudio-dummy.m"; sourceTree = ""; }; - 00E27FAC0E4D4545A9C6EE57AE84854A /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; 00ED0947E7C56C338297FCD518F450BB /* AsyncServerSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncServerSocket.h; path = folly/io/async/AsyncServerSocket.h; sourceTree = ""; }; + 00FF18650B7A3F163BC7AABF294A2E34 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; + 0105A6B08D77A21E2BD1FFC22464AA51 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; + 011822721445F5EF8F12EDA15D1F0A3C /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; 012242E4480B29DF1D5791EC61C27FEE /* libreact-native-notifications.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-notifications.a"; path = "libreact-native-notifications.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 012BB9E56B33EBF4790164443F9F9352 /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; - 014FD149D02644CEE876F548EC93DB43 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; + 012E2487C335188A68E118F6209D8FD9 /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; + 012F641FBBA7737BE6C952B09555EC59 /* ARTShadow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShadow.h; path = ios/ARTShadow.h; sourceTree = ""; }; 0165BAA8EE7266F1ED30DF044C6D3017 /* IOBufQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBufQueue.h; path = folly/io/IOBufQueue.h; sourceTree = ""; }; - 017D7E96C0E85B39A122FDA67530E6C0 /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; - 019000D78E96C67B33027B1AC4CBE890 /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; - 019221C7B171A8784728465F9FE50ABE /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = ""; }; - 01AE0B052526B55F3E3B0A632AC1A9AD /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; + 018401E074E8057F5A1D91B03D88A5E8 /* RNFirebaseNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseNotifications.h; sourceTree = ""; }; + 01A2F80513EC5CD2FF3D15100993F0EA /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; 01C61CDCDB208940081BCB076A189961 /* SKSwizzle.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKSwizzle.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKSwizzle.mm; sourceTree = ""; }; 01C75B5F8947006AB1C73BB46B4267E5 /* Expected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Expected.h; path = folly/Expected.h; sourceTree = ""; }; 01CF13B9D679B7BC88155AD55F3DD540 /* Pods-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.release.xcconfig"; sourceTree = ""; }; - 01D3B1A561D7B0CBAE1AF721EB04E89D /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = ""; }; - 01DC61744399BD2FC81739D0D16C7640 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; - 0221AC15766186E7DCF679FB4AD3B495 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; - 0230A9B1EF23B78768AEC32DC03858BC /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; + 02076217C68670657003164127656BB5 /* RCTI18nManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTI18nManager.mm; sourceTree = ""; }; + 022CBFB6D2A9E47BAB3AAE24023C4341 /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; 02610419E361BBA69BC1DA912F509792 /* comp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = comp.h; path = ios/include/openssl/comp.h; sourceTree = ""; }; - 027A4BDF040FB5089179212613E3B3A1 /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; - 02ADEF2EBE6BE74990926B31325535DE /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; - 02CFB7E4EAB9656948616C6F37F150D1 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; 02D4EE66505B739A233275617D19E90B /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = ""; }; + 02E9A3D5B9DAE21C00A3C9E91CA495C7 /* RNRootView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.xcconfig; sourceTree = ""; }; 0311B13879609FE9DF91F2242EF8880B /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; - 03318E53C1FAE6FEF2FE77CC95DBFECF /* RNCMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedViewManager.h; path = ios/RNCMaskedViewManager.h; sourceTree = ""; }; - 0390D837DA5045FC965D96C06FEA2E00 /* RCTGIFImageDecoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTGIFImageDecoder.mm; sourceTree = ""; }; + 031A2401B5286EEB902272E09DECB094 /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; + 035F8EFB4D7C92664B02AD20AAA7BCB1 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; + 0378FA167F5EA4581FEF06DDD52E2799 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; 03BE24F4F18839DA0DF090854262D0F6 /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = ""; }; - 0414BF0BBB66ECC4D8141C234CF79791 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; + 03BF740E86DFD366676F7BE357CB1CB9 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; + 03C1C434573C40C2233BE5AFE0DE43FD /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; + 0437717A3CA4E8F2306033621154FB8D /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; 044C324DA966C314028D2F3B9D0CB553 /* OpenSSLHash.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLHash.cpp; path = folly/ssl/OpenSSLHash.cpp; sourceTree = ""; }; - 046876CB45E8677AA2A5F488330696D6 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; 0489E0A1F8187B5F4941602010D531FE /* DistributedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = DistributedMutex.cpp; path = folly/synchronization/DistributedMutex.cpp; sourceTree = ""; }; + 049DFFA1F6F0BF65EB4CE7E2498C8407 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; + 04A4858962E3693181010CCE66F5B5C7 /* RNFirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestore.h; sourceTree = ""; }; 04AB6BB53E4F9261BD400BCA26111B30 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/synchronization/RWSpinLock.h; sourceTree = ""; }; 04D2FF17E6F4BBB06C01BCF2F7ED5572 /* ANSCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ANSCompatibility.h; path = iOS/Crashlytics.framework/Headers/ANSCompatibility.h; sourceTree = ""; }; 04EBBBA654E5B9311944BB828A0B747C /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; - 04EC9F608FFDDB8D66E233F17B837EDC /* MessageQueueThreadCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MessageQueueThreadCallInvoker.cpp; path = callinvoker/ReactCommon/MessageQueueThreadCallInvoker.cpp; sourceTree = ""; }; - 04EE446FC64B653149F646C077D3D934 /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; 04EF404723C321D1CE272E4AB802BD15 /* BaselinesAsyncSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BaselinesAsyncSocket.cpp; path = rsocket/benchmarks/BaselinesAsyncSocket.cpp; sourceTree = ""; }; + 0507D6DE5F3C35DC7C375FC338FF4B78 /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; + 0509E06DD39558504F162E1AC72CB4FA /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; 0517A3D8E3A08BF3DE37F6F920808853 /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Subscription.cpp; path = yarpl/observable/Subscription.cpp; sourceTree = ""; }; 0519831A7389E3FD1F01F9B872C14C26 /* SafeAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SafeAssert.h; path = folly/lang/SafeAssert.h; sourceTree = ""; }; - 0555DEA8CCC5B069C0C2EE89E97498DA /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; - 0556DB0C37E1FB6783E6ADB0D5A4AF0F /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; - 055EA80443EBCEC8F7C23CE5DC385C56 /* BannerComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BannerComponent.m; sourceTree = ""; }; - 05682E662630AA75EC110F8237BDF8A1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 051D3EFA180F4DE7E2E542A834B224C7 /* RNFirebaseAdMobNativeExpressManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobNativeExpressManager.m; sourceTree = ""; }; + 052395D38A52B075BFC4AF3A27C3D0C5 /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; 056ADBB8EC7EC510BBD1C3834CE4F319 /* SKMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKMacros.h; path = iOS/FlipperKit/SKMacros.h; sourceTree = ""; }; - 056FEC49181BE5653FB8F593FF0BB55B /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; + 059FA1B009B2D01A2E1AC3B1ECB200BE /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; 05A3D55CAA8DED5C74FC5C2B3BA51AFC /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; + 05B62DE0CB2F421B3D6B26554A5EB4D0 /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; + 05D8A89AFB0E4913D4350C843480FB8B /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; 05E10D9D717D3FF1D79290CB9A54BD38 /* SKInvalidation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKInvalidation.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKInvalidation.m; sourceTree = ""; }; 05EFFF3F828809F4D688B2C16C00550C /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; 05F0230F308837451B51927D88623BFB /* alpha_processing_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse2.c; path = src/dsp/alpha_processing_sse2.c; sourceTree = ""; }; - 05F0473BC278863B6BBF9D7DCC8A3051 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; - 05FD565D63FF14AEE82757A428C2A6B2 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyboardObserver.h; path = React/CoreModules/RCTKeyboardObserver.h; sourceTree = ""; }; - 0626132BA2BF2C2F53356A32CBDABBAA /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; + 06132ECBD22BEA72D2C727E65BD65BEA /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; + 061DA8A0624494E770452449B77FF5E9 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; 064AF5CA1F21861C4AA9F8DF36BA0773 /* GFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GFlags.h; path = folly/portability/GFlags.h; sourceTree = ""; }; - 064B454F7BC2B101368FF9057395ACE5 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; - 06588A0773015BE726D926827B8A288C /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0662549B01092092E7A0143898E914CB /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; 068CB8333E3EA16C3C8382BF5A3277A0 /* webp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_enc.c; path = src/enc/webp_enc.c; sourceTree = ""; }; 068D3645C0B2E35542B23A98DBDC265D /* LifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSemMPMCQueue.h; path = folly/executors/task_queue/LifoSemMPMCQueue.h; sourceTree = ""; }; - 06B2203029C3C3AFCDD5DD5318FFCC4F /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; + 068F344C873A22E6EEC3E98A80E8F90A /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = apple/RNCWebView.h; sourceTree = ""; }; 06B58C5BE0FB638D9C4152C2BBFB0541 /* RSocketErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketErrors.h; path = rsocket/RSocketErrors.h; sourceTree = ""; }; - 06BB9BF3EDD857DAF1AE0CAA54A507FD /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; + 06D9777B3F196B033B0B7843A294398C /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; 06DA217DBD0FA2E42BDB897AA049CCC2 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; - 06DE0CFE6EF973F7525BC19782E877B1 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; - 06EA2F015CC2FF6A8803D9BD622FC9A4 /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = ""; }; 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; 07017D11692DC682C8E03BB2FA2823DF /* FIRInstallationsVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsVersion.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsVersion.h; sourceTree = ""; }; + 0706C0DEEDF57CFC4FF50B50D4D56F3F /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; + 072BE33B09FCA42B05FC8D20FBFF28E2 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; 072CA5F994B8A58A9BBB07C0BBD5B224 /* FIRInstallationsAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAuthTokenResult.m; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResult.m; sourceTree = ""; }; 075EB1E1621767C17080076A7C508105 /* rescaler_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_neon.c; path = src/dsp/rescaler_neon.c; sourceTree = ""; }; - 076DABD1E77AED8A0B388AFE75D74F9D /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; - 0777B403F17F492A3B73D37EFB89229C /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; + 078040AB7535842DAD005C7F25CEBC74 /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = ""; }; + 07A757D98F14B53083B25965F4E3E2BC /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; + 07AC649517922DB0149873C06CBD1FEA /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; 07B25EC8B033867DDBBFA3107CD3017C /* FKPortForwardingServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKPortForwardingServer.m; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingServer.m; sourceTree = ""; }; - 07B3A957AE8A7C65C2F2CCA813376074 /* BridgeJSCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BridgeJSCallInvoker.cpp; path = callinvoker/ReactCommon/BridgeJSCallInvoker.cpp; sourceTree = ""; }; - 07BF3CB541F4C1BCC4ADFAF312581CB5 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; - 07C5BA84758EAE136D02C19BC92E32A7 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; 07C5F953E79602836E1C0E66794F7A68 /* ecdsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdsa.h; path = ios/include/openssl/ecdsa.h; sourceTree = ""; }; - 07DC53839E3BF5F28191DD0BA3F31A48 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; - 07EB509006AD0255ADE173C78DE5CB34 /* EXLocalAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXLocalAuthentication-prefix.pch"; sourceTree = ""; }; - 07EC667309D8613638DAC8246AD6FAFD /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; + 07CC19B2B7D439A8A98293E8B628F2F8 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; + 07D9E251A9813D9669CA58FE32B2E789 /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; + 07E55A6878FC62C3E0BA0FA6F3918FE8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 07F5D5DAE8BD5C1F707F1117557B6298 /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; + 07FF9E94293D06D5C27742E949DFD48F /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; + 0815E3AA6C21786A7685137F0179EA2D /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + 081C56CE4BFD93DB7E0C290CBAA30FAC /* RNFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebase.m; path = RNFirebase/RNFirebase.m; sourceTree = ""; }; 0834F0341D9CEFA17C2604FD8D11623E /* ConstexprMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConstexprMath.h; path = folly/ConstexprMath.h; sourceTree = ""; }; 0850F8DD2B3FD058769A432CC1156AD7 /* TimeoutQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimeoutQueue.cpp; path = folly/TimeoutQueue.cpp; sourceTree = ""; }; - 086D2E21CD2C375481D131006EE2FA13 /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; + 085AA56D2492CA1A3C9A0DC8DE31B50D /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; 0877B7CC18A0B5BBDC61008D68D767BF /* SocketFileDescriptorMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFileDescriptorMap.h; path = folly/net/detail/SocketFileDescriptorMap.h; sourceTree = ""; }; - 08794FC33FD652DF519C9411038FB5A3 /* RNCSafeAreaProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProvider.m; path = ios/SafeAreaView/RNCSafeAreaProvider.m; sourceTree = ""; }; 087C97C5E3BD5E3E1260D6BD7227A17D /* histogram_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_enc.h; path = src/enc/histogram_enc.h; sourceTree = ""; }; - 08993EFE6B43F419C92CB656C14C9F84 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 08ACE5ED8E4F4E120D549B4619FE61BA /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; - 08B854B9FB03F126D377C8BD3083158C /* RNCSafeAreaProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProviderManager.m; path = ios/SafeAreaView/RNCSafeAreaProviderManager.m; sourceTree = ""; }; 08D1FFC2980C1ED72AE9A4C44A0544C3 /* libreact-native-document-picker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-document-picker.a"; path = "libreact-native-document-picker.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 08E8ABF2AA68CCA32828468841E0E2C9 /* 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; }; - 08F1F3E5061E92E19B7F12E323613901 /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; 08F56AAB8A1F45A88DEF4D9DBE234CED /* GDTCORTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer.h; sourceTree = ""; }; + 08FC500EA7197F6DF71A9EB77E174884 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; 08FFFB8DCC4CA701C2E53003617B3D8D /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/portability/Malloc.h; sourceTree = ""; }; + 0909610ED74EA0B4AD5C14B874B8A921 /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; 093C1F142FB1F8383A757053CAF1B48C /* StreamRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamRequester.cpp; path = rsocket/statemachine/StreamRequester.cpp; sourceTree = ""; }; + 0950B776E15F25B2D09AD750F66D9B46 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; 095997D9882CD208B80CB6D5419C5172 /* FireAndForgetResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FireAndForgetResponder.cpp; path = rsocket/statemachine/FireAndForgetResponder.cpp; sourceTree = ""; }; - 096530808622CCBD0AE02939C955F3D6 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; 09710EAB22C0612FDD4330603A259BED /* rescaler.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler.c; path = src/dsp/rescaler.c; sourceTree = ""; }; + 097304B85CEFD59E754BFDB02493670C /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; + 0973AA78A5A1F3D9E86E1E0096E24E59 /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; 097D3E2988DF59797BFB5B084495142D /* RSKTouchView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKTouchView.m; path = RSKImageCropper/RSKTouchView.m; sourceTree = ""; }; - 0981862D8B4B0A9BF6D227952C1B5AB8 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; + 0985EF0291EB48A10F62D7DD1750389E /* RCTLinkingPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingPlugins.mm; sourceTree = ""; }; 098EB243A3EC052B12C874589238C80D /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/futures/detail/Core.h; sourceTree = ""; }; - 09A4A381355DC64EAB844B04A5BA6970 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; 09B5856105EF7C6447B9EC57E7E36B34 /* libEXKeepAwake.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXKeepAwake.a; path = libEXKeepAwake.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 09B60B3F32E240F9BF59901C855E3D6A /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; 09B718FA6415F3DC19B116A3F8AC7A80 /* RSocketException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketException.h; path = rsocket/RSocketException.h; sourceTree = ""; }; - 09E1EB493AC7120B1A44A4A8DB7DB263 /* RCTNetworkPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkPlugins.mm; sourceTree = ""; }; - 09E3011B17312B959A38467C0123FC4B /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; + 09C17593FD6EFC409D89860A3FE97E23 /* BannerComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BannerComponent.m; sourceTree = ""; }; + 09E787496E66BBF3E2021626BC4EBBBF /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; 09F1FD68918CD5F6B8A22695713E741D /* VirtualEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = VirtualEventBase.cpp; path = folly/io/async/VirtualEventBase.cpp; sourceTree = ""; }; 09F47523D4E6432D68674A050EBBF338 /* SKApplicationDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKApplicationDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKApplicationDescriptor.h; sourceTree = ""; }; 09FBD593E74F1B8207D1D3986F9C57E7 /* Peertalk.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Peertalk.h; path = peertalk/Peertalk.h; sourceTree = ""; }; - 0A0BD1EDF40A187E8200F57B14DACE0D /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; - 0A114E7E7641DE0E9E85B5BC6D7F7044 /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; 0A2216873BA90E168C6F587B532F1C32 /* KeepaliveTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeepaliveTimer.h; path = rsocket/internal/KeepaliveTimer.h; sourceTree = ""; }; - 0A2744498D0149896FD5A91ED396F100 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 0A4919EF1073454B4888A169DB27DE56 /* pkcs12.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs12.h; path = ios/include/openssl/pkcs12.h; sourceTree = ""; }; + 0A75323FE3476844582FC94DC4FF1D46 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; 0A7B482B2EDA7BF7FCAF15DFB04DE80B /* frame_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_enc.c; path = src/enc/frame_enc.c; sourceTree = ""; }; - 0A7ED7C867EFB1AADF601062F778482C /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; 0A8A380780648A9AA51D1CDE20D48218 /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = SDWebImage/Private/SDDisplayLink.h; sourceTree = ""; }; + 0A8F042A10FEB0CAF97AD9D4B19791E2 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; 0AA3C18BAC2940042EF61B66E4F41113 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; 0AAF057173CD16FD65A7D97790566850 /* FirebaseInstallations-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstallations-dummy.m"; sourceTree = ""; }; - 0ABC7ED6892A1D14E1B7C12C170D4345 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; + 0ABFBCB28727FEB3E3838FD774B921E3 /* RNFirebaseMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseMessaging.m; sourceTree = ""; }; 0AC825A8C701662BD2D24245FBA55E1B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = rsocket/benchmarks/README.md; sourceTree = ""; }; 0AD1D003B598514E16C0786487FABBB2 /* Pods-ShareRocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ShareRocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; - 0AD54FCA63DCA7D0C67F6F026BD7A1C8 /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; - 0AD76653381D66158768E50C092B7044 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; + 0AD9DEA6D9F73FCF1374754325582293 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; 0AF5331168A419623C9D015644797290 /* SwappableEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SwappableEventBase.cpp; path = rsocket/internal/SwappableEventBase.cpp; sourceTree = ""; }; - 0B0F7DAF876312D7B591AE13DEFED38F /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + 0B0C465A1EB8EE2860EFC8536264494D /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; 0B17E1EBB92628A410A70849308F5327 /* asn1t.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1t.h; path = ios/include/openssl/asn1t.h; sourceTree = ""; }; + 0B2BBD5293BA80161449C61E170DABEC /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; + 0B2D19FE209E1A4918E70FF508FF8AF0 /* RNFirebaseFirestoreCollectionReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreCollectionReference.m; sourceTree = ""; }; 0B2E05DDDA73CFF8D52ECFEAA5553C91 /* blowfish.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = blowfish.h; path = ios/include/openssl/blowfish.h; sourceTree = ""; }; 0B4837B8DBEAF4CB10666E81FD53885D /* Semaphore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Semaphore.cpp; path = folly/portability/Semaphore.cpp; sourceTree = ""; }; + 0B5B02C086BC48A81B5F652D79BA0FA9 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; 0B5B6CB35133A26728301B5DA4DA94CA /* SKTapListenerImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTapListenerImpl.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListenerImpl.h; sourceTree = ""; }; - 0B83AF1D415F0617AB05BEE783FD1524 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; + 0B6314BDE215CD2AB5D0E5DF9377C33E /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; + 0B76A587AA0185430C7F364A12C6C6B8 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; + 0B7E866039B0D15406931BCBD123C69B /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyboardObserver.h; path = React/CoreModules/RCTKeyboardObserver.h; sourceTree = ""; }; 0B982CB5D09778C5F6636849E66196CA /* DeferObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeferObservable.h; path = yarpl/observable/DeferObservable.h; sourceTree = ""; }; + 0BBCACBD5C562DF53F2545D2CE7496C3 /* react-native-slider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-slider.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 0BCAA040F9FA9E6FFABB25A7E813998E /* EventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventHandler.h; path = folly/io/async/EventHandler.h; sourceTree = ""; }; 0BCC1163A19EEB4E4104E9F1E3AB8B8F /* FlipperKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlipperKit-umbrella.h"; sourceTree = ""; }; - 0BD6B475F506A117D93185B7968288B5 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; 0BE529DB2A0C5D64AD0F79B6CEE37A44 /* SKBufferingPlugin+CPPInitialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SKBufferingPlugin+CPPInitialization.h"; path = "iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin+CPPInitialization.h"; sourceTree = ""; }; - 0BEFE09AEC5742EBA25538E8C6678AB8 /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; 0BF348AEB813B4920A2F3FCEB3BA6080 /* rescaler_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips32.c; path = src/dsp/rescaler_mips32.c; sourceTree = ""; }; 0BF6E5EC72095214FB6546581FFEEE21 /* SingletonStackTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SingletonStackTrace.cpp; path = folly/detail/SingletonStackTrace.cpp; sourceTree = ""; }; 0C22917C00943A72650B1A5BFECAB205 /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/String-inl.h"; sourceTree = ""; }; 0C35EEE4B1FA28E5625E404638F05B55 /* FlipperClient.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperClient.mm; path = iOS/FlipperKit/FlipperClient.mm; sourceTree = ""; }; - 0C41708280F44C5ABDFC17D711D57CD8 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; - 0C6442FC28EE73A623CF965B80E181F0 /* EXAV.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.xcconfig; sourceTree = ""; }; - 0C68CF456F99D500678CCA5E50593E0D /* RNCSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewManager.h; path = ios/SafeAreaView/RNCSafeAreaViewManager.h; sourceTree = ""; }; + 0C55BF6C3CF5F3C835B6ED8CFF6B8C26 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; + 0C5D9F9AC093F604362132BFBDFCBED4 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; 0C70D2D45E99CFEEAFF2F49D250DC4B3 /* util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = util.h; path = src/event2/util.h; sourceTree = ""; }; - 0C821B113E261AE5237AE0BEC3E208B7 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; 0C9D0EB752620D220AF34E4887F7E6FC /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; - 0C9D1F46BBF12863547B9E44C7D331BD /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; 0C9FACF7BE8CABF1A8C5A956E9169D20 /* Retrying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Retrying.h; path = folly/futures/Retrying.h; sourceTree = ""; }; - 0CA5DF24E24FDC22CD14E20AA0EDC11E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 0CA929BB715BCB547AF38F8F94645458 /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; - 0CCA1E68DD17EC16118BF6A816B65986 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; - 0CE293A4C586EECE672A67C9E0434A64 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; - 0D058555FF1C043FD328AC579E635FA4 /* react-native-jitsi-meet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.xcconfig"; sourceTree = ""; }; - 0D17C12C1EAC46D6BAAC64DBECF00650 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 0D33A934B640D0010EFD4513CA46B01A /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; + 0CC931E3C2DDD8D38DF0A5619436C137 /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0D062DBF9D19AE40D0DC6BB5D4AACB42 /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; + 0D2CA121B037274579E5BB4A1323ADDF /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; + 0D2CC5174636CE5B3F0AA3B213D99D09 /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; 0D3746F217CFFCA932F738BE27F5EDB9 /* FramedDuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FramedDuplexConnection.h; path = rsocket/framing/FramedDuplexConnection.h; sourceTree = ""; }; 0D4641F587498E427490898CA0E10BAC /* StringKeyedUnorderedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedSet.h; path = folly/experimental/StringKeyedUnorderedSet.h; sourceTree = ""; }; - 0D4C0D09B8BC735DD7F524E05248601A /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; 0D4E68F669C74E03B1E4A8807DD3C638 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = FirebaseCore/Sources/Private/FIRErrors.h; sourceTree = ""; }; - 0D610CC92CA12331CC2CE9B30968B59E /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; - 0D751A822A49D4F471406EE2D233255E /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; - 0DA3592506DCD6118EF12506F070EE5E /* RNCSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewManager.m; path = ios/SafeAreaView/RNCSafeAreaViewManager.m; sourceTree = ""; }; - 0DA5774B039E5920A5520A367E0DDF2F /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; + 0D5F99BBC99BD67D8F8550C6EE870E0B /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; + 0D680E0D869CE4873BD807007905089E /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; + 0D6A8C43D8493AE8CA4CAC47C5A0F2EB /* 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; }; + 0D6B8E4ED96634DD01FF6EB51F1E1D79 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; + 0D8A67E4F295C37EC9C9DCBF5F94574E /* EXKeepAwake.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXKeepAwake.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 0DAC2F0D55F0D7EDFC1A71F1788BB63A /* UIView+Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+Yoga.h"; path = "YogaKit/Source/UIView+Yoga.h"; sourceTree = ""; }; 0DACA332008F6AC6A637EFFB7C462A0C /* SKScrollViewDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKScrollViewDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKScrollViewDescriptor.h; sourceTree = ""; }; 0DB084C6DEBA0DC96061D8A514AC4DBA /* FKUserDefaultsPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKUserDefaultsPlugin.h; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.h; sourceTree = ""; }; - 0DCCBD85E6089FDD00DB6B0FC02A2A35 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; - 0DED49DBE81C96433EAEA2DD88F579E2 /* RNFirebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFirebase.xcconfig; sourceTree = ""; }; + 0DE38E8A98A2D833FCEC276EC68AB084 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; 0E082AC97CA13A0B9F95EABCDB5C2542 /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; - 0E0C1D43ADC74B4277BB727935011CD8 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; + 0E0A1B581249F274189E9B8F6BB3DAB5 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; + 0E1AB60B55766D82096D15603B9E4252 /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; + 0E2372145C05D12A3CB32ADFF6505703 /* RNCMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedView.h; path = ios/RNCMaskedView.h; sourceTree = ""; }; 0E3C201CBA9DD4D3768A730BE5C94681 /* ProxyLockable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ProxyLockable-inl.h"; path = "folly/synchronization/detail/ProxyLockable-inl.h"; sourceTree = ""; }; - 0E46A58A12FC794BA1AE3A482A5DC6DC /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; - 0E67B37021122702D85563E203C2FA96 /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; + 0E5AF1BA72A31472E4AF05AD7CA1808D /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; + 0E60AE2F1EEC0296265E4A7B7556DC55 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 0E61FE486B1C309A3C3A8EDD1DF1994A /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; + 0E6E722EDD2DE1454C5DBBE8F56E3F7D /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; 0E701E05D9B792A11A62162DE7FBAB43 /* ConcurrentSkipList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentSkipList.h; path = folly/ConcurrentSkipList.h; sourceTree = ""; }; - 0E9EB4975C32273C8AEBFDF1B620302B /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; + 0E7C866026F97EF303C9827B08345147 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; 0EA407246DA23AF877A0AC11A59FCC6B /* ResumeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ResumeManager.h; path = rsocket/ResumeManager.h; sourceTree = ""; }; 0EA70478866168C127052F19BD9EDFD8 /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = FirebaseCore/Sources/FIRVersion.m; sourceTree = ""; }; - 0EA859D080F5B72CD9E8BD9639211BF7 /* ARTShadow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShadow.h; path = ios/ARTShadow.h; sourceTree = ""; }; - 0ECCB6FAFF8614DB159F724F44861AAB /* RCTStatusBarManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTStatusBarManager.mm; sourceTree = ""; }; + 0EBF839F5B8DF93BF4FEC1E59D5AA016 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; 0EF2FDC6DD223C088FBD4D0C90FB9486 /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; - 0F11316B19D0832A1C6DFA868C245755 /* RCTRequired.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.xcconfig; sourceTree = ""; }; - 0F137720240DA2F405C2B3E33C02EAB7 /* NativeExpressComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = NativeExpressComponent.m; sourceTree = ""; }; 0F13B7FAEC573229469545471760C164 /* random_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_utils.h; path = src/utils/random_utils.h; sourceTree = ""; }; - 0F18338E992B568C10D0F98489507DED /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0F1B2E665521EB210396CDC6D09B8B4F /* RNFirebaseAdMobInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobInterstitial.h; sourceTree = ""; }; 0F2549B4094943DDD958A7883D04E16D /* event_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_compat.h; path = src/event2/event_compat.h; sourceTree = ""; }; 0F3552D4BB7A4C91B6ABB4CDF3A78488 /* EventBaseLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseLocal.h; path = folly/io/async/EventBaseLocal.h; sourceTree = ""; }; - 0F47718EF009AF92BE248AED9D69506D /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; + 0F572F6EA40A72FC30E52A3BFCBC80BA /* RNFirebaseInstanceId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseInstanceId.m; sourceTree = ""; }; 0F5BAA7D69E01CC8AA8D49B18B958B0E /* ThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadPoolExecutor.cpp; path = folly/executors/ThreadPoolExecutor.cpp; sourceTree = ""; }; + 0F60E2D30A6E55A7CBF4A75E705C5AD8 /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = ""; }; + 0F674AB263BBDC9E2C2A7DFE061A8575 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0F6F10FE1A274533FC7F8545A46A1F32 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; 0F809D0DCD60269E2E7050B1B4449D77 /* IStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IStream.h; path = folly/gen/IStream.h; sourceTree = ""; }; - 0F9FE5C49D2E5C7EB4CF15D88966A005 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 0FCD10A58261C38003864DF3394A45BE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 0FD8226FCC7309B2337EB58188BAFC55 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; - 0FD9D4DA6F7E2E53B3677395C1BA2F28 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; - 0FF0ADF5DC6D3FF308AECA808C0C7E30 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; - 102B618FBDF9A29644423919A343E83C /* KeyCommands.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.xcconfig; sourceTree = ""; }; - 1039BBF6BD28A96EC30DD7CB8F7FA870 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; - 10444C68A034B8B32F03D93EBBF935DF /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; - 104F2E03F055BC209F368334BCAFFD3A /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; + 0F8B91C07680D10D32506D8BA5EA9600 /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; + 0FCC622146FC2ECADAC234499016226E /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; + 103566A64AAC7FC27B9144EB8DF2C9F7 /* RNFirebaseAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAnalytics.m; sourceTree = ""; }; + 103C98353C0BE4C8E3710557410BBB76 /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = ""; }; 1050F1435196CED15B61398817AEC9B8 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = src/webp/decode.h; sourceTree = ""; }; - 106537DDCF13EBC231A968E46FEADCC8 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; - 1068F3228D5C1F21249353FD5E724FEB /* RCTAccessibilityManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAccessibilityManager.mm; sourceTree = ""; }; + 10514393CB6D7409E4DA1184CD175882 /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; 106EA4220BA45CD3242A9D0BC7332C3C /* lossless_enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips32.c; path = src/dsp/lossless_enc_mips32.c; sourceTree = ""; }; - 107D451387B07A0C867AD34BC92323BC /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; 108F953B44DF9707CB37C224DD1239AB /* event-config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "event-config.h"; path = "src/event2/event-config.h"; sourceTree = ""; }; 10AF9E815C4396263953D3EBC91A3EBB /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Private/GULNetwork.h; sourceTree = ""; }; 10ECBD724ABF1B2436022114B32A7B1C /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; 1102C734E9A28600BADDA0D9509FD931 /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; + 112909597F5D6CCE4482A2BE6CEB32B6 /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; + 112B866ACEA58B6B97AE9CB87DC7CD08 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; 113EB030A8219A64AD3B0B9C25AA5B73 /* CppAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CppAttributes.h; path = folly/CppAttributes.h; sourceTree = ""; }; + 114CA4B0EE10EFCB1E55FB09D09C1858 /* NativeExpressComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeExpressComponent.h; sourceTree = ""; }; 114DC13A91EB4955B9249B0A1DB723A9 /* srtp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srtp.h; path = ios/include/openssl/srtp.h; sourceTree = ""; }; 1158A11775C169614615E653BE1B25AB /* dec_clip_tables.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_clip_tables.c; path = src/dsp/dec_clip_tables.c; sourceTree = ""; }; 116447E7D8CF0CCE24E28ED4F12B9110 /* GDTCORFlatFileStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORFlatFileStorage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORFlatFileStorage.m; sourceTree = ""; }; - 1168C19E7D2E04FB41C7C7B44D739771 /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; 116C7CEB27CD7820875966685B7D8C81 /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = ""; }; - 116FD789F72BCE8CECF811A67F7E8458 /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; 11932AF3F442722C6FDCD514FC54133E /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; - 11B241AA9D04AEF43CDC2F805CE7DCE3 /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; + 11A05A400E39126371C1DBDC994C1309 /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; 11B73D281691D1D3BF67EC85499B788F /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = ""; }; - 11CD4C8274BF810063EAE4979126E31F /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; - 11E31942837740BFD1F989749590B93B /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; + 11E4D75B7F44C410E0AEE4C9DF1F694B /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; 1202E3F998555BA59A10D4B421FA45DF /* backward_references_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_enc.c; path = src/enc/backward_references_enc.c; sourceTree = ""; }; - 120A2F7AE95B07B1B111D98983BF4F39 /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; 120C6FE790E1CAAAE33978DE80E762D2 /* SSLOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLOptions.cpp; path = folly/io/async/SSLOptions.cpp; sourceTree = ""; }; + 120C9FC1E18B6D9F7594AF5D1B391E8C /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; 12179522A08FFAFDA91630E0E2B476CC /* BitIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIterator.h; path = folly/container/BitIterator.h; sourceTree = ""; }; - 121C2910524BBEFA9563EB74C2921F8F /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; + 1221EFC2F3735F558EBD5D919D9C02C0 /* RCTImagePlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImagePlugins.mm; sourceTree = ""; }; 12257C95C8415E77F77118EAD42C5283 /* TimekeeperScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimekeeperScheduledExecutor.h; path = folly/executors/TimekeeperScheduledExecutor.h; sourceTree = ""; }; - 12284038935A628DCA5F981E113F4927 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 123BCBAAC647F3A369933558170BD9F4 /* BannerComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BannerComponent.h; sourceTree = ""; }; - 12465FEC11132425BF0FFA79B10C0558 /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; - 12569BA1E5FD08B4ED65AE7842806DD3 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; - 125B7D56D814DA4086EBBB0FEF39A12C /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; + 12658C7EEF8DBCEDDC8E54646AA0D57A /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; 127CD1E1011106B2304548E9248FD62C /* FlipperKitLayoutPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperKitLayoutPlugin.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.mm; sourceTree = ""; }; 129EF408AAB22BAA1FFC899CA2743286 /* Types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Types.h; path = folly/futures/detail/Types.h; sourceTree = ""; }; 12A3E5D4C75F9DA66A2A72A97C053BF3 /* ssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl.h; path = ios/include/openssl/ssl.h; sourceTree = ""; }; - 12DCA4210F595CEC6392C49D0448A1CB /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; - 12FE2ACF3C60F48E6F74E827FC5BDB82 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; - 13073D43FC4026FEFC9288215CA8B051 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; + 12D783C1B21FB89199B4E71FAC7425C4 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDeviceInfo.h; path = React/CoreModules/RCTDeviceInfo.h; sourceTree = ""; }; + 12F6BF576F39BBF07C412D2932C37709 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; + 12FF562F1E14A2A6E6D05ECDBC87737B /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; + 12FFB1CBAFA64B76F01F3573019176D1 /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; 1308592F65945CE9422EDDED884EF9B3 /* enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc.c; path = src/dsp/enc.c; sourceTree = ""; }; 130E85034A2A0DB5D9F092021F917922 /* Cursor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cursor.h; path = folly/io/Cursor.h; sourceTree = ""; }; 130FA934D6D11BFD2912B48CBBD9657A /* FIRInstallationsStoredItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredItem.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.h; sourceTree = ""; }; 1311FD33BCC6D1D96DA1E1320127C8B1 /* RecordIO.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RecordIO.cpp; path = folly/io/RecordIO.cpp; sourceTree = ""; }; - 1326137DEEA71E097D28136A3A4EC4A3 /* RNFirebase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFirebase-dummy.m"; sourceTree = ""; }; + 132B36BD3CA6361522B25BE2CC599617 /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; + 13357CBC37C785D0D0B46E2741A1B5FA /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; 133ADC2FB2B622119B3F0BCE1E622E17 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; + 1366DD549BDDEC657FDE238975488B40 /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; + 13770FDD6A9D293A8769FDA90C6FF8C1 /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; 137BE22EC1DA14334E8037D1A9899318 /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; - 13839A8281BCFDFAEAECA7819DD04C4D /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; + 138168BFFA885998B62730BAA91E5035 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; 139202B54DD94BAC1B38C9EB2380E47B /* SKDispatchQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDispatchQueue.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKDispatchQueue.h; sourceTree = ""; }; - 139C71A179C549AB4501ED4EBB6C2E10 /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; - 13A209B7AC8202BCCBD6658FE2ADFC80 /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = ""; }; + 139B202B58505FC6F38C0182D1BF7807 /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; 13A3F70480AE9C876EE9D620059A8E89 /* NotificationQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NotificationQueue.h; path = folly/io/async/NotificationQueue.h; sourceTree = ""; }; + 13C78D07CED5C6C72AD2394D42139B02 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstallations.a; path = libFirebaseInstallations.a; sourceTree = BUILT_PRODUCTS_DIR; }; 13D1EFB411756EBD8F39F077B8FDE62A /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = ""; }; + 13D4431D0F08E347ED38DDC4A9144E80 /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; + 13E2E0C047B47EB7A4680733F16D12ED /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; 13EF0915712C8F78394138D0B6A2A050 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; - 140F3C7FADB9625463231A741F09EDDA /* RNCAsyncStorageDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorageDelegate.h; path = ios/RNCAsyncStorageDelegate.h; sourceTree = ""; }; - 141E273C68C9F6143C1000B3D0FEA407 /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = ""; }; - 1435A5F30752CD73BD4A3E3394EB0EFF /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; + 1413F6F195B831F0081637D8CBF9B38F /* RCTLogBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBox.h; path = React/CoreModules/RCTLogBox.h; sourceTree = ""; }; 14497A25CB2E5E21FE9A71EA9FCAEE44 /* msa_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msa_macro.h; path = src/dsp/msa_macro.h; sourceTree = ""; }; - 144F317E09F4B5D8DFB7D8D6606A1DB8 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; - 1451F1374D41FEC6691A399289ED3015 /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; 1455C4759F082E626BB6836F244E2C96 /* CertificateUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CertificateUtils.h; path = xplat/Flipper/CertificateUtils.h; sourceTree = ""; }; - 145A7D59176345B6F215E0E11D6B17F8 /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = ""; }; - 147C05DCAC196FCD8EC2E6CE26B3102E /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; + 146B5E77E2464DE26AD8CDD7DE35BCF6 /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; + 1475F643FA2C29EC263FCAAB5242CF40 /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; + 147E4035E6C050595E076374B843483B /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; 14825CCEF2FD93682454B24834479E28 /* dns_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_struct.h; path = src/event2/dns_struct.h; sourceTree = ""; }; 1486467413A9889DB23A6D91579D0F47 /* Promise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Promise.h; path = folly/futures/Promise.h; sourceTree = ""; }; 1492AF4560D763A11F95C42DB674A29E /* RSocketClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketClient.cpp; path = rsocket/RSocketClient.cpp; sourceTree = ""; }; - 149CCEB54C1BE4CF3A0ABD79358751EF /* RCTKeyboardObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTKeyboardObserver.mm; sourceTree = ""; }; + 14A926FB822DFDC6BB7982259849F2E1 /* 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; }; + 14B0D68B2DA30553100958FBD3462504 /* RCTImageURLLoaderWithAttribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoaderWithAttribution.h; path = Libraries/Image/RCTImageURLLoaderWithAttribution.h; sourceTree = ""; }; 14C26FAC99C1D2CC6FE055A75273A872 /* RequestResponseThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RequestResponseThroughputTcp.cpp; path = rsocket/benchmarks/RequestResponseThroughputTcp.cpp; sourceTree = ""; }; + 14C6D660264A8CB7DA5BC37E90AEE322 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; 14C703D5C07CC19F15EE6FAE4467C349 /* FKPortForwardingServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKPortForwardingServer.h; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingServer.h; sourceTree = ""; }; - 14CC47269B6761A5EA09A8775959799D /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; + 14CDB6C90A2173FB61767133510DC0CF /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; 14E41D64006AC957B237BD217C6506ED /* vp8_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8_dec.h; path = src/dec/vp8_dec.h; sourceTree = ""; }; 14E53155D203E56599A9D97F4A29FF9B /* crypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = crypto.h; path = ios/include/openssl/crypto.h; sourceTree = ""; }; 150FBEA326FCD79CA0FD0D0D0723C09C /* ParkingLot.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ParkingLot.cpp; path = folly/synchronization/ParkingLot.cpp; sourceTree = ""; }; - 153B693BA836AD28207153834B3D3DC0 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; + 1518B6A8A9EE142CED75CCB82B5FE847 /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; + 15428E6F440CA7CD6BEBAC2B2FC8A800 /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; 1568F3D2E05D423FDC41CFBDA6C91D33 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; - 1570FACE560EB764A1AFB2E1F37E5A60 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNLocalize.a; path = libRNLocalize.a; sourceTree = BUILT_PRODUCTS_DIR; }; 159820A73CBF9AFAA0320A36EFA5E349 /* Unistd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unistd.h; path = folly/portability/Unistd.h; sourceTree = ""; }; - 15AF66B81DCB43247B4AF0E6E1F095FF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 15A32BF114F112D49D59D4C01A9A9E69 /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = ""; }; + 15BBF09FB8F56B02D95139D4A75E513A /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; 15C0951EF4FA4F461B307CF6F26BFAB6 /* HardwareConcurrency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HardwareConcurrency.h; path = folly/system/HardwareConcurrency.h; sourceTree = ""; }; + 15C44261D170A8DF9C8AB211C4227703 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; + 15D616749CD7DB2D45B8A80B56A96869 /* 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; }; + 15DAC0F73CC1B742024A6DF5FCF9F1E2 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; 15FB8184718A34EB222FD57DB483C14D /* SKSearchResultNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKSearchResultNode.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKSearchResultNode.h; sourceTree = ""; }; - 1608E844F3A2E64140ADD9FD31C15458 /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; - 1641694B922617A51FF834292C8E44B3 /* UMAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppRecordInterface.h; sourceTree = ""; }; - 1672F4FBDCDB899F8282004CD26D8164 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; - 167D5828800E44CC2451087243F40F39 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; + 162BA155359FD7E626C5AB94D17FDCCF /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; + 165453765AFE9E6B014C1C4E028136B9 /* RNFirebaseFirestoreDocumentReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreDocumentReference.m; sourceTree = ""; }; 169A97E652ECB8F659D797AFFF6BC940 /* lossless_enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_neon.c; path = src/dsp/lossless_enc_neon.c; sourceTree = ""; }; - 169B70DFB43463F4A423B7467E996A60 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; 169CF9C407F24C79419DCA9222CB9318 /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Private/GULLogger.h; sourceTree = ""; }; - 16BC366877988251F04BB8A901CA5FCE /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; + 16A90F1D00A6A9FE05A53BB7E056F287 /* RNFirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseRemoteConfig.h; sourceTree = ""; }; + 16B483EE1F7F6BC3070E263688917615 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; 16BCEA20D9679960A873A33DAFFF74DA /* Padded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Padded.h; path = folly/Padded.h; sourceTree = ""; }; 16BF1CF862DC5ECF798A50360C0EE160 /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = ""; }; + 16D2128A564B3293BA011CBCCF646721 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; 16E9F31EC059F2E6FADBF7D544CCCA1D /* libReactNativeKeyboardInput.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeKeyboardInput.a; path = libReactNativeKeyboardInput.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 16F0331910FDB15B21D137B5FFB94526 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; + 16FE72EAB6AEFE327C8261520F3A4A77 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; + 1718E61E826755F3E0FB92377D78F4F3 /* RNNotificationCenterMulticast.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterMulticast.m; path = RNNotifications/RNNotificationCenterMulticast.m; sourceTree = ""; }; + 1726CAA6CD6FA459EAAE84311D966173 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; 172F043EAC6C52FB5E4FEFBB8A7414BF /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = SDWebImage/Core/SDImageHEICCoder.h; sourceTree = ""; }; + 174FCF0707F8C202D77654685238A1D3 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; 175BC051753C8BD307256C20A8258DDA /* FirebaseInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations.h; sourceTree = ""; }; - 17707C0ABA9B0849AD25E3238ADBE1D5 /* RNFastImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.xcconfig; sourceTree = ""; }; 17772905A5DCAAE05D22C2CC78ABB63D /* libReactNativeKeyboardTrackingView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeKeyboardTrackingView.a; path = libReactNativeKeyboardTrackingView.a; sourceTree = BUILT_PRODUCTS_DIR; }; 1795A7DF13A680DD10B81AF83A303B58 /* Sched.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sched.h; path = folly/portability/Sched.h; sourceTree = ""; }; - 17B51F1B918F1A8CC74355FA300050C1 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; - 17C7CB6B1D4A3E3E2C7EF4A816EC877A /* BitUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitUtils.h; path = yoga/BitUtils.h; sourceTree = ""; }; - 17D8D67E8E01B607E176F601FFC20E09 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; + 179E8C13443706026087C8C90E6ED7D0 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; + 17ADA862895BAB659A680E04957FF98D /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; + 17D30F11B146D9CCDD98E5C067F9ED9E /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; 17D9E3C037E4F36B08BDF14F3C7782AB /* FIRInstallationsIIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDTokenStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.m; sourceTree = ""; }; - 17E475146D66F0F10D91E05C8A9ADEC9 /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; + 17E87B00A92EE15EC1C9E2F5467933B6 /* react-native-jitsi-meet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.xcconfig"; sourceTree = ""; }; + 1801ACCCB86DBDE67201B8F75D8F14A1 /* RCTAsyncLocalStorage.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAsyncLocalStorage.mm; sourceTree = ""; }; 180BB68A3404C4AABAC8DB91377B1B66 /* small_vector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = small_vector.h; path = folly/small_vector.h; sourceTree = ""; }; - 180E90B99FD16FD9D240CBA38531C2E9 /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; - 1815B27D3154618D4A51C2618D82DAB7 /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; 18230B4DBA48A8F3656B5C7AC20A3B75 /* SKButtonDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKButtonDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKButtonDescriptor.h; sourceTree = ""; }; + 1823F85D252E1576FE3C7EAF4A0D48F3 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; 183081D226C94A7516014E21FA983C5F /* RecordIO.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RecordIO.h; path = folly/io/RecordIO.h; sourceTree = ""; }; - 1842644006872371281A046E2603365F /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 1842B46FEF3AB5C0A25B40CFE3F0FCE2 /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; - 1847A9120986DF8A84BD996E25133F73 /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; - 184BA109B3E3ED82B00E700254AF3AD7 /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; + 18501B0BD0549B5BD1BA3E9EFA8D236D /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; + 18564B357678162BE828C8FF2FAF3A1B /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = ""; }; 1859615519D2E48F8924D355559455A6 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; - 18599074AEE17E3DE57927E34123B8E3 /* RNFirebaseAdMob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMob.m; sourceTree = ""; }; 185B2034CAF6E1EE0931F67A5783DDA9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = rsocket/README.md; sourceTree = ""; }; + 185F95700BC1BB25CEB4FBA13CA93FD0 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; 1894C6BB2FA24DEE867B6C235CA2F8B9 /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = ""; }; - 18B25B2B339EA2F0D269DA97D6979384 /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; - 18BD91E28252A0B76ED45F7725EF8C3F /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 18B8F4B0EF9FC7F022CAAC681F57D833 /* RNCMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedViewManager.h; path = ios/RNCMaskedViewManager.h; sourceTree = ""; }; + 18BCE9A3CCBCBCC0ECC654C2D00E0318 /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; 18C92F5067A0D9C793BDED8B6AF2293E /* ThriftStreamShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThriftStreamShim.h; path = yarpl/flowable/ThriftStreamShim.h; sourceTree = ""; }; 190F437DFDFBAE254A394990FFA10E7E /* Cursor-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Cursor-inl.h"; path = "folly/io/Cursor-inl.h"; sourceTree = ""; }; - 191CEB22E13262B0BFBCBB1ADF351C22 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; 191E0AB4AB70334DAAFC00A760F3A31F /* StringKeyedCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedCommon.h; path = folly/experimental/StringKeyedCommon.h; sourceTree = ""; }; 19348691A9A945AE17613DC4F04A5C7A /* UIApplication+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+RSKImageCropper.h"; path = "RSKImageCropper/UIApplication+RSKImageCropper.h"; sourceTree = ""; }; + 193F1BF61A56BA5DA8D05FFB9356D4CB /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; 194B36E18F29E0A2E52DB40AB782A1E9 /* FlipperStateUpdateListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStateUpdateListener.h; path = iOS/FlipperKit/FlipperStateUpdateListener.h; sourceTree = ""; }; 19510654C411480A9C2D51D81EC73B9A /* common_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_dec.h; path = src/dec/common_dec.h; sourceTree = ""; }; + 19538F70BF6F89C938158F0B4CB5FBA2 /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; + 195A99A9AAE66B3B55102C6367345DEF /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; + 195EDDD4EAE52DAA85438274E906F9B1 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + 199FE22A0E473788A6D4774C1BF21AE7 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; + 19A804EFDA0458954836968F44829B98 /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; 19AAFC294F13245488AE17A972FE38A4 /* SSLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSession.h; path = folly/ssl/SSLSession.h; sourceTree = ""; }; 19ADD9F952E059D819C83F0167A49E7C /* thread_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_utils.c; path = src/utils/thread_utils.c; sourceTree = ""; }; - 19C43E2021D34953E63B6DF7BD3DCB2B /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; - 19CB053CF23AFCD3BA264178A105A854 /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; + 1A0611DDE49D426961492BD17560B5C1 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; + 1A066974EBA7AFB766B72902B7FC79FB /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; 1A0965FFAA87384FB3EFC7139043049D /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = FirebaseCore/Sources/Public/FIRApp.h; sourceTree = ""; }; 1A0A850F9CE40FFD2FE85F81A1CFA6A9 /* Observer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observer.h; path = yarpl/observable/Observer.h; sourceTree = ""; }; - 1A3C56EA8B1A865CCBEBA9138B63E16E /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; - 1A4BF455D2EB8C3B0ED975E7D28C952D /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; - 1A54C0ABD6B40C4EB6FC64D55B96F6F9 /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; - 1A57C009B67AD4A473B2FADD3D320055 /* react-native-cameraroll.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.xcconfig"; sourceTree = ""; }; - 1A589265F3297A75FF9C6602E4183895 /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; - 1A70291ECEF7C38CC3D4003CC6E27B9B /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; + 1A0C368CC1F3074A0E4DD8CF4F07B6C5 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; 1A734FB82B4D1E2AC1CA9C34F994604C /* alpha_processing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing.c; path = src/dsp/alpha_processing.c; sourceTree = ""; }; 1A91653C144A67CF27BF3BD101E38506 /* FIRInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallations.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallations.h; sourceTree = ""; }; - 1A944B362F74B5E301A83ECDA64AEE10 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; - 1A96DC001042A58CFA27387096C2A9D6 /* ReactNativeKeyboardTrackingView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardTrackingView-prefix.pch"; sourceTree = ""; }; - 1AC3A335A71373D11D159DC48AD1B476 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + 1AA1BD15854D21A55E4DEDD9F5802904 /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = ""; }; 1ADC689FA4AE6037B5D50C5C5F4919F3 /* HHWheelTimer-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HHWheelTimer-fwd.h"; path = "folly/io/async/HHWheelTimer-fwd.h"; sourceTree = ""; }; 1AF0557324DCAE519580AEC76A8CC4D4 /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; 1B0C860DA24D708F454DCC5064D32FEE /* cost_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_sse2.c; path = src/dsp/cost_sse2.c; sourceTree = ""; }; + 1B0DF15F8869A312D206396C99779577 /* RNCSafeAreaProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProviderManager.m; path = ios/SafeAreaView/RNCSafeAreaProviderManager.m; sourceTree = ""; }; 1B0E5A9598A5732F504D41A4D026BD6E /* HeterogeneousAccess-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HeterogeneousAccess-fwd.h"; path = "folly/container/HeterogeneousAccess-fwd.h"; sourceTree = ""; }; - 1B215F5106A34C76BD7AA30B94C89F28 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; 1B3A36A060481037E0B081A183379270 /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = ""; }; 1B414757DCBFA6FA63CB5030BFDAE56C /* RelaxedConcurrentPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RelaxedConcurrentPriorityQueue.h; path = folly/experimental/RelaxedConcurrentPriorityQueue.h; sourceTree = ""; }; - 1B54297A29176503CA4448A610338DFF /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; 1B59FE6153A8CC3B19F7CA6B444C1A15 /* SocketFastOpen.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SocketFastOpen.cpp; path = folly/detail/SocketFastOpen.cpp; sourceTree = ""; }; 1B7A6D080BE05253E70FEBAB8FFECDED /* ConnectionSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionSet.h; path = rsocket/internal/ConnectionSet.h; sourceTree = ""; }; - 1BA71CFB5BE743092D975B4EF33ABE86 /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = ""; }; + 1B8781B3DB75EA93F6DDD2118C4DF36E /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; + 1B9C82498C63431AFB222A79E6E16D1C /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = ""; }; + 1BBD89B386138AC734E76FEB46720463 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; 1BD82A494878B6A4248FE55C00040CEF /* lossless_enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_msa.c; path = src/dsp/lossless_enc_msa.c; sourceTree = ""; }; 1BD869D01F8A7BB12B795985CBE9A604 /* Crashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Crashlytics.h; path = iOS/Crashlytics.framework/Headers/Crashlytics.h; sourceTree = ""; }; 1BE4456FEB0E18D388A28EA1BE658D11 /* ProducerConsumerQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProducerConsumerQueue.h; path = folly/ProducerConsumerQueue.h; sourceTree = ""; }; 1BE71468687D52CA680B2234E364B78B /* srp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = srp.h; path = ios/include/openssl/srp.h; sourceTree = ""; }; 1BF34DC4EA797B9793EB476CE82E4909 /* json_patch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_patch.h; path = folly/json_patch.h; sourceTree = ""; }; 1BF4FA651BEEAAF5ED8F95C925D0291C /* FIRErrors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRErrors.m; path = FirebaseCore/Sources/FIRErrors.m; sourceTree = ""; }; - 1BFEA28EBCFB4C01668FFB09B9DEBDCF /* RNCMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCMaskedView.h; path = ios/RNCMaskedView.h; sourceTree = ""; }; 1C225153782F80BD27563133AD2D2C29 /* ExceptionWrapper-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExceptionWrapper-inl.h"; path = "folly/ExceptionWrapper-inl.h"; sourceTree = ""; }; 1C493BCB0409DB9EDD6467CACD5605EB /* RSKTouchView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKTouchView.h; path = RSKImageCropper/RSKTouchView.h; sourceTree = ""; }; + 1C5743DDDD74488674FE6DE4BC6E8259 /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = ""; }; + 1C5B460064923AEE386FECAE18993733 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; 1C6444B470DA21473DBF1F1D8A6F8759 /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = FirebaseCore/Sources/Private/FIRConfigurationInternal.h; sourceTree = ""; }; - 1C6DF07F4BCAEE95AE18C1A6FF7A1E16 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 1C9FCF945444DD05ECD9D1A6D9CDF2D2 /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = ""; }; + 1C6CC2BF5F040FADD1CE554A0195E374 /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = ""; }; + 1CA5EB000FAB712A0E1C018282F6F7B3 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; 1CD7F1C6AE3C3CDA65BF3322C9535690 /* cms.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cms.h; path = ios/include/openssl/cms.h; sourceTree = ""; }; 1CDD2B97131CA882E213597CBDCA850E /* F14Map-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Map-fwd.h"; path = "folly/container/F14Map-fwd.h"; sourceTree = ""; }; - 1CFA32E7F3C5F31B35D111D6C612DA04 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; - 1D058CA8909B39B41CBDE50B374B7BEE /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = ""; }; + 1CE361FE0D4BD192E996ADA0397B17B7 /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; + 1CF1BAAC7BA0B7A6BF70522697AC7932 /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = ""; }; + 1CF3E09BEF307CDC9612272B538617CF /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; + 1CF445EB7E9E674D1AE77B68EB6FF169 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; 1D1EDFB9232BCC84D44D1B60E1BFCC08 /* FirebaseCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.xcconfig; sourceTree = ""; }; + 1D251FEF5103B07DC87F45C4C6E9435B /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; + 1D2F110440E6536D1B3F88D769990A27 /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; 1D4EFD036EC6654875D4D04D71657858 /* neon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = neon.h; path = src/dsp/neon.h; sourceTree = ""; }; - 1D50A0B9839ED6D059771A56CDAC5160 /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = ""; }; + 1D53514A3C384B54BD8665A811F7FFAE /* UMAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppRecordInterface.h; sourceTree = ""; }; + 1D5FAF06DEF3F2C27DE379E9BA2F4B00 /* RNCSafeAreaViewEdges.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewEdges.h; path = ios/SafeAreaView/RNCSafeAreaViewEdges.h; sourceTree = ""; }; 1D6402C81734852C6895A864A7CA21C5 /* SwappableEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SwappableEventBase.h; path = rsocket/internal/SwappableEventBase.h; sourceTree = ""; }; - 1D90EADE13FE1E34BD47BE0C21C5EB80 /* RNFirebasePerformance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebasePerformance.h; sourceTree = ""; }; 1D9AEDF7296D9AB36C796BB4D1DF4150 /* SysFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysFile.h; path = folly/portability/SysFile.h; sourceTree = ""; }; 1DA23D31E9D5059B476C911DCAC4A323 /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; + 1DA25B86ADBA7605BE69071CB46D7286 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; 1DC94DF939D00DCC47B1425D23467FA8 /* MacAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MacAddress.cpp; path = folly/MacAddress.cpp; sourceTree = ""; }; - 1DCB116A084B6610053249AAB840B959 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; - 1DE315D70E5C21E0A0D947E0AF34567A /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; + 1DD455F9A5374D9D8D1C39C4D5F2AF41 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; + 1E231DB88DBDDA719E356518743872C4 /* EXLocalAuthentication.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.xcconfig; sourceTree = ""; }; 1E2611E2EA15BC9BB7556D44D5C932A8 /* md5.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md5.h; path = ios/include/openssl/md5.h; sourceTree = ""; }; 1E27F9AE20DF152DC7F768A46F5E3A16 /* GroupVarintDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarintDetail.h; path = folly/detail/GroupVarintDetail.h; sourceTree = ""; }; + 1E2BF6EC3E88E1C806354E565BC9D9CC /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; 1E4D2EAFA010A26A974FC40FEF1E3EA9 /* webp_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_dec.c; path = src/dec/webp_dec.c; sourceTree = ""; }; 1E5525B7C1162A1DECFCE07D921FA096 /* PTChannel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTChannel.m; path = peertalk/PTChannel.m; sourceTree = ""; }; + 1E570402A50ED7C68E0E7373C90CE0A4 /* UMAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppLoaderProvider.m; path = UMAppLoader/UMAppLoaderProvider.m; sourceTree = ""; }; 1E62C69369E251ACD8E2B0D16898898E /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; + 1E651C3E90ED823F29D1D4723930B040 /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = ""; }; 1E6866778088727F4DD526D4BAE0C00C /* UIColor+SDHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SDHexString.h"; path = "SDWebImage/Private/UIColor+SDHexString.h"; sourceTree = ""; }; 1E789D47D086753F372989959FF35FC2 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; - 1E81EC930DD4B3E8A08B14D713C62A96 /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; - 1E9181469A87B74FBE318400C549AAFA /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; 1EA2CCABD3A90686CC86E119016E92F0 /* YGLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YGLayout.m; path = YogaKit/Source/YGLayout.m; sourceTree = ""; }; - 1EAA8503571E0E242647CBE65A879EB2 /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 1EACE5B4C9E08B4DDD8549B2C025DC9D /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; - 1EAD16F1C76B70E914D9B8ED5A9E49AF /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; - 1EEE0770D07DC00B82039B5A2F97E499 /* 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; }; + 1EB48EE38EA29DB25BA2B973755744C1 /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; + 1EB59FEC70A5E1B56C27548AF3371D44 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; + 1EF46D893D5EF3C63BA34A09AE98E2BF /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; 1F0101342BF4DC87E70E39AC3F2C37C8 /* ripemd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ripemd.h; path = ios/include/openssl/ripemd.h; sourceTree = ""; }; - 1F2D8B1A106F59DD53D8F961BDA2346D /* RCTI18nManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTI18nManager.mm; sourceTree = ""; }; - 1F65ADC86C3EEA501595787CC5B00FF0 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; 1F676EF261CAEC55075292BF38B330E3 /* FBCxxFollyDynamicConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FBCxxFollyDynamicConvert.mm; path = iOS/FlipperKit/FBCxxFollyDynamicConvert/FBCxxFollyDynamicConvert.mm; sourceTree = ""; }; 1F86FED6A4F58E1E8D6AE7AE417A1718 /* PriorityUnboundedQueueSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedQueueSet.h; path = folly/concurrency/PriorityUnboundedQueueSet.h; sourceTree = ""; }; - 1FB7ECFA1E2EB82E596204EF9FF6C56B /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; + 1FB44558A4716076A776890E5B9EEA0A /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; 1FB9836A0870E8AED5574E9DEB215076 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; - 1FE95B0AD41CD2DC937FCB63FB377516 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; - 1FFB7D705B4A5244B8A90E9D3A4A6115 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; - 200A3530239A107CD98D893C9A4DAA61 /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; - 20110542FD849A0ED0F1A1345A97FFAD /* react-native-safe-area-context-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-safe-area-context-prefix.pch"; sourceTree = ""; }; + 1FECD98746A377A88A2E728B87E71F42 /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; + 2013508AD70F33F744F72E9CE70A398D /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; 2013D693B860F2005C84896FB128353C /* FrameType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameType.cpp; path = rsocket/framing/FrameType.cpp; sourceTree = ""; }; - 201506DCFFE14B340C726A0F0563D72C /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; - 20186ADFF4E69C5D1FC63266686DEC52 /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 201E31C2C549AC2848CC0559FB4F8371 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; 201EFAC398DA47C4E519027C9ED948D8 /* http_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_compat.h; path = src/event2/http_compat.h; sourceTree = ""; }; - 20258C64C159B7362A628C8082ED1D8A /* ReactNativeART.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.xcconfig; sourceTree = ""; }; + 2025EDF2EF5BCD30C279AABD5CF2F4CE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNBootSplash.a; path = libRNBootSplash.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 205328114E4BF15CC8CF7906A5B8671D /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; + 203868200F772E197AA8AEB48A4484E0 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; 207190979E1C3EC1E0DA1D3D40E86F17 /* FIRInstallationsAPIService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAPIService.m; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m; sourceTree = ""; }; - 207A93E311A2B2567CB197FE30D9BFD6 /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; - 20880348C7D369561B78EA32911E79CC /* 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; }; - 209773EB2859EE02FAA4C3152B2861E7 /* 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; }; - 209951A4C6E443A5A3BA0CE4DAB14DEF /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; 20B345804667E1356630DDD7D0F75706 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; + 20CB9EC86D31D9D66A76B70A1354F20E /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; 20D84784FEB9E892845F083EA8451F7B /* evhttp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evhttp.h; path = src/evhttp.h; sourceTree = ""; }; 20E4377AB83B86A78E53C33FBE57B109 /* SKStateUpdateCPPWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKStateUpdateCPPWrapper.h; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.h; sourceTree = ""; }; 20EC8E8F8B257145DBAEFE598A889D3C /* Traits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Traits.h; path = folly/Traits.h; sourceTree = ""; }; 20F40B1861D13D01526C617DBCA79546 /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Private/GULSwizzler.h; sourceTree = ""; }; - 212466682BAE7E9458E3FDD6DEEDE465 /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; - 2145A175E8A39B3546220D281803BA6B /* RNCAsyncStorage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.xcconfig; sourceTree = ""; }; - 214943770AA62639A6B229CCD7B6B50D /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; + 210AF6D0BB0B919F971CFAEE89D4FD44 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; + 21107566C9B487B9F483D54263AB391D /* RNFirebaseAdMobRewardedVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobRewardedVideo.m; sourceTree = ""; }; + 213F9924FFC6514FD80671209A6BF530 /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; 2149CA39B150BD8657AE5F8ADF6B95F2 /* HazptrObjLinked.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObjLinked.h; path = folly/synchronization/HazptrObjLinked.h; sourceTree = ""; }; 214A517403EFC2E68CBE2E2426122C2C /* Flipper.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flipper.xcconfig; sourceTree = ""; }; 215C261D87D5D65CAC10CBA91012E7E4 /* HeterogeneousAccess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HeterogeneousAccess.h; path = folly/container/HeterogeneousAccess.h; sourceTree = ""; }; 216CF2691BAD265246BFA60A93ED9D42 /* IOThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IOThreadPoolExecutor.cpp; path = folly/executors/IOThreadPoolExecutor.cpp; sourceTree = ""; }; - 2185D5433F48B8B084131511CFF6F88A /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = ""; }; - 21885A4ADAD17766C17F964FF29C82FE /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; 218B28488234367B1A4CBAA2AEE25A54 /* UIColor+SKSonarValueCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SKSonarValueCoder.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIColor+SKSonarValueCoder.h"; sourceTree = ""; }; 218C9C4CC995AE9EBF1ECF84FEFEA9EA /* Log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Log.cpp; path = xplat/Flipper/Log.cpp; sourceTree = ""; }; - 21AFCC848706AC146667C33200C1CD2C /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; + 219157DA3F91DD505AB71D9D598F3952 /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; + 21BD06F85417A2FC19AEF1446F9BCF05 /* RCTScrollEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollEvent.h; sourceTree = ""; }; 21C464AB02F18AABD4F0C37CB48ACB27 /* visibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = visibility.h; path = src/event2/visibility.h; sourceTree = ""; }; - 21C8C861B96FF98541E71324A1572405 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; - 21FC3F7AD7A415BCEC9E446692D850B0 /* EXImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXImageLoader.m; path = EXImageLoader/EXImageLoader.m; sourceTree = ""; }; 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; 220F92F77A59A58888FDA1B79641A324 /* FIRInstallationsAPIService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAPIService.h; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h; sourceTree = ""; }; - 2228D771F5EFF55AA041447138D04359 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; 222DDC2B4FFCB6970555879212622815 /* UninitializedMemoryHacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UninitializedMemoryHacks.h; path = folly/memory/UninitializedMemoryHacks.h; sourceTree = ""; }; + 224712917F5A91D72C71DECA90A7A617 /* ReactNativeKeyboardTrackingView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardTrackingView-dummy.m"; sourceTree = ""; }; 224E8D43D381D0811A55497FFB86EF3C /* GTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTest.h; path = folly/portability/GTest.h; sourceTree = ""; }; - 2256E6BC3F5D843D3102CE2D02C1C321 /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; + 2259EB0CD35B0B0C3E4A378009A14BEF /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; 226F9D0C0D2F82062B4EBF5A763A916E /* StackTraceUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StackTraceUtils.h; path = rsocket/internal/StackTraceUtils.h; sourceTree = ""; }; - 228CEFF2E2C187172950B2CE3A62B9A8 /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; - 2290F20C2B8587B16AAAA9195860246E /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = ""; }; + 2281173A99F5FA150A3994DA6BEAAD19 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; + 22928AA35601628141F5B47FCCDC85D1 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; + 22AACFD454C2973AF1DEEF4B50404805 /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = ""; }; 22AEFCED6B75662F6CD5BDDEE99FDDF9 /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = ""; }; 22D4DF2E82D37065989833E6A83E8EEE /* ThreadCachedArena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedArena.h; path = folly/memory/ThreadCachedArena.h; sourceTree = ""; }; - 22F87E7247324887C6502EDA25DED060 /* RNFirebaseStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseStorage.h; sourceTree = ""; }; - 22F8EA0880333E9DA3ED04ABBA625281 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; - 22F9465904A9EF8D7F027216ADBAD985 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; + 22E32B91CF4D5CB550CAB64B98B0D2B2 /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = ""; }; + 22F4AD55A34ADED24930616B1F875534 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 22FCCEAEBB965818279B78F98A9FAB7A /* ts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ts.h; path = ios/include/openssl/ts.h; sourceTree = ""; }; - 23210B88C177CF8F2F8AB6FD1FF0BD89 /* 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; }; + 2302012F151549C70835D721652E9CA6 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; 2347307F0AE2F59567C970617E229854 /* GULKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainUtils.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainUtils.m; sourceTree = ""; }; - 234D7174B898D7155E4CB08F88C5F96F /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; 235F0F5C7BFD7081642DC8ABF5028694 /* cost_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips32.c; path = src/dsp/cost_mips32.c; sourceTree = ""; }; 2367D19C603A3B08B7440895E32D82C6 /* FIRInstallationsLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsLogger.m; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.m; sourceTree = ""; }; 2369BE8BA480523C31349754A50AC8B3 /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; 23798023D9032C3422CF7ED2CD4868BD /* FlipperKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FlipperKit-dummy.m"; sourceTree = ""; }; - 237F3148163949A0F39743C8DE76F8ED /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; - 2395C55DF2741069950E865FC9E46A8F /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; - 23ADA4CFA5E72A90563F77FFD7F8D2CE /* RNFirebaseDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabase.m; sourceTree = ""; }; + 23918F66B61005385A067544979022B4 /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = ""; }; 23BE60BE79A13A031B7B515290AF3DEB /* muxedit.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxedit.c; path = src/mux/muxedit.c; sourceTree = ""; }; 23BF276F1AE4E94777C66FAFB545C31A /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; 23C3C5F08BD13409D8FDE9FE4D1CC598 /* FlipperCppBridgingResponder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperCppBridgingResponder.mm; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.mm; sourceTree = ""; }; - 23E8E6412A8B80FB18F58A48DCB7C15C /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; + 23C6F4DF926D01629FB89CDDE88C4CE1 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; 23EDBE5923411A3DB974564E52ED078A /* CLSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSStackFrame.h; path = iOS/Crashlytics.framework/Headers/CLSStackFrame.h; sourceTree = ""; }; + 23FEEB7213A35963CD60B68364E93522 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAccessibilityManager.h; path = React/CoreModules/RCTAccessibilityManager.h; sourceTree = ""; }; 23FFB8AAC78F63DE6D89521A6E71CF10 /* common_sse2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse2.h; path = src/dsp/common_sse2.h; sourceTree = ""; }; + 24012F8C88185EFC677404541CA2CC3D /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-appearance.a"; path = "libreact-native-appearance.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 2428F07E26FB454DF0A967A4F6AE3FA0 /* RCTConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConstants.h; sourceTree = ""; }; - 242E3459A63C4A83BE36384D867E7011 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 242769661A070BE96392D9823B30A215 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; + 24370042F20A0F4C7E9F6D80F56C50B5 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; + 2442933A475048CB1700F24B896BEB7A /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; + 2445B3AEA2EB41FE786A830866206CC5 /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = ""; }; + 2446945A75F9ED8B563C794EE127EFF1 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; 245B33E1F4D089A1FF002688512F44F6 /* huffman_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_utils.h; path = src/utils/huffman_utils.h; sourceTree = ""; }; + 246324D5D9C5B71C4CF2D751AD2779DB /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; 2465EEC076DAD80C81BE4185445B2A9D /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; 2470637122C75BBA356F1484669B3A80 /* AtFork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtFork.h; path = folly/detail/AtFork.h; sourceTree = ""; }; - 247B221CDE93B0F8AF6F2E1DE91C2178 /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; - 248119582169AE2E14B8DB9AC79E8664 /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; + 2487B40D4653C7815E2A19E55CE966A5 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; + 24A113A448FC06620948268EAF67AF8E /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; 24A71B5F7EF5A6B61FDF7263F39918B6 /* Executor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Executor.cpp; path = folly/Executor.cpp; sourceTree = ""; }; - 24C36A97CAC32C557FFA180623410217 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; - 24EFAE732626F70AF40D14252040F976 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 2536DDA97AD131C68C0518E3B194F4BC /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; - 253DA86CD9850B20CA326647CF689F7E /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; - 25515E093BB5827043AB4142E1B445A0 /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; + 24E2A2315152475E8843250F3226DF23 /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; + 250942542A3D8F65322D0B4FA88A34F6 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + 255791213825BDEE0B9D20D5A9527FBC /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; 2570B45F50BCBB7DCDAE727C311DDD99 /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = iOS/FlipperKit/FlipperResponder.h; sourceTree = ""; }; - 257204B30240739B7940D1A0D164DF58 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsinspector.a"; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 2580E080502BBFFA0A4EDA6C491F0276 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; 25870310690272D6D92BFBD97E5A2BC8 /* muxinternal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxinternal.c; path = src/mux/muxinternal.c; sourceTree = ""; }; 25898516D1E2F14B8A40C4C1C657B8BD /* OpenSSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSL.h; path = folly/portability/OpenSSL.h; sourceTree = ""; }; - 258D5FDD1098DA394D695543A5EC6D96 /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; 259032220E882F1A3F9C8364086DAF94 /* AtomicUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtil.h; path = folly/synchronization/AtomicUtil.h; sourceTree = ""; }; - 2598E2C79750DFB023DA23A9AFB1C983 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTI18nManager.h; path = React/CoreModules/RCTI18nManager.h; sourceTree = ""; }; 259BBB31FEC3712023900184D0A6BC38 /* GDTCORDataFuture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORDataFuture.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORDataFuture.h; sourceTree = ""; }; 25A2EA5C585C00FFBCD44CB1F4AC7891 /* CPUThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CPUThreadPoolExecutor.cpp; path = folly/executors/CPUThreadPoolExecutor.cpp; sourceTree = ""; }; - 25A6614C17B736AC115629DC8B42E299 /* RCTLinkingPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingPlugins.h; path = Libraries/LinkingIOS/RCTLinkingPlugins.h; sourceTree = ""; }; + 25B5BF316F09B07498DADC07B47A7B19 /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; + 25B7949B169E5EECF0CC451DF9753930 /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; 25C6B32E86597D164E92D87CF1F9DBBC /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; 25CF3561507F48600D3F453131A2C062 /* ProtocolVersion.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ProtocolVersion.cpp; path = rsocket/framing/ProtocolVersion.cpp; sourceTree = ""; }; - 25CF7B2E403EAF3907627D3B8AC8CA0A /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; - 25CFED65ACBDF5664F0F70F8F7FBDC06 /* ReactNativeKeyboardInput.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardInput.xcconfig; sourceTree = ""; }; 25D52BE28A98C19C5268488B71CD037E /* io_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = io_dec.c; path = src/dec/io_dec.c; sourceTree = ""; }; - 25DC3494FB12543357BB8575BAAE65AA /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; 25FC6D35ADBA36B3A2058A46B71ED99F /* GDTCCTCompressionHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTCompressionHelper.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTCompressionHelper.m; sourceTree = ""; }; + 2605A02400E1642034EBC1AA76F1A945 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; 260818DEDE2BCFEDCEAF97E551C02FB0 /* Request.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Request.h; path = folly/io/async/Request.h; sourceTree = ""; }; - 2631ADD27366017C1CF5E6C4B7E68F6F /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; + 262F4696C44FF01497A42DFF4060D983 /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; 26355BDA8ACAED4B5B52CE2D7896BCE9 /* Fixture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fixture.h; path = rsocket/benchmarks/Fixture.h; sourceTree = ""; }; - 264B852CD3B4070CAAE523CA5FFBEC83 /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; 26587EC6A915959D983534FD3CECF9E5 /* FlipperDiagnosticsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperDiagnosticsViewController.m; path = iOS/FlipperKit/FlipperDiagnosticsViewController.m; sourceTree = ""; }; + 265C1CB4595B827AAB73D50EF2E67CC0 /* RNFirebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFirebase.xcconfig; sourceTree = ""; }; + 267E5E85FF9CB701B4B72B6906391986 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = React/CoreModules/RCTActionSheetManager.h; sourceTree = ""; }; 2681E009AC3FC0C49FBB8399EF75B297 /* rpc_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_compat.h; path = src/event2/rpc_compat.h; sourceTree = ""; }; - 2684476A26F9AA36378CCD73BB417EC2 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; - 268E537109136434EE2FF5DFF465541C /* RNCSafeAreaProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProvider.h; path = ios/SafeAreaView/RNCSafeAreaProvider.h; sourceTree = ""; }; + 2694584CE37F0BAD4865C0BE05D6878D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 2694BBE57D0FD53F26257B56F7E5F829 /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = apple/RNCWebViewManager.m; sourceTree = ""; }; 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTSettings.a"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 26BFB0467BB9E53213E8BCEDE7E73CD1 /* RNCSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewLocalData.m; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.m; sourceTree = ""; }; + 26DE54FCD3291D9FE812ADCF31AB621D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 26E35B845A5B19D9353458A64BCD1FDE /* RCTTVNavigationEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTVNavigationEventEmitter.h; path = React/CoreModules/RCTTVNavigationEventEmitter.h; sourceTree = ""; }; 26E892040FE11059CCF8A12CEA7F3B3E /* 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 = ""; }; - 26F21C4F043E602684FCF1300BDFC8F7 /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; - 26F445F6D03A3A82E37268A22BAE1C95 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; - 26FA8683647426F62DBA9EF6375C2573 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; 270D70A64C3266A193849A260BD97F8B /* AtomicNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicNotification.h; path = folly/synchronization/AtomicNotification.h; sourceTree = ""; }; - 274F0C5E12F8002678AC0075BEC38942 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXAV/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; - 27500E1C3EC9295178F620CC41A73CA3 /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = ""; }; - 2751DEFB13CE7F313B750145F8315914 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; + 271CE91E6EC0C9097F31B11377FBC7EF /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; 2761477FB5731BF97BEA495423F22DA4 /* HazptrThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThreadPoolExecutor.h; path = folly/synchronization/HazptrThreadPoolExecutor.h; sourceTree = ""; }; - 2767680CE41ED19D766E69468F280AFD /* UMErrorCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMErrorCodes.h; path = UMCore/UMErrorCodes.h; sourceTree = ""; }; 276A65F3FD717086395DB7D24A64E833 /* UIView+Yoga.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+Yoga.m"; path = "YogaKit/Source/UIView+Yoga.m"; sourceTree = ""; }; 278D2204B731B6483DAB6E05F60ABE15 /* RSKImageCropperStrings.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = RSKImageCropperStrings.bundle; path = RSKImageCropper/RSKImageCropperStrings.bundle; sourceTree = ""; }; 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libKeyCommands.a; path = libKeyCommands.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 2795DA0AB50B806E3127BDEB66A5A180 /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = ""; }; - 27B47193B9A5F70C9FC551D403944866 /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; - 27CE5F38E7E2C21F4A1C2ADC04919A91 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = React/CoreModules/RCTActionSheetManager.h; sourceTree = ""; }; - 27CF5439AFE8FA90355B9679CB21494B /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; + 2799F0DED9E9E8887839D8BC001108D2 /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; + 279EA955FE6F12CC11D1E759875F0932 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 27B1E0BF6617F882B11E76578E7B841B /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; + 27BEECCCA2EC8DA1D908D5BD7CD49E88 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 27DF4FFC237F06C5693622AA55FF8069 /* Align.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Align.h; path = folly/lang/Align.h; sourceTree = ""; }; 27FB570FDC9BAD136561E512D148BD88 /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = ""; }; + 27FCBE4175BBAFDEB20A1F223A1D46FC /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; 280D09B7AD881B183B9C2BF25975FBF6 /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; + 2811128BCAC24E68D241E515303FD488 /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; 2820A02A351356A0FFD7017542CFF65A /* GDTCORConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORConsoleLogger.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORConsoleLogger.h; sourceTree = ""; }; - 286EDA02ED5D09F9992ABE65ABD78CA8 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; + 282EB84C2822C44597857D035DF0CA33 /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = ""; }; + 284D2BBD607C0664FC7C9608BC791752 /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = ""; }; + 2877B8DEE578C404C945061D9A1DDC75 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; + 2877B9421293EC9697DC663C8D7EDF7F /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; + 287BC39339CE9388194C0C6E634A8628 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; + 2880462EE7BDEB965A9165F40601AEE1 /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; 289EE0C9ACCBE6F768388F258B8FFFA0 /* ossl_typ.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ossl_typ.h; path = ios/include/openssl/ossl_typ.h; sourceTree = ""; }; + 28AB3075885ECF649C0F95837736FCCD /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFPSGraph.h; path = React/CoreModules/RCTFPSGraph.h; sourceTree = ""; }; + 28B7C0C3C5C900D6A0D9B128EC437B23 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; + 28E5A7322B769723F0DE198A1DE2E547 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 28EC16F240C2FFB42633DB0811DDAA9E /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; 28F4BD11D608B29BFD0B2EA33C846AEA /* AtomicSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicSharedPtr.h; path = folly/concurrency/AtomicSharedPtr.h; sourceTree = ""; }; 291D6C2C49433692B9FE34BC24939C2B /* RSocketParameters.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketParameters.cpp; path = rsocket/RSocketParameters.cpp; sourceTree = ""; }; + 293C789E193A86C35F96B5D434CE3FD5 /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; 2950B3C674F730AC60BB3286C66128E2 /* quant_levels_dec_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_dec_utils.c; path = src/utils/quant_levels_dec_utils.c; sourceTree = ""; }; + 297458D850ED870E5DF325E40C3C1008 /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; 2983C8167A247EF469501A4EBFBE4D7C /* InlineExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = InlineExecutor.cpp; path = folly/executors/InlineExecutor.cpp; sourceTree = ""; }; 29B090899F53FC663285262C68375363 /* FBLPromise+Do.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Do.h"; path = "Sources/FBLPromises/include/FBLPromise+Do.h"; sourceTree = ""; }; 29B0B355A6EF8ED64F63AFA79704D980 /* ThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadFactory.h; path = folly/executors/thread_factory/ThreadFactory.h; sourceTree = ""; }; - 29B194002894F596571B50ECA498E7A4 /* UMPermissionsMethodsDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsMethodsDelegate.h; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.h; sourceTree = ""; }; 29B35AFC1D40CA8D7FC1A6D8123E238F /* Sockets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sockets.h; path = folly/portability/Sockets.h; sourceTree = ""; }; - 29C61B48928ACB47767C42DC8802C61C /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; + 29BBF567B242DB371110C704D4FF5E64 /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; 29E37543C5ADBF976E44895AD6B574A2 /* EventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventHandler.cpp; path = folly/io/async/EventHandler.cpp; sourceTree = ""; }; 29E47FEDD187A358688BEA85EDFBB3BC /* ThreadCachedArena.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadCachedArena.cpp; path = folly/memory/ThreadCachedArena.cpp; sourceTree = ""; }; - 29FBA07AD4FFC50AD572B8481FEE71B1 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; + 2A00BB922183FA3404F92CE65688555A /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTClipboard.h; path = React/CoreModules/RCTClipboard.h; sourceTree = ""; }; 2A016E99AF04E27264203E00A4B009EC /* evrpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evrpc.h; path = src/evrpc.h; sourceTree = ""; }; - 2A0F368092D9D7E5A6F338E6BFE5660E /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; - 2A174FCBA44E8253E94EF53F873F0FA6 /* RCTScrollEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollEvent.h; sourceTree = ""; }; 2A284E5C8ED6619014004F9F23BADEB1 /* SocketAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketAddress.h; path = folly/SocketAddress.h; sourceTree = ""; }; 2A2F25028AF5BC0BEFB17EC66F786A67 /* GULSecureCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSecureCoding.m; path = GoogleUtilities/Environment/GULSecureCoding.m; sourceTree = ""; }; + 2A30482EEE93A686B919A3624181BF11 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; 2A3DB6A871C64B1CF548EAF68DBD8C43 /* FIRInstallationsIDController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIDController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h; sourceTree = ""; }; - 2A405C5DEF0838E19B8C9F5D7D7F5631 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; + 2A417F150D5E5377C589D3FADCF8F8F9 /* ReactNativeKeyboardInput.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardInput.xcconfig; sourceTree = ""; }; 2A460CC099BBFF7CE881C10D1CE7711D /* opensslconf-armv7.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-armv7.h"; path = "ios/include/openssl/opensslconf-armv7.h"; sourceTree = ""; }; 2A4B8B5C2E23AD3CA3584BC627836DDD /* OpenSSLThreading.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLThreading.h; path = folly/ssl/detail/OpenSSLThreading.h; sourceTree = ""; }; - 2A4CD029A18F4685FFEA2386D5576A90 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; - 2A6455F4DA46D3D011AFEDCB85C66A94 /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; - 2A66A0DC8DD246AC86E7EF106774B144 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 2A50525B28CFF268937B02699BB443D2 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; + 2A5FDB191B2FCC68878DF1026B2F3823 /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; 2A6DACFE14CC5DD3EFE1FF52CAE46B0B /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; - 2A7191EDD6EC5DAD69F0407AA2C1E31B /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; 2A81D81B2D603824294FC7AAE0B8B5EF /* http_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http_struct.h; path = src/event2/http_struct.h; sourceTree = ""; }; + 2A826AE008128B6E8E8CA026B6F74C55 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; 2A89EFE2052008631ED7EF5F6775D509 /* StreamStateMachineBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamStateMachineBase.cpp; path = rsocket/statemachine/StreamStateMachineBase.cpp; sourceTree = ""; }; - 2A8D197A0AD529686EE251B7CBA051CE /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; 2AA4E2E650FB2F10CD6B28690D080A14 /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULAppDelegateSwizzler.h; sourceTree = ""; }; 2AA5BA75C3F022CEBA5F14374FA0378C /* SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKInvalidation.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKInvalidation.h; sourceTree = ""; }; - 2ABADCE36F2A93255F0B6ED89C75174E /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = ""; }; - 2ABB5695E72294DF01503F46F8958E57 /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = ""; }; + 2AADF5C03B492AD37F5BE2BEE9AAB9FF /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; 2AC887141E35A329AE5DE15C7AB64B7E /* buffer_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer_dec.c; path = src/dec/buffer_dec.c; sourceTree = ""; }; - 2ACF4DAE836F3A6D95CFD47CA16B8438 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; - 2AF05263F11E9264AB29F3FF7BEF7AB2 /* RCTRedBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTRedBox.mm; sourceTree = ""; }; - 2B118C388E08FB135AF5C4AF3FBFB753 /* EXKeepAwake.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXKeepAwake.h; path = EXKeepAwake/EXKeepAwake.h; sourceTree = ""; }; - 2B14C4E56BD11C9AD9E7D7CC67D321A4 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; + 2AD327CED0B16E70BBFAC1F8C1CB8E1B /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; + 2AEAA9E544E4CBE4B52DB3985B29502C /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; + 2B03AB67B2358D17DF310464355CC54F /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-slider.a"; path = "libreact-native-slider.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 2B227BB4081A0127E3F5F504F8BECC8E /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; 2B2CD74073247E0ABA4E1B68EF1547B2 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; - 2B3EB9B2850535DAE8A7F3F6AFD80475 /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; + 2B33742E83553D9A3FD50C58851C8469 /* RNFirebaseStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseStorage.h; sourceTree = ""; }; + 2B6392E34D1EDBB6F22DCAC11FA7A2CE /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = React/CoreModules/RCTWebSocketModule.h; sourceTree = ""; }; 2B69D88565423B3C09FDE136BF8C5B66 /* Arena-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Arena-inl.h"; path = "folly/memory/Arena-inl.h"; sourceTree = ""; }; 2B79BF2D133095918AFDF1DBD44D3F79 /* opensslconf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslconf.h; path = ios/include/openssl/opensslconf.h; sourceTree = ""; }; 2B79DBBE85DC254ABEF25C5D20CC1299 /* Hazptr.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Hazptr.cpp; path = folly/synchronization/Hazptr.cpp; sourceTree = ""; }; - 2B8F0CB7B18252642B5D4A076198B56E /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = ""; }; 2BA0F3CBB6D7743D677C5BE964F67CD7 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.m; sourceTree = ""; }; - 2BCA7D25953AD7B71A4DDEF46B0CFA17 /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = ""; }; - 2BD6D05211FC0A993AD167FD7F658475 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; + 2BAC563A129266B3DB6F6A1C895CF4B2 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; + 2BC26216824EF183864BAF1E1A30C1BC /* ReactNativeKeyboardTrackingView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardTrackingView-prefix.pch"; sourceTree = ""; }; 2BEA148826FBB5E958D57D606913DCE4 /* Event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Event.h; path = folly/portability/Event.h; sourceTree = ""; }; 2BF8E9A99B123336E4490F22C58A6A56 /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = FirebaseCore/Sources/FIRComponentType.m; sourceTree = ""; }; 2C1C9E4FC69D6D477AE135711492DE88 /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; 2C2CB39E6AB98330E4DC3B91371B039A /* VirtualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualExecutor.h; path = folly/VirtualExecutor.h; sourceTree = ""; }; - 2C315F99CBFABCC17238E3253EA2F661 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFPSGraph.h; path = React/CoreModules/RCTFPSGraph.h; sourceTree = ""; }; - 2C3382E851B93FEE126ED1E2823BE675 /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; - 2C3ACBCD984A4A11C1B429B020F1B81C /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; 2C3D6F2F0BD6A80301C0154FB416A93F /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = FirebaseCore/Sources/FIRBundleUtil.m; sourceTree = ""; }; - 2C3DD063E32E5E8662D6A1C1443DB935 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; - 2C42F9714A09EB66DC4FEA36E14C86E5 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; 2C43C3E16E41E3F8C049D78F0280E02A /* SKDescriptorMapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKDescriptorMapper.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.mm; sourceTree = ""; }; - 2C4CD1EA00042DB134AE0FCB59D02089 /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = ""; }; + 2C65CED781EB4FC243BC413608DAD050 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; 2C66BC1E035DFC8C5A9B17AFF831BD1F /* pem2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pem2.h; path = ios/include/openssl/pem2.h; sourceTree = ""; }; 2C80263B941C199881AAD0480066051A /* picture_tools_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_tools_enc.c; path = src/enc/picture_tools_enc.c; sourceTree = ""; }; 2C8233B54E3EF80BE1946D22E0D87040 /* UnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedBlockingQueue.h; path = folly/executors/task_queue/UnboundedBlockingQueue.h; sourceTree = ""; }; 2C82F235679116F370DEE1DC2464A06F /* tag_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tag_compat.h; path = src/event2/tag_compat.h; sourceTree = ""; }; - 2C910DEB0F6609AF005E02036652D748 /* RCTAnimationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationPlugins.h; path = Libraries/NativeAnimation/RCTAnimationPlugins.h; sourceTree = ""; }; - 2CA5D52946D5146220F0C1D6E7DA0956 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; - 2CBB7A0A0D3341A8729B9F3D14F53598 /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; - 2CCADECA416C36233EDB1367D6148C60 /* RNRootView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.xcconfig; sourceTree = ""; }; - 2CD41FE5D4488D18AEA8D0FE2255E01B /* RCTWebSocketExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketExecutor.mm; sourceTree = ""; }; + 2CA74F7AE406D898D8DC5AF4957AD1D4 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; + 2CB5D8C4469548083FF1CC9B36D0F165 /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2CC1D7B1FCAA03FF7C646C98B551D435 /* RNNotificationCenterMulticast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterMulticast.h; path = RNNotifications/RNNotificationCenterMulticast.h; sourceTree = ""; }; + 2CDB4E62BF5B21321609BDC49DAC8401 /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; 2CDD0B49E53E253DD76070CD5F430567 /* FBLPromiseError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromiseError.m; path = Sources/FBLPromises/FBLPromiseError.m; sourceTree = ""; }; + 2CDE903C3BDEDE5D08F16FC3BE3ECB21 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; + 2CE9D676303867F81508898BEB587FA6 /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; + 2CF905EB15C5C55862330B14BA92EBFE /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = ""; }; + 2CF99954ABA0F0E1C81EF170CF757AF1 /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; 2CFDDDFB98B4BFDB4327F2DA7239B3B7 /* safestack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = safestack.h; path = ios/include/openssl/safestack.h; sourceTree = ""; }; 2D0EFC89B228A007FAAD0BBC50F4A310 /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; 2D113AB762E333161D4F04EE310B3C90 /* Pods-RocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RocketChatRN-acknowledgements.plist"; sourceTree = ""; }; - 2D1F8A63863074A0FED82448954C3904 /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; 2D25D25F813838C74090FBF8F83C6213 /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/synchronization/Utility.h; sourceTree = ""; }; + 2D3853B3ED3C88E5AEBA60EBA787BCD6 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; + 2D41ED878A5CB15D1F40CFFB4D90520D /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; 2D5BA069E6DFCFE1A8F4280D50172973 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/Private/FIROptionsInternal.h; sourceTree = ""; }; - 2D78B8E80FC6143DC5CEAD2D643B2920 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; + 2D653138FC87559632D13F0E506B8939 /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; + 2D763DDE6D775B54514BD1AC9020ED53 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; + 2D78775B7EF9D8518ACABB535901FF01 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; 2D86C30001BA5E9D611749856BA32230 /* F14Map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Map.h; path = folly/container/F14Map.h; sourceTree = ""; }; 2D86D213801ABEF7CD86291D4F3FDD34 /* libUMAppLoader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMAppLoader.a; path = libUMAppLoader.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 2D8D536D63ACC5FFBC999E9261019CC3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 2DBCE57D2CC931F4BE40AD14D0D2979B /* MacAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MacAddress.h; path = folly/MacAddress.h; sourceTree = ""; }; 2DCCC69679F935D7E2F10ACACD5E79F6 /* IOObjectCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOObjectCache.h; path = folly/executors/IOObjectCache.h; sourceTree = ""; }; + 2DD0D936FD3A5A59177806D1D0665B3F /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; + 2DD8EAE35A82F325B9433D5269FB7B3F /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; 2DDDC948C5A7095855026FD526CB2122 /* ObservableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableConcatOperators.h; path = yarpl/observable/ObservableConcatOperators.h; sourceTree = ""; }; - 2DED67D16CA9A33AD31C49901B1634BE /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; - 2DF7C10E2CA08CA750381E0305B01342 /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; + 2DF08470844D08D3FCDD27490BC8F6CB /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; + 2DFB1CAD034D1624F51C2B27B1F1CBE7 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; 2E0237BD4E90D915BEF384327688A7EE /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = ""; }; + 2E23F2BDB03D15F2F4E6950AEF753FA5 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; 2E26711C9C0DBFA835B5B74E622BC253 /* PriorityUnboundedBlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityUnboundedBlockingQueue.h; path = folly/executors/task_queue/PriorityUnboundedBlockingQueue.h; sourceTree = ""; }; - 2E426055F0DD1A897CF3CCD3618F3143 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; 2E6D736667E4999E61DA48BC2CD9FD5C /* Assume-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Assume-inl.h"; path = "folly/lang/Assume-inl.h"; sourceTree = ""; }; + 2E70AA0D505488567C4D017F3E4247C6 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; 2E7AB37A4C9A9CD685B607A810B44352 /* ApplyTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ApplyTuple.h; path = folly/functional/ApplyTuple.h; sourceTree = ""; }; - 2E816A440D4FBA6227C86874FABDCD19 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; - 2E8C1DBF25BB49301681AE4675992A9A /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; 2E8C89747EB135ADAEFAE0B2E90A1C51 /* vp8li_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_dec.h; path = src/dec/vp8li_dec.h; sourceTree = ""; }; 2E9730B90DF9CBFC3873545D88B5EA10 /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/IPAddress.h; sourceTree = ""; }; + 2EAB83F894DE5160611EE37DFDABACCE /* UMAppLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMAppLoader-dummy.m"; sourceTree = ""; }; 2ED14333F4EBF2AFFD8909008BD5B197 /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; 2EF308BA1672296F22BBDE80801857F1 /* Stdlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdlib.h; path = folly/portability/Stdlib.h; sourceTree = ""; }; - 2F00430F4588DE0811AFF23C2FC72E54 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 2EF72D08C11EAEC6D06F11EDA261C43C /* RCTImageView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageView.mm; sourceTree = ""; }; + 2F0D236CFE1440B409DF707C02A8010B /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; 2F0EEDDF0CA1745BF7448FA38B67DC5D /* lossless_enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse2.c; path = src/dsp/lossless_enc_sse2.c; sourceTree = ""; }; 2F19B1D2D1D3E6D0CDFD362FDF60E68E /* SSLSessionImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLSessionImpl.cpp; path = folly/ssl/detail/SSLSessionImpl.cpp; sourceTree = ""; }; - 2F1D4A55EA9BEA7C6F854E7A48AA4BE6 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; - 2F4763AE51946C33BE24C00FDAF0EA71 /* 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; }; - 2F4A0CC84C0513BE8B9846E35F771239 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; - 2F74A495375CC373ED1DE23E8F032EB5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 2F8915E6DDB9DB9DC5F4B4D32959B660 /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = ""; }; - 2F975ABCF1DDACF01397576F14A4E751 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; + 2F2668002AB9B4E751068F15C25494A8 /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; + 2F2DEF5EE9819C37C42F8124085ADDD0 /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; + 2F5CB58018AACF27CE0F42652F58CB11 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; + 2F89DE840B04B07EA0173FE9B0251B3E /* EXLocalAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocalAuthentication.h; path = EXLocalAuthentication/EXLocalAuthentication.h; sourceTree = ""; }; 2FA846683603BFF27115ED2F9AA693B3 /* Iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterator.h; path = folly/container/Iterator.h; sourceTree = ""; }; - 2FAF2CA43B8035437F93508EE9003AD7 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; + 2FE2865D78BF371822DD76F8FB6EB511 /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = ""; }; 3007ADEE69DAF25EEED4EB1CDA5B2089 /* CocoaAsyncSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CocoaAsyncSocket-dummy.m"; sourceTree = ""; }; - 30169015F3924A9D83E887FACFD06434 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; + 301B5EEE4D976F7960898431238C08AE /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; 3032FCA0F6D3E8D3588E8A516758E5EF /* ConcurrentHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentHashMap.h; path = folly/concurrency/ConcurrentHashMap.h; sourceTree = ""; }; + 30450DE09FEEB6C27389510E3E2E3C11 /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; + 30465E769F2B34F0984617F34B20E439 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; + 30622B80CC406091F7C76C7D3BE5316E /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; + 3064F751F46145C00A3F1D8588634343 /* RNCAsyncStorage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCAsyncStorage-dummy.m"; sourceTree = ""; }; + 307FA4F940815467DFE0BA6926175C96 /* RCTWebSocketModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketModule.mm; sourceTree = ""; }; 308098C32F21C2C1817357A88B725B5A /* md4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = md4.h; path = ios/include/openssl/md4.h; sourceTree = ""; }; 3097072566A9C6B9EA6C6A732B54717F /* filters_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_mips_dsp_r2.c; path = src/dsp/filters_mips_dsp_r2.c; sourceTree = ""; }; 30B93E1F6A28A2113ADF5C4963E92F75 /* backward_references_cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_cost_enc.c; path = src/enc/backward_references_cost_enc.c; sourceTree = ""; }; 30C26D9E8BA9B0C1C3FD84643E3A62C9 /* SysTime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTime.h; path = folly/portability/SysTime.h; sourceTree = ""; }; - 311043C1601FF102B6E628231C20528A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 3123946DEF3421A12E9BAE834F1E3C63 /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; + 311FCD6AA12E2F521B9AECB5B0844B0C /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; 3127D00DF32C10EF345C5A607BA2F0EB /* near_lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = near_lossless_enc.c; path = src/enc/near_lossless_enc.c; sourceTree = ""; }; + 3131204640275CEFD8903EE8F9F962BE /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; 316D9D195CF9A8195A75DC78F7F59054 /* ConnectionSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectionSet.cpp; path = rsocket/internal/ConnectionSet.cpp; sourceTree = ""; }; - 319B47D9A35D9D659C3A3ACCFACDFAAF /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; - 319EB6FAC518BAF8FB8D069B119BBCC3 /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; + 316F4799926A85CDE6CF0D3FDCB71582 /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = ""; }; + 31757C4EB15476B1F9D587841D3879E3 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; 31A34D813C9BE0C4D2D9FB56A59FE8BB /* CGGeometry+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CGGeometry+RSKImageCropper.h"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.h"; sourceTree = ""; }; 31A7478A71140105AF55B7AAF813239A /* RSocketClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketClient.h; path = rsocket/RSocketClient.h; sourceTree = ""; }; - 31E2C8455EA94AE9E641B248102206B8 /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; + 31EC6B0BD5D9A627723E4231C736DAF9 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; 320E0B1A25EB2F637CBF4290094ED6B3 /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; 3224500CF0F3FB09AC30951ED4C8EE14 /* SKObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKObject.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKObject.mm; sourceTree = ""; }; - 322C21C553A1DAB04CC9C758267576DC /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; 323E1B424291F692103EBDFD456C1BDB /* GDTCORPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPlatform.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORPlatform.h; sourceTree = ""; }; - 324340B7C0A3CBAF308887B4453E9BD4 /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = ""; }; - 324706CA72283709C6953C448166A9A9 /* AudioRecorderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AudioRecorderManager.h; path = ios/AudioRecorderManager.h; sourceTree = ""; }; - 32697D5DA0B612CE8AFF865E3133F083 /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; + 32436D44B834FF122739FB54598DF723 /* RNCAsyncStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAsyncStorage.m; path = ios/RNCAsyncStorage.m; sourceTree = ""; }; + 324AD3C65B5EF26DAD04544CB9153446 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; + 32583468EEEEA527EC40E6B89D202629 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; 326C1C8C0F48FC5A36BCAA9A48BB4735 /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = FirebaseCore/Sources/FIRVersion.h; sourceTree = ""; }; + 326C71645C00D356FF14EDBB384BFC02 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; + 3275CB2BAFADCA7BEE8D21CF409ABA30 /* RCTImagePlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImagePlugins.h; path = Libraries/Image/RCTImagePlugins.h; sourceTree = ""; }; + 3277D934C5D6D06B2AD968387E738347 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; 32A6FAF621DD8E42929F3FA9DE1FB33C /* FLEXNetworkObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkObserver.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkObserver.h; sourceTree = ""; }; 32AEBDE4BE631D2A005BC2CB50F9580E /* libevent_pthreads.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent_pthreads.a; path = lib/libevent_pthreads.a; sourceTree = ""; }; + 32B49D35E505BA8C3BE0CEA015D67415 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; 32C0C15D205C2A456F02A54148A83B64 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; - 32D62F9FE254D779D1AF7414AED6EF81 /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; - 32D6692C58A15CAE118365DE54D97957 /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; + 32C24B079339C218064D1D3F89649FD8 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; 32DC7ABAC6A190D72BD38D21F3B51E48 /* Random-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Random-inl.h"; path = "folly/Random-inl.h"; sourceTree = ""; }; - 330566AE5AF4C4FFF95E7C2D625511FB /* EXLocalAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocalAuthentication.m; path = EXLocalAuthentication/EXLocalAuthentication.m; sourceTree = ""; }; - 3305EBFCDE2F3D9BE8746FA55736C793 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; - 33296D02D55691A0EB008324A67ED97C /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = ""; }; - 3334E27A81D92C38902F3EF06E65C508 /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; - 334755F233628245C1D01956028DA931 /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = ""; }; 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libPromisesObjC.a; path = libPromisesObjC.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 33717BADD5994F7219D8F0E327A52F29 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 3348F971DB1E990B5590E8EBA0E31AE5 /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; 338684C7E93881F6575D9F4B01EDF68B /* ParallelMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParallelMap.h; path = folly/gen/ParallelMap.h; sourceTree = ""; }; 3389D4D1E3F77F09829A7ACD37FA8A6E /* FlipperStep.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperStep.cpp; path = xplat/Flipper/FlipperStep.cpp; sourceTree = ""; }; 338B456FE987876072B45A158A31614D /* Future-pre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-pre.h"; path = "folly/futures/Future-pre.h"; sourceTree = ""; }; 338C2E7D2F893B9F7B7644A561785505 /* predictor_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = predictor_enc.c; path = src/enc/predictor_enc.c; sourceTree = ""; }; 33952517031EF6D62F284EC8A4AAE650 /* QuotientMultiSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QuotientMultiSet.h; path = folly/experimental/QuotientMultiSet.h; sourceTree = ""; }; + 339B6078FABA3A8B20C8358C15B05E32 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; 33A00DECC9301D1BBEC0A60EE8B99A8A /* Optional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Optional.h; path = folly/Optional.h; sourceTree = ""; }; 33AE5102B7218B102D9683C94F8937BA /* StringKeyedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedMap.h; path = folly/experimental/StringKeyedMap.h; sourceTree = ""; }; 33B3D54191A1B4DD4747CFE7113B08E6 /* StreamFragmentAccumulator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamFragmentAccumulator.h; path = rsocket/statemachine/StreamFragmentAccumulator.h; sourceTree = ""; }; - 33B7C5D1D926FC345037DFC006FCC356 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; - 33C501A1A12B23A1737140EC045E0289 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; - 33DDA7B76998A58E33B738D9F35141B1 /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = ""; }; 33F64DDC7E68F08CA71D263DC0CC3E0F /* picture_rescale_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_rescale_enc.c; path = src/enc/picture_rescale_enc.c; sourceTree = ""; }; 33F85B092F6064A0ED2AA95A2188EB1B /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; - 343B4A0F29E595ED75877EE1453475D2 /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = ""; }; + 3401555266DE1359368A0A813856817B /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; + 3426C360D3C4577EEE2921BB9B5D80D9 /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; 344455418677B550C102ADC52DFCAA76 /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; - 3448FC55C8E82FA0CDC44861D2A94718 /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; + 344FFFF0EFAD313B31C53816933583FA /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; 3455EB917ECE0988D4BC9BB519933A28 /* EventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBase.cpp; path = folly/io/async/EventBase.cpp; sourceTree = ""; }; 3478AEF60CF975B80483F24893ED01A6 /* SKYogaKitHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKYogaKitHelper.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKYogaKitHelper.h; sourceTree = ""; }; - 3481A38292488F28E5A6CF01D5EA7CCE /* RNFirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestore.h; sourceTree = ""; }; - 3489CB37C9B3ACDD44CF38EA4DD561B0 /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; + 3487E67E5F20B774B21BD81418EA878A /* RNFirebasePerformance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebasePerformance.h; sourceTree = ""; }; + 348A822DF6D38054DCE41F06CA6513B5 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; 348DA93620B968E86B2258E7BF32AFA7 /* buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = src/event2/buffer.h; sourceTree = ""; }; 34A05F256E0E3B229BB0FAB0D94BC1BE /* OpenSSLCertUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLCertUtils.cpp; path = folly/ssl/OpenSSLCertUtils.cpp; sourceTree = ""; }; - 34AE55DEA5FFA61EFF3FEC80D5A8FD8D /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; - 34B9077B77809D6B9B552D2BFA10F8C3 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; + 34A5BE7E358A31EA4B8857F91CC1EE5B /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; 34E4C5FF003511FCD5A7F6A2752F1FA7 /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = ""; }; 34E775840571C0EE3226EC1C1E0D2D89 /* SKViewDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKViewDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewDescriptor.h; sourceTree = ""; }; 34F3F080B4AB992EDEF5C1C466626A9F /* GULKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainUtils.h; path = GoogleUtilities/Environment/Public/GULKeychainUtils.h; sourceTree = ""; }; 34F6349B6EA9E379A7AA23DAA6383106 /* SharedMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SharedMutex.cpp; path = folly/SharedMutex.cpp; sourceTree = ""; }; + 34FCABCB381FAB48F9745EF9062FCBB6 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; 35078CE922A0A92EB3D0F127D9DE23A2 /* ScopedEventBaseThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopedEventBaseThread.h; path = folly/io/async/ScopedEventBaseThread.h; sourceTree = ""; }; 353EE6C33FEA1FBA2171E022A6BD897A /* F14MapFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14MapFallback.h; path = folly/container/detail/F14MapFallback.h; sourceTree = ""; }; 3541D06EB8C59BDE0027D1E6341BC285 /* DiscriminatedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtr.h; path = folly/DiscriminatedPtr.h; sourceTree = ""; }; - 35557C57F235E90EB2ACCFF11F014BE9 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; - 3556FDCD6800754D6B7E16B921BD577D /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; - 35690D5F90F8D260BD6751FC9BBF609F /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; + 355E8200E12BA361C536E2A803C8B61C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 3579C5645A59C212E9D4838934B24C7D /* TimeoutManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimeoutManager.cpp; path = folly/io/async/TimeoutManager.cpp; sourceTree = ""; }; 358C9E91962A56C204E62638347FA102 /* OpenSSL-Universal.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "OpenSSL-Universal.xcconfig"; sourceTree = ""; }; - 35C7E2D98FA30BBB9A085F507411C7CA /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; + 35909D4DCD6F551ADC49776A7E457BF5 /* RCTSettingsPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsPlugins.mm; sourceTree = ""; }; + 35B220BEB599AE465B0E206EF7C46BCD /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; 35E0D02970C5BB6EC2EFA5478256E115 /* DynamicBoundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicBoundedQueue.h; path = folly/concurrency/DynamicBoundedQueue.h; sourceTree = ""; }; + 35EA76CFBFCA0BCEA6A9A4F9254CB5B1 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; 35EEA45FA2DE8E285D43AE37CFA7AF4F /* ExceptionString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionString.h; path = folly/ExceptionString.h; sourceTree = ""; }; 3600814DD008F55BB46FDB23644C5EA2 /* Likely.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Likely.h; path = folly/Likely.h; sourceTree = ""; }; 362DCF91A55A56D69B0ECA55A973800F /* FrameFlags.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameFlags.h; path = rsocket/framing/FrameFlags.h; sourceTree = ""; }; - 366B857DB460F6EA175748F3CB9E520B /* ReactNativeKeyboardInput-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardInput-prefix.pch"; sourceTree = ""; }; - 3679A9C3EAA7E2A632E8B6689309FC57 /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; - 36A5BF922FAFED826AF8644C774A3DBC /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; - 36B1EA524695A5235642D338CFACE993 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = ""; }; + 3636FA4C4B3FCEB1E89A14123DCDA355 /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = ""; }; + 3680A8C019E3DD1E548F640AEE20FAE3 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; + 3691716083B7244CAF480AAE485DAF4A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 369ADF9B197315DB3178B1EE2554EEEF /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; 36BC595DFF8CB1CB7E39F0DEF96F5EB1 /* Benchmarks.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Benchmarks.cpp; path = rsocket/benchmarks/Benchmarks.cpp; sourceTree = ""; }; 36C34866DBCF5BBE9CF21BCF066F4F09 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; + 36C58925EA5D16FB43CCBF7252CB3CB1 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; 36CA48016AC8CF0F80FC04D682B01F9C /* ScopedTraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopedTraceSection.h; path = folly/tracing/ScopedTraceSection.h; sourceTree = ""; }; 36E87CC503F95E7DCBCF552BC0BF04D6 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; + 36F050A574CB74D41B5E61D2016343A7 /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; 370F4C7AA1DEB0D3A3169588D360A9F8 /* FutureSplitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureSplitter.h; path = folly/futures/FutureSplitter.h; sourceTree = ""; }; - 373D9CFD1D5D8E68722A9BF8BA08B629 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; + 3715501AADC5E79F4B31BF1A441E7E86 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; + 37187EBD3E6EA5CF062475D498E45DF1 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; + 3722D48DE6A5E5A23A9C0ECDCB093EEA /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; + 37388F09D65D14D696B8377C74230141 /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = ""; }; 3754E206186745C3D9A8EE51218F5A5E /* StaticSingletonManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StaticSingletonManager.cpp; path = folly/detail/StaticSingletonManager.cpp; sourceTree = ""; }; 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-cxxreact.a"; path = "libReact-cxxreact.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 375C920EA998F832EAB1C920B324F461 /* JitsiMeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JitsiMeet.framework; path = Frameworks/JitsiMeet.framework; sourceTree = ""; }; - 378045A1235160477787871E19B23164 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; + 3768DB93A674CEB594084955234EB379 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; + 3787ADD5B85BFCBF237271CE99BDF0B5 /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; 37A89F466422593989BBA494562789F4 /* yuv_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips_dsp_r2.c; path = src/dsp/yuv_mips_dsp_r2.c; sourceTree = ""; }; 37ABC434552931F0A595FD484E5C22E0 /* Flipper-RSocket.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-RSocket.xcconfig"; sourceTree = ""; }; - 37B4ECBC815DD0545E6E71B8A58F910B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 37E2873581DB11877516F8501B3EABDC /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; - 3807015D1473BCE97EBCD824F4768D95 /* UMAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppLoaderProvider.h; path = UMAppLoader/UMAppLoaderProvider.h; sourceTree = ""; }; - 381E485B872E78BA9520875768779D42 /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; + 3807D5E58D3562F760AA950C7D9C01BB /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; + 3823BD387F680D5BE6028A690B106A45 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; + 3823CA8454E02634998A9FF85092F39E /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; 38398CBE1093B9B3DBD3232473146B9C /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = ""; }; 385A850319001F2BE3E12C09663F7280 /* SDWebImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageWebPCoder.h; path = SDWebImageWebPCoder/Module/SDWebImageWebPCoder.h; sourceTree = ""; }; 385FACEA2E38248F7771BF71AB6219EF /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; - 3866A25D361D738C3C4146B8EEECEC71 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; + 386E08F1F975CD57708C88F7645893B0 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 38AEF6ACC52C9691E3BB584B952EB817 /* RNCMaskedView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCMaskedView-dummy.m"; sourceTree = ""; }; + 38C6AAE40AF35792D982A16172D5C4BD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 38C6B5F5057A29AECC758D204F8E4B02 /* GCDAsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncSocket.h; path = Source/GCD/GCDAsyncSocket.h; sourceTree = ""; }; 38E81F4118D306076092074303DE64B1 /* lossless.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless.h; path = src/dsp/lossless.h; sourceTree = ""; }; - 38EE6352FEB572021F497970361E22E2 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; 38F542AA63759451E14BE2891CE36907 /* SDWebImageWebPCoder-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImageWebPCoder-prefix.pch"; sourceTree = ""; }; 391809D6099DBCF7ED4F67B5CF7C077B /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; - 391FA89E4A62EA22768FB6CA3B8C06A5 /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; 3922B2324DFA23B70E7FBBBF971AD437 /* tree_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_dec.c; path = src/dec/tree_dec.c; sourceTree = ""; }; - 393719E8E07E42AA1712335F0D76BD52 /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; - 3938FC31FF56249B4E10A15443534921 /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; 395E95C403AF67A9659CB016D77A3436 /* HazptrThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = HazptrThreadPoolExecutor.cpp; path = folly/synchronization/HazptrThreadPoolExecutor.cpp; sourceTree = ""; }; + 396E0A3EB709DC0F34B78634AE2ABF04 /* RCTClipboard.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTClipboard.mm; sourceTree = ""; }; 39775A8C0155C941E8CC5EAA9FBB4C16 /* PTUSBHub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTUSBHub.h; path = peertalk/PTUSBHub.h; sourceTree = ""; }; 397DC933BD2F2B41EC3696740DDA1F75 /* muxread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxread.c; path = src/mux/muxread.c; sourceTree = ""; }; 399409442F56DEC163C87052645635DC /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GULLoggerLevel.h; sourceTree = ""; }; 39C7AED29148A1FB6CBF9BBE2AFB58B5 /* cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_enc.c; path = src/enc/cost_enc.c; sourceTree = ""; }; 39D08AE05367AED5E02CBD69FBEBDA5B /* CertificateUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CertificateUtils.cpp; path = xplat/Flipper/CertificateUtils.cpp; sourceTree = ""; }; 39EFE1454B4E804D8C66C8ED2B014708 /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = CoreOnly/Sources/Firebase.h; sourceTree = ""; }; - 3A3741B86AFDBCB513EABA7C00306FB0 /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; - 3A6C91F2959D078E7D6060F10431C3E5 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; - 3A6D3E35BECB150CD5F980483BC52243 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; - 3A8479C700A99D42A45C19893F8A5857 /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; - 3A958F3EA31FFEE89B58963F03BF74DF /* RNFirebaseUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseUtil.h; path = RNFirebase/RNFirebaseUtil.h; sourceTree = ""; }; - 3AC56F9DA9CF3A8DD38C1913E720E0D7 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; + 3A05D390D1B6AD818301B94AC2A41B07 /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; + 3A0F5AAA833DA71DA10BB80D25011C40 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; + 3A391F94EF7B73025F56FE30F4ABF580 /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; + 3A6338FFA1BF9B037B6F0C6519132F1A /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; + 3AB1F71D319813D2CCEF3F7688B599E8 /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; 3AD89021B169E25E5255658335D92B54 /* bio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bio.h; path = ios/include/openssl/bio.h; sourceTree = ""; }; - 3AE71AD5EB998140818D614EAAB05D84 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; + 3AE883FCB4846DF697DDDB8421B46ADA /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 3AF5CF3DD0E1703391C4049B4A016680 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; 3B25D029817EA978A309499F929477CB /* GMock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMock.h; path = folly/portability/GMock.h; sourceTree = ""; }; 3B2E2FAE979095438F3921A484FF5914 /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = ""; }; - 3B31BEBB5858E81C44FEE36887BB30D4 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; - 3B3521A9FE101B163F2C9A187BD1E7E3 /* RNFirebaseNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseNotifications.m; sourceTree = ""; }; + 3B2FE81DE54705108E3EB6DE232E2703 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 3B38136BE7F825000980BF45DD6B49CD /* FlowableObserveOnOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableObserveOnOperator.h; path = yarpl/flowable/FlowableObserveOnOperator.h; sourceTree = ""; }; - 3B47F771593D230817BD77F43EE081FC /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; - 3B4A3049C0EB886C67137CBFFD354348 /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; + 3B4084267BA475FDDEB44C39D4B8A9F2 /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; 3B526A91B07206C623733F489B2415BB /* rsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rsa.h; path = ios/include/openssl/rsa.h; sourceTree = ""; }; 3B57D3294265E219668F64D7A40FC3DA /* ThreadedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedExecutor.h; path = folly/executors/ThreadedExecutor.h; sourceTree = ""; }; + 3B5FFECD1A6CEB423DF95FD048E5BB70 /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = ""; }; 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3B65CB9B6DCD893501BDCF1DE7BA926C /* libRNAudio.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNAudio.a; path = libRNAudio.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 3B64F65DFD30A54EA94C0DFA2040729E /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; 3B661D63CB8E4F265BC5AAFEBAB482A6 /* KeepaliveTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = KeepaliveTimer.cpp; path = rsocket/internal/KeepaliveTimer.cpp; sourceTree = ""; }; 3B832C63D25434FE443A3C81F86AD4F7 /* filters_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filters_utils.h; path = src/utils/filters_utils.h; sourceTree = ""; }; + 3B8976E67046A116016EDBC34911E96C /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; 3B959778F5883A6A16C96D03C7B7874A /* EmitterFlowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EmitterFlowable.h; path = yarpl/flowable/EmitterFlowable.h; sourceTree = ""; }; + 3B9E5948B94396533D5049CF381198E2 /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; 3BAA4C10B3A9110764841A16FFE09690 /* kssl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = kssl.h; path = ios/include/openssl/kssl.h; sourceTree = ""; }; - 3BCE74587D3EB3186469314D0C81FEDB /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; - 3BD7115DD0B67CF8A67D86E8BC7DA72E /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; 3BD9328209611FF1811B056BE8AC0384 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; - 3BF7FCBDBE58FF824E55296C47D01FB9 /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = ""; }; 3C0174E7A6077176C3B561C76A3A50C7 /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = ""; }; - 3C06A74260BEBB5976EC38B84C16A54A /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = ""; }; - 3C0C031D54483C4716ECA6D731C239F4 /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; - 3C26224BFC9F7CAF1BAA53D76D222B62 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; - 3C2FCFF1B74797ED46F81119F1ACFE14 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; + 3C0CD453EF11076459D3E53CB02983A2 /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; 3C3954DD83E601BA4029D3440FDD3365 /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULApplication.h; sourceTree = ""; }; 3C3C07C9519DAD395D84577B2349F5FD /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = FirebaseCore/Sources/Public/FIROptions.h; sourceTree = ""; }; 3C66CD3BB081E6B8F5FF09E729538BCD /* BaselinesTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BaselinesTcp.cpp; path = rsocket/benchmarks/BaselinesTcp.cpp; sourceTree = ""; }; - 3C88B7C68A22A41BF671FF5473A7AC4C /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; + 3C74601AD5B32835B04C195C2071CA08 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; + 3C7A6954C569327CA18E71E12127352E /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; + 3C91FD8A4DE74D4BA113984DFE51F805 /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3CBC29214A35D70A6460363696F3A412 /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = ""; }; + 3CC05D15E4FBC13017DC21AC3516AB05 /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; 3CE034C6B186B447C39072B20294DFD2 /* dec_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips32.c; path = src/dsp/dec_mips32.c; sourceTree = ""; }; + 3CE15148AE76E3ECA964846475CEC007 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; 3CE861D402B237A53DD459BB593E2C81 /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; - 3CFD4E37FCB41DFC0E9A17BFA73CCD48 /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; + 3D001260DEACA52463C7126A622A8C1E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 3D02598A0900902A1CF01D1AE846AFDD /* InitThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InitThreadFactory.h; path = folly/executors/thread_factory/InitThreadFactory.h; sourceTree = ""; }; 3D05F90C02C4C146D38A1263DD93B325 /* IntrusiveList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IntrusiveList.h; path = folly/IntrusiveList.h; sourceTree = ""; }; - 3D0EC160F40518C6771B030C1BB9FE75 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; 3D2E783E2A548CA0579D5CE081E9DD3E /* ResumeIdentificationToken.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ResumeIdentificationToken.cpp; path = rsocket/framing/ResumeIdentificationToken.cpp; sourceTree = ""; }; 3D434058588DC6E842D3D280DCB00912 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; - 3D4D955BD35DCD869F66D0B9054109D3 /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; - 3D90C5DD717032ADDD6AA5FA6A1DA9E0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 3D6EA589126F31CF5869987B619AB175 /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; + 3D776BE09C723AE22C0969BB41D621A3 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; 3DA146C09B7AB2F2DCFD5F46F31DEB53 /* SKHighlightOverlay.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKHighlightOverlay.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitHighlightOverlay/SKHighlightOverlay.mm; sourceTree = ""; }; - 3DC6A673372926D61D8997915CCE6D97 /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "RNImageCropPicker-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; - 3DFBAF76F2517CC481FBA77F96333C94 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = apple/RNCWKProcessPoolManager.h; sourceTree = ""; }; - 3DFD64EA055EB18942E3F17304F94DDE /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3E0327631D614F964926C116CE2D0667 /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; 3E2A8BDD5B43E8C53B1B17CAB035C90C /* FireAndForgetBasedFlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FireAndForgetBasedFlipperResponder.h; path = xplat/Flipper/FireAndForgetBasedFlipperResponder.h; sourceTree = ""; }; 3E422E47E3BB57CAB5AC2E7F81C8B6A9 /* rescaler_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips_dsp_r2.c; path = src/dsp/rescaler_mips_dsp_r2.c; sourceTree = ""; }; - 3E43154BEEBFE6BDFF52BFF59F2F5CA1 /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; + 3E4ABDEC2C13ED3F5E92A40AEF18AB0C /* RNCSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewManager.m; path = ios/SafeAreaView/RNCSafeAreaViewManager.m; sourceTree = ""; }; 3E5A42DDAF903A1C93C1B4A0C3A84B6B /* AsyncSSLSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSSLSocket.cpp; path = folly/io/async/AsyncSSLSocket.cpp; sourceTree = ""; }; - 3E5B2EF96696FDE275E71309F9EABDF1 /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; 3E60978F54BEFC76D758C52F2DCE696B /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; + 3E706780438019BAC0624C99374DFAB0 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; 3E72A96C3E51340E4B917875C909221D /* ThreadWheelTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeper.h; path = folly/futures/ThreadWheelTimekeeper.h; sourceTree = ""; }; - 3E739FFFAF59E0686A65318682F53F97 /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; + 3E849D8C7E504EE5598FEF4AFAEB654D /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; + 3E88C1639E456C9CF45039744B34B73A /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = apple/RNCWKProcessPoolManager.m; sourceTree = ""; }; + 3EA59C8E8F8FD565FBB99D325DA6D0A4 /* ReactNativeART.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.xcconfig; sourceTree = ""; }; 3ECEA23C3832F940BD691FAEE3B87476 /* FLEXNetworkRecorder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXNetworkRecorder.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkRecorder.mm; sourceTree = ""; }; 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libBugsnagReactNative.a; path = libBugsnagReactNative.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3EF36CB287F7DB44B3568306B6A1ECA5 /* SKRequestInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKRequestInfo.m; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.m; sourceTree = ""; }; 3EF71BA9825407811D79C109B9096405 /* ExceptionWrapper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ExceptionWrapper.cpp; path = folly/ExceptionWrapper.cpp; sourceTree = ""; }; - 3F08A534E16C64957338A0CE5064E4C0 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; 3F0F42D8DE9C65D239BCC5002B2017DB /* Format.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Format.h; path = folly/Format.h; sourceTree = ""; }; - 3F26AD8F4F3D371230E2B519E3A584B8 /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; - 3F37C3569D69F6D9FE0DF0B78ABC8991 /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; 3F3DFEFF8AB18EB244F07350AC46618F /* Spin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Spin.h; path = folly/synchronization/detail/Spin.h; sourceTree = ""; }; - 3F3EABA8585CA3821A70440DE9644798 /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; - 3F580CE60F927001A6863759BDA2500C /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 3F6FCF94C80C1D5782D49CE8FF488110 /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; - 3F74F63D4500638E176854142E804CF0 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; + 3F4BD87F0484A8760DAAEC616E85E0FD /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; + 3F79F850B7497FD46240FFEC17889F85 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; 3F79F90715010468FF63C2788D4F3679 /* thread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread.h; path = src/event2/thread.h; sourceTree = ""; }; + 3F89E7C766676876642A532B7A7C4292 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; 3F9C8FDD1AE68A48A21FA0412E153E35 /* FlipperConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnection.h; path = xplat/Flipper/FlipperConnection.h; sourceTree = ""; }; - 3FA335B90F2FA11F4F3680BECA99C737 /* RCTView+SafeAreaCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTView+SafeAreaCompat.m"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.m"; sourceTree = ""; }; + 3F9D28FB8EBDC62B118CF9CF05C4D95F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 3FBAEB1D6479328FFAA044B920BC1017 /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = ""; }; - 3FD2C5A75B26AE120DA1A0C22A771FF4 /* RCTView+SafeAreaCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTView+SafeAreaCompat.h"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.h"; sourceTree = ""; }; 3FD7D48A89F4C89BE5FAC0AE983DC9A2 /* FrameTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameTransport.h; path = rsocket/framing/FrameTransport.h; sourceTree = ""; }; - 3FEC4E9A82D86777153BD8C0B53B45AF /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; 3FF6B9B2F80475BDAF9406B0C11AEB29 /* ocsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ocsp.h; path = ios/include/openssl/ocsp.h; sourceTree = ""; }; - 3FF7D4167A48ECE14628804DB78D760E /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; - 401979E8E4C19911C6E4F9B3742ED49A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 4032C4C557F3A1F04712FAE17E9EAF26 /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; + 4008584EA14A19429B1CE83D152BEBCD /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 401D62C0014073EBE5EE8D9AB2A42DDA /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; + 40290ECDB21D4E2C29524C89382485AB /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; 403827E274826CFF30F539519D193F30 /* UIImage+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+RSKImageCropper.m"; path = "RSKImageCropper/UIImage+RSKImageCropper.m"; sourceTree = ""; }; - 403F69E50B9F50E302A25797738D2E04 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; - 4049EA977C8B11EC8AB6CE994017B186 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; - 405FF0F93527FF8267B2465C55E555BA /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; + 403B97CA3C282DFD03D871C0B93C94C3 /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; + 405584AD39F2101E0DB76A9CFCEB13A8 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; + 4074950A1EF759EDFC43E7FFC54E10C9 /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; + 407C8C770C9C21DFCF80F3534305E497 /* RCTImageStoreManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageStoreManager.mm; sourceTree = ""; }; 4082D85A971AC99A76C09BAB6AAF6714 /* UICollectionView+SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionView+SKInvalidation.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UICollectionView+SKInvalidation.h"; sourceTree = ""; }; 408433CF1B7EA0B7FF2397A82A33AFEB /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; 4085FF73C7C30BADB2FBEF9BAAE48C10 /* libcrypto.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libcrypto.a; path = ios/lib/libcrypto.a; sourceTree = ""; }; 4088903476B95FE6DF28291572F20B82 /* Time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Time.h; path = folly/portability/Time.h; sourceTree = ""; }; - 40BA53CDF13B063CB38159B8F1FFF71A /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; + 40AC2AC3B6A4FC0AB286F040709123FE /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; 40BAFE338E7AB738B25B647E7368DB91 /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = FirebaseCore/Sources/Public/FIRLoggerLevel.h; sourceTree = ""; }; 40CD0F0863C85C21A8217DBF0AC3C4D0 /* filters_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_neon.c; path = src/dsp/filters_neon.c; sourceTree = ""; }; 40F59D5A484EB698DDFE890E2BFEB5DC /* NetworkSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetworkSocket.h; path = folly/net/NetworkSocket.h; sourceTree = ""; }; 410141CF3DACA5A1583864981B69968E /* ManualExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ManualExecutor.cpp; path = folly/executors/ManualExecutor.cpp; sourceTree = ""; }; - 41222C666A8F46E06A91673973BAA9B5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 41164767C0AD86E7E741BF2A15BFC977 /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; 412D48D731E53A5618B1DBB917CB8899 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; 412F3CC7709CF5225D74E43E35F39640 /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/Exception.h; sourceTree = ""; }; - 414461A82EA3444F6A5D1E74A7C041F8 /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; - 416154B7E09202C63484462EEC3E15F2 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; + 412FCE5B237E1D17DF34BCA16B90BC36 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; + 4138EDFF1D6B8CB144423BF576B3E152 /* RNFirebaseFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFunctions.h; sourceTree = ""; }; + 4159D63DA40AB47FC3FA88C36B339089 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; 4164EE003AFF094D680F7CE313560262 /* Fabric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fabric.h; path = iOS/Fabric.framework/Headers/Fabric.h; sourceTree = ""; }; + 4186C436DCEBB032D7176D3DCA9EA74A /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 41983F8D589C341916296E9E572A32A2 /* MallocImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallocImpl.h; path = folly/memory/detail/MallocImpl.h; sourceTree = ""; }; - 419D7F99EC80B8052540CD50BC3163FA /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; - 419ED541E249724B97BD0D0933226484 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAccessibilityManager.h; path = React/CoreModules/RCTAccessibilityManager.h; sourceTree = ""; }; - 41A197D6922541ADF732712A52AEC561 /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = ""; }; - 41FE7C4DC3FAC003F1B598A2B9F5C053 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; - 4201BE87D92B9946897F0B9935126CF7 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; + 41D15151FC10125BFAAF9639B1E786E8 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; 4207D75DF1458D3ACE11B078B04F1652 /* ThreadLocalDetail.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadLocalDetail.cpp; path = folly/detail/ThreadLocalDetail.cpp; sourceTree = ""; }; 42344ED6709C5B76F5BE76C36F1A379C /* F14Set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Set.h; path = folly/container/F14Set.h; sourceTree = ""; }; 423B63627875801FEB7E4ECA36A7EA84 /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; - 4242A7899DB4A39CA35B05A1C266409E /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; - 425595E475601471A5020B4C92A26954 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 425948E172F368C6A68D1CED6CBE3686 /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; 4277DB60D1EC8D61D0D72FA1F14F3D5D /* yuv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = yuv.h; path = src/dsp/yuv.h; sourceTree = ""; }; - 429EC9BDA101E3155E8BA23E62D9E72D /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; + 42844D184F4BC602A0E614A5974AC8B8 /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = ""; }; + 42898D998388A4D6F2990E7FB52CF585 /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; + 4293D99D9984C530013AF75B1D4B741A /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertManager.h; path = React/CoreModules/RCTAlertManager.h; sourceTree = ""; }; 42A215B9092D5B963166C1F6BB749044 /* HazptrObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrObj.h; path = folly/synchronization/HazptrObj.h; sourceTree = ""; }; - 42A510FC5C085CC40B04B6AB76649708 /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = apple/RNCWebView.m; sourceTree = ""; }; + 42AA672DF68A359D83BC2DA365764DBB /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; 42BF9AC1EF2FE819707D1E091F5FC121 /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/synchronization/MicroSpinLock.h; sourceTree = ""; }; 42CE874E597F53D2384D60904EAC671F /* opensslv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = opensslv.h; path = ios/include/openssl/opensslv.h; sourceTree = ""; }; - 42D90568CF9B3800373795CB9CAD8F84 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; + 42E328D9467A29FAEADF41946D086934 /* EXKeepAwake.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXKeepAwake.m; path = EXKeepAwake/EXKeepAwake.m; sourceTree = ""; }; 42F89E7F7223E6EE2A483ECECED9329B /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = ""; }; - 4335EF4928C61574AB47E7CD8B7BFA1B /* RNFirebaseAdMobInterstitial.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobInterstitial.m; sourceTree = ""; }; + 43080157BF6D81FCC098241CD1FAFCD9 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; + 4319E28705732D3B24EC2FA2C675FC59 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; 433622B6D6E6EA72C4501936123F1D6A /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Sources/Private/FIRLibrary.h; sourceTree = ""; }; + 434C89B7FF1C87A3657C1C43B3CB5CAA /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = ""; }; 434CE4BB3399591C2F9CA7319B700A25 /* modes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = modes.h; path = ios/include/openssl/modes.h; sourceTree = ""; }; 434DD67F0977965E950CE7EE6FF128BE /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Sources/Private/FIRComponent.h; sourceTree = ""; }; 43534F0D85442B9E619CF5E9D9F45B0F /* SaturatingSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SaturatingSemaphore.h; path = folly/synchronization/SaturatingSemaphore.h; sourceTree = ""; }; - 4369D81D63471C3982BABEBFC22901CD /* EXKeepAwake.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXKeepAwake.m; path = EXKeepAwake/EXKeepAwake.m; sourceTree = ""; }; - 436A2C1CF5C436FE19DEA09C716D9B49 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; + 43665162C9FC3B548258749A74D09AB8 /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; + 4367D6B59AE267081A0B5EC679BDFE4B /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; + 4372903EAE44EC1A1A49438432FF68AB /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; 43732A94F78C75F675A29E3EF54DD945 /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = SDWebImage/Private/SDAssociatedObject.m; sourceTree = ""; }; - 437CE74CA59C58F794EBC32E2CB8FC0E /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; - 437E9354DA6C66E56A1165795756265E /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; 438B1DE0E62A8B0F75F6556F9D3BAB54 /* iterator_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator_enc.c; path = src/enc/iterator_enc.c; sourceTree = ""; }; - 43B30801029C061FA6A7CB4004C37E50 /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; 43C961736240DE8782C3CEB40773DC64 /* ParallelMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ParallelMap-inl.h"; path = "folly/gen/ParallelMap-inl.h"; sourceTree = ""; }; + 43CAF30BB64826D5129049AA9370F37E /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSettings.h; path = React/CoreModules/RCTDevSettings.h; sourceTree = ""; }; + 43F95AD8EB203A4BF4297B8F95FA894A /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; 43FE403BE04AC4009034336C80A9B3A1 /* MemoryResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryResource.h; path = folly/memory/MemoryResource.h; sourceTree = ""; }; - 441F02D10BB61823144938EE3580E748 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; - 44273F4E9B42941C20D465C19E4081EB /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; + 4402E5C737E4EBD8BF9ACF3CB468000A /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; + 4430FA90A83C85CCF5163594CEFF18D2 /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = ""; }; 443289FF1C17B6682DA35AFA742DE759 /* FIRInstallationsSingleOperationPromiseCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsSingleOperationPromiseCache.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.h; sourceTree = ""; }; - 4442821F5922C2837AF490FF6733A42B /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; + 444786A2DCE9229A34D093CF3FD83827 /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; 444BA0CBD91918EB6F172BC4A1FDF2BB /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; - 447B8DCBF522A8F84954BC51ACD0569E /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; - 447D548BC3C3A6985F7B1265A736866A /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; + 4457043744BE9229F5CA40B3CF45C1EC /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; + 44861378DF4BF5BD8EBBE0C54AF388D4 /* EXKeepAwake.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXKeepAwake.h; path = EXKeepAwake/EXKeepAwake.h; sourceTree = ""; }; 448A21A3CB44AC4AD2A39C5D90D61041 /* Future.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Future.cpp; path = folly/futures/Future.cpp; sourceTree = ""; }; + 448E1CB7CAB9758499499DF95F4C1734 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; 44919622BD454671DB4D66170BABA29F /* alpha_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_dec.c; path = src/dec/alpha_dec.c; sourceTree = ""; }; - 44AF5B74897837122FCB1F6C88514382 /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; + 44A42F6DC91441E6C50439E4FCD80855 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; 44BF4DB7E982E0A4109C4C15028DF1D1 /* Tearable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Tearable.h; path = folly/synchronization/Tearable.h; sourceTree = ""; }; + 44C271289443856467C4CF8689CF7371 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 44C9DA7ACFA6487EF1D0040C2BBFA065 /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = apple/RNCWebViewManager.h; sourceTree = ""; }; + 44FA2E2BDFD4492C7DD867AEE0A192F6 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; 4500DCCD43CADD1527758DA5F848FC2B /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/ssl/Init.h; sourceTree = ""; }; + 452265926F4F1AD477B398E738D0A447 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; + 4532E14FEF0122CE6E39807825414AF4 /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; 456318FB0B8675792A19156602488932 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/gen/String.h; sourceTree = ""; }; 4570B2791DCDB681C6884144EDF39C85 /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; 457ABA7722CF7E4B51B0F0B3990BACA1 /* ssim_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim_sse2.c; path = src/dsp/ssim_sse2.c; sourceTree = ""; }; 458F564036F6CE604B89D8C515B85152 /* SysResource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysResource.h; path = folly/portability/SysResource.h; sourceTree = ""; }; 459327D88106B828E8FED49069C1B8DB /* GlobalShutdownSocketSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GlobalShutdownSocketSet.cpp; path = folly/io/GlobalShutdownSocketSet.cpp; sourceTree = ""; }; - 459E720AF3048001A28D86AB1813580C /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; - 45B3F54749A87CE4A5D8040256402A95 /* UMModuleRegistryHolderReactModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryHolderReactModule.m; sourceTree = ""; }; + 459D82871612907F6D894DC813FB4044 /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 45D00F8D02BC30C9CD3C92F08AA8B19D /* yuv_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse41.c; path = src/dsp/yuv_sse41.c; sourceTree = ""; }; 45D1B3F889FBAF209826646F25972B3E /* GCDAsyncUdpSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncUdpSocket.m; path = Source/GCD/GCDAsyncUdpSocket.m; sourceTree = ""; }; - 45E343BF066A1B734C22DAC9C8A99AFF /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; - 45E52094466A02ABEAB86B29FE43D4F0 /* UMPermissionsInterface-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMPermissionsInterface-prefix.pch"; sourceTree = ""; }; + 45D4F19D68EAD5B9FB0746230FBE5A03 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; + 45E6804A62ABB5756238C59901F264E6 /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; 45F0F2DCFFE7E9486B1F265805F680CB /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Private/GULNetworkURLSession.h; sourceTree = ""; }; - 45F7D27CBCB40E8F77D9ABC84E89A8B7 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; - 46043EA22750F5C014FAC7118BBA397B /* RCTConvert+UIBackgroundFetchResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+UIBackgroundFetchResult.m"; sourceTree = ""; }; - 46138D88D9089B325DB537848E0BD935 /* EXLocalAuthentication.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.xcconfig; sourceTree = ""; }; - 461A9A49911068228783AD7F9A834FE9 /* RNCAsyncStorage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCAsyncStorage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4618477813FDE649A3245EF154BD7355 /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = ""; }; + 461C2A4C9BE1D8C155274B9CBE0CF413 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; 463444A762A6DD6F36C8B8129303E5E8 /* FLEXUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXUtility.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXUtility.h; sourceTree = ""; }; + 463F245DA6911B939013A87A485C003E /* RCTImageLoaderWithAttributionProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderWithAttributionProtocol.h; path = Libraries/Image/RCTImageLoaderWithAttributionProtocol.h; sourceTree = ""; }; 46427E3D983747630117EDCE331946B1 /* Try.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Try.h; path = folly/Try.h; sourceTree = ""; }; 466D597AD1459F3BC853D24ED8127E57 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; - 46726F35FDD4FA684D6C10085DD089D1 /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; - 468376E377086F72089C0879AD2F764F /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; + 467D30BBBCF05A268C5376F1447E6934 /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; 468722DA6A5F7BF2065C3337128D6C37 /* RSKInternalUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKInternalUtility.h; path = RSKImageCropper/RSKInternalUtility.h; sourceTree = ""; }; 468D763FD715BA65BBA48C21E8A5C2E6 /* dsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsp.h; path = src/dsp/dsp.h; sourceTree = ""; }; - 469614418673ECF5A39C6A40E4EAE2F4 /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = ""; }; - 469DD77831E65227AA6C84B6C2B2AC01 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDeviceInfo.h; path = React/CoreModules/RCTDeviceInfo.h; sourceTree = ""; }; - 46CDFD5D6F50620F9E7601E85A37F8BE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 46CBB8B9186B4301E06887D86D332927 /* RCTSettingsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsManager.mm; sourceTree = ""; }; + 46D1F7CE56719D6DFEDCFB327CB81F39 /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; 46ECEE1F1FB8E769F87814B37E02C7DF /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; - 4701A56E6E6454DF97BC15234A739DF5 /* EXLocalAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocalAuthentication.h; path = EXLocalAuthentication/EXLocalAuthentication.h; sourceTree = ""; }; - 47334D1C0A25C8B95A919986395B4E4F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 47305AF8A60819F79AFAC0FF82EEF17A /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; 47493263C20295178AF58DD9216ABC8B /* Answers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Answers.h; path = iOS/Crashlytics.framework/Headers/Answers.h; sourceTree = ""; }; - 474A87575CEA38A9E52970DFF7AEAB43 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; - 474B6F3D8B930EFEBD3F53CEF5115FDE /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; + 475388A84E3E6B31BD582C504D03B150 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 4767264FEFC132643C5311D5096788E0 /* lossless_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_mips_dsp_r2.c; path = src/dsp/lossless_mips_dsp_r2.c; sourceTree = ""; }; + 47800D3AF599458DC4ECF66DCCB1C520 /* RNCSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaShadowView.m; path = ios/SafeAreaView/RNCSafeAreaShadowView.m; sourceTree = ""; }; 478B71F6F87C9F9BA4F0B8BF8CAB0621 /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = ""; }; + 478E386D30A14CBBB022251D54498E83 /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; 478FF91049F877DC033DD166C1CD7FD4 /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/Math.h; sourceTree = ""; }; - 47BB49A7A88CDA666966A40A60D0472B /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; 47BE8606ADAA46F17D3BCB260DFDB92E /* FirebaseCoreDiagnosticsInterop.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnosticsInterop.xcconfig; sourceTree = ""; }; - 47CD048DB4EE75F4B79A8E53249E3012 /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = ""; }; - 47E106347AA5264F3182C3270E9B7D23 /* RNFirebaseLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseLinks.m; sourceTree = ""; }; - 47E8087BF3CD1AC8E9B10155B51E4636 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; 47E81847F376B9ED13D4052F3DB0D23B /* AsyncGeneratorShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncGeneratorShim.h; path = yarpl/flowable/AsyncGeneratorShim.h; sourceTree = ""; }; 48076F4983CE8007308CA27053AE9DE8 /* ScheduledFrameProcessor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledFrameProcessor.cpp; path = rsocket/framing/ScheduledFrameProcessor.cpp; sourceTree = ""; }; - 483014B9AD6D877783DD88E8D0B8AD11 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; - 483B294389BFC1A333B174C9EE7424D3 /* RCTConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConstants.m; sourceTree = ""; }; + 4839D1232C584CB3BF2D190E1849BFD6 /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; 48425DA2F01D82A20786D5E55E264A29 /* libreact-native-orientation-locker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-orientation-locker.a"; path = "libreact-native-orientation-locker.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 484F71D2F1FE4AFC1C9AA945E58569D6 /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; + 485C9CB260631FF75DD5F952D9F1A699 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; 485F6A036642CBC1CC852BE2FFBC1556 /* Indestructible.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Indestructible.h; path = folly/Indestructible.h; sourceTree = ""; }; - 4861260C10C20CC6A6F44A2E9425059B /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; 4867946AE62EB71973F0CB1AB2E3EDCD /* ThreadId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadId.h; path = folly/system/ThreadId.h; sourceTree = ""; }; - 487E3FEF367BF978805E546FCE64BCB2 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = ""; }; - 487E52295EA3E526B90F88CD0BCEB60E /* RNCAsyncStorage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCAsyncStorage-prefix.pch"; sourceTree = ""; }; + 4883947AD6457823408432CF2F2A9855 /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; 48904D0C22DA601116494CB6287EEC29 /* pem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pem.h; path = ios/include/openssl/pem.h; sourceTree = ""; }; - 489381BD88BB462EA51AC3844735251C /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; 4898F69B4C0225E1DBBCFD6566D34923 /* ScheduledRSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledRSocketResponder.h; path = rsocket/internal/ScheduledRSocketResponder.h; sourceTree = ""; }; 4899AB8F9FDD2B76CEB7644F2948E5F7 /* GULSceneDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler.h; path = GoogleUtilities/SceneDelegateSwizzler/Private/GULSceneDelegateSwizzler.h; sourceTree = ""; }; 48CA643B7C9426F0218624D4222E051D /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = ""; }; + 48DB6C436B370FD869740FF72B025DF1 /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; 4902177CAEFA56F1474E9DF0D3EC09A6 /* vp8i_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_enc.h; path = src/enc/vp8i_enc.h; sourceTree = ""; }; - 490FB0A3ECA38BAD6E8E1167DAD77439 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; - 492536DC8DE6C57B7A06571A85F557EA /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = ""; }; 4942470818BCDEBFF9C422A2948E9EC6 /* ColdResumeHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ColdResumeHandler.cpp; path = rsocket/ColdResumeHandler.cpp; sourceTree = ""; }; 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXImageLoader.a; path = libEXImageLoader.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 496AD1B8FEBB2277DA651398AA927A67 /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; + 497C408C0EA4A09EA737CA3E0118FD14 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; 4983905CDDD9456E7C6241113749DD9A /* FIRInstallationsHTTPError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsHTTPError.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.h; sourceTree = ""; }; 498C62399F6E7CF8C62EED33F4268C25 /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = ""; }; + 4994B85608AC3DB0BA8A8A09FE5DF3B1 /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; 499A35760253D34D71C2A85A14E3A98D /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; - 49C3ADC6C2C4519340F0B60372FFA46E /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; - 4A060F3AD7FF09042B53176DE4F6BE83 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; + 49A249D3AE6D13407A62273D21E34D82 /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = ""; }; + 49D6583A05D6F61B465A7E3328A8A728 /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; + 49F4B383D4E6610142893012462D0553 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; + 49FA0CAA013304A6C10DF62971F3D60E /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; + 4A03476F89471FF9FB363B50C696B367 /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; 4A0E338E3F9FE79FA92EFA49A9F69A57 /* FlipperKitNetworkPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperKitNetworkPlugin.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.mm; sourceTree = ""; }; - 4A2E59220BA4CF3ADCCEBFCF7E012A28 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; + 4A23350B887B3391EDC956A74EB776B1 /* RNCSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewLocalData.h; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.h; sourceTree = ""; }; + 4A332FA115349E45CC106357BD131397 /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; 4A393F8488B18D1536D2F02287AC8ECA /* SysMman.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysMman.cpp; path = folly/portability/SysMman.cpp; sourceTree = ""; }; - 4A3E2AF7B71E6955C3306EC63508E8A1 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 4A5B84D8D191ADDAEECEB3851DFBC0F6 /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; + 4A419ED3AA53ADFDD318A1FD760DA2F9 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; 4A65D79B71FF304B26CC65AE91E72C73 /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; - 4A997A07823FE6EF7EDD39E9C0C2A47D /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; + 4A8F8E09E4BC1F686F38F42378A9540F /* UMPermissionsInterface-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMPermissionsInterface-dummy.m"; sourceTree = ""; }; 4A9AA45C53DC651E33C82B0CED94DF2A /* Fcntl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fcntl.h; path = folly/portability/Fcntl.h; sourceTree = ""; }; 4A9B05892173B8527974566E9A4CCE60 /* GULSceneDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler_Private.h; path = GoogleUtilities/SceneDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h; sourceTree = ""; }; 4AA51B1BFE86323A2C6ACD6D95E5E6EF /* ReadMostlySharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReadMostlySharedPtr.h; path = folly/experimental/ReadMostlySharedPtr.h; sourceTree = ""; }; 4AAD5C30DAD4C5EB37A880FA003C77F1 /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; - 4ABD0D258526EBB5C3877A4E12802162 /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = ""; }; - 4AC9046FC579AB3098D2E25E77291FDA /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; - 4B27C3CD814DEC5AFF14FD42FD880936 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; + 4AB4319EDC95A50EF7679752214D6855 /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; + 4B06E08B8212F6FB80D7BE496DF65C45 /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; + 4B1F0EDFA1EEF54165909FDB5258B45E /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; 4B2D7E43FE3D242C173192E4B29C7C53 /* File-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "File-inl.h"; path = "folly/gen/File-inl.h"; sourceTree = ""; }; 4B413219C8EFD22BCBABB018CCD1A790 /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; - 4B43B1EA24ED075AF55FCD69F05A2398 /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; + 4B43AB6B72959D79FE328DCE641D6F3B /* 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; }; 4B43F51A5F2BF1C0DE5C049B0B83F385 /* ErrorCode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ErrorCode.cpp; path = rsocket/framing/ErrorCode.cpp; sourceTree = ""; }; + 4B511A3333DA3E14973E9A07B3522120 /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = ""; }; 4B6E1CDA83E69E0B0606D6714E7C127F /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; + 4B7E41733E3388B466DE1038FC8144EB /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4B8717805EEDF11C0D8EB246D0AF1BCF /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; + 4B9352897284F5E24FFEDF9755CCB430 /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; 4B99F1BB9A0883D3DBBA6E8D1B3723F9 /* ScopeGuard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScopeGuard.h; path = folly/ScopeGuard.h; sourceTree = ""; }; 4BA70FC21A5EAD3CD445F5B2FB389895 /* ui.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ui.h; path = ios/include/openssl/ui.h; sourceTree = ""; }; + 4BB89127F31A0E8631FEE39AAE27F683 /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; + 4BBA4194377461A3293AF5CCD87AA06D /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; 4BC46BC75E9FB785073AB403AED85863 /* AtomicHashArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashArray.h; path = folly/AtomicHashArray.h; sourceTree = ""; }; + 4BCAECBB2660E8B8E619101F8EAE543A /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; 4BD8055150F383E0BD14DF2F2AAAC255 /* ChecksumDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChecksumDetail.h; path = folly/hash/detail/ChecksumDetail.h; sourceTree = ""; }; - 4BDA53501828E67B064CE59174B180E7 /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; - 4BFC1547F97DE6C894000BF8E995FD4B /* EXKeepAwake-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXKeepAwake-prefix.pch"; sourceTree = ""; }; + 4BE866F82A76432AF11300FAF33461B2 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; 4C01A812FB78D4ED8C9A4A20A5F17386 /* FarmHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FarmHash.h; path = folly/hash/FarmHash.h; sourceTree = ""; }; 4C08D00A4D32EE9C330329164648195A /* F14SetFallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14SetFallback.h; path = folly/container/detail/F14SetFallback.h; sourceTree = ""; }; 4C1B737D6ACED98AC219B441356D8B69 /* SysMembarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysMembarrier.cpp; path = folly/portability/SysMembarrier.cpp; sourceTree = ""; }; 4C1DFB76D2A04133AF31E767C7B34973 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; + 4C277F93CB86935DA998421E5E116812 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; 4C51737D911AA7D429A0EAAAEA91B08A /* FIRDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDiagnosticsData.h; path = FirebaseCore/Sources/Private/FIRDiagnosticsData.h; sourceTree = ""; }; 4C6C4FAE5AC01C6228E1DEE8D1D7642E /* Throughput.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Throughput.h; path = rsocket/benchmarks/Throughput.h; sourceTree = ""; }; + 4C965283A9774572146C8181722B2879 /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; 4C9899F29C5C44523857D03C40AD583E /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; 4CA2CF9E9E5B72C55B713CB8F1E618C2 /* dtls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dtls1.h; path = ios/include/openssl/dtls1.h; sourceTree = ""; }; - 4CBCF12FDA5C1595B8125D84D561102E /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; - 4D044C0CFBC0C0821B5697ACDCF341F6 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; + 4CB3B65484B2C7F08B1E373BC74DB759 /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; + 4CBD05527E67FFE2EF6D8830D363818A /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; 4D1957EB80E04FA9CAFD53E047A2AB63 /* EventCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventCount.h; path = folly/experimental/EventCount.h; sourceTree = ""; }; - 4D1ED5503A25804AC17F6D80724CA290 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; - 4D20256C34296B182165D221419D1583 /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; 4D5AAED53C93242320D9C9745B18095E /* FIRInstallationsIIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.m; sourceTree = ""; }; 4D63835C447BE94F7312B8F41FCF8F9E /* TimedDrivableExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimedDrivableExecutor.cpp; path = folly/executors/TimedDrivableExecutor.cpp; sourceTree = ""; }; - 4D63AF2B14E3601110E5B672A7F1379D /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; 4D6B86EE0471035A8A3457810B19E9CA /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/Singleton.h; sourceTree = ""; }; 4D78469224A31FF4998FBF1572479254 /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = ""; }; 4D7AC696022DBE83B7A382DB0BB9E3B5 /* GDTCORUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadCoordinator.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadCoordinator.h; sourceTree = ""; }; - 4D8121F726CDAE6ADCD01AAC8172BAA9 /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; - 4D8A7791A3B0A0EEDC802FFFE8A8DA8F /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; 4D9AF9F4D617C3D191A7755710F262C0 /* CancelingSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancelingSubscriber.h; path = yarpl/flowable/CancelingSubscriber.h; sourceTree = ""; }; 4DFDEB74B14A09BB7A2CB49B451ADDD9 /* SKSwizzle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKSwizzle.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKSwizzle.h; sourceTree = ""; }; 4E0F7031B485AFA3CB77A34F11BB9B63 /* 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 = ""; }; + 4E1B8B6BB8BE1341F28885BE3316FFD7 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; + 4E22CD034AD21690010CB1D17D6C1ECB /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; + 4E23C1C01B395E92820B7E2797F5A561 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = ""; }; + 4E30F1C4217918056ADF25E6F7F6D9CA /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; 4E387E9A45644C2A715A8254E353E53F /* FrameTransportImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameTransportImpl.h; path = rsocket/framing/FrameTransportImpl.h; sourceTree = ""; }; 4E447142861A454EB90784A40F96FE18 /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = ""; }; - 4E4B781294FCC5535E344853261D102B /* RCTLogBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLogBox.h; path = React/CoreModules/RCTLogBox.h; sourceTree = ""; }; - 4E60F5AF0B10402EF09199C76684B61C /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; - 4E63113E3489FE47881A391D1384385D /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; + 4E6023936F6F9DBE9F2C12ABD20BC269 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; + 4E64AA61F9FB110E17E1BF13DF20F1A0 /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; + 4E713CE66EE8934531EA0EAE2871757A /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; 4E73DD428C053251E496A070FEE4D7D9 /* GDTCORTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTargets.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORTargets.h; sourceTree = ""; }; + 4E785381130F293A905F3147E42EA834 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; 4EAF7225D8D498E7D232AE1520E6CBD3 /* libRNFirebase.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFirebase.a; path = libRNFirebase.a; sourceTree = BUILT_PRODUCTS_DIR; }; 4EC49410B85855BFCABB034DE12E77CC /* GDTCORRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORRegistrar.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORRegistrar.m; sourceTree = ""; }; - 4ECC1133CD66CE037AC97303759C6DB0 /* RCTTiming.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTiming.mm; sourceTree = ""; }; + 4ED05566417600D4BA5679AC83552852 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXAV/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; 4EE560EEF8A1CB47F4F99B57FAE6174E /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = ""; }; + 4EEA1C3C779C1DCCD15C28A45646777F /* RNFirebaseFirestoreCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreCollectionReference.h; sourceTree = ""; }; 4F04E64E8FF9D2C52B118013BC6D9A64 /* lossless.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless.c; path = src/dsp/lossless.c; sourceTree = ""; }; 4F15483934B6E08E8CEBE2CC5A1B465B /* LockTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockTraits.h; path = folly/LockTraits.h; sourceTree = ""; }; - 4F19EBA29103DC2448E841002CC11C7A /* react-native-appearance.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-appearance.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4F1CEAE90D73118B2A6DEB48D6E4B301 /* RNAudio.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNAudio.xcconfig; sourceTree = ""; }; 4F3080E77E5BB8B52647E6EC7E3C8497 /* Dirent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Dirent.h; path = folly/portability/Dirent.h; sourceTree = ""; }; 4F308241786214F0EE80C61CA1F66623 /* ChannelResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChannelResponder.h; path = rsocket/statemachine/ChannelResponder.h; sourceTree = ""; }; + 4F3112315AC8239958E8D6F5FC897437 /* React-CoreModules.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.xcconfig"; sourceTree = ""; }; 4F3A22757CCF4CD86B5ABA167EC115F4 /* ChannelResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ChannelResponder.cpp; path = rsocket/statemachine/ChannelResponder.cpp; sourceTree = ""; }; 4F4307BEF84378FA36AA378BE6573FBE /* CLSLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSLogging.h; path = iOS/Crashlytics.framework/Headers/CLSLogging.h; sourceTree = ""; }; 4F4484D4F17FE49A7648C01E719C6E92 /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = ""; }; - 4F47506F7D233C846DE592A73AA5D7A2 /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; - 4F4BB708C72F52907ACD07FE64B773D5 /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = ""; }; - 4F672DB4D92F66DE84FD03E7D200DE65 /* UMAppLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMAppLoader-dummy.m"; sourceTree = ""; }; 4F754BA97D31F81C0D2C840E3F713C40 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; + 4F8BF425552C43041F07D5F815A12730 /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; 4F9B0C29282F358A364C74AE8CADE12A /* BasicTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BasicTransportCertificate.h; path = folly/io/async/ssl/BasicTransportCertificate.h; sourceTree = ""; }; - 4FA86B460D2D7CF23574D4E10D10EF7A /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; - 4FA994CE366C65719695EB6F013ABD30 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; 4FC0A2E4BF079EB4CC2101010D18944C /* txt_db.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = txt_db.h; path = ios/include/openssl/txt_db.h; sourceTree = ""; }; - 4FC16D49BF9944D48937049011C40DDB /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; 4FC7C9D569FFD5217EA66C11E24A7BCE /* FIRInstallationsLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsLogger.h; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.h; sourceTree = ""; }; - 4FD3C5F2BB3CAF7B49F02185D0568A7C /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; 4FDA96879D96070EB1983E98E655CBDC /* librn-fetch-blob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "librn-fetch-blob.a"; path = "librn-fetch-blob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 4FE0A388D1FAB6CE31BD44DD33632804 /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; 4FF2260DF2EE76044A040F7CDB9D71C1 /* Frame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Frame.h; path = rsocket/framing/Frame.h; sourceTree = ""; }; - 4FF2675301A1914717195CB49B661D97 /* RNFirebaseFirestoreDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreDocumentReference.h; sourceTree = ""; }; 4FF837E921214E57FAC00A022F950067 /* PTProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTProtocol.h; path = peertalk/PTProtocol.h; sourceTree = ""; }; - 4FFC168E8AAAFFC31E531B9F8EF58A2C /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; - 501D5082B219424D8DF417D923AA4F7E /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = ""; }; + 4FFCA561BAB6718919054DE61A4CD6DE /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; 501FB7ABD2FF16391752851CE4688092 /* TimerFD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFD.h; path = folly/experimental/TimerFD.h; sourceTree = ""; }; - 503EA93552579AE3F0C775B13E3732AB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 5048E399774757D1D19822C71300239E /* ManualTimekeeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualTimekeeper.h; path = folly/futures/ManualTimekeeper.h; sourceTree = ""; }; - 505C5615C155C91CD06C7CF8DEF8CD78 /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; - 50601530BA179B2CA3FA469BF548DC57 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; + 505053A2D26FE3E5F176EF91C7408E22 /* RNFastImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.xcconfig; sourceTree = ""; }; 5066B5D622B74FA829E74EC57A9A4A3D /* FIRInstallationsSingleOperationPromiseCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsSingleOperationPromiseCache.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.m; sourceTree = ""; }; 508931DD0D3167182E0C7EB5A34D206E /* Base.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Base.h; path = folly/gen/Base.h; sourceTree = ""; }; 508E3344833774F5D374394A9E2D6D68 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; - 50A93D4815E9A8F99BA52DDF7F226000 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; - 50B45D92C822BE77215EC7547CFF15C6 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 50CDFFC3E0F987E0B010AF0F7B6A0C0D /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; - 50D716E093D94B1B33877BCC9D547EB7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 50E233B1E5177E8DA53E63374F960DDF /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; - 50E502CB2B7A1EB5FBF82EFA8C9B927F /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; - 50E59B9EDF6B2622F3A594660EB04AF5 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + 50C1E4FECD032821D51F31AA95167B25 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; + 50C87FAE5DB6D1078ADD1D1EC9EA14A1 /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; 50E7DE2231C4C01E96F2EF0256C11ABD /* AsymmetricMemoryBarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsymmetricMemoryBarrier.cpp; path = folly/synchronization/AsymmetricMemoryBarrier.cpp; sourceTree = ""; }; - 50F4F2490052CAE69DE71527843602A5 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; - 50FD58598508C4D9DEF6F64BFFDE308E /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; + 510CA58580B4D9AED440EDDFD03F5E09 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; 513AA54AD9587A3B06899E8AADC8E5D1 /* Parallel-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Parallel-inl.h"; path = "folly/gen/Parallel-inl.h"; sourceTree = ""; }; - 51441DAC4CCB0A6CE1CA2B3A3DFE8FFC /* RCTRedBoxSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxSetEnabled.h; sourceTree = ""; }; - 5144A3DB29D7509839A527B2C0690C0B /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; 516E8E98B631789DD4E1138D1F45C97A /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; - 51A6B5727D6DBC4C0896F3F90277D0E3 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; + 517F51778C47CDEB5931937E16D3072C /* 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; }; + 518FC7B3EC98C8D251F015B78D2761DE /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 519433B12338DE88625944378658C13C /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeART.a; path = libReactNativeART.a; sourceTree = BUILT_PRODUCTS_DIR; }; 51B989233D2DCFB9B2D977F11E269CF3 /* ScopedEventBaseThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopedEventBaseThread.cpp; path = folly/io/async/ScopedEventBaseThread.cpp; sourceTree = ""; }; - 51BA4E67C19A7D7F0B629B19C1B227F2 /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; + 51BC2C70407FE660DA8DCC9C94623F65 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; 51C3E2CF4182E8EF20FA41FCE1B1359C /* SocketAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SocketAddress.cpp; path = folly/SocketAddress.cpp; sourceTree = ""; }; 51CCC35D452C44CE4E6354148EF5F188 /* Preprocessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Preprocessor.h; path = folly/Preprocessor.h; sourceTree = ""; }; 51D1146DC010B29D45DD7B30147F197D /* FIRInstallationsIDController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIDController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.m; sourceTree = ""; }; - 51F0795B53F3F7136750F1F4752176FD /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; - 521AA54144A721F1FCE59D66407111DA /* RCTTypeSafety.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.xcconfig; sourceTree = ""; }; + 521CF97A86252ACD0DA65DB914A16C34 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; 5222202571D23C90EC14FF4444E812AD /* ThreadedExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadedExecutor.cpp; path = folly/executors/ThreadedExecutor.cpp; sourceTree = ""; }; - 524B0B734499A06C5A775B80572E1787 /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; + 522E690D4ABD7E5E39051161803A0237 /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; 52650D5184EB3D467B9553887EB46DAC /* JitsiMeetSDK.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JitsiMeetSDK.xcconfig; sourceTree = ""; }; - 529C3029FA0D10D8FA86294F3CBAB092 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXAV/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; - 52D02674CEFEA02DF36005B198EFE9FC /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 526516976CC7F4E76034F56C74AA7C44 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; + 5287B52A2E9759F609606CF11B2ABAB5 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; + 5294FB1006D3EC816EB96B3F50A7B860 /* UMPermissionsMethodsDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMPermissionsMethodsDelegate.m; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.m; sourceTree = ""; }; + 52993449D46219F4CB752405BFBB3E73 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; + 52D32E114667683B042418A11F2639B3 /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; + 52DAA1519B195D47CBAA5383B50E5A58 /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; 52E15219291B4AD1CBB4041F5220B7E9 /* UICollectionView+SKInvalidation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UICollectionView+SKInvalidation.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UICollectionView+SKInvalidation.mm"; sourceTree = ""; }; 52F9F955925687D141D53630BFEE5C36 /* StaticConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticConst.h; path = folly/lang/StaticConst.h; sourceTree = ""; }; - 52FA14C797DD21BCB477C6135376D908 /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; 52FCF98CEFF94C742080B6965D537AD0 /* 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; }; - 53053026D8C22321912DFDD101F6F9F3 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; - 530DADB2FB61BD3E084E3AC0FA61255A /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; 5364F369762F2D9A787AA4C0E3A83302 /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; 53651B34A56593ECD757F02DBF8481B3 /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; - 53735EFB9F05CB52643324CC9137DE1A /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; - 53827A1BAA34745F5753731158F1E88D /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; + 536D28DC70EB6ECB67D8BEF6081F12E7 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; 53874D6EBB1C2337463823F2596E32C1 /* AsyncTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTransport.h; path = folly/io/async/AsyncTransport.h; sourceTree = ""; }; 53A068B00CB30837397FF64FE68BEA95 /* Sse.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sse.h; path = folly/detail/Sse.h; sourceTree = ""; }; - 53C2EA867FAAF4242F4816A6E06D4685 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; - 53F09EABC9DB13F31C94C4D730AD53D8 /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; + 53C080B81E4DA7601E54FFD20BE475BA /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = ""; }; + 53CFF29DDED9BD457B2BE52D6C62F33E /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; 53F1E50015EBD43CF4A44AC38C915425 /* StampedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StampedPtr.h; path = folly/experimental/StampedPtr.h; sourceTree = ""; }; + 53F23C7C1FB440EE722DE3F9A867204C /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; + 53F6A46C79BC3E6E6368FC1EB8FC0CBF /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + 540A1F20D5A6249AA5AD6B23B89DFB6E /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; + 540B7131D177D35EEA3A087F3E86EEFC /* ReactNativeKeyboardTrackingView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardTrackingView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 540F25F5C89E7F63205430278E6B3C42 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; 5423FE419658ABF1C4299BB4D59D4F88 /* SDImageHEICCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoderInternal.h; path = SDWebImage/Private/SDImageHEICCoderInternal.h; sourceTree = ""; }; - 543203FB8D4208545E517A49207FDB26 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; + 542AFB0AB153C9A4E487708AA0006E9C /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; + 5431E84C7A831801A4D1933BA24BDBBF /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; 543DE3054E91774E4423D77DBBE6BD17 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; - 543EE479196945500F4F316FF197BD5A /* 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; }; 54401F61C3357D1E96C80C18C4E2DED0 /* ConsumerBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConsumerBase.cpp; path = rsocket/statemachine/ConsumerBase.cpp; sourceTree = ""; }; - 546950BF37FA3C1CC3E6F29E4B25EB69 /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; - 547E4D6E09F65BE8DEB5595A5D04DB00 /* RNFirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabase.h; sourceTree = ""; }; + 54417371CD77B107C35D9C690082A444 /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; + 5446D0A551E2B8148645C8C62A527ADC /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; + 547F3064DCFDF7833EBE18E14AA873EF /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; 5491F32F8F60ED50CE3102C164314364 /* SKNamed.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKNamed.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNamed.mm; sourceTree = ""; }; 549FE3EB49CE7968D8904A19CBB172AA /* GlobalExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GlobalExecutor.cpp; path = folly/executors/GlobalExecutor.cpp; sourceTree = ""; }; - 54AA020BD3FF830AE950170EBEB58E8A /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = ""; }; + 54A64C1E29470902B13F576BCF2459AD /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; 54C30ED4D431E2395CC82CD4339BF167 /* dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec.c; path = src/dsp/dec.c; sourceTree = ""; }; 54C7FDF8AB0C24C4635437749CA79C62 /* DecoratedAsyncTransportWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DecoratedAsyncTransportWrapper.h; path = folly/io/async/DecoratedAsyncTransportWrapper.h; sourceTree = ""; }; 54EBC6948C77C9B0D5184C24CFE72E60 /* GlobalExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalExecutor.h; path = folly/executors/GlobalExecutor.h; sourceTree = ""; }; - 55285077E38ED492DD98E9A9AFB8EB33 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; 5539AD89AEA9861EF1B99D011E04E6CF /* Libgen.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Libgen.cpp; path = folly/portability/Libgen.cpp; sourceTree = ""; }; - 5540E9A88E41B5FBCBD645E6BE4B9B72 /* UMAppLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMAppLoader-prefix.pch"; sourceTree = ""; }; 5546A82EA9B16B9A917F4317F783C207 /* tls1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tls1.h; path = ios/include/openssl/tls1.h; sourceTree = ""; }; - 5550464D5561100A4BAB8AE0084BF335 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; - 555F885B0D04FB0091104CA4361C6E81 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; + 554E6A74780C762E48B73EABD0C64CEE /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; 5565D0B0219F47A21C7CC94B6B3C3CD2 /* ThreadLocalDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocalDetail.h; path = folly/detail/ThreadLocalDetail.h; sourceTree = ""; }; - 556767749DE24538CB02EBA61C2DAA2F /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; - 5597149807C5CD9062AF0D8023D0B074 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; + 5581FFA6AF5B2D8C5F417E2A4E714CB2 /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; + 558C1BEF634D5456734E9049778CF45A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 5592AF6F09FDC47EEB44BAE0FFD8FF56 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 559974B33C84BD097B301DF7D8404708 /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; 55B1763AB3FE5ED01B658F1181FBF7F5 /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; 55B1C20B517E629D985B3B18258990B0 /* FKUserDefaultsSwizzleUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKUserDefaultsSwizzleUtility.m; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsSwizzleUtility.m; sourceTree = ""; }; - 55D0A10204E528F27BA1071BD8E43D9C /* RCTSettingsPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsPlugins.mm; sourceTree = ""; }; + 55BAFB6F4B064F5A6021FE4DC931F7FB /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; + 55C3D530396EE6508E27971DB8496D54 /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = ""; }; + 55CD13CF5E879E6A37D171DCBA4823CF /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; 55DA2DD30D165E94C2C29486587D8067 /* CString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CString.h; path = folly/lang/CString.h; sourceTree = ""; }; - 55DC61064D7A4D14AA291832CD233B1F /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; 55E6B2F05DCEA24E835E98078C3E4C42 /* GDTCOREventTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventTransformer.h; sourceTree = ""; }; - 56008A9DB03796D3639D33CDA5BD9263 /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = ""; }; - 562584E82F2BA44F023797AC4AEF56C4 /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; + 55E7F734212F1B8C723A64FA02A7D0B5 /* RCTUtilsUIOverride.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtilsUIOverride.h; sourceTree = ""; }; + 560412BB4BF1373CF752367FAA1A6790 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = ""; }; 562A1BC49C45FBEA1C44CF9D833ED9FE /* OpenSSLThreading.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLThreading.cpp; path = folly/ssl/detail/OpenSSLThreading.cpp; sourceTree = ""; }; - 564108603663D6E8FD3C576E9C82E0FE /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = ""; }; 564F7C149A5455FCF310C4282FE2FF50 /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = FirebaseCore/Sources/Private/FIRErrorCode.h; sourceTree = ""; }; - 564FA813A54C5B41E4AA514B0CE1DB19 /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; - 565BE9B8724E8F9DD645CFB25EFE6CA5 /* RCTImageLoaderWithAttributionProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderWithAttributionProtocol.h; path = Libraries/Image/RCTImageLoaderWithAttributionProtocol.h; sourceTree = ""; }; 566BDC3CA9E55B141F1F03BA37242126 /* YogaKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "YogaKit-dummy.m"; sourceTree = ""; }; - 569B2202C973C9A08DF9A19D4DEDE4B9 /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = ""; }; + 568105EBF52E3FD8054E3CFF600452B6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 56A237E6BCD357D07916D1B97DE90BA6 /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; 56A3089E1AF3ED6EF31C8F1B27D7E3FA /* SpookyHashV2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV2.h; path = folly/hash/SpookyHashV2.h; sourceTree = ""; }; + 56A6667B68AB72AE11F59C206EBC2909 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; 56ADD42358572A2B87D543D6BA6CA0FF /* UncaughtExceptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UncaughtExceptions.h; path = folly/lang/UncaughtExceptions.h; sourceTree = ""; }; - 56C9B7B55742024335719A8E9ABAD44B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 56CCBAA0FE762FCD9C06F386A3F1CA98 /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = ""; }; 56DFDE0F7096307BDD052E55BA03D153 /* SysSyscall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysSyscall.h; path = folly/portability/SysSyscall.h; sourceTree = ""; }; - 56EFD8A78E58DE590D240B9A06419AED /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = ""; }; + 56FB941582BED866CCE91B8D70707F87 /* EXImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXImageLoader.h; path = EXImageLoader/EXImageLoader.h; sourceTree = ""; }; 570029F8BCE61753E91796B10138DE8D /* filters.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters.c; path = src/dsp/filters.c; sourceTree = ""; }; + 571E674F3336AF09EB19B31663956F6C /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNCAsyncStorage.a; path = libRNCAsyncStorage.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 574D7400D4FA4995E1CA19A91291CB58 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; 57509420978B49C3330ECFF8B8EBF8E2 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; - 57533F6BD93D2DE4244B0735402B9DA4 /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; + 575E29E1FC4F2879378633DC426EA027 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTiming.h; path = React/CoreModules/RCTTiming.h; sourceTree = ""; }; + 576E53E2454A76334F048A3A84BE33BA /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; + 57753C3252FD2FABA5824B4C5240ECEB /* RCTDevMenu.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevMenu.mm; sourceTree = ""; }; 57784F65BD8985275C9A5F6E04C78FE7 /* Singleton-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Singleton-inl.h"; path = "folly/Singleton-inl.h"; sourceTree = ""; }; - 579AB1CB9E07D1EC28F83A7FE86F2DD6 /* 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; }; 579DC6D5908AC81B1E3A4C952192D04B /* FrameType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameType.h; path = rsocket/framing/FrameType.h; sourceTree = ""; }; 57B1BBC643E020C8DFA80AEB7F9E636A /* Pods-ShareRocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.debug.xcconfig"; sourceTree = ""; }; - 57BC2564DE7D58D34C118892BB94ED29 /* RNFirebaseLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseLinks.h; sourceTree = ""; }; + 57B883F45FD88207D49734A856377028 /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; 57BDF67B988839CC89CBE458C879E6B6 /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = ""; }; 57DCDD7BF6C1987F005B2362584030CA /* muxi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = muxi.h; path = src/mux/muxi.h; sourceTree = ""; }; 57E1116AD4989C13E56247AB3EF0B0FA /* GULKeychainStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULKeychainStorage.m; path = GoogleUtilities/Environment/SecureStorage/GULKeychainStorage.m; sourceTree = ""; }; - 57EB8B51C0ACBDB44AFD9D3D36D858E1 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; - 57F565A0716A8A2504C090CBEAD20E1D /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; - 57FB57EB684658B26EF51C068CED7380 /* NativeExpressComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeExpressComponent.h; sourceTree = ""; }; + 57E918A3B078DADAA04365A6EB5EA9D9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 580712ADE0DDE9601ED35B000EC802D6 /* libRSKImageCropper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRSKImageCropper.a; path = libRSKImageCropper.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 582B4B4EF40968FFBF3C53E67990F8E8 /* RNFirebaseAdMobBannerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobBannerManager.h; sourceTree = ""; }; - 58351C11CCD5FF39C4071FB4205A6F18 /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; + 5828C940F5FEEBA9FBFC12E7CD70EFF5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 5832AE1D8131530301A4288286DD3176 /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; + 5834A146A19C77147AEB1AA4C34C14F9 /* FBLazyVector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.xcconfig; sourceTree = ""; }; 584322C35BFF6658B17DED225C26017F /* FIRInstallationsAuthTokenResultInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResultInternal.h; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.h; sourceTree = ""; }; 585929899B30C1025E4A709195FC4CEA /* Uri.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Uri.h; path = folly/Uri.h; sourceTree = ""; }; 5860181AF8CBDC4D25825FD085F35C71 /* SKNodeDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKNodeDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNodeDescriptor.mm; sourceTree = ""; }; 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 58A7AA742BB72B9CC46855C6A063EB42 /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = ""; }; + 5884F439D63328671168CB50B24A2B0F /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; 58AFB9EF0F7EC114EBB0227EE16AF9BE /* Enumerate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Enumerate.h; path = folly/container/Enumerate.h; sourceTree = ""; }; - 58BD6E5AED675450ABB68C160C6386CD /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; + 58C3A125BF985FF63EE682904ADF9755 /* EXUserNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXUserNotificationPermissionRequester.h; sourceTree = ""; }; + 58C717B100AAD10D99A0B2368DF058EA /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; + 58CD11CB1197BEEEDAAC9286996D6D5A /* RNFirebaseCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseCrashlytics.m; sourceTree = ""; }; 58FA7CFB9960B64D469F5745D1A48216 /* vp8_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8_dec.c; path = src/dec/vp8_dec.c; sourceTree = ""; }; - 59138562FB292D9BF6D6DCF80210A029 /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; + 58FACB9EFB52B074361B88D23533E17C /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; + 59014AB8310FE69B8FAC4460318BA7FF /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; 592374A4AECA89B1BB68DE278A852A29 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; - 5925DB433330BD08AA33FABBF4FCA52E /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; - 594C6F33F1EC10518B8B4A0F2B753591 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; - 5978EB2DC09C2C72478F6CEEE0A63978 /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; - 5979A1FEA57DFC724A635015F53D1860 /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; - 598B021AE50CDB012A9AFF42DF032658 /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; - 598C6FCDFC1133042CCDACFFF06EBC6B /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; - 59915589514583DB857FDF711C887880 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; + 5936349F1BDF4B05BADDE3A2EDF5C793 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; + 5946B6702260C561B81B27169BF7B447 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; + 597B3EE2E270E2438269536C4EF1A4EE /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; 599970E94039218125B53C62427803DD /* ScheduledSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSubscription.h; path = rsocket/internal/ScheduledSubscription.h; sourceTree = ""; }; + 59B317BE7B6E6992FBF1E2760D5FC1B6 /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = ""; }; 59B552994943BC4F3821FC44D6AA93A7 /* FlipperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlugin.h; path = iOS/FlipperKit/FlipperPlugin.h; sourceTree = ""; }; - 59B84CA60CCBACB2094EC597E1D54171 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; 59D0AA3CB733B93E960AB827FF417B7B /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Sources/Private/FIRHeartbeatInfo.h; sourceTree = ""; }; + 59EA5FD29A858A36792BCF999ADACFDB /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; 5A1A5C915BDC8D51571EE0E49CE01324 /* GoogleUtilities-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-prefix.pch"; sourceTree = ""; }; + 5A2CA0802FCE6955DD507300B8328B1F /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; 5A2CE6670F1063CE769F4F38D99C6814 /* AsyncTimeout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncTimeout.cpp; path = folly/io/async/AsyncTimeout.cpp; sourceTree = ""; }; 5A4A6D9BE1A5F271A1EBB343B090BF4A /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Private/GULNetworkLoggerProtocol.h; sourceTree = ""; }; 5A9D28C1FE5235A48F4E83F0AA0C01AA /* PriorityLifoSemMPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityLifoSemMPMCQueue.h; path = folly/executors/task_queue/PriorityLifoSemMPMCQueue.h; sourceTree = ""; }; - 5AB135E598AEE7B5B14E3597613A98A4 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; - 5AC98D1BE9683B2CB2C454621F2280DD /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; - 5AD2B6D719ADA2E1D3B263FE4F910F46 /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; + 5A9DB80364CF202FBE54AC30880A387D /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; + 5AB3E45BA424F5C874A1658BD2FF6C55 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; + 5AD338F2C06887E2F1C96561BAE8D24C /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; 5AE3E2D34034CCBEFBE5A22102D9E078 /* Unit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unit.h; path = folly/Unit.h; sourceTree = ""; }; - 5AEF694E046418F4A639846BBCA2C17F /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; 5AF0F6DED104EACE28E659E12F1F0166 /* SoftRealTimeExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SoftRealTimeExecutor.h; path = folly/executors/SoftRealTimeExecutor.h; sourceTree = ""; }; 5AF33804C90B2F27596A938C6965F0D4 /* libwebp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libwebp-dummy.m"; sourceTree = ""; }; 5AFD5B0CD3DB6FE2ABBE27D0B45F4C5E /* Combine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Combine.h; path = folly/gen/Combine.h; sourceTree = ""; }; + 5B0320E6CC654DDB814551FBE9FEA448 /* RCTLinkingPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingPlugins.h; path = Libraries/LinkingIOS/RCTLinkingPlugins.h; sourceTree = ""; }; 5B07187600368D19AB68107BB7E39DED /* ScheduledFrameProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledFrameProcessor.h; path = rsocket/framing/ScheduledFrameProcessor.h; sourceTree = ""; }; - 5B1951C1771CD2415AA7C45609EAD28E /* RNFirebase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFirebase.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 5B3357A1CE67C0BF4AE31936A1BE6888 /* libYogaKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYogaKit.a; path = libYogaKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 5B3F7558270DE7DD2D98E22DE3FDD57E /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; - 5B413BE8228FDBB4B0C6C7C9FB61A6A3 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; - 5B4692F054A0876E2EE22CB02FCF1D54 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; + 5B402FDC73EC5523C99C0BC7B05A7B02 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; 5B50AA58A65EE4E7957C395C893954CD /* CacheLocality.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CacheLocality.cpp; path = folly/concurrency/CacheLocality.cpp; sourceTree = ""; }; + 5B66A87BE01399931A4DB29AB2E47E88 /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; 5B78C2054BD401323DBE0D3FF2ACD19E /* SDImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageWebPCoder.h; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.h; sourceTree = ""; }; 5B8D5C7B5F859A2D090F83B0D396D2DA /* des.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = des.h; path = ios/include/openssl/des.h; sourceTree = ""; }; - 5B9E1711916938B4550078E5CBE3AA79 /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; 5BA0A22B2CF6460059F6EF22F8A6E81B /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; - 5BAFBBE57DAE334A1168DBD0F4E64ACB /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = ""; }; + 5BBE3368DB226DB877914F70A20906B2 /* RCTAnimationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationPlugins.h; path = Libraries/NativeAnimation/RCTAnimationPlugins.h; sourceTree = ""; }; 5BC0AD4A9E6F7A208407E5570B8E8EE1 /* IOVec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOVec.h; path = folly/portability/IOVec.h; sourceTree = ""; }; 5BC5712BF038099E2747B83FE45D7F50 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; 5BC6222422A5D872EBEC5AE4557AA1FF /* VirtualEventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VirtualEventBase.h; path = folly/io/async/VirtualEventBase.h; sourceTree = ""; }; 5BD8BE2EBFD0D1839043AD8540CA84EF /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = ""; }; - 5BE507CE36D4C90FBA38F2E85F6EAAA3 /* CallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallInvoker.h; path = callinvoker/ReactCommon/CallInvoker.h; sourceTree = ""; }; 5BECAE76A3B465BA23A1C66051C5F853 /* TestSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestSubscriber.h; path = yarpl/flowable/TestSubscriber.h; sourceTree = ""; }; + 5BF6616A9D87037D1FF48647F33355AF /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 5BFE7F1F6FA0BEA225AE855A9EEFA10B /* FLEXNetworkRecorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkRecorder.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkRecorder.h; sourceTree = ""; }; 5C0381BB5E707395A18ECA335870AFC3 /* ssl2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl2.h; path = ios/include/openssl/ssl2.h; sourceTree = ""; }; 5C070EBE531AE402204E3CF9512505C8 /* HazptrHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrHolder.h; path = folly/synchronization/HazptrHolder.h; sourceTree = ""; }; 5C18EF6A845CD2B12573FD9E6ACDBA32 /* ssl23.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl23.h; path = ios/include/openssl/ssl23.h; sourceTree = ""; }; + 5C2B7EFB53DE779D6F2136B70AFAB9D4 /* 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; }; 5C496112AB5D4B2E1ABBB90DB4AB235E /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; 5C582724293C833125C4A1A2AA4CE4FA /* SpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpinLock.h; path = folly/SpinLock.h; sourceTree = ""; }; 5C5CFD76CBC6BBD47BCF0972E23E2004 /* IPAddressSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressSource.h; path = folly/detail/IPAddressSource.h; sourceTree = ""; }; 5C6CA8F62953BAEB0F8092434A7712E9 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; + 5C7524862A968BA3C7A17FA5522756C5 /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; 5C8CF24201B2DC334D3A02990C1D0DD5 /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; 5C8EC08DA57FEC621D53E2C37A998546 /* GDTCORFlatFileStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORFlatFileStorage.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORFlatFileStorage.h; sourceTree = ""; }; + 5CA91A8378C044CEC5CEAFE37300C81D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 5CAB9B80CD17812C2F3043711D2987F9 /* Flipper-RSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-RSocket-prefix.pch"; sourceTree = ""; }; 5CAECBD8555470A7F074F6AFB206F146 /* RSocketRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketRequester.h; path = rsocket/RSocketRequester.h; sourceTree = ""; }; - 5CC0F74BC3951272C9AE7D4668E950E9 /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; 5CC38ADB2846AE34F45CA010EF842901 /* PTPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTPrivate.h; path = peertalk/PTPrivate.h; sourceTree = ""; }; - 5CDDDB2FC493FE58DBE223EE05AD05F4 /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = ""; }; + 5CE336F5285669687BB841433D842282 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; + 5CFF810079ED974101746B6406EEC2A3 /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; + 5D00CA81827A82C81E011860C4AF806B /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; 5D074A7A0BCD845F052E82477A409415 /* Fabric.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Fabric.framework; path = iOS/Fabric.framework; sourceTree = ""; }; - 5D0933BD8EE387129928FBABEFA183BE /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 5D0CEE1C56BB79DE0C00C3EC17045BA0 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; - 5D1098524967543792A0E135B7C05633 /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; + 5D102934F54BC8E0CBADCE74F1F357CA /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; 5D25A04C7AECFBB3914686C7377373D8 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; - 5D2D1A48C5247A0B54FA16DBF05D106B /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; 5D4ECB528B2D76E0673537FA9E94FDCA /* Framer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Framer.h; path = rsocket/framing/Framer.h; sourceTree = ""; }; - 5D758ADE968A990B4698132F5A18CE57 /* EXImageLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXImageLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5D6DC0B213BF7B141237863B519BC9B7 /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = ""; }; + 5D76FEAA5F7428F3090F1F0705793F83 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; 5D7B43E2AE0DA3E677F16D0D6ECBFCC8 /* color_cache_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = color_cache_utils.c; path = src/utils/color_cache_utils.c; sourceTree = ""; }; + 5D84B5B0AED6D6EC1970C7EAFF91AF57 /* rn-fetch-blob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.xcconfig"; sourceTree = ""; }; 5DAE53859ED47C6A11187FF0D51E9DB7 /* AsyncSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSocket.cpp; path = folly/io/async/AsyncSocket.cpp; sourceTree = ""; }; - 5DAF4B359C47429B3B0D698854CA7E83 /* RCTUtilsUIOverride.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtilsUIOverride.h; sourceTree = ""; }; - 5DB50946D34C0843D5418E4DF571D536 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; + 5DB67D5B9B8762D82C91BE6B2C2B0F1A /* RCTVibrationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibrationPlugins.mm; sourceTree = ""; }; 5DBDD8C26B34485DB619FCD221D039F0 /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; + 5DCE17359F10A64A92CE82BA118A6C63 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; 5DE64BDBE1D2294310795EF2666011F9 /* libevent_extra.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent_extra.a; path = lib/libevent_extra.a; sourceTree = ""; }; 5DE8D35F978E4154DF11ED0D43CB1DFA /* ReentrantAllocator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ReentrantAllocator.cpp; path = folly/memory/ReentrantAllocator.cpp; sourceTree = ""; }; - 5DEBC18A46494601D218BB6CFF822423 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; + 5DEC3C1161906854769837FE3143B6EC /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; 5E0085519BAEB9908A5E6217FD030B48 /* Atomic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Atomic.h; path = folly/portability/Atomic.h; sourceTree = ""; }; 5E110A3A64EA74F01229A6D8918954B7 /* SlowFingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SlowFingerprint.h; path = folly/detail/SlowFingerprint.h; sourceTree = ""; }; 5E2315781F7CD76456E6007795F77ABC /* Frame.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Frame.cpp; path = rsocket/framing/Frame.cpp; sourceTree = ""; }; @@ -7288,9 +7236,11 @@ 5E360366BF27FDA8105101E74F33F934 /* Latch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Latch.h; path = rsocket/benchmarks/Latch.h; sourceTree = ""; }; 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = liblibwebp.a; path = liblibwebp.a; sourceTree = BUILT_PRODUCTS_DIR; }; 5E5618EABF16B6BE7F3023CBED9FF456 /* OpenSSLCertUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLCertUtils.h; path = folly/ssl/OpenSSLCertUtils.h; sourceTree = ""; }; - 5E79C9C256AF6B3FA26D8859642FD8E2 /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = ""; }; 5E7DDE91F9500DAA2030F5660BB183FF /* GDTCOREvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREvent.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREvent.m; sourceTree = ""; }; - 5E9D3EBF1958D478F2E1A4516BF26487 /* RCTNetworkPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkPlugins.h; path = Libraries/Network/RCTNetworkPlugins.h; sourceTree = ""; }; + 5E833EB9FF7A7EEDFD562CC1AD3F091B /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; + 5EA1AA7CEE6953D24970BB2C5DC96EF4 /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = ""; }; + 5EA48C1651EB9704917E0BD7AE78822D /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; + 5EB0253DA06DCDD17D12D4001B8C6E6A /* EXImageLoader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.xcconfig; sourceTree = ""; }; 5EBD7D64F48D5A37CCB258F80F759C95 /* EnvUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnvUtil.h; path = folly/experimental/EnvUtil.h; sourceTree = ""; }; 5EC4F58B0DE2BB4762E39FC0B88447AC /* FIRInstallationsAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResult.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsAuthTokenResult.h; sourceTree = ""; }; 5ED497064532BFAA36428BAFCC9D5222 /* EventBaseManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseManager.cpp; path = folly/io/async/EventBaseManager.cpp; sourceTree = ""; }; @@ -7299,656 +7249,661 @@ 5F3C161BE83097E80AB9684DB3F8A1CA /* AtomicUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUtils.h; path = folly/synchronization/detail/AtomicUtils.h; sourceTree = ""; }; 5F553972880C3A400C12E0D3D21C1A6E /* json_patch.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_patch.cpp; path = folly/json_patch.cpp; sourceTree = ""; }; 5F7B6D673F33A2DD3BD8ED538388A839 /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/Demangle.h; sourceTree = ""; }; + 5F8C663E5EDC2F553C2ED18EBC7DF4A5 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 5F91AB395D1656F85C58279DB4859FD9 /* lhash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lhash.h; path = ios/include/openssl/lhash.h; sourceTree = ""; }; 5FA06D199CC04C071D159F75EEB0F8D1 /* yuv_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_neon.c; path = src/dsp/yuv_neon.c; sourceTree = ""; }; - 5FD707FAB446B9FD7708C85ADB7EEE19 /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = ""; }; 5FFC7BEC01126D2D45B723A922A686D7 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Sources/Private/FIRAppInternal.h; sourceTree = ""; }; - 600E11526FC1B31D3900246187123E89 /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = ""; }; + 600E1DB9613D8158F92F6907BAB3D8AF /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; + 6019C343C84778B4FA07EF28A4C2F7F3 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; + 6019F4A967CF7F183D45D3DCB5D50BC1 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppState.h; path = React/CoreModules/RCTAppState.h; sourceTree = ""; }; + 601A8FC76CE8C72CC62955FBA0FDC6D2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 601EC67A5DFBEA9EF5A920BEAB9037A4 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; 60223630A540490757C88CD4BC763CE9 /* huffman_encode_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_encode_utils.c; path = src/utils/huffman_encode_utils.c; sourceTree = ""; }; 60449B27A12259B39C496269C8EFCFAD /* RSKImageCropViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageCropViewController.m; path = RSKImageCropper/RSKImageCropViewController.m; sourceTree = ""; }; - 60452327D46CD26998CD827F6F8E7B21 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; 604670516571B225E964B9ABE7EB5968 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/Hash.h; sourceTree = ""; }; - 604983AC2EFDD2D9B0108CF938E38A58 /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; - 6049C82BC2C47603E9076739B55CF121 /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; 604F918E26DCE54BC4597CCF44A5589F /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; 60550095E577D0A98614076646C46E63 /* format_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_constants.h; path = src/webp/format_constants.h; sourceTree = ""; }; - 60635D6B0CBD0F7C59C17DF1470E9A88 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; + 606053613276185A680CD0D43DD70AAA /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; 6085F2A7F13F2B19547527A44D7198E9 /* FIRInstallationsIIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDTokenStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.h; sourceTree = ""; }; - 608DB5CAABECC13DA111E0248582A04C /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; + 609DF8EF20C57D7BE928EABAE2F18E1C /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; 60C29C33923424EA722B44C2EEEF50A4 /* EventBaseBackendBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseBackendBase.cpp; path = folly/io/async/EventBaseBackendBase.cpp; sourceTree = ""; }; - 60C5527B609F93E18346725FD1B1F454 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; - 60FBFC75084DECB3CEC5950D42179801 /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; + 60C95598D2EA90865EACF0DDA11E73F5 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; + 60E65A93CB98B25001A6651D19F6D25D /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; + 60F910794D2AEF0D95487DBDFCBC9C1E /* RCTStatusBarManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTStatusBarManager.mm; sourceTree = ""; }; 60FF7FD7528AEF1B48986584185A487A /* ShutdownSocketSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ShutdownSocketSet.h; path = folly/io/ShutdownSocketSet.h; sourceTree = ""; }; 6103A99149FC9381E854472556E91AC6 /* TokenBucket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TokenBucket.h; path = folly/TokenBucket.h; sourceTree = ""; }; - 6109228AD003D537CE60FBA075433CAB /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; + 6106D7C1994AD20E5452355DDAB741F4 /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; 6129E1B1B4AFCC8CC28309986C0952DA /* RSKImageCropper.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RSKImageCropper.xcconfig; sourceTree = ""; }; 61383164C8977EA49DC60163A8512601 /* FlipperKitNetworkPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitNetworkPlugin.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.h; sourceTree = ""; }; - 617B59A4E91152675FA15196E979E7D4 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppState.h; path = React/CoreModules/RCTAppState.h; sourceTree = ""; }; - 61A59992915560BF800EF136C199BE56 /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; - 61A712C2DBA1BA55EA32DD1DE3CECA40 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; 61B88246C4A900BA197443CAB45F14FE /* Sse.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Sse.cpp; path = folly/detail/Sse.cpp; sourceTree = ""; }; 61B997809B2EF78B20C8B716EB9FC9C9 /* AsyncPipe.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncPipe.cpp; path = folly/io/async/AsyncPipe.cpp; sourceTree = ""; }; + 61BEE51AE3CAC5006678B55C26A7476D /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; 61C2419C4E20F84041A371C056FDD39B /* DeferFlowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeferFlowable.h; path = yarpl/flowable/DeferFlowable.h; sourceTree = ""; }; 61C2992A91BCC973E8283FE16D351969 /* GDTCORUploadPackage_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadPackage_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadPackage_Private.h; sourceTree = ""; }; + 61C69A1827D81E16BA3FDA45AC4C1D7D /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; + 621222848BBBC14CAC6EA0ED52150978 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; 621281BA3ACA98DDEE4378BC990EEF36 /* Subprocess.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Subprocess.cpp; path = folly/Subprocess.cpp; sourceTree = ""; }; + 62599D7EAB6F281DFC84A316E703B7FE /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; 626AD4468A7B3178C7FB17065BF68665 /* ProxyLockable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProxyLockable.h; path = folly/synchronization/detail/ProxyLockable.h; sourceTree = ""; }; 627254BAAADA6D360990561CA2616E52 /* GDTCORRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORRegistrar.h; sourceTree = ""; }; - 62AA18061B5817E5FE1A408600036362 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAsyncLocalStorage.h; path = React/CoreModules/RCTAsyncLocalStorage.h; sourceTree = ""; }; - 62ADE56762E9C113E092F71C61884D10 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; - 62BC3E74BA827A2EEF3D1A1840C389C1 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; - 63105F52D965E142E96F80DC3CF4FC18 /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; + 62759A446D1F8442C9A5345C330972CF /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; + 62A3C16D13320B0D87D2A85FC64106F2 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; + 62C5B9CD1A5834E16C15482BC493ED6E /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; 631CC48B9CD6ECAE17C232840A63B4F9 /* UIImage+WebP.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+WebP.h"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.h"; sourceTree = ""; }; - 633A906CE55E133E541EECD104AA1625 /* UMAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLoaderInterface.h; sourceTree = ""; }; 633B4F7B73EE964A790E6CF1C2682615 /* OpenSSLUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLUtils.h; path = folly/io/async/ssl/OpenSSLUtils.h; sourceTree = ""; }; - 635C8A490489A52B4F3B315065E607AC /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 635EEB1EA7D3D21225D4A9D0833916C4 /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleAppMeasurement.framework; path = Frameworks/GoogleAppMeasurement.framework; sourceTree = ""; }; + 6361DF430A1099881EB561100EB44D33 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; 63684F773F68086B7AFAAF0A6C831AFB /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; - 63A1581D25708EBDFC5772BEF67E7B5B /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; - 63A4E654F582CBCE2393A56FB247C076 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + 636EBE1DE0BA79E2D655D79CB735F05F /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = ""; }; + 63A575FBD3384F2AF8768F8207A29F95 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; + 63B04B3AD8A9E854F90EBA08B53C25F5 /* RCTRedBoxSetEnabled.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxSetEnabled.h; sourceTree = ""; }; + 63B765F41ACD23242058ED9F171363CD /* RNCMaskedView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCMaskedView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 63CEA449751789D314F90959BDE7A913 /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; 63DA260ADC6E41432919E15F5F76D429 /* RWSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RWSpinLock.h; path = folly/RWSpinLock.h; sourceTree = ""; }; 63F83E6A25D2FF254B453C191F615310 /* SKSearchResultNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKSearchResultNode.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKSearchResultNode.m; sourceTree = ""; }; 64013498C54D3FDC3F3E3051E481C81E /* TurnSequencer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurnSequencer.h; path = folly/detail/TurnSequencer.h; sourceTree = ""; }; 6414F9BABB4450A280B3232696EEECE0 /* UIView+SKInvalidation.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UIView+SKInvalidation.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIView+SKInvalidation.mm"; sourceTree = ""; }; - 6416EDE9EE7CA2789EEBA998ED56CFDB /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = ""; }; 64415099B48A04C24817DF97120535EF /* GlobalThreadPoolList.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GlobalThreadPoolList.cpp; path = folly/executors/GlobalThreadPoolList.cpp; sourceTree = ""; }; + 64450509CB1B3C9AED96F9ED63268D00 /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; 647D10C24327EA02C38729D823266A25 /* Future-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Future-inl.h"; path = "folly/futures/Future-inl.h"; sourceTree = ""; }; 64AC14C9AE85CBB22EC70D57BF398417 /* hmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hmac.h; path = ios/include/openssl/hmac.h; sourceTree = ""; }; 64B2B7D58EA6528FDE8E517CADDC63A1 /* HHWheelTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HHWheelTimer.h; path = folly/io/async/HHWheelTimer.h; sourceTree = ""; }; 64BBBE91D0AF7836061BF59939412153 /* StreamResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamResponder.h; path = rsocket/statemachine/StreamResponder.h; sourceTree = ""; }; + 64CBC7D750748F9F96DADA161A097832 /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; 64CFFDEDD3C1D8F8CCAC0F4DF2509B1C /* PublishProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PublishProcessor.h; path = yarpl/flowable/PublishProcessor.h; sourceTree = ""; }; - 64D2B610AE30090AFFD9BBDEDEF1E802 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; 64D59E994DDC3D265A32ED3A9AB7ACA2 /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = ""; }; - 64EAAA7D3E3B9EA2C22622919AB96085 /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; - 64F31E78BE2527B46F88180861AE8CF9 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; 64F4AD60856C32501C6F0BB036AE666A /* cpu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu.c; path = src/dsp/cpu.c; sourceTree = ""; }; 64F5D452DBBF0D16A4B835ADC487D71C /* Libgen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Libgen.h; path = folly/portability/Libgen.h; sourceTree = ""; }; 64F6B673866A97E956ECA208E93D2EE5 /* BitVectorCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitVectorCoding.h; path = folly/experimental/BitVectorCoding.h; sourceTree = ""; }; + 64FA97FCFCA25E0FF4A15FB4E818FF3A /* 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; }; 6506E90DBEE865CCE7B43373CCE642E2 /* JemallocNodumpAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocNodumpAllocator.h; path = folly/experimental/JemallocNodumpAllocator.h; sourceTree = ""; }; + 650DAFAF3D4D11C18CEC31E0114EAD60 /* EXImageLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXImageLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFlipperKit.a; path = libFlipperKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; 65443F9818534C95F2D33F0A8F23D574 /* FIRInstallationsHTTPError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsHTTPError.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.m; sourceTree = ""; }; - 65512EE3A272FEA187D7F68BB2CBF52A /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; - 6571DF5436311985C9F0ECDD2F9B822D /* BugsnagPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagPlugin.h; sourceTree = ""; }; - 658414AB81E9A68B93362D1497A8B2E4 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; + 65490AB6AFA883A433BCB46B9EBEC8AC /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; + 656E6AD003C36D755E4B2612CDB1E649 /* RCTNetworkPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkPlugins.h; path = Libraries/Network/RCTNetworkPlugins.h; sourceTree = ""; }; 6588555BE590BBE9C4C708DE251C5267 /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; 6599B27F5A6D52B23377F0CF4891290F /* Fingerprint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Fingerprint.cpp; path = folly/Fingerprint.cpp; sourceTree = ""; }; 65B0BB45DB99449B9171F3AE48FF2758 /* Pods-RocketChatRN.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-RocketChatRN.modulemap"; sourceTree = ""; }; + 65BC66228D54391BA80D988941FC759E /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYoga.a; path = libYoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 65E4440EE31CB8F998754FC55591F20A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 65D36AE50B01DBED906D179B931A46E3 /* UMAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLoaderInterface.h; sourceTree = ""; }; + 65E2ED7A5221424D3A7683F9C881A544 /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; 65EAC4A06F298959AC7D59F15810CB5C /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = folly/lang/Exception.h; sourceTree = ""; }; - 65F10B2813F3BB5491C67117D19BEB2D /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; - 65F2F83421140FB0FBCE7718EEB0CFE1 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; - 6602B30C16434EE37FC3C9EF28A5CFC4 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; + 66063AC5E7567C3439D6D450574099E1 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; + 66255E1A445C31E9B8DEBF523E7B213C /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; + 66286C5F8DB2CF11DFF305B325446B19 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; + 6629329DFF90AF7A98A4D0054535403C /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; 663730D6B97993DE05DE56E1E64A85A9 /* Array.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Array.h; path = folly/container/Array.h; sourceTree = ""; }; - 66469A4EB01266E9CD0043A424930945 /* react-native-background-timer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.xcconfig"; sourceTree = ""; }; + 664FA1123AA2DC6EA9D0BCD12ADCAB11 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; 66519C9B614BF6B46A85952E3000445C /* WarmResumeManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = WarmResumeManager.cpp; path = rsocket/internal/WarmResumeManager.cpp; sourceTree = ""; }; + 6663B1E64C895CFA3B43A47C4FBE9B9D /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; + 666EF0C65CE9B1844BC8CF5A6A3DA640 /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; + 666FA01BCFB570B1D8873A710A164C6E /* react-native-background-timer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.xcconfig"; sourceTree = ""; }; 6677EEAD784A5DB213F7C91D9A820EDA /* FrameHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameHeader.h; path = rsocket/framing/FrameHeader.h; sourceTree = ""; }; - 669FFDF2DE29C85E089E798B671D17B3 /* RCTLinkingPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingPlugins.mm; sourceTree = ""; }; + 667A1783ED518ACBF89630EC6FBC8C8A /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; + 669B13A11D2D35219F6A985F9EA1D116 /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; + 66E240E6C80FFA95EE8133B0739BAF24 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; 66E373EE07F1EA890C05FA090F690DCB /* cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cast.h; path = ios/include/openssl/cast.h; sourceTree = ""; }; 66F22EA9D4C27DF77911F6FE1C1B0FE0 /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; 66FDE46C73DBE3989EF7943C600233A1 /* FlowableTimeoutOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableTimeoutOperator.h; path = yarpl/flowable/FlowableTimeoutOperator.h; sourceTree = ""; }; - 670F0EBAC9E68A6388175F2D2C39F1E9 /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; - 671E06E02DB17731102E25AA92C08C8D /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 67229F49490CA9AC27DAFA4CEC3A419E /* Init.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Init.cpp; path = folly/ssl/Init.cpp; sourceTree = ""; }; 6725480D5B0F92AFE93DD41620842F0A /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; - 672661EC0765FB80ED5E2083213F3A98 /* RCTFileReaderModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileReaderModule.mm; sourceTree = ""; }; 674B6F2710F83FD4E8D65327654F702A /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; 675D9C2D56362FEDC42624B8F23A4D31 /* FirebaseAnalytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.xcconfig; sourceTree = ""; }; - 676AC51213B44BDACA97E33DA530D6A8 /* RCTClipboard.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTClipboard.mm; sourceTree = ""; }; 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-CoreModules.a"; path = "libReact-CoreModules.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 677328F64B117500B16665C480D5EEC0 /* RSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocket.cpp; path = rsocket/RSocket.cpp; sourceTree = ""; }; - 678513A72FA0C2B0C590EF9F5FD5995E /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; - 67925FC22407721697D6FED16443727F /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; - 67AE65B8CE4FC27E0BC463F86E0F5521 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; - 67BD8F0F05A2995677B644E6C936AA2D /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; - 67DEC3CEBDF826564BC379BD72DAB258 /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; + 67BA0AB05198D276D8103C33A8103FBC /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; + 67C55D020967BFE486ECE43CC032E886 /* RNCSafeAreaProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProvider.h; path = ios/SafeAreaView/RNCSafeAreaProvider.h; sourceTree = ""; }; + 67C6BA4C82A212B40F1071C6557671AE /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; + 67CBBF1CF1083F83626E0E358313F7EA /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; + 67E712F6D12B287DB7D25638D492FF32 /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; + 67FADDD839A7E8577AEACE3D0B1FE5E2 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; + 67FAF651E9D2D60F38774C6DDE7348A7 /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = ""; }; + 684101CF47FD67B33709D6511989C36E /* NativeExpressComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = NativeExpressComponent.m; sourceTree = ""; }; 6841A78971D85A941CD8351ECDA7F450 /* SKHighlightOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKHighlightOverlay.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitHighlightOverlay/SKHighlightOverlay.h; sourceTree = ""; }; 685E1F09883F281A395F2B2B7981B173 /* Semaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Semaphore.h; path = folly/portability/Semaphore.h; sourceTree = ""; }; 6878A8C96A8BE10ACFCB2F39236042DF /* ColdResumeHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ColdResumeHandler.h; path = rsocket/ColdResumeHandler.h; sourceTree = ""; }; 689EADB3E0A7641AC1A34081430CEBCE /* GDTCORClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORClock.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORClock.h; sourceTree = ""; }; 68B4093DAE4627388150890D8FF25FA3 /* ExecutionObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutionObserver.h; path = folly/experimental/ExecutionObserver.h; sourceTree = ""; }; - 69057191801F0C641AB39F2B2D45F311 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; + 690ECC4A894247FA177E6143FA9B4171 /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; 69227533CC8398DB1B4E51347D096821 /* UniqueInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = UniqueInstance.cpp; path = folly/detail/UniqueInstance.cpp; sourceTree = ""; }; - 69257681AA1662D7FD8A126E8B78350D /* RCTAnimationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAnimationPlugins.mm; sourceTree = ""; }; 692DAA201755341940CB790FB309EF0C /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = ""; }; 69350944D9C493AFF7281E61F33B7D24 /* sorted_vector_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sorted_vector_types.h; path = folly/sorted_vector_types.h; sourceTree = ""; }; 69393C4B61ED5D6D0893FFA459C5B1B7 /* libevent.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent.a; path = lib/libevent.a; sourceTree = ""; }; 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransportCCTSupport.a; path = libGoogleDataTransportCCTSupport.a; sourceTree = BUILT_PRODUCTS_DIR; }; 69447CBD78985E97A5634DC4BEB3B679 /* mux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux.h; path = src/webp/mux.h; sourceTree = ""; }; - 694C5135432E74476DD1273FCAA5C815 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 694E9D704A4770B63763819605BA1D5D /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; 6960F072A24C584FEC6810FFC1519A2C /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/String.h; sourceTree = ""; }; - 696B1C6494D9F35BC815B814521219DF /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; - 69735FAF2EE9D19F875455375BED5E67 /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; + 6962DCFBB4ED7C0AA562F55252D69C48 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; 698C573E2A3AE5D9A2AF05020316C4C4 /* FlipperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperPlugin.h; path = xplat/Flipper/FlipperPlugin.h; sourceTree = ""; }; 69C1B69EEB6282E2E6C1AD4598BB2865 /* libwebp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libwebp-prefix.pch"; sourceTree = ""; }; - 69C9C6813386AF2B515E56A11F952C21 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; 69D2D6BB90F5AC5504598F63D17D69C6 /* mdc2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mdc2.h; path = ios/include/openssl/mdc2.h; sourceTree = ""; }; 69D6106A77F649DDCAE006388446B24D /* Stdlib.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Stdlib.cpp; path = folly/portability/Stdlib.cpp; sourceTree = ""; }; 69D6226D851FB99D77632AE7B571420A /* Flipper-Glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Glog-dummy.m"; sourceTree = ""; }; - 69E2FC04583B23D65644B8FAE8EB8CC9 /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; - 6A01959049459F6180CDF12E9BF2E794 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; - 6A13372A97961B2FCEE907AF7C06F9D8 /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; + 6A005ADE34BC29BEF08AEA92B786773D /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; 6A2AC03835AA9B61E4698BDD1F320751 /* QueuedImmediateExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QueuedImmediateExecutor.h; path = folly/executors/QueuedImmediateExecutor.h; sourceTree = ""; }; - 6A43995AA71DF326C4A3EB8629602CCD /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; - 6A53285CF74D6D28B879D3E7A6A7497A /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; 6A5E8F5770ECA8C93F6E646F3C58A5F0 /* SKNodeDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNodeDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNodeDescriptor.h; sourceTree = ""; }; + 6A8933134A5B3135248092BE692301EC /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; 6AAA25DC9C51F2D3F1B5D1BBE81DD06D /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; 6ACE1A5C881DA3FEA888E20C4DFC8C85 /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/Conv.h; sourceTree = ""; }; - 6AF8B876AEED4AC249E46457AF985862 /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; + 6B0DD253747A7C88F28DB074CA283287 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; 6B11D89E535467E2748B61012D5764D1 /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = ""; }; - 6B2BDC1075053600BB48E4327B127095 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; + 6B29FAAA029FC1E4157B341D6A624A13 /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; + 6B4162732273A002E95916D9053C936B /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; 6B62D7C50D2225FDE4B7E2EC357C7E69 /* SKBufferingPlugin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKBufferingPlugin.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.mm; sourceTree = ""; }; - 6B7EFA3C553FFA3C0E411FD9481118B5 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; 6B845AD51C1A4A59B02E3A86BD260478 /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; - 6B89925743BFA191F4C929424A14E0F0 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; 6B8ED577628803471AA06F17FEBF0EF9 /* AtomicStruct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicStruct.h; path = folly/synchronization/AtomicStruct.h; sourceTree = ""; }; + 6B9B3D22E193441427526B68B9AE4EAF /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; 6BC003F5EF2439B669F24315D544E30A /* ExceptionWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExceptionWrapper.h; path = folly/ExceptionWrapper.h; sourceTree = ""; }; - 6BC1449B2CD4362D1CA4046B1D8AA71C /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; - 6C11B76031D69F7EBD8459372BAA8DCC /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; + 6BDD13808F0FD3CD6C8D5B5F059AE3BD /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = ""; }; + 6BFD168C4EED659BE820EF49D6EEE759 /* 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; }; 6C1D8002FB0B3678187844345027A132 /* Observable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observable.h; path = yarpl/observable/Observable.h; sourceTree = ""; }; 6C24B6D79D95254053CCA03B2811EAF6 /* ProtocolVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProtocolVersion.h; path = rsocket/framing/ProtocolVersion.h; sourceTree = ""; }; + 6C28C7127DE56812B5E787E431EBD795 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; 6C3115F7E0E2ABB73E131A40586F98AD /* HazptrThrLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrThrLocal.h; path = folly/synchronization/HazptrThrLocal.h; sourceTree = ""; }; - 6C4F9E3BF3C9734CFD410F10F8CFBFE9 /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; - 6C5624E0E20A589ECAA03A7C6C028BDF /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; - 6C56F7C925156EE85B46657168DA3106 /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; + 6C5762DB28AE321A86A320CA2B254EB0 /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = ""; }; 6C5F90E8404AF111F1776A63E62A4743 /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; 6C6CBC0C1CB06C8DAD383CE6F3FDE6E4 /* TcpConnectionAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TcpConnectionAcceptor.cpp; path = rsocket/transports/tcp/TcpConnectionAcceptor.cpp; sourceTree = ""; }; 6C75D136A6F7AA5D96443C3B6FA382D1 /* asn1_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1_mac.h; path = ios/include/openssl/asn1_mac.h; sourceTree = ""; }; - 6C86C06DD06CDAB3A0E9C5D8B39F53D1 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; - 6C8750C9EFE82EDFF67C7A02C297E56F /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; + 6C8468E28001EBE31A5E2FEE1AF3A0A9 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; 6C89113B89093908E37CEA5C8D7EB5B7 /* SKDescriptorMapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDescriptorMapper.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKDescriptorMapper.h; sourceTree = ""; }; - 6CB305FB16C6980DFAEF89A3008ACF2E /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; 6CB6A8BB8C8B864596CF0473DFD589CA /* Baton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Baton.h; path = folly/synchronization/Baton.h; sourceTree = ""; }; 6CBEFE4F9E22AFDC6347A739BB35FF8C /* libCocoaAsyncSocket.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libCocoaAsyncSocket.a; path = libCocoaAsyncSocket.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6CBF7E307870D11E0DF366FFEAAA3568 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; 6CC47D4CC2D06131056A2C2AF3876DFD /* stack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stack.h; path = ios/include/openssl/stack.h; sourceTree = ""; }; - 6CCE025922FB4CA88EB49C8B913D1801 /* RNCSafeAreaViewMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewMode.h; path = ios/SafeAreaView/RNCSafeAreaViewMode.h; sourceTree = ""; }; 6CD3C566B079AE99E3FB83982AF9C545 /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = SDWebImage/Private/SDAssociatedObject.h; sourceTree = ""; }; - 6CDC0EB331DB0D4FA5F4673557464E8B /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; + 6CDF7845C04C8AF8A4637E4E4D07A17C /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; + 6CE6EAF5EB7E101BDE197BF7514228B9 /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; + 6D23851161C87C8AD8C65B50B2E0825F /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; + 6D268B1BF2F2FFB76E78692A5A53834C /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; 6D281EDC9696B7F44BEA76E706891017 /* Hash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hash.h; path = folly/hash/Hash.h; sourceTree = ""; }; - 6D45484A1A289F44F405566817D9650B /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; + 6D4AA9721E39E7020252897C8EE9E9EF /* RNFirebaseAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAuth.m; sourceTree = ""; }; 6D5435566FD9029F4DF3D7B66E556287 /* OpenSSLPtrTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLPtrTypes.h; path = folly/ssl/OpenSSLPtrTypes.h; sourceTree = ""; }; 6D58017FD68E21AD1CB0739DE13EB5F3 /* ParkingLot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ParkingLot.h; path = folly/synchronization/ParkingLot.h; sourceTree = ""; }; - 6D6FD24549CFD1B0EDFFEDBE798C54C9 /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; - 6D89DE4A9E5689C45C23744162FF7B0D /* RNFirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseMessaging.h; sourceTree = ""; }; - 6D91F1C7FC160F085A0887B9A504B834 /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; - 6D9CB1B65131C59EBB47BC1727E119BE /* RCTSettingsPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsPlugins.h; path = Libraries/Settings/RCTSettingsPlugins.h; sourceTree = ""; }; - 6DAA73BB8821C72D48536DF5F9AF61C2 /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; - 6DCAD9F2C019CFD4B9270A1B91B9D2C0 /* react-native-safe-area-context.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.xcconfig"; sourceTree = ""; }; - 6DD091C6F83EE0CD038105910C0ADDFD /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = ""; }; + 6D6F60D62D305F10FEBB4BA7F2F5069E /* 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; }; + 6DBA8765372DB6E171642C82A499500D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 6DF1748AFE5AC4DDAC49DE337A96BBA0 /* F14Defaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Defaults.h; path = folly/container/detail/F14Defaults.h; sourceTree = ""; }; - 6E212ED79BB2DBDB1AC098B2D414E584 /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; 6E26D4A9819C02B1477264B691BBB58A /* AtomicHashArray-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashArray-inl.h"; path = "folly/AtomicHashArray-inl.h"; sourceTree = ""; }; - 6E64AFA5C6D9BA5AD3C6FE804F1376F2 /* RCTAsyncLocalStorage.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAsyncLocalStorage.mm; sourceTree = ""; }; + 6E3C879B99E3089F3C34AF2D70352518 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; 6E6A17F744A234DBBCFEF2BF3E73F956 /* StreamRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamRequester.h; path = rsocket/statemachine/StreamRequester.h; sourceTree = ""; }; - 6E82A255197AB2A178DF55469A085C92 /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = ""; }; + 6E90B6A1AD3EC6BACE7E73A716E17A3E /* EXRemoteNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXRemoteNotificationPermissionRequester.m; sourceTree = ""; }; 6E9D40AEF01605DA865536802BF2E39A /* enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse41.c; path = src/dsp/enc_sse41.c; sourceTree = ""; }; - 6EAFFD70428079BCAC361B34C85BE3B6 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; - 6EB58EEC2B6F73BEA176EED8631D3D8B /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6ED941F53DF92721599437932A10C44C /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; 6ED9667598D8EA6FD3FDEE12FA763DAB /* PasswordInFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PasswordInFile.h; path = folly/io/async/PasswordInFile.h; sourceTree = ""; }; 6EDDB0BF77E0162298A4164C90A4F5EB /* Pods-RocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RocketChatRN-dummy.m"; sourceTree = ""; }; 6EE46CEB784AD359F0AF1363567F189B /* buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = ios/include/openssl/buffer.h; sourceTree = ""; }; - 6EF267CDF7C5FA740D80DCCE1093F7B7 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRedBox.h; path = React/CoreModules/RCTRedBox.h; sourceTree = ""; }; 6F0F4B7419A0A8797B365B553C26DDF5 /* SKObjectHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKObjectHash.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKObjectHash.h; sourceTree = ""; }; + 6F12D0637B3D2526773BD8BBEB9ACA0A /* RCTTVNavigationEventEmitter.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTVNavigationEventEmitter.mm; sourceTree = ""; }; + 6F1C88F236D315946B52D1E56E73F344 /* RNCSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaShadowView.h; path = ios/SafeAreaView/RNCSafeAreaShadowView.h; sourceTree = ""; }; + 6F1EE534B19AD2CE03002A8EC9DA87D7 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; 6F3129C9A17E6ABFC260135095287CC1 /* FrameSerializer_v1_0.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameSerializer_v1_0.h; path = rsocket/framing/FrameSerializer_v1_0.h; sourceTree = ""; }; - 6F327DF5D1EF9193E97A40C31E991E13 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; - 6F35E6510C4EDF9E7C2CC215DC47AD10 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; + 6F56A119ED26BCF09B22BDF0B75B593E /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; + 6F58A2DE39E8CBA92F7371D3C190D816 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; 6F6988F2F1099FE226606BFA0B639416 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; - 6F6BDE235AC6D6B65B136696A1278875 /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; 6F767B24439339E2DBC2EDBD71881066 /* dec_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_neon.c; path = src/dsp/dec_neon.c; sourceTree = ""; }; + 6F8990EE6E59AABBD982F7605E36C990 /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; 6F9B69BBFFB0947546185F7519469C1F /* Poly-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Poly-inl.h"; path = "folly/Poly-inl.h"; sourceTree = ""; }; - 6FBEC66F0A4DAC6123D0B270954B7004 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; - 6FC0D0166FB2595C25A22DF7B58C4BA4 /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; + 6FC358BF92C05B330C87A384C1A36E99 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; + 6FCCCC1ABBD785F5600AE1A93D645290 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; 6FDD6EA6431F87023A34C67F0F2AE41B /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; - 6FE28F16D50478462D0AEE7BF714D884 /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = ""; }; - 6FFB52B3033BBB7AE6287ED693E36B0A /* RCTAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppearance.h; path = React/CoreModules/RCTAppearance.h; sourceTree = ""; }; + 6FE0DCF2493614DF6C5C6C4EC539AE43 /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = ""; }; + 6FE3082CB01E5CC863E47C230D8D6815 /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = ""; }; + 6FE975E8BCD76AD2AAD0FF69DD966703 /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6FFBC11ADF2C10BD3FF998B81FA7DDE3 /* RNFirebaseAdMobNativeExpressManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobNativeExpressManager.h; sourceTree = ""; }; - 70061EAFA4A32A9FB6554029E9BBFBE1 /* RNFirebaseAdMobNativeExpressManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobNativeExpressManager.m; sourceTree = ""; }; - 7007E718875B8F5572CFEFC35B2EFF4B /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; + 70094C1F0EBBD4C09B6B8BF8E0286FF5 /* RNFirebaseUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseUtil.h; path = RNFirebase/RNFirebaseUtil.h; sourceTree = ""; }; + 700F23D8587F8D21AB993A63A604E9DC /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; + 7014FF39C1FF978F5BD752ECEFB37727 /* EXImageLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXImageLoader-dummy.m"; sourceTree = ""; }; + 70175666254C3E2D857177545AE6F54A /* RNCAsyncStorage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCAsyncStorage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 7024B63B6A0592729A9DBFFA7058446D /* OpenSSLUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSLUtils.cpp; path = folly/io/async/ssl/OpenSSLUtils.cpp; sourceTree = ""; }; + 702D4587FC7CAF227427C89C7FAFD8C4 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; + 703E267F3DC3D5BA002C0B8532D35662 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; + 7062D721B108477DB0A633CC5930A917 /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; 70687A480EF3D6C11ABA886F780E9520 /* 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 = ""; }; 707B91034B57295DCBBE33F9700D9059 /* RequestResponseRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RequestResponseRequester.cpp; path = rsocket/statemachine/RequestResponseRequester.cpp; sourceTree = ""; }; - 708DB8109DA3CBF05AA39C5EF54F7F96 /* EXImageLoader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.xcconfig; sourceTree = ""; }; - 70953D120538AAD374CEED481B327482 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; 70978B3A123157C126BAFE83BDBFF4A3 /* Rcu-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Rcu-inl.h"; path = "folly/synchronization/Rcu-inl.h"; sourceTree = ""; }; 70AC7C668181E9A8FEBB9A18B34ABC05 /* Core-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Core-inl.h"; path = "folly/gen/Core-inl.h"; sourceTree = ""; }; - 70C1D1FB6C7ABB76EFBA9EA6555779B9 /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; + 70AE121D75646634EC15F5B528784892 /* RNFirebaseFirestoreDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreDocumentReference.h; sourceTree = ""; }; 70D5D57246C4A8D93F5E3E5F81118E82 /* GDTCOREventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventDataObject.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventDataObject.h; sourceTree = ""; }; 70EB5207D74CBEE1C7F7A1F94CB901FD /* EventBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBase.h; path = folly/io/async/EventBase.h; sourceTree = ""; }; - 70FDFC2CE9916A1C39912D2D86454292 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; - 710B3241F8E7A3841B4E7BFC4FE094BB /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; 7120A386D905D0ABD4459D5329E0B215 /* SKEnvironmentVariables.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKEnvironmentVariables.m; path = iOS/FlipperKit/SKEnvironmentVariables.m; sourceTree = ""; }; - 7122B0301CE97FCD1569C75445060E4F /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; 71261B3A5522A3D92F1BA844EA476BB7 /* GDTCORStorageProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorageProtocol.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORStorageProtocol.h; sourceTree = ""; }; - 71265F598C7E83D4369BFDDC2E80304E /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; - 7139D5968A6AC023AF37F861DE93F83D /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; - 7165422E905D316EE0E45C1A6C16A45A /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7181B076C72B5D8B4BAB9CA9A56A536E /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; - 7190B98479467AC89F1225BBA3158917 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; - 7199657A9DFF62F73AA45770EAEF4E9B /* UMAppLoader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.xcconfig; sourceTree = ""; }; - 71B79A38172EF9EE71FB0A05E099512E /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; - 71BA7B037466AF872EABED21FFCA4F3D /* RNCAsyncStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorage.h; path = ios/RNCAsyncStorage.h; sourceTree = ""; }; - 71BD46623AC3B0A68515B1DFAF4ECABD /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; - 71BDCF30F98EA76B27C11322BBFACB3F /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; + 713E6D5E5D285A21E5A29AEFA2CA2566 /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; + 715CCFC4B6A92EDC9C8675DE5C7BF8C9 /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; + 715D61D98A8D1FB9A6A4B6316308C106 /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; + 7196B73093E0A7E6E73BFA7688939872 /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; 71BF86901E1FB0422F9D11070AE00357 /* Crashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Crashlytics.framework; path = iOS/Crashlytics.framework; sourceTree = ""; }; - 71CBCA8FC53D1D188B46BB564F697E9D /* react-native-appearance.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.xcconfig"; sourceTree = ""; }; - 71E63E99A20695BB9EE32555A25813A6 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; + 71C2FECAAE7D706609452121D6EF6ACD /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; 71EE2CEC574397A082D8CD6DFFA6D1E4 /* FlowableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableConcatOperators.h; path = yarpl/flowable/FlowableConcatOperators.h; sourceTree = ""; }; 7204FDCF5AD47F53957D0A7F12871600 /* Parallel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Parallel.h; path = folly/gen/Parallel.h; sourceTree = ""; }; 720D21980C4FD7A27028A93A4AB159A8 /* EventBaseLocal.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseLocal.cpp; path = folly/io/async/EventBaseLocal.cpp; sourceTree = ""; }; - 7217E237D2A8F4C231EEE6DE8DD0B9CD /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; 722F3624449979188DD78BB8102CAA1E /* upsampling_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_msa.c; path = src/dsp/upsampling_msa.c; sourceTree = ""; }; 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXLocalAuthentication.a; path = libEXLocalAuthentication.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 725C77C4B7C29C1ECCA2E63C3355EB3D /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; 72652FB87216EE64A212090C602F3FD8 /* x509v3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509v3.h; path = ios/include/openssl/x509v3.h; sourceTree = ""; }; 7275F5DA65E28AFA745D1F5F25FF0B08 /* RequestResponseResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RequestResponseResponder.h; path = rsocket/statemachine/RequestResponseResponder.h; sourceTree = ""; }; 727CEE911D72F12D992FC84DFE6C7E90 /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = ""; }; 72976667D86BECB0A3BC6D852C72BC66 /* FiberIOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FiberIOExecutor.h; path = folly/executors/FiberIOExecutor.h; sourceTree = ""; }; 72ADF759622DF370A2C32EDEA6407D22 /* Log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Log.h; path = xplat/Flipper/Log.h; sourceTree = ""; }; - 72D348AD963FD80AA19656A4C004FAC7 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; - 72D80AB440DC034942A6E7653C1A9787 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; + 72B669DD828E165D6DB9061E3C0C3A05 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDateTimePicker.a; path = libRNDateTimePicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 72E407D70F10CC8ADED44E16BD591EA9 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 72E71855F5E7A8418726894F59E554B8 /* RNFirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAuth.h; sourceTree = ""; }; + 72F71C4E2871C6AE02ACB1D5118E4100 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; + 73065DE1F8840A8ABC2876DF435633A6 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; 7311E78AF7B80A4C46C95CE5F0DD9584 /* opensslconf-x86_64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-x86_64.h"; path = "ios/include/openssl/opensslconf-x86_64.h"; sourceTree = ""; }; 732F426137A71CDED017B2E603514755 /* AsyncTransportCertificate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTransportCertificate.h; path = folly/io/async/AsyncTransportCertificate.h; sourceTree = ""; }; + 733CC4552309CEF6291BDC64C72BBABD /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; 7353A26E1FB111644BA6132B3397E015 /* HardwareConcurrency.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = HardwareConcurrency.cpp; path = folly/system/HardwareConcurrency.cpp; sourceTree = ""; }; 7393C885084D8F55B3DBAFF57F2E73DC /* FlipperCppBridgingConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperCppBridgingConnection.mm; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingConnection.mm; sourceTree = ""; }; - 739785CACCCA66F5001FDDF9D2E43501 /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; 73B2E6604FDC38ABECCF787CA13EB2A3 /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = ""; }; - 73E7D4E693B09406B129387AF3530146 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; - 73F37B8C8F67C39C1519D66CD4296655 /* 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; }; + 740034F52B2C9C06CACF931F5389A374 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; 7404418532E9BD80BBB9405C10211C52 /* Framer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Framer.cpp; path = rsocket/framing/Framer.cpp; sourceTree = ""; }; - 740A733248063787C4E6381A9A9E6388 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = React/CoreModules/RCTWebSocketModule.h; sourceTree = ""; }; 74143D9BEC871DB962F613209A3A8AE5 /* ConsumerBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConsumerBase.h; path = rsocket/statemachine/ConsumerBase.h; sourceTree = ""; }; + 742048A2F84240748D5250D8ADEEF10E /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; 7431ED67A86167741F47DFE663FFC583 /* PromisesObjC.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.xcconfig; sourceTree = ""; }; - 745626DAF8E2FDC51B4CEC6A916584FB /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; - 74AC6DFBD0003601B52F8DE3AF61BA14 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; + 748B108762659D26296DEB350919ED76 /* UMModuleRegistryHolderReactModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryHolderReactModule.m; sourceTree = ""; }; + 748B9BDF0A782902EDC71AE5A5D5C70C /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; + 74A2A83FA393D8943E66E985ACE4F0BA /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; 74C008A80723631991A60FE5E10F7628 /* StreamsWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamsWriter.h; path = rsocket/statemachine/StreamsWriter.h; sourceTree = ""; }; - 74D51A595C752C87ADD691D3A6411EA0 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; - 74E14DD5FD83AE8B00EBE307C8DB6C94 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; - 74E466F3D35DA85D8EFF63F4BA71602A /* 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; }; - 74F24B597314054D87C8C1F6195DB87D /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; + 74EA67289740305E72F78F1F7400B0C3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 74EFF811C1FB271E3414A12DD20A63E7 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; 74FE0A6812B600DE9F54562F0F69D2DE /* Pods-ShareRocketChatRN-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ShareRocketChatRN-umbrella.h"; sourceTree = ""; }; - 7502B382F060A689307030BFB63EC280 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; - 750F7E062D511B9213745A1ED368C68E /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; 750FEC2522192194F49682A49D5C29D6 /* RSKImageCropViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropViewController.h; path = RSKImageCropper/RSKImageCropViewController.h; sourceTree = ""; }; + 7519D419BB18BADD3259D87DE9D4A0E6 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; 753C142452FC46968E9DD7933F00877E /* Flipper-PeerTalk-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-PeerTalk-dummy.m"; sourceTree = ""; }; - 753E0905C98819E42A1CF1A46A0170AF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 755098AE1D1B51F73FA9D687E6F48A81 /* RNNotificationCenterMulticast.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterMulticast.m; path = RNNotifications/RNNotificationCenterMulticast.m; sourceTree = ""; }; - 7553BF735B0F59822716711C24372CFF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 7551B0B2226551F5D2489251DAA5E552 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; 75543B5F65557EF58DF3162759B936C6 /* Flipper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-dummy.m"; sourceTree = ""; }; - 755629860A319CC7A0CAC31018519309 /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = ""; }; - 755B72D5DA9A44B53932D49C7E48A722 /* RCTWebSocketModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketModule.mm; sourceTree = ""; }; - 75834989E18D8E87AC3EE1830D7DCDFB /* RCTVibration.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibration.mm; sourceTree = ""; }; + 75780E13956DE67F7E1C2DA61ABF67BE /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; + 75ABA25B0EEE227B086179C64F048B4C /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; 75CE5261F6D214187F4CF7BE26545838 /* FlipperKitReactPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperKitReactPlugin.m; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.m; sourceTree = ""; }; - 75CF2E8B87594CB234E3D95A5412993F /* RCTActionSheetManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTActionSheetManager.mm; sourceTree = ""; }; 75D41132E49B63006155DE35CD098F17 /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/gen/File.h; sourceTree = ""; }; - 75DBF29989ADA8C7616AC7F105CE9D8C /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; 75E87BBF6015436EFF6B5B3AB1BB25A6 /* lossless_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_sse2.c; path = src/dsp/lossless_sse2.c; sourceTree = ""; }; - 75FB45C7226ED96D42AC27B019D7C154 /* RCTBlobPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobPlugins.mm; sourceTree = ""; }; 76068A15B2460ADC84FF361BB4197837 /* YogaKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YogaKit.xcconfig; sourceTree = ""; }; - 760A7D61D49FCE79E0D382110003A073 /* UMAppLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMAppLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 760916529838F62C8ADD9CDEDA7E43BC /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 760BA912701FF7BACCF4B8550FE363FD /* Fingerprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fingerprint.h; path = folly/Fingerprint.h; sourceTree = ""; }; - 760DD8DEC20023A36378BBBBF751F203 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; 761CF731D02089080806F374986C8AF0 /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; 762377E0E59BA8A87334A694F6F9118B /* alpha_processing_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse41.c; path = src/dsp/alpha_processing_sse41.c; sourceTree = ""; }; 76242510C5F4D8F3EAAB6F7BAE63CB5B /* ec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ec.h; path = ios/include/openssl/ec.h; sourceTree = ""; }; 762E440D9D75C4C9887AF701527F0CCE /* MicroSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroSpinLock.h; path = folly/MicroSpinLock.h; sourceTree = ""; }; 7633BB7F050C1951D0C020BD47DD5CCC /* DiscriminatedPtrDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtrDetail.h; path = folly/detail/DiscriminatedPtrDetail.h; sourceTree = ""; }; + 763C0A908BCF2279C3ED9035CD99E96F /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = ""; }; + 76420227D28412B923B6F8B25E130F86 /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = ""; }; + 7648FAD6D2E1564592C1A4AA4707443E /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; 76507D6BDFF3A2955E6C896931880428 /* token_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = token_enc.c; path = src/enc/token_enc.c; sourceTree = ""; }; 76598B6A6BF3D748F21701E68BE3BDBB /* ClientResumeStatusCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClientResumeStatusCallback.h; path = rsocket/internal/ClientResumeStatusCallback.h; sourceTree = ""; }; - 7675103AA92A4E8D188145E91E92730B /* MessageQueueThreadCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MessageQueueThreadCallInvoker.h; path = callinvoker/ReactCommon/MessageQueueThreadCallInvoker.h; sourceTree = ""; }; 7686E187EEAA0F481071907602EBA76C /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; 76B63BB440C0F231F76746E362914023 /* CLSAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSAttributes.h; path = iOS/Crashlytics.framework/Headers/CLSAttributes.h; sourceTree = ""; }; - 76BBD1CCC87BF6DB2FE482B80D841F12 /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; - 76BD0F72902E48C2CFBCD65755A792B4 /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; 76DB7DDFA5ABBBF55411E285875E8DA1 /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = ""; }; - 76F37DAA3A95559FFCCCFFF85F3DAF6B /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 770471FC3A474BFDD86AE79038B839A3 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; + 770342D181B3A40DFD2166CFC1D20A45 /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; 770DF2A3BFCED53A3069E3AA80AC34E4 /* SpookyHashV1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpookyHashV1.h; path = folly/hash/SpookyHashV1.h; sourceTree = ""; }; + 7710D2E200011A16F735222C5A3532CE /* react-native-appearance.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.xcconfig"; sourceTree = ""; }; 771C7455D3701B1057474FB9F506696D /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; - 7736E765A07A194B46126DE3DA84CACE /* RNCSafeAreaViewMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewMode.m; path = ios/SafeAreaView/RNCSafeAreaViewMode.m; sourceTree = ""; }; - 775244808FA9C3FF8CB7F2A4E4A7EECB /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; + 7723B709B97658061BC395D02723E9DF /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; + 772FB595D1116D8618377349EAF9C96A /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; + 77337A405525FC1E0862F59CE20D2F49 /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; 776ABE4331372A5DD96792E473347EAD /* bufferevent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent.h; path = src/event2/bufferevent.h; sourceTree = ""; }; + 776F984856C9327EF832DDD4A191BB60 /* RCTConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConstants.m; sourceTree = ""; }; 7776C2F0879E5D6476A807AB35E0BB0D /* frame_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_dec.c; path = src/dec/frame_dec.c; sourceTree = ""; }; - 777DB95C529E023178F362938B1B2C7E /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; - 77A9C0F349533D8942E9CE893B5B7308 /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; - 77AE3AE043D8C08417145BCCF53E4AF7 /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = ""; }; - 77B189D27912E55B5B6BCFE03D2D42B4 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; - 77B3A3647D8A9C0E25E04391CF75E9FA /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; - 77BD6C3E902223EC8E562A2F277B8BD5 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; - 77C5B60149667B362E4FE28027169C28 /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; - 77D0503DAB112E0CD3AEB50ADD890083 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 77805B47D86EDBD0A364610ED6275A8A /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; + 778BA0DE82DD975541FEA91DEB4E1A69 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; + 77BE894F7585FB6A710E89AB23CBF4F9 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; 77E6E583534D982B39C672E98059E6B4 /* firebasecore.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = firebasecore.nanopb.c; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c; sourceTree = ""; }; + 77F24755131B0F7358D3A57F63039575 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; 77FD8DB8FB6FD0282DEB41D410F329CF /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; - 77FE8AA76FBC75C95712E64CBDF7DD05 /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; - 7800D7967E2F4B8C81BBB95A0BADF9B0 /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; - 7806EFF9CCD6E7DF393105EA4EFE60C4 /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; + 77FDF60D10456AE4B6F9A44200B58FC5 /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; 780B702EB55C3166E65CB713785F0053 /* ObservableOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableOperator.h; path = yarpl/observable/ObservableOperator.h; sourceTree = ""; }; 781C771BC85D0BDEB37C406384502459 /* SysTime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysTime.cpp; path = folly/portability/SysTime.cpp; sourceTree = ""; }; + 783EDDF0185FFBC2EC4E9CB6FE9E3CF6 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; 7848DEE31ADA7C35A64A67BAC27B14D6 /* DistributedMutex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DistributedMutex-inl.h"; path = "folly/synchronization/DistributedMutex-inl.h"; sourceTree = ""; }; + 78495C40716C7F261C43C20F6A6020D2 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; + 784B9C3E6D809644FE1B974E734872E9 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; 786589B89ED794E83071FD6343477557 /* GCDAsyncUdpSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GCDAsyncUdpSocket.h; path = Source/GCD/GCDAsyncUdpSocket.h; sourceTree = ""; }; + 7867172B082DEC058AEB7E73800D54B4 /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = ""; }; 787AA91E97EBC57A19735F2F1F6F0331 /* webpi_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = webpi_dec.h; path = src/dec/webpi_dec.h; sourceTree = ""; }; - 787FE71387CF1F85BA4E9DF6D97CE264 /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; 788EDF0678F695FC0BC67274CEAD5F0C /* WTCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WTCallback.h; path = folly/futures/WTCallback.h; sourceTree = ""; }; - 7892AF4AD3191D445D336955F63664EB /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; - 789BC1B4A708A2D8B704E3B951491BFC /* RNFirebaseAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAnalytics.m; sourceTree = ""; }; 789DDC8433638B37CEF864380CBF1BB1 /* AsyncSignalHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSignalHandler.h; path = folly/io/async/AsyncSignalHandler.h; sourceTree = ""; }; - 78BB8675C806A5A0065A184F76F86922 /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = ""; }; - 78CFC35A3CC83CBFA7DCA5AFC6FB7185 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; - 78D642BD074ECBCE98D84E1D1F747F5C /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; - 78E119A66BD3B26DE1ED3C51B35208E3 /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; + 78BA6DB6FB3AD099BC7F49916CE725D8 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; + 78D2CA12ADB80CE1E5BAF738F5A9026D /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; + 78DD90FE0D96F26C130966311D06593D /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; 78E8308DA306318053FC61547E4649A8 /* FBLPromise+Do.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Do.m"; path = "Sources/FBLPromises/FBLPromise+Do.m"; sourceTree = ""; }; + 78FA3E580A83E7B3822370ACC3E1854F /* RNDateTimePicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.xcconfig; sourceTree = ""; }; + 78FC559638FFDE5C5C63798C6C8F7376 /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; + 7921158A140DC003DCEE3B81A931540C /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; + 792B55D7846CD54E6E0D9A6EB6267E65 /* RCTVibrationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibrationPlugins.h; path = Libraries/Vibration/RCTVibrationPlugins.h; sourceTree = ""; }; + 7933DA9B2C70364FC3AAF0FD27FCD1AC /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; + 7956E2A86C2C272EA5F2E7CAFD7995F8 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; + 79603FB6D84DA9CA26C3216A1619C242 /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; + 796BEFDC67F8C6DEF513F28C7BF7B185 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; 7973F5964A02BF972030B48325357E4F /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; - 798D6C8908BE1EF520B2123C0303E59E /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; + 797D9702416A12F6F03B62ABBDFFB6A2 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = ""; }; 79A7652E2CA6CD7A4BF43A9DE8BBCC52 /* FlipperRSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperRSocketResponder.cpp; path = xplat/Flipper/FlipperRSocketResponder.cpp; sourceTree = ""; }; - 79C87FDBC38CAC8DBAC3D2B40FC7405D /* 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; }; + 79B7587F1241800B06EE1741D881BA69 /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; 79E7D2DDD63801B91D88DEA078970414 /* UIColor+SKSonarValueCoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "UIColor+SKSonarValueCoder.mm"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIColor+SKSonarValueCoder.mm"; sourceTree = ""; }; - 79FB308682ED8F39C509C6FA263119A7 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; - 79FEFB251B624E2112058C5823DFFBCA /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; 7A059ACDA22C414C11E828DEE1F42B14 /* F14IntrinsicsAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14IntrinsicsAvailability.h; path = folly/container/detail/F14IntrinsicsAvailability.h; sourceTree = ""; }; - 7A2332A624FF39009F67CC3A477687DB /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; - 7A3B44B0EE5021D9B6F9B6FDB5B2FB27 /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; + 7A3099B5F3E7FB32418271805263034F /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7A3EF3B919579A79C9329B7678B685F4 /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; 7A590BC60B56755728ECA16D8679EB22 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; 7A6AC6A7A49B14663FBC246A357EF6A7 /* File.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = File.h; path = folly/File.h; sourceTree = ""; }; + 7A7DF56CDAD97FB6778931FC7EAAF8D9 /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = ""; }; + 7A84171034776C9AE6062B4A66C2ECE7 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; 7A87117E5612E6AD894A505E87DA09C5 /* TypedIOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypedIOBuf.h; path = folly/io/TypedIOBuf.h; sourceTree = ""; }; - 7AD27C318E641AEF3FEF91B013B97BEE /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; + 7ABF27AEEA3801A53BD643449C4C7BFF /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; + 7AC0B0AA52C26AC27B0F644ED1999263 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; + 7AC76AE772DB09D38355994F8629937C /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; + 7AC79F74EE6FEC7A4FA6387C5214143D /* BridgeJSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeJSCallInvoker.h; path = callinvoker/ReactCommon/BridgeJSCallInvoker.h; sourceTree = ""; }; + 7ACE70D6FBF609A3BE8037EA4A534CFF /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; + 7AD0336E926D7868080715D0484EE6CA /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = ""; }; + 7AE141C59CDB269A306C102E4EF53DB3 /* RCTKeyboardObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTKeyboardObserver.mm; sourceTree = ""; }; 7AE17162C64E027C473100BD6B2C05B4 /* GlobalThreadPoolList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalThreadPoolList.h; path = folly/executors/GlobalThreadPoolList.h; sourceTree = ""; }; - 7AF4F688033FC594C5312350D5A4196F /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; - 7B0639111348B07A51454B418635743A /* RNCSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaShadowView.h; path = ios/SafeAreaView/RNCSafeAreaShadowView.h; sourceTree = ""; }; 7B0CDEC01D66844E4510B5EF282B519C /* GDTCORTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORTransport.h; sourceTree = ""; }; - 7B0F1967BFB375D4506E99B8131B2519 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; 7B18B97F7B5BC32789739B993A2AA870 /* Utility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utility.h; path = folly/Utility.h; sourceTree = ""; }; + 7B36BE1CB72067A3C7D3AEF8F878B0E3 /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; 7B40AAA6D6A331E10CC9C6C8CEF0DC55 /* glog.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.xcconfig; sourceTree = ""; }; 7B44E198E1118013F10E109C936D5CE5 /* NSBezierPath+SDRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+SDRoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.h"; sourceTree = ""; }; 7B4DAFBC77BCC1C80EB8B9301EC253D6 /* FileUtilDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtilDetail.h; path = folly/detail/FileUtilDetail.h; sourceTree = ""; }; - 7B55C77BFF12D757C3EB6AB8DC7ED02B /* Yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.xcconfig; sourceTree = ""; }; - 7B6497C88283A72EF08F18A3EA2D0997 /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7B67AFD966DA52D78F3F3FBEBDE7E78B /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; - 7B71C4EC02710E0C2AD933374DC2CBA5 /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; - 7BB5B16C7B70B759347FE367321DD04A /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; - 7BBC15FD8B590818292C04F01F196CA4 /* RNUserDefaults.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.xcconfig; sourceTree = ""; }; + 7B5EBF120794817293BA6F5FB77BBF83 /* RNFirebaseFirestore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestore.m; sourceTree = ""; }; + 7B6641E807257CB45283C25B7E62B293 /* RNCSafeAreaProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProvider.m; path = ios/SafeAreaView/RNCSafeAreaProvider.m; sourceTree = ""; }; + 7B7FF2D266FE9A9EB5110887705DA321 /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; + 7B86AEBC9DF8D8E77B27AD6372783154 /* 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; }; + 7B9821A8D396FA2AC342565F28DFACD5 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; 7BC06829E7F061E65C930F3116DD80F1 /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Private/GULReachabilityChecker.h; sourceTree = ""; }; + 7BC464D2B35ABB9FDB3FB5C07701C76F /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; + 7BC75D3BC751DD5FF51D3C6DA359C679 /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; + 7BC8D5E88DB9364A9E7683CFE99CDEA4 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; 7BD75300993BE4ECE8B98C96FD181608 /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; + 7BD98BE75223C0F154BBC845F1F936A2 /* 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; }; 7C01BA1E846A7F4D9FDDE492D4B367F4 /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = FirebaseCore/Sources/FIRBundleUtil.h; sourceTree = ""; }; 7C041CF5154ADBCA83C73DD553000F3A /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; - 7C4B351F8FB06F9DB07A3372945F2B68 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; - 7C55A44A457F10A97820FAB548C8F44A /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; + 7C49DC5AFD28ACC0613C396EA9DF4210 /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = ""; }; 7C5D42CBB64028D6E318A5C18EE74DED /* FingerprintPolynomial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FingerprintPolynomial.h; path = folly/detail/FingerprintPolynomial.h; sourceTree = ""; }; 7C85FC8A04DE7C7381E6363E09976B77 /* GroupVarint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarint.h; path = folly/GroupVarint.h; sourceTree = ""; }; - 7C8EBCA61DFAD0D306BADBEE83374B50 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; 7C9C1795F7FDCC3C5AF33C63B06DB187 /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; 7CA214D249D239B96079E4E736CCDBD0 /* dso.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dso.h; path = ios/include/openssl/dso.h; sourceTree = ""; }; + 7CA2848C3BD21C2ADC6C8E7C2F99159A /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; + 7CB5A2CEB39ACDED198DE00257F3B307 /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; 7CB983279B4EE789CC6DCECC42768786 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; 7CBE7F26DEF6EDEE75A2D06F79C5DC21 /* FlipperCppBridgingConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingConnection.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingConnection.h; sourceTree = ""; }; - 7CD2EA199FD310DC921E66C50B51DC73 /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = ""; }; - 7CD7A183075FACE684460A00E3C0C0FF /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; - 7CD860EB0F92142ED856AA5822697739 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; + 7CCD890902568B57C6130014DE182ABF /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; + 7CD43B10A20CDA72067E350C4FF8854C /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; + 7CEDE1E96DC29F3EA70A5FBD2A5B064B /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; 7CFC5F812F532B846C760DB22721ADF9 /* Pods-ShareRocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ShareRocketChatRN-acknowledgements.plist"; sourceTree = ""; }; - 7D013E58A4B0CF45BD86DAB1BE88BBAC /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + 7D007E5727603165F11E1E369CC70634 /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; + 7D20FD0EDBF8575B53E078E4EEE4972D /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; 7D2347F1D47BD749FDA5FA70F9B5EA75 /* ConcurrentBitSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConcurrentBitSet.h; path = folly/ConcurrentBitSet.h; sourceTree = ""; }; - 7D3525B6C8556840842B28C45468D502 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 7D362AD8B48052F1E3700D074E0C392D /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; - 7D48981D86849DBE434AA8B89B6DE997 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevSettings.h; path = React/CoreModules/RCTDevSettings.h; sourceTree = ""; }; - 7D48E0D6D11687E2ADD4E55BBDFE1495 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; - 7D5815080B2F35050BC245DC143DE4B1 /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; - 7D7561A1F3D2AEBED36E92BC3042E4BF /* RNCSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewLocalData.h; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.h; sourceTree = ""; }; + 7D36240A0190F2D89BCCB3B263C40756 /* RCTSettingsPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsPlugins.h; path = Libraries/Settings/RCTSettingsPlugins.h; sourceTree = ""; }; + 7D528A1AF7A4D024C74AE09DBEB4C5EC /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; + 7D616FE4E6634143E1FC8F0B5550F8E8 /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = ""; }; + 7D7B27D4446D3FBF19ABF958FBD4321B /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; + 7D83DAB6C4D288B6CA941729F379368C /* RCTRequired.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.xcconfig; sourceTree = ""; }; 7D86963372CDF935FEFEED1F8C0CAD1B /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = ""; }; - 7D8CAA90AA7C25E6506E2DD0193F8060 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 7D947ED0FFEF4F648CED33D72400571E /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; + 7D9DDBD2B29F51A46B90F55399066BE7 /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; + 7DA3557E7979A5896452ED048E1185BB /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = ""; }; 7DB290718569F62EF6393B2E7A71FFA2 /* SKResponseInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKResponseInfo.m; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.m; sourceTree = ""; }; 7DBA39AABE42FF88D5DF1E88BEBD3575 /* FramedDuplexConnection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FramedDuplexConnection.cpp; path = rsocket/framing/FramedDuplexConnection.cpp; sourceTree = ""; }; - 7DD272DCA947023FE82762683D2897FA /* React-CoreModules.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.xcconfig"; sourceTree = ""; }; 7DDEAE4889C0A5104DCA803F35AC36AB /* SocketFastOpen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFastOpen.h; path = folly/detail/SocketFastOpen.h; sourceTree = ""; }; 7DEB3E43E56226ACBF6894AE3C077389 /* lossless_enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse41.c; path = src/dsp/lossless_enc_sse41.c; sourceTree = ""; }; 7DFDE8B8F51B84DD08D0D7AF871A04C4 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; 7E00E9A2E6EC961FB7015E670B330551 /* TimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutManager.h; path = folly/io/async/TimeoutManager.h; sourceTree = ""; }; - 7E0474ADF523E01E0CB4B9930DD9D438 /* RNFirebasePerformance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebasePerformance.m; sourceTree = ""; }; 7E30232E1A649C5A30B9B190310D1DD1 /* Firebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.xcconfig; sourceTree = ""; }; - 7E3B49CBFF762A1C703210855E543C2E /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; + 7E5500695845F12EB1C754A2DF682D9F /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; 7E5C6074F0DB669A0756E635E550B3B1 /* RangeSse42.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RangeSse42.cpp; path = folly/detail/RangeSse42.cpp; sourceTree = ""; }; - 7E64F90A137DF0B04425A383CF795D9C /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; - 7E6E3D47CFDBFB8BA79AA8C7A1BDD36C /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; + 7E63F7141C969087C35F64F57DDA59F4 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; + 7E6891CF027EC21C81236309DBFBD638 /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; 7E74C3E2B6D38A98EDC7095EBDF0D894 /* FlipperCppWrapperPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppWrapperPlugin.h; path = iOS/FlipperKit/CppBridge/FlipperCppWrapperPlugin.h; sourceTree = ""; }; 7E87E6CA6F24F95340E8EE9EF3FE0850 /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = FirebaseCore/Sources/Public/FIRConfiguration.h; sourceTree = ""; }; - 7E8AB43A0D19CAB66371A64DD8718435 /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 7E8F966910B5A7FE6D117384001D8564 /* CPortability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPortability.h; path = folly/CPortability.h; sourceTree = ""; }; - 7E93A2F0919CAF3E8CBFEF8A8844BCB8 /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; - 7E99D2AE48FA6673B685C713DACBAD36 /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; + 7E92624035021AD1CB1174358688560E /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; + 7E9F76C0924C48374B7C37028E9F2D46 /* 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; }; + 7EA5E489506D500C8A30068E8E3A85F8 /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; + 7ED94019A38F38B84CE4B5051D7B73C4 /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; 7EE25BCA0D02084E2F1F55FDCE671098 /* dynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic.h; path = folly/dynamic.h; sourceTree = ""; }; - 7EE8986FCA597D38BB69720F4708A824 /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; - 7EFAFCF9D2A38BF4A31E5989EE8A6C1C /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; 7EFF5BAD4FB9D3B56591A6EB08CB68CD /* Benchmark.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Benchmark.cpp; path = folly/Benchmark.cpp; sourceTree = ""; }; 7F0C154ADC65F8BA13EE5E51E1390E4E /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; - 7F0E1885FF6218CDFE9982E05F1A5588 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; + 7F151C07CBFD0ED04421E7F8D6B224B9 /* 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; }; + 7F32604F21134142C1C091B6119C30E2 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; 7F3B34B0FBAA0677CBF1E9F3F0D71D56 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/Private/GULReachabilityMessageCode.h; sourceTree = ""; }; - 7F4B7D09C49BFC8FA482BFC030DC70EA /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; - 7F5B93B33A7BFFBA1E32BDBAB88A5605 /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; + 7F3BB4CE0AD0B8C7B54FB7F37505224F /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; 7F7217016DDD92C1D480FFAD050AC3B7 /* quant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant.h; path = src/dsp/quant.h; sourceTree = ""; }; + 7F772C63314D0CC239B57900B3CAF055 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; 7F7B13717527AB425E33EC231CD27A4A /* SSLOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLOptions.h; path = folly/io/async/SSLOptions.h; sourceTree = ""; }; 7F8D2E0EAABE90445655F7E1C4320FBD /* SKNetworkReporter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNetworkReporter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKNetworkReporter.h; sourceTree = ""; }; 7F8F65DBBDC35F4D499274A0E87B121A /* FutureExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureExecutor.h; path = folly/executors/FutureExecutor.h; sourceTree = ""; }; - 7F9683149B139470B2049608CBB1D7B7 /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; - 7F99470B4CFB1DFF0E1519B85AFA600A /* EXImageLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXImageLoader-dummy.m"; sourceTree = ""; }; + 7F990959DFBA2E0065F0AC917787355C /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; 7FA21966982863F1E4BE6BA0228D6EBA /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; - 7FD2CE14B86C01D0182D5232A65D8AB7 /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; - 7FE3B1419A93B1EB88EA99EE971138C2 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; + 7FE72B7EEF6A27940358C8BF5B5AABBE /* RNCAsyncStorage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCAsyncStorage-prefix.pch"; sourceTree = ""; }; + 7FF674B00525A7455BA0FE93983F36BC /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = ""; }; 7FF83013A1711096B536E31351B50797 /* TcpConnectionAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionAcceptor.h; path = rsocket/transports/tcp/TcpConnectionAcceptor.h; sourceTree = ""; }; - 7FFF036081EEA50E6911CC3C72539F1C /* RNCMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedView.m; path = ios/RNCMaskedView.m; sourceTree = ""; }; - 80123E4CE5856A3193DD48852416B8D4 /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTLinking.a"; path = "libReact-RCTLinking.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 802ED9C305FDA6D2B37979075D2C7B1D /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; 803326B8F3CE781120385D0CEB449FA4 /* analysis_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = analysis_enc.c; path = src/enc/analysis_enc.c; sourceTree = ""; }; + 803F54955BFC53F9F770F85B17C5A931 /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; + 804670BF604F4C68C49F3DE1B096FBE3 /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; 804A45CCD959C9996B35D180C052F917 /* SSLErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLErrors.h; path = folly/io/async/ssl/SSLErrors.h; sourceTree = ""; }; + 80574AEC4649C58DF7B6EB5C28C1FFF2 /* react-native-appearance.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-appearance.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-jitsi-meet.a"; path = "libreact-native-jitsi-meet.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 807D0468E3C3AA6AE839A3E3EB4A86AA /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; 8080A2E131398B39B00CD2B495B05C92 /* PThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PThread.h; path = folly/portability/PThread.h; sourceTree = ""; }; - 80888C4D60C85D341F05D74889DFFA4C /* RNFirebaseAdMobRewardedVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobRewardedVideo.m; sourceTree = ""; }; + 808FE3CC4D8A4029B70902E3007DF3C7 /* RNCSafeAreaViewMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewMode.h; path = ios/SafeAreaView/RNCSafeAreaViewMode.h; sourceTree = ""; }; 80944A65FBF34AE80A6FEBF65E9493E2 /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; - 80989FD1E3A28D668EEF944CEBF3D75D /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; - 80A2AE040566CF877A70391D5194AF89 /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; + 80A42418E28C748EC88A406FAC9D3FC5 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; + 80A517C9E8DB3F15A722A352A29BBAA0 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 80A568B9B044A020997E0E87DB7B4CF6 /* RCTDeviceInfo.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDeviceInfo.mm; sourceTree = ""; }; + 80CFA61EA0B5D4667D7441DB40FDAFEA /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; 80D171B86FCFDD5BDEF8591E75E17B76 /* PolyDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyDetail.h; path = folly/detail/PolyDetail.h; sourceTree = ""; }; + 80D213C129C14FDDA2700C864E819FA1 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; 80E15FB8F7DDD721FF85A6AA2F26F77F /* AsyncSocketBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocketBase.h; path = folly/io/async/AsyncSocketBase.h; sourceTree = ""; }; 80F8068D1256D1B5ED47B12E0763EDB8 /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport.h; sourceTree = ""; }; 8118C32574C7B0461CC6B410170522E8 /* bufferevent_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent_struct.h; path = src/event2/bufferevent_struct.h; sourceTree = ""; }; - 8126B9B4A24FA3479FB554D1A0C8D1CA /* RNCMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedViewManager.m; path = ios/RNCMaskedViewManager.m; sourceTree = ""; }; - 8141097306C15C605D00A0BDEA23135F /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; 8141F4C2DBBE6FD9F84261552C9F3769 /* FormatTraits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatTraits.h; path = folly/FormatTraits.h; sourceTree = ""; }; + 81455D6D48979B05461A51E085D91314 /* RNFirebaseAdMobNativeExpressManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobNativeExpressManager.h; sourceTree = ""; }; 817C4CDF2FF40398C12C7B51816D040E /* SanitizeLeak.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeLeak.h; path = folly/memory/SanitizeLeak.h; sourceTree = ""; }; - 8184F44209E35FCFB3882EFAB43FF84C /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; - 81A3F3B67C53BA4E6624587FB504709E /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; + 818E91D92E60A66D973E1B296FFEBD5C /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; + 81B007D8765AE2BC1EB467D42206A309 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; 81BB52EF1378C7072DF399F588A97E4E /* EventBaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseManager.h; path = folly/io/async/EventBaseManager.h; sourceTree = ""; }; - 81BDB57F53D39DBC0E0DE2D840B68111 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; 81E59C616C755265CF978E5E118A66CE /* enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips32.c; path = src/dsp/enc_mips32.c; sourceTree = ""; }; - 81EB6C170B6F2790F1A5CDC47B7D2621 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 8227AB0A9A09777A728CC25B4E49D9A0 /* RCTAppearance.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppearance.mm; sourceTree = ""; }; + 8209E54DE962763409BF359C1BE2E546 /* RNCSafeAreaProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProviderManager.h; path = ios/SafeAreaView/RNCSafeAreaProviderManager.h; sourceTree = ""; }; + 8211CC783A953C15807F8A106728E35C /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; 8245AEA1767AE69C8E76AFC7EAB967A0 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; 827475BD228A44532FCF3169F417AB46 /* e_os2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = e_os2.h; path = ios/include/openssl/e_os2.h; sourceTree = ""; }; - 8275006D7171489B1B0923F4BB8DBE4F /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; - 827552D6A3A46085C0AF955B74724589 /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevMenu.h; path = React/CoreModules/RCTDevMenu.h; sourceTree = ""; }; 8285F659DA66A30E841A40EBB7C03DCE /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; 829D6AD9B342CF6AF4A53197E757E4D6 /* AsyncTrace.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncTrace.cpp; path = folly/detail/AsyncTrace.cpp; sourceTree = ""; }; - 82C01850FCE0DC70E3D118328348F262 /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; + 82A1D8BAF41D806910DB11CA339019BD /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; + 82AEF35996658F64D84BC88F7E0C1F38 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; + 82C41FC21DFE31E2B6765D74DE2842D4 /* UMAppLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMAppLoader-prefix.pch"; sourceTree = ""; }; 82FDE4F89CDD3CB8322AD5AF2D2AAD04 /* dec_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse2.c; path = src/dsp/dec_sse2.c; sourceTree = ""; }; - 831999651C70369A14B36B756CDB1DF4 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; - 833088975D18E2C0CDDAFC698D9B6EE1 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; + 8302E0659CED48BA9B0493F906D280EF /* RNFirebaseInstanceId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseInstanceId.h; sourceTree = ""; }; + 830F4EF9FDF73517E09ACF76EFA248B8 /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = ""; }; + 832319D462FAB4CE77093E0E73C2B140 /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; 833769E4C7B4407A1F00E150E3313586 /* 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 = ""; }; 83427F2327EFE23208D29702FC463EC2 /* Arena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Arena.h; path = folly/memory/Arena.h; sourceTree = ""; }; - 83433962F347CF9964944E8ECF30B5FC /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; - 8379467A8B0AAD43D48CACAB090CD6B5 /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; + 83593BEA3DCCF128AC0E8AB6F21E289D /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; 8382ED435EE4F3B9DB27C264219982F6 /* GULKeychainStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULKeychainStorage.h; path = GoogleUtilities/Environment/Public/GULKeychainStorage.h; sourceTree = ""; }; - 83951F110FBE70C27DA463137C925BCF /* UMModuleRegistryHolderReactModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryHolderReactModule.h; sourceTree = ""; }; - 83B79C8BD3D16E22D3EF6179CA31D62F /* RNFirebaseStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseStorage.m; sourceTree = ""; }; 83BB3FF4F7D0EDA8A9AA4E608685A043 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.h; sourceTree = ""; }; - 83CDDE079106BB87DDEE8D61B3FBFD01 /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = ""; }; + 83C6051B5BB74E0C061731744EC94DC0 /* RNCMaskedView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.xcconfig; sourceTree = ""; }; 83E6DFF90FDADE4F32BBB866DD612256 /* PasswordInFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PasswordInFile.cpp; path = folly/io/async/PasswordInFile.cpp; sourceTree = ""; }; 83E712003D06246B5467078B593C4363 /* lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc.c; path = src/dsp/lossless_enc.c; sourceTree = ""; }; 84046FDF23D7C27F377792E34B6A6862 /* HazptrUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrUtils.h; path = folly/synchronization/detail/HazptrUtils.h; sourceTree = ""; }; 8407BCAD5AD1DB51CAC5DFD17942506C /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; + 840CC2A7C24222B9BF0911C1D2204BE8 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; 8426E0809BE8286029A688A5BC03C254 /* upsampling_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_neon.c; path = src/dsp/upsampling_neon.c; sourceTree = ""; }; - 8434817DF7DB6B629F1E9F0F61B96CBF /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; + 84371A6E9BD45B7442008194D249C0C7 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; 84405E5212A26FB31331C0561D1B6213 /* SparseByteSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SparseByteSet.h; path = folly/container/SparseByteSet.h; sourceTree = ""; }; 8446493A26CBD5A047B2F877C460C9F3 /* GDTCORTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransport_Private.h; sourceTree = ""; }; - 844FE1C9E4BD929D0603E29C1E01DC55 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 847F0DE87D9F5EA07C384415DA780F83 /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; - 849DF067A0553824027C84BC0C1A09FD /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; - 84A91812CFCB70941FF3D33C6FA8F1D6 /* Yoga-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-umbrella.h"; sourceTree = ""; }; + 848BD8BF055C6649D351A1A402184EE9 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; + 8490DE5D7810B423327A7A23C99F990A /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; 84B32B7E450CEE8D7F9F6783F60C6365 /* filters_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_utils.c; path = src/utils/filters_utils.c; sourceTree = ""; }; - 84CEA15C9F028188FC76B20548085682 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; - 84D77D248D8B76E924E4417A4D9800DC /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; - 84E2ED926657E49C1145928B73B70718 /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; + 84CC40494C048234C57F30FE2C1BEDBF /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = ""; }; 84E9632FB76AF581218D4D18086B48C4 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = FirebaseCore/Sources/Public/FirebaseCore.h; sourceTree = ""; }; - 850919EAE9825E1550B656DF21466B86 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; - 850ED263FA09AEE617847B2309FD3D09 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; 852533BA0F2452CEF71F8419FBC79BD0 /* CocoaLibEvent.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaLibEvent.xcconfig; sourceTree = ""; }; 852B3E03F6B7C8F358073121F4243AA8 /* FlowableOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableOperator.h; path = yarpl/flowable/FlowableOperator.h; sourceTree = ""; }; 852DC564997734F4D539E66A2B03F20B /* Pods-ShareRocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.release.xcconfig"; sourceTree = ""; }; - 852DDB57329071FE7E417C84D72D8048 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; - 852FE7BB7610FE35CE2C1A24B3059BC2 /* RNCMaskedView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNCMaskedView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 855DBEE3B15C3FE08EA26326134055C0 /* AsyncSocketException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocketException.h; path = folly/io/async/AsyncSocketException.h; sourceTree = ""; }; 855FCE02606A98B69A4A7D2A87D05A23 /* AtomicHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashMap.h; path = folly/AtomicHashMap.h; sourceTree = ""; }; - 8561E97E1C040160AEEA2F3B8518D2EB /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = ""; }; - 85677DAD4E22AAA5382ED8E3BC3CAFC3 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransport.a; path = libGoogleDataTransport.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8575F196D55B1B8579B40A6C7B60029E /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "librn-extensions-share.a"; path = "librn-extensions-share.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 858D05B7E99279A54826542B1B5D68B2 /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; - 85A6112AD0D87A2AE6595A4C3628D59D /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; + 85AE0C3D78916FBB5BB5BCC954AAAA6E /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; + 85B0C9E09475A87487BEE618B504E58B /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; 85B137A6A27D2C6F9978F653150B57A0 /* bufferevent_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bufferevent_compat.h; path = src/event2/bufferevent_compat.h; sourceTree = ""; }; - 85C972F667E84E4CEA53674B8077942E /* RNFirebaseDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabaseReference.h; sourceTree = ""; }; 85E39C4D756AD3813BDE4F2E6F37FEC8 /* ScheduledRSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledRSocketResponder.cpp; path = rsocket/internal/ScheduledRSocketResponder.cpp; sourceTree = ""; }; 85EB48D9F74F32170CCC452CF6783E97 /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/Memory.h; sourceTree = ""; }; 86041AB3988B0BFA2E77B2DB32AF362A /* Request.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Request.cpp; path = folly/io/async/Request.cpp; sourceTree = ""; }; - 8604E2095003058E3A036F99D16F0F0E /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; - 86142F493DDE680A50CF9D3BC242BEA1 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; 862A528D8E98EA5E454E18B4CBF493CF /* shim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = shim.h; path = ios/include/openssl/shim.h; sourceTree = ""; }; - 865498C402B4E5F0DD79725D4441BC07 /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; 865687D8992B9721808E1ED5B153B8D1 /* DynamicParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicParser.h; path = folly/experimental/DynamicParser.h; sourceTree = ""; }; + 865C0286C7A7DD463DBC414E87BA43F8 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; + 866070F3962D06477C66B8CD83382BC4 /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; + 866DE4C15962611AB03C0CE1DC4649E8 /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; 86722D3FADF92702FC6ED523BCA655A6 /* IPAddressV4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV4.h; path = folly/IPAddressV4.h; sourceTree = ""; }; - 86882A8B995EB53F1E9734757EBF13B7 /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; + 86A705C8E8CF8619F488FAF56FA0B184 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; 86AAFFE9015819EE8C6E0EB64991023F /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; 86ACE019DD91832EF8BFFDBD6F4AA667 /* FKUserDefaultsPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FKUserDefaultsPlugin.m; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.m; sourceTree = ""; }; - 86E4F8E331A1E8766EE7DFC72710CFFB /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; - 8717F287702A9C6C38AA55E7AB95B0DF /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; - 8722295C25B3943AF10E50B691C16D55 /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = ""; }; + 86BB660AAFBDF90D48690893B2289C0E /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; + 86EB2B49100A566446F58F5AF84AEE1D /* RCTImageEditingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageEditingManager.mm; sourceTree = ""; }; + 86F1C24ED17E1DC0E97426478AB1312E /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; + 871B2733B1B4A1BC0B68434E4EBF8C4A /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; 872E574D6BC79F4782E595DB08B75CE8 /* libwebp.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.xcconfig; sourceTree = ""; }; + 873BE1042A7120FDD0D647CC3B4B5D6D /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; + 87443023EC793DABBDE9179A8B0B053F /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; + 876C703A1900CBED99237E0C91DC930E /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; 878349428891F192D307BD872F246FAD /* AsyncSSLSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSSLSocket.h; path = folly/io/async/AsyncSSLSocket.h; sourceTree = ""; }; - 8791F28043B93FB45126A4FF1B18FD25 /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; 87B9E85AD2708CD9F2F57E0B9468C024 /* Overload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Overload.h; path = folly/Overload.h; sourceTree = ""; }; - 87CF3D5290C63D9BC0C8F06B0B65D238 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; - 87EE4D05DA2D8345EE7790161750FF38 /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; - 87F05A51C7F86B2D2B14B62F6F1248FC /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; - 87F5C92D04AA2E6A5BA2C09C2275A5C2 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; - 87FD3BC45223DF4888204BDA75328D7B /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; + 87CCFD21C87F8C220DBB8F4AB4C94225 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 8802E59DA47A6A150BD238DC6FEA4E09 /* 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; }; 880668C762EDC9AD36BB9C499C39773E /* SKTouch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKTouch.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTouch.m; sourceTree = ""; }; - 880C494587018B97FA8145B269186028 /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; - 8813047D84809D331325E58DD5EC4EB6 /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; + 88146B4D372AE7F11BF7EACF8BE2DADF /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; 881C4D86EEB867E8AB55429524C164A8 /* thread_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_utils.h; path = src/utils/thread_utils.h; sourceTree = ""; }; 8821673AA05A9298C0CFC7B3AA7B0FB5 /* 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 = ""; }; + 8835C348AFCBB837C33237110E8F969F /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = ""; }; + 883A23708095CEF8199A01E06146D47F /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; 88401389D1DF44BFA281C0434169ED38 /* sha.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sha.h; path = ios/include/openssl/sha.h; sourceTree = ""; }; 884A3F9DF38B4194FE972C3A0D33287B /* RSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketResponder.h; path = rsocket/RSocketResponder.h; sourceTree = ""; }; + 88528E3883FF492674D325E50694E07F /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; + 886760A0962ACB54D2235A4C853BD046 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; 886FA80E50E6E53041041372306C7192 /* PTChannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PTChannel.h; path = peertalk/PTChannel.h; sourceTree = ""; }; + 8871093A45BB8898DF03296EC4CED5EC /* RNFirebaseLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseLinks.m; sourceTree = ""; }; 887473A2C199644FD87B531F9DC5E655 /* Range.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Range.h; path = folly/Range.h; sourceTree = ""; }; + 8880B3A541ECB9C5780F8A64D1B41C18 /* MessageQueueThreadCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MessageQueueThreadCallInvoker.h; path = callinvoker/ReactCommon/MessageQueueThreadCallInvoker.h; sourceTree = ""; }; 88B0DC4FC7F96FDEE51F498194964D78 /* enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips_dsp_r2.c; path = src/dsp/enc_mips_dsp_r2.c; sourceTree = ""; }; - 88CC26E86C4581E34F084F45491BF81B /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; + 88B3F4C17F48F0EF8648F4E3608237EA /* RNFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebase.h; path = RNFirebase/RNFirebase.h; sourceTree = ""; }; + 88BA844E17073A067E79E8E63448BC76 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; + 88DF7BC5C402A147DB57A28066D6313F /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; 88F1CA2640C620519C4B83ABA9AAB387 /* TcpConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionFactory.h; path = rsocket/transports/tcp/TcpConnectionFactory.h; sourceTree = ""; }; - 88FEC41D5E6E03C1B4D0EEC5D1433502 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; - 890605CD3E314EC9B9611BEDAD9196E0 /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = ""; }; + 88F598AA1EFC372C09C827F2A5298EB8 /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; + 88FFB189967011DA8DF9F85079C0852A /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; 8907B394C281E14A19EB642E2601B7EB /* Flipper-DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-DoubleConversion-prefix.pch"; sourceTree = ""; }; 8917BA8D0AFD14A5E50ED75288A0C10A /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; - 892ACACF678844715CB306AFD8C18753 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; - 8962A3AB1972A134062050FD168AEDE5 /* EXLocalAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXLocalAuthentication-dummy.m"; sourceTree = ""; }; + 8929B2F8F07122B5DD0FB9B8EC31FCEA /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; + 895BE465EC3EE2A360286B0A0E693612 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; + 897A1D4B1BF35C4A5A25B3A1E935CFC7 /* RNFirebaseAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAnalytics.h; sourceTree = ""; }; 897EBB23B4B312E08E041AE91BFF2D31 /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Frameworks/FIRAnalyticsConnector.framework; sourceTree = ""; }; 8991A73760A2F18360BB91029A5BE83F /* 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 = ""; }; 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNVectorIcons.a; path = libRNVectorIcons.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 89B547B5B2FB6D8A1B67CEF47329FA12 /* RNFirebaseAdMobInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobInterstitial.h; sourceTree = ""; }; - 89C4B3B2CD1FDE56C69D142F03EE0104 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; 89C8773F55A4F4A5653989E3D9049C88 /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/chrono/Hardware.h; sourceTree = ""; }; + 89CFED324866656C4F7098D418D484E4 /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; 89DEBC69C72FAB86A6C4D57C7714F19C /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Public/GULHeartbeatDateStorage.h; sourceTree = ""; }; - 89F39CC71B68E39ED4ADE43058483368 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; 89FA77E838754CA3661D42AB224F42E4 /* filters_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_sse2.c; path = src/dsp/filters_sse2.c; sourceTree = ""; }; - 8A2D38415C9BDA898602EC4847A794FC /* RNCSafeAreaProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaProviderManager.h; path = ios/SafeAreaView/RNCSafeAreaProviderManager.h; sourceTree = ""; }; 8A5790B049B47159870C8A79F47F8748 /* RangeCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeCommon.h; path = folly/detail/RangeCommon.h; sourceTree = ""; }; 8A65D1F437F3BF3FD561C475B7FDF42B /* Allowance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Allowance.h; path = rsocket/internal/Allowance.h; sourceTree = ""; }; - 8A966DDAE0BE49D85728B6C2FEA74EDD /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; + 8A96A7DA87E7EB88363BBC8FA7C0225F /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; 8AA6D2182A38C3561B140B2E997661B5 /* StaticTracepoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticTracepoint.h; path = folly/tracing/StaticTracepoint.h; sourceTree = ""; }; - 8AAB56A3E9F02762A877ADADABED82F3 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = apple/RNCWKProcessPoolManager.m; sourceTree = ""; }; + 8AAA61F995A9B04DA57EC50A762FC18F /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; + 8AADBD833D999420B40A62D6A4790F04 /* 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; }; 8AB2BA319E65D547E2434D2916DC5C53 /* keyvalq_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = keyvalq_struct.h; path = src/event2/keyvalq_struct.h; sourceTree = ""; }; - 8AE6BB988C37FE97D1678C6BC28C1501 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; - 8B06148A16E66822E0D7B561CFC1EF7D /* RCTNativeAnimatedModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeAnimatedModule.mm; sourceTree = ""; }; + 8AD0A5CB1D0D3CD2BCA009B81F9BB319 /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; + 8AD5E726A25BEF67B9CB75353A83FC11 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; 8B124E865FCBD63DF12A08FEAD8E5204 /* GoogleDataTransportCCTSupport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransportCCTSupport-dummy.m"; sourceTree = ""; }; - 8B21BA4FAD083D3D105A46A5E31BD32F /* RNFirebaseAdMobRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobRewardedVideo.h; sourceTree = ""; }; - 8B3FA3257FB94308CDE8DD831FA9ACF1 /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; + 8B393081F65EE0184A857AA62CE4161F /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = ""; }; + 8B3E4AAF66C22411968EFAD2546BAB15 /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; + 8B49029E03D426208D29C7C57BDAD776 /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; 8B4A4767E25C7E05A7D2CAD7CD5270CE /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.m"; sourceTree = ""; }; 8B522DF9D1FB43DDF30B11219D02B194 /* enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse2.c; path = src/dsp/enc_sse2.c; sourceTree = ""; }; + 8B57915A482CF88D5E2A8D63B6036B11 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; 8B7A2809E52A3687C547497BD4140144 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/utils/utils.h; sourceTree = ""; }; 8B80F4933CEB39971843D1192358D422 /* TestUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestUtil.h; path = folly/experimental/TestUtil.h; sourceTree = ""; }; + 8B84C801B665E631DAA8EC05EFEF462C /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; + 8B9C04E3222A67441A61756262DBFFCA /* RNFirebaseLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseLinks.h; sourceTree = ""; }; + 8BA739E4BBE97866B42767451A9A1745 /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; + 8BC2B04115B184A59B814954CE51B581 /* 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; }; 8BDBA3B64038AF0758E644C9E892DCFF /* SingletonStackTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonStackTrace.h; path = folly/detail/SingletonStackTrace.h; sourceTree = ""; }; 8BEB988AF47DDAFFB88712AC01ADC2D8 /* upsampling_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse41.c; path = src/dsp/upsampling_sse41.c; sourceTree = ""; }; 8BF33E3D337BB985790D01909BD9E7E4 /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; - 8C108E508B53EF36687AA3DDC919D9B0 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; - 8C155F0FF36BE9E97E842352F2207414 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; + 8BF5BADD9451A740C33F8E78B648F132 /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; 8C183ADB6DBB0DE5FE8D6DF0B8B3820D /* Shell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Shell.h; path = folly/system/Shell.h; sourceTree = ""; }; 8C2E7263666D64DD3383131E446D675F /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = ""; }; - 8C3100AF91002DD0641DECA9EE6B6AA2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 8C3D4B1C7E262B5BE03017489A5BE167 /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = ""; }; 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-cameraroll.a"; path = "libreact-native-cameraroll.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 8C4CBAB83E3C0050DBDDD9AAE2B6D40B /* Access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Access.h; path = folly/container/Access.h; sourceTree = ""; }; + 8C50391E32F1647597BE734AF9F36DD3 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; 8C5A40FE1A90B848643C806855445324 /* Observables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observables.h; path = yarpl/observable/Observables.h; sourceTree = ""; }; 8C76AD245DCE1D4DE8C58E276B04D5AC /* Singleton.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Singleton.cpp; path = folly/Singleton.cpp; sourceTree = ""; }; - 8C8A5F2C9FFF91B5BC14FCABE9FBD6CA /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; + 8C7F8DC61947AAE6F131988A83E78144 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + 8C8258725B6514D8F505C6041FA55690 /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = ""; }; + 8C88428CB094A83923951DAB9491C13D /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = ""; }; 8C8D90F5510EA5AE35D352D016D356CE /* GDTCORTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer_Private.h; sourceTree = ""; }; - 8C910CC24C086E197750941C95262852 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; - 8CB45594DD06C32DF7399AF19B9E20E6 /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; - 8CB519AF1317C224A0079038A6E765DC /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; + 8CB31498551D90CC3E83F90E8A0DDABA /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; 8CB73B5E9363EB75C4438BD8545B3E6F /* Phase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Phase.h; path = folly/init/Phase.h; sourceTree = ""; }; - 8CBB8B36DA44725BA3658B8988038B04 /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCoreDiagnostics.a; path = libFirebaseCoreDiagnostics.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8CCC6BE8FE8A9A3CB9EE54F7D16953CC /* WebRTC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebRTC.framework; path = Frameworks/WebRTC.framework; sourceTree = ""; }; - 8CD005D0F8167E89E726EC24D86EF397 /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; + 8CD07C9B316C154FECFD4FF963C0B423 /* rn-extensions-share.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.xcconfig"; sourceTree = ""; }; + 8CDCE1E47B7388E3909F728A49F23635 /* RNFirebaseDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabaseReference.m; sourceTree = ""; }; + 8CE21B72017F351B06D99418F3998EEE /* RCTRedBoxSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxSetEnabled.m; sourceTree = ""; }; + 8CF11B6072C8C126008ACDD5215CD003 /* FBReactNativeSpec.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.xcconfig; sourceTree = ""; }; 8CF44E5B7DF3FFF2EF86931E2C09BEEE /* EDFThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EDFThreadPoolExecutor.h; path = folly/executors/EDFThreadPoolExecutor.h; sourceTree = ""; }; - 8D4945E36B5CAC10D6AAB064790C2915 /* RNFirebaseAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAuth.m; sourceTree = ""; }; + 8D3AE99B23D50E69F4FB054F6E5A1446 /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = ""; }; + 8D4FBB5B861B2C912EAE982A1D1CF0BC /* UMErrorCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMErrorCodes.h; path = UMCore/UMErrorCodes.h; sourceTree = ""; }; + 8D504EA0CF8077E1D6198D05281E8CA8 /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; + 8D769049AB3B27D143B48937641584E4 /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = ""; }; 8D7BA6DC44642EC93751E8EECF4885B0 /* GCDAsyncSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GCDAsyncSocket.m; path = Source/GCD/GCDAsyncSocket.m; sourceTree = ""; }; - 8DCE4D4B6D4BBF737B27AF55749D0EAD /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 8D84AF549514F96092AE06107C9897C9 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 8D86DB1AD5485B0410A126FCC0C45948 /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; + 8D9B427C03288A0DB252985BBDFE5599 /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; + 8DA51A5EC856863FC4224D5658CC1326 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; + 8DAEED43793D40ED413435AB88715FBB /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 8DCF2DF6E5E1AD55167C70CCE9203AF7 /* SanitizeThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeThread.h; path = folly/synchronization/SanitizeThread.h; sourceTree = ""; }; 8DE90D9AC64CC789B0287C1A80B3A674 /* ThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadLocal.h; path = folly/ThreadLocal.h; sourceTree = ""; }; 8DEA268588E248F3DE58AFAE146BAB80 /* Flipper-PeerTalk.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-PeerTalk.xcconfig"; sourceTree = ""; }; 8DF63376066E2275FF26820B3A512A9B /* libreact-native-webview.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-webview.a"; path = "libreact-native-webview.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 8DF6BA5C53B6AD87C2C553B17AC43728 /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; - 8DF9F18D426A2953F9EBA4E425050B81 /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; 8DFA724D628BD57FDF265E525439C4D8 /* MapUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MapUtil.h; path = folly/MapUtil.h; sourceTree = ""; }; + 8E09A1470F4B3283C05E781D8775627F /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; 8E0DAC4DD8D8FBACC1E5BF9B18820D0F /* Poly.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Poly.h; path = folly/Poly.h; sourceTree = ""; }; 8E0FBDDD93079F0A14972E00EFB08F32 /* Stdio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Stdio.h; path = folly/portability/Stdio.h; sourceTree = ""; }; - 8E3ACDC7504306FD88446A594EF21ECD /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = ""; }; + 8E1BC7ED511773804406EF08BED63AA5 /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; + 8E1C7BBCBB1C5B8FBB9FD5DFC86C4FAC /* REAUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAUtils.h; path = ios/REAUtils.h; sourceTree = ""; }; + 8E61BD1682BC89BA8714CEB46FF523A5 /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; 8E6EB4D43D4CE0873654D240C4D32BFC /* PublisherBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PublisherBase.cpp; path = rsocket/statemachine/PublisherBase.cpp; sourceTree = ""; }; 8E72DAB4A653E073E50E2A1100F41ACA /* CancellationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CancellationToken.h; path = folly/CancellationToken.h; sourceTree = ""; }; + 8E8A5018197A18920C5BE5FF9C041454 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; 8EA49DF3B79C11213E3096B0A2B77718 /* MoveWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MoveWrapper.h; path = folly/MoveWrapper.h; sourceTree = ""; }; 8EA79EEAAB7293A0804326F36B9AC889 /* Dirent.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Dirent.cpp; path = folly/portability/Dirent.cpp; sourceTree = ""; }; - 8EA7D1FBF69E61F7830FB148A5E50990 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; 8EC9872EC0E581F88E2A0E0207C7E270 /* SKTouch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTouch.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTouch.h; sourceTree = ""; }; 8ECA2F21A68ECC4CF80F79A32789911A /* RSKImageCropper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RSKImageCropper-dummy.m"; sourceTree = ""; }; 8ED78B5FC4AF458214116575D5FD08D2 /* SysFile.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysFile.cpp; path = folly/portability/SysFile.cpp; sourceTree = ""; }; + 8EF35648A59FD5DB6F7ED71EB947B1B8 /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = ""; }; + 8F15BDDF3430D62B0A017A83E7D76323 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; 8F24ACE2A977F7AB793D9A93778CD16E /* FlipperState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperState.h; path = xplat/Flipper/FlipperState.h; sourceTree = ""; }; + 8F2E1790724C4D9691892F63791306A2 /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; 8F4636C331CCE1E7390E1333A53B1F1B /* FirebaseCoreDiagnostics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.xcconfig; sourceTree = ""; }; 8F4F7137BD4EB80F3CA17A5174917F1E /* PTProtocol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTProtocol.m; path = peertalk/PTProtocol.m; sourceTree = ""; }; - 8F5F09B295F2D3446244328E54525852 /* RCTTVNavigationEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTVNavigationEventEmitter.h; path = React/CoreModules/RCTTVNavigationEventEmitter.h; sourceTree = ""; }; + 8F601F7F19B95F612BE5D94CB8FB5DDB /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; + 8F62C88B0B8F6B810B7E909D4872B87C /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; + 8F65DEA5CF1CEBED1414DEEE84F27C5D /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNGestureHandler.a; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F68E0CE6A3A45B21DAE0ADB89241CD9 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; - 8F83BAA8354FE1415F44E732F1032CE1 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; - 8F84156C094F7B42F9CC22A4446ACB15 /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8F7A33E47E27920831CF56E3211BC555 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; 8F907ED2066512531D35AFF9606DE706 /* Foreach-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Foreach-inl.h"; path = "folly/container/Foreach-inl.h"; sourceTree = ""; }; + 8F96F4F566619BA087F17E0672BACE93 /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; 8F99BD71342DF86B56CE25635997EA29 /* Flipper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-prefix.pch"; sourceTree = ""; }; - 8F9F12C986912FA2B49124546F609219 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = ""; }; + 8FA66CEEF304BF487060CE44C79EEA0A /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDevMenu.h; path = React/CoreModules/RCTDevMenu.h; sourceTree = ""; }; 8FB2A3F2B7BC082B52E02D5D06D423EF /* RSocketParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketParameters.h; path = rsocket/RSocketParameters.h; sourceTree = ""; }; 8FB7BB567A6CAE2F752CECF9B7CDB70C /* CString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CString.cpp; path = folly/lang/CString.cpp; sourceTree = ""; }; - 8FB827D3E661A96BF92BFE5C69281BF0 /* UMPermissionsInterface-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMPermissionsInterface-dummy.m"; sourceTree = ""; }; - 8FBD94102E34B2FB6F59A4A6E8F50EBE /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; + 8FCE97B87F2004AF515FCBD601F5AECB /* CallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallInvoker.h; path = callinvoker/ReactCommon/CallInvoker.h; sourceTree = ""; }; 8FD101C730304830BC97FC910A7DB082 /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FileUtil.cpp; path = folly/FileUtil.cpp; sourceTree = ""; }; 8FE0F244A1B099EC307B243AB8583E79 /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; - 8FFCAD5827966A8DE8809D1414255B0E /* RCTImagePlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImagePlugins.mm; sourceTree = ""; }; + 8FF62140184E1BAD871E5B8FF3A33F2C /* ReactNativeKeyboardInput-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeKeyboardInput-prefix.pch"; sourceTree = ""; }; 900F049E757FE3B0BEFD489FEC8CC87C /* IPAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddress.h; path = folly/detail/IPAddress.h; sourceTree = ""; }; 90264320EB1595B97152D9270C22C7E4 /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = ""; }; + 9034E359E2C9C4D864B55061A253F762 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; 90391A5AE4407FE1CB8B1C8683025E53 /* Hardware.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hardware.h; path = folly/synchronization/detail/Hardware.h; sourceTree = ""; }; + 904690DC9DFF884531DBE890DBC3E7EC /* RNFirebaseAdMob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMob.m; sourceTree = ""; }; 904AA330BDBFF96A1272D93B6B61F5B3 /* mux_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux_types.h; path = src/webp/mux_types.h; sourceTree = ""; }; 90537B1020C62F8000E181300CE2388B /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; 9053FD1709D958D2E1AE9D3B1D2F23DE /* RSocketServiceHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServiceHandler.h; path = rsocket/RSocketServiceHandler.h; sourceTree = ""; }; @@ -7957,1506 +7912,1518 @@ 90789D50ABC427329F415E8A1AB9FD22 /* NSBezierPath+SDRoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+SDRoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.m"; sourceTree = ""; }; 907ED2C32B312E66F3380CD86D0C2028 /* F14Table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Table.h; path = folly/container/detail/F14Table.h; sourceTree = ""; }; 909B45974AE02EE540314C73386554A1 /* GoogleAppMeasurement.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.xcconfig; sourceTree = ""; }; - 90B55EA33B950C64B25090F072B8B472 /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; 90C33347B5019D72B0153A47CD71F9C9 /* TimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimerFDTimeoutManager.h; path = folly/experimental/TimerFDTimeoutManager.h; sourceTree = ""; }; - 91297C5FA5AA16DE081A805FF346F321 /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; - 913EC418AF05573D3B6922EDCAAA5BCF /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; + 90DF0674E08860B569352D20BD836B67 /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; + 9104496C66FAE947936FDC76B082FE29 /* 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; }; + 9144E1923016492A3E1C5A3863DD6CBA /* RCTAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAppearance.h; path = React/CoreModules/RCTAppearance.h; sourceTree = ""; }; 914E5C444B63DD254F036CB9D76BB996 /* bit_writer_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_writer_utils.c; path = src/utils/bit_writer_utils.c; sourceTree = ""; }; - 915FFD88627EF3D1AA7B5CCC61FD9B82 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; + 915D92C368A58EA26D28A6A3CAECD987 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; + 917C9E160CBC14F1D772A19EDA8D134D /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; 91812A384E0D24CDD31A1A2C7D42DE82 /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; + 9189B7CFC60E657644EB3DDAC9210209 /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = ""; }; + 91A562D2B59CAA401119AC3562DD6438 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; 91A7D18C1595AEAD91301315D90BB800 /* ClockGettimeWrappers.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ClockGettimeWrappers.cpp; path = folly/ClockGettimeWrappers.cpp; sourceTree = ""; }; 91B02DE46170937025FB43F1144861F1 /* Pretty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Pretty.h; path = folly/lang/Pretty.h; sourceTree = ""; }; - 91B36F266B9D8615A7218FF77A6F09CA /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; + 91BF4AF0A71BD3E3D6F415C2E1844FC1 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; + 91C1B02EC5CC1A22AFA2EABF24E6F8BC /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = ""; }; 91C1F9D6EF27CEFC969B213B1F6DA6C1 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; - 92007FF67C73E7C4B6A81B82D3A7810E /* RNFirebaseDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabaseReference.m; sourceTree = ""; }; + 921F37724166A71912E427E6B1B092E1 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; 92303CFE59349CD41F2BC8F4FBC5E555 /* AsyncTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTrace.h; path = folly/detail/AsyncTrace.h; sourceTree = ""; }; - 9249B01F0C6DC3F1AEC3175EB9D2BB75 /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 92621C4B5A088E6D97328052B9A3A2D4 /* EXKeepAwake-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXKeepAwake-dummy.m"; sourceTree = ""; }; - 927ADF884056F9DE57AB890BF56E39EB /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; - 92A866209B909FF7DE356B121586DBA3 /* BridgeJSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeJSCallInvoker.h; path = callinvoker/ReactCommon/BridgeJSCallInvoker.h; sourceTree = ""; }; + 923CE589C446C840C1F25F0EB6BAA31C /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = ""; }; + 925033ABA65EC4A4A0569F0BB931F5F8 /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; + 9253181F81EC31F33BD654B6F8066DFD /* RCTActionSheetManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTActionSheetManager.mm; sourceTree = ""; }; + 9274BF6ACA6BA16D0FFA807EAFEF2E99 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; + 92847C60F1DF3FC7F44A8640A6238EF2 /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; + 9292869F1C5E1E48FECCDACD25352C47 /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; + 92A23A56B74B0056DB2B33EB4A60E902 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 92B2E2615F1D5C5A3DB51CFC1E41D2A4 /* MPMCPipeline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipeline.h; path = folly/MPMCPipeline.h; sourceTree = ""; }; - 92B46344955C5783FCE009877CFDE98E /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; - 92F4E9C8C6FD85E1FB12AAF8976197E8 /* 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; }; - 92F931B69167975533EFB5B58AFD1845 /* FBLazyVector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.xcconfig; sourceTree = ""; }; - 930C07D496B0306731EE1E12EB49EE36 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; + 92BDDD31A80B689CDF040BD06B39DFDC /* RCTSourceCode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSourceCode.mm; sourceTree = ""; }; + 92CB1C452D3102ED2053B96D83B67867 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; + 932119F3EC1041CA5127AD199C49B9E4 /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = ""; }; 93252A0BF5CCD57ABB693879E346D7E1 /* SysStat.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysStat.cpp; path = folly/portability/SysStat.cpp; sourceTree = ""; }; 93278509708B753DDDF596BCD5A12AAF /* WaitOptions.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = WaitOptions.cpp; path = folly/synchronization/WaitOptions.cpp; sourceTree = ""; }; + 93292D6AF38BF2943EFBF8B1D6EEE038 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; + 933C1DE48BB01D7907EDDD826631B00E /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; 937CD84033EBCEC7530AD7CD9164827E /* CGGeometry+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CGGeometry+RSKImageCropper.m"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.m"; sourceTree = ""; }; - 93C833509B4E07D36E97B0CAA0070E83 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; + 93BCC47DF9FF77EA4C8D86B59E660960 /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; 93CC7E8B8374FB50C008B576F253CC58 /* SKIOSNetworkAdapter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKIOSNetworkAdapter.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.mm; sourceTree = ""; }; - 93E5D3FA51D92B2EE1178BCAABA6F671 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; - 93F3F4E733620B7659DF3CB246FC200C /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = ""; }; - 93F4EB0ABAEF7024B00B36EB5E3A629B /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; + 93EA10E9544F94CE3D7CF12CB2323E41 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; 941320936BE5D0EF4CFCB3AD914D1BF1 /* SequencedExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SequencedExecutor.h; path = folly/executors/SequencedExecutor.h; sourceTree = ""; }; - 94190577BAEEC37307893DA822D0BAD7 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; - 94684772FF13857F48CC5125F84A19C7 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; - 947DC1D9D5F537AC8ADD1652D178F627 /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; - 9488757637FFD5FC260B3C294D47ED72 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; - 94923A18A7B065BEAF5EA283A6A12C58 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; + 941BE9107D69226EA419920CDD86FADD /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; + 94421D05FF42B5520560508983C521D3 /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; + 94789ADB65A3901F0272A7035F8A12E1 /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; 94A0F0C2B168029BE21DD002A1D3014D /* cost.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost.c; path = src/dsp/cost.c; sourceTree = ""; }; - 94AB3EA544ADE14FA2198F7AC7905656 /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; - 94B74D53963393C4A8D7CF14C52FB7DC /* 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; }; - 94BD5EC2A42468D9F9E45F78B2A3BFAE /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; + 94A12F2CDE548BCEA4F3443158FDB407 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; + 94B0CBD545862A7EBE11792F1A99E79E /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; + 94C7297C0105DD72124B500255D687C0 /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; 94CDAAC8014342546C86775C00F6A589 /* Barrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Barrier.cpp; path = folly/futures/Barrier.cpp; sourceTree = ""; }; - 94D018CAF5AFA03EE3483AF9FE1B9AAE /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; 94D55F9701D7D69D97942CC76015A5CD /* DistributedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutex.h; path = folly/synchronization/DistributedMutex.h; sourceTree = ""; }; - 94DC58CFD685B9D5EB1D708DC0020EE5 /* RCTScrollEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollEvent.m; sourceTree = ""; }; - 94FD43A814135FF3A79FCCD0F3B3AED0 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; + 94E48299149F24D975C8BA603D3E79EE /* RCTAccessibilityManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAccessibilityManager.mm; sourceTree = ""; }; + 94F9460629B6AE632D98BDE0F629BD2A /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; 9502B3630FA0ACFC8E44DB0231E49D4E /* TimeoutQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimeoutQueue.h; path = folly/TimeoutQueue.h; sourceTree = ""; }; 950A7A3F1F79B290137A6CD100BEA185 /* GDTCORUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadCoordinator.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadCoordinator.m; sourceTree = ""; }; 950DC6BA39A9B2A0B4CFCBC9C5DDE665 /* FIRInstallationsItem+RegisterInstallationAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstallationsItem+RegisterInstallationAPI.h"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.h"; sourceTree = ""; }; - 950FA3E66045AE57058D56A5E8E11B95 /* RNFirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseCrashlytics.h; sourceTree = ""; }; + 9520435F0879CCF621CD7A83573BE808 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; + 952B42CF2EC65DCF5379CF006C34718D /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; 953453F81B33399A8EEA663B3ACE3F22 /* YogaKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YogaKit-umbrella.h"; sourceTree = ""; }; - 95380A36C8E53465430D28FD7B86DE4F /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; 953F040C2DA4203914670D7DE272A385 /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = FirebaseCore/Sources/FIRComponent.m; sourceTree = ""; }; - 9540A2D9667B50079020C6B62A09F05B /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTiming.h; path = React/CoreModules/RCTTiming.h; sourceTree = ""; }; - 954BA722E978DF07D5EA4D46C7C691A5 /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; - 958E52FEE245E3C364A04B23B5C26A34 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = ""; }; + 956D36FEA0A3CBF16210B8CA56A4D3C9 /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = ""; }; + 957D51D1D3CEA160E7092767884C588D /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; + 958B3176F6D956FE1FAD81868DF72378 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; + 9596EE408B6B938C2E7C6D1200F5A609 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 95B7FB9B863028BB9152BC5789EF883D /* AtomicUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMap.h; path = folly/AtomicUnorderedMap.h; sourceTree = ""; }; - 95D3073A483921704D78E97838E101D3 /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; + 95CA6E0FA8A1D8CD890DA19C8A9AD226 /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; + 95D0801481BF92F86FC8EF6B5AA1C38E /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; 95D930E8CF335BCB777CCE4419A7A5B9 /* upsampling_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse2.c; path = src/dsp/upsampling_sse2.c; sourceTree = ""; }; 95ECD0DE5D568B252D0B716DB0CC1872 /* FKTextSearchable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKTextSearchable.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutTextSearchable/FKTextSearchable.h; sourceTree = ""; }; + 95EE0C5F4E34F0CE329B296E516110B0 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; 95F8B48CAD90F866E1861976E47A9C1D /* GoogleDataTransport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.xcconfig; sourceTree = ""; }; 96049167E2D8523393613FF3443A968C /* SKEnvironmentVariables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKEnvironmentVariables.h; path = iOS/FlipperKit/SKEnvironmentVariables.h; sourceTree = ""; }; + 96230DF4E3F73486B3A8F8F0CDEDCBA9 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTI18nManager.h; path = React/CoreModules/RCTI18nManager.h; sourceTree = ""; }; 963D71C0E93EFAE8B7D88349754F9DD4 /* FIRInstallationsItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsItem.m; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.m; sourceTree = ""; }; 96433AB848C8B2A54945D7CE0E979DD4 /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/Bits.h; sourceTree = ""; }; + 9649698622E9DCAA00534EB0CA4CA0AB /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; + 9653EA4AC521C28DAB9C8200F2FCA8A8 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; 965529006449D25900B4312A5DF2523C /* Config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Config.h; path = folly/portability/Config.h; sourceTree = ""; }; 9657D94D5B94272DCEFAAB4AD0E0F069 /* Windows.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Windows.h; path = folly/portability/Windows.h; sourceTree = ""; }; - 966C8893779B8233236017371E619B1F /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; - 9675F13CB46425163B7D8B264DAB751A /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = ""; }; - 9678206A159276B63BD2EB7EF1B3C227 /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; - 969F4338E2546A7304C7CDCDF06963A6 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; + 965E6D72E195FB1D0E95053C70D3D3B1 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; + 96A1B73A3452F7D8A584C4A04C826258 /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; 96A4B81E2E14D8CDD7B6FA53696D6345 /* evutil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evutil.h; path = src/evutil.h; sourceTree = ""; }; - 96A8287B0D35FA463B068CC6FC72D2D9 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 96B0274B985B1F863AC531E18FA0C104 /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; 96B8361313C96BE095FA055B86C358AA /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; + 96C95F158780A207A3DF0187A6F45A94 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; 96D6A7F603D91A945AC9ECFF83721FD2 /* GDTCORPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPrioritizer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORPrioritizer.h; sourceTree = ""; }; - 971EE41F6B621CBCB9749076D4A5A465 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + 96DFC1D9065E01034B4C262FAD966984 /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = apple/RNCWebView.m; sourceTree = ""; }; + 96F0797E7B67C00668BBE5F948D6345A /* RCTPerfMonitor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPerfMonitor.mm; sourceTree = ""; }; + 97299D7DF64C3A37AFAA626EFE383397 /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; + 97500C0903A8ED5A6554A1D5EBE21E91 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; 975457E6A4D4F140B9825F36E552F991 /* SynchronizedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynchronizedPtr.h; path = folly/SynchronizedPtr.h; sourceTree = ""; }; + 975823F16A54D59A863411205C024027 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; 976AAC54063299BD9B1366B0AF3E1F08 /* PicoSpinLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PicoSpinLock.h; path = folly/synchronization/PicoSpinLock.h; sourceTree = ""; }; - 9781C958ACDEA2F0867D3700ED83C082 /* Yoga.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Yoga.modulemap; sourceTree = ""; }; - 97C30C1EC16E4D7BF1E3192F02285C77 /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; - 97C7F766B25433997B07B1C978B966FC /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; + 97B89602ED6ABDDE6450722CCD0129D7 /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; 97D593C9AF6F9078D07746B21F87EDCC /* FlipperClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperClient.h; path = iOS/FlipperKit/FlipperClient.h; sourceTree = ""; }; 97D89037B0C626964E3489D4E4FBC103 /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = ""; }; - 97DDBC044CE7DA5CCCE4A31EF03BAB65 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; - 97FC6BD7C0618EAA750D1B4108648ECF /* RNCSafeAreaViewEdges.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewEdges.h; path = ios/SafeAreaView/RNCSafeAreaViewEdges.h; sourceTree = ""; }; - 98197B703C5B25832FEF5F172B51223C /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = ""; }; + 97DD6E501C8BBE027A870A3E4C025DD6 /* EXRemoteNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXRemoteNotificationPermissionRequester.h; sourceTree = ""; }; + 97EBACB78C56FB5EFA5B90D781EAF785 /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; + 9802786C99D260109FB3160F6E40F0FD /* EXLocalAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXLocalAuthentication-dummy.m"; sourceTree = ""; }; + 983283598AF5C3B66E8E773C2676715B /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = ""; }; + 9835E62FAC91524027FB1F208DB93D87 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; + 983775372B80DE84DFB21BFE08A9BAA0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 984D6282A0D257F57775F7BE9D8C2AA2 /* MessageQueueThreadCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MessageQueueThreadCallInvoker.cpp; path = callinvoker/ReactCommon/MessageQueueThreadCallInvoker.cpp; sourceTree = ""; }; 9858D08090F22A32B7CC8B17D0FD07AE /* filter_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_enc.c; path = src/enc/filter_enc.c; sourceTree = ""; }; - 9872589A0210618DBDA33C90F6F9EAED /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; - 98873A3FDAB5470E663EE8F658A77ABC /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = ""; }; - 988A4F90E6C77B510C4E26F1FFFF78FC /* react-native-notifications.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.xcconfig"; sourceTree = ""; }; - 988BA3376729A3D79C86FB6308A2522D /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; + 987D4D1AC79F152497F420C97D2EA5EB /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; + 9880EE0D5ABA07FDC55C47F6B699B88D /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; 98A2119BEFF602F65E786155973F58DE /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; - 98DC296BF9AB6C5F92D462E85FF0B4E9 /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; + 98B13B0717FC104AF9C47A2C0CB600EA /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = ""; }; + 98DF8ED2FF840E36AA190E7AEFD3E79B /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; 98E3827DA60F55DF0ED6789CD7C94599 /* SanitizeLeak.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SanitizeLeak.cpp; path = folly/memory/SanitizeLeak.cpp; sourceTree = ""; }; 98E77D6A25ADD24D6F07341AF8523362 /* IOBuf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOBuf.h; path = folly/io/IOBuf.h; sourceTree = ""; }; 9903C4D647B73B077323B2D4F90370B5 /* SDWebImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.xcconfig; sourceTree = ""; }; - 990D1CEEE097DFC53048ADB570956DD0 /* ReactNativeKeyboardTrackingView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardTrackingView-dummy.m"; sourceTree = ""; }; 99135951B134FDA8550CDFC21F381396 /* Ordering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Ordering.h; path = folly/lang/Ordering.h; sourceTree = ""; }; 992D961E24F23CBFB94C80495AF2AF3D /* MemoryIdler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MemoryIdler.cpp; path = folly/detail/MemoryIdler.cpp; sourceTree = ""; }; 993310A8BA742DA67AC8025E88E94E33 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; - 9934CD4A1C48A1C1391DA60625F6E769 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; - 99410C58C15B024D3AE97571C8B66664 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; - 9945AD5713750C36E0A34FAAA28D97AE /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; - 994A71C4449C02301B04DA85D8A982B1 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; 99649E983CFDAF5A5FFBCC9F63DE58D4 /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Subscription.cpp; path = yarpl/flowable/Subscription.cpp; sourceTree = ""; }; - 99B4FA6C21FE7D85DD4A2A26A3536958 /* RNFirebaseAdMob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMob.h; sourceTree = ""; }; - 99C9CBF9618B653FEE2EAB24B9742D4F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 999F8AF489FF8C4BAC572DC4F3BC0F59 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; 99D0BB4896A95C56B733C88FD61658B9 /* FIRInstallationsStoredAuthToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredAuthToken.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.m; sourceTree = ""; }; 99D5CD245388DC76AAEF6E1E351A90ED /* libFlipper-Folly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-Folly.a"; path = "libFlipper-Folly.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 99E92B76B0F8521D83C293ABF6FEC47F /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; 99EB79250CAFBE831DD800AC96C545FA /* ExecutorWithPriority-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ExecutorWithPriority-inl.h"; path = "folly/executors/ExecutorWithPriority-inl.h"; sourceTree = ""; }; 99F2717B1512D7A99F98928DE0F0E81B /* whrlpool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = whrlpool.h; path = ios/include/openssl/whrlpool.h; sourceTree = ""; }; - 99FCA9864B72846B0670BFF06C050B38 /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; - 9A2B89C600999072980916EFDBA63AEA /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; - 9A2E36F623BDC96728EFCD9D1A8DDBCE /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; + 99F43DDAD9C6F4155504DF0EE3360570 /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; + 9A3F61FD9CE62EC5A7611996C05EDA43 /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; 9A416D059E005D2144C88BA1A85790FA /* FlipperDiagnosticsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperDiagnosticsViewController.h; path = iOS/FlipperKit/FlipperDiagnosticsViewController.h; sourceTree = ""; }; 9A5366E641B196D18C36D850B6F32803 /* ssim.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim.c; path = src/dsp/ssim.c; sourceTree = ""; }; + 9A55B1936B773977D30BC1489AE0ADC1 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; + 9A57A7FE26B4B00118D3600D48D730F6 /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; 9A5B9ECF7C0213402392EDEA2A5E6BDF /* AutoTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AutoTimer.h; path = folly/experimental/AutoTimer.h; sourceTree = ""; }; 9A5F220B6334886ABEE8D6C75154DC47 /* F14Set-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "F14Set-fwd.h"; path = "folly/container/F14Set-fwd.h"; sourceTree = ""; }; 9A66471CD4E68165E386B80F895A3994 /* DelayedDestruction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestruction.h; path = folly/io/async/DelayedDestruction.h; sourceTree = ""; }; - 9A86B606D84FC5918002098DE6846840 /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; - 9AAB2A68C220F565273DB515053421EA /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; + 9AAD79F5A42BCF7E3589B455DA13DA42 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 9AB9A338105236D77A1F05D7CF2BF40F /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAsyncLocalStorage.h; path = React/CoreModules/RCTAsyncLocalStorage.h; sourceTree = ""; }; 9AC4D1460171F9A658F53ED094D81A76 /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; 9AC6A269C5C9BDCF2C63D254462FF5E8 /* FlipperStateUpdateListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStateUpdateListener.h; path = xplat/Flipper/FlipperStateUpdateListener.h; sourceTree = ""; }; 9AD02296AB653CD27FCFA46922CDFBBE /* Payload.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Payload.cpp; path = rsocket/Payload.cpp; sourceTree = ""; }; - 9AE9D6D7F0077A5B4EDED9DB57BCFD8A /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; - 9AF67609001A45E16F9812CB6552BC57 /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; - 9AFEC1A12795E05C8A3BB3055E52B65A /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = ""; }; + 9AE1E2D41BCF3547C5D6E9285A7A0044 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; + 9AEE5D2A36E70EE7613ABFA94AA0963F /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; 9B08EC2AE6AE6421C1E5B1910083B1DE /* StreamFragmentAccumulator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamFragmentAccumulator.cpp; path = rsocket/statemachine/StreamFragmentAccumulator.cpp; sourceTree = ""; }; - 9B38541B457DEF769B21EBCD7B0AEA4B /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; - 9B4B3036D4BA8F33E941D941CF48E3DB /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; + 9B2A7899B8715B32B74DD5C3B946D864 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; + 9B5F0CF2A5F87D7A3DF9A005B8B7BE6F /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; + 9B6A5D18454E29015601EE0AB3932E2F /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; 9B6E93E99600E2A2E78D6C3DEA82A418 /* FIRCoreDiagnosticsConnector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsConnector.m; path = FirebaseCore/Sources/FIRCoreDiagnosticsConnector.m; sourceTree = ""; }; 9B72894A5002A1DEC2A532BEE053A8FC /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/experimental/Bits.h; sourceTree = ""; }; - 9B8384303A2532E24C921A0F688CA617 /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; + 9B77400B33B27A0D4F413B65DAD70170 /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; 9B9D91ACB858F7E91ED94369CA7E6C53 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event.h; path = src/event2/event.h; sourceTree = ""; }; - 9BA16C8E1EE792F051C468252733D6A9 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; 9BC3411E2C598037179D556382232F0A /* Flowables.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowables.h; path = yarpl/flowable/Flowables.h; sourceTree = ""; }; - 9BDD9AD6CBDA0656FB33DD8C1354B565 /* RCTImageURLLoaderWithAttribution.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoaderWithAttribution.h; path = Libraries/Image/RCTImageURLLoaderWithAttribution.h; sourceTree = ""; }; + 9BE8F1BB7020D48EDE81B0588D91B91C /* RCTWebSocketExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTWebSocketExecutor.mm; sourceTree = ""; }; 9BF15DF569A38692EECB32ADF50BE67B /* ScheduledFrameTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledFrameTransport.h; path = rsocket/framing/ScheduledFrameTransport.h; sourceTree = ""; }; - 9C1107DC0C92960D72614B9190759FC3 /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; + 9C093D15DB44B6A039662E2B3127C1B1 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; 9C1385A1BC08D636A83049E80BA675A8 /* ClockGettimeWrappers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ClockGettimeWrappers.h; path = folly/ClockGettimeWrappers.h; sourceTree = ""; }; - 9C1F97993C8D8F56705CB4CAEDDEAC3C /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; - 9C22F7E35FDC62277F9BC5267264D97D /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; 9C251BDD668A0833CABC259C54C08DB3 /* Pods-RocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; + 9C32BD94AF345C94380FEC5BC4682F4B /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; + 9C3A30B77E206AF30D0EA8404F3DB572 /* 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; }; 9C44288E4F9D989101F85D6BC24EA9B5 /* Pods-ShareRocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ShareRocketChatRN-dummy.m"; sourceTree = ""; }; - 9C48F897B5BA1914E197F527232FA527 /* EXUserNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXUserNotificationPermissionRequester.h; sourceTree = ""; }; 9C508B25590A036A896571F6E1BECC91 /* Conv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Conv.h; path = folly/chrono/Conv.h; sourceTree = ""; }; 9C51EAC64D5DC8E7AD2158B3EF4BE014 /* vp8i_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_dec.h; path = src/dec/vp8i_dec.h; sourceTree = ""; }; - 9C7D1B455671EA056C902123DDB90E26 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; - 9C8F1E1F6089D261272D8D03F1ED97CF /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; - 9C98121B84B233D079C9A3CE83E8708C /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9CAADB612BE02D149D127DC9EDBD247F /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; + 9C7883852A1AC50FDD1C402090D6BE54 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; + 9C9C6204F679A278A71A7D39DB493997 /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; + 9CA0138AC2409FC352A70AA456101A64 /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = ""; }; 9CACE3A2DAF8E32A621D0CD75A3783BE /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; + 9CB28BF7526B26E288643470FB2F06C3 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = ""; }; + 9CB7A4A99C876A28F36C0F5C9D454E56 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 9CD8000385E0B18CACE3190FC574A7C3 /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/Portability.h; sourceTree = ""; }; 9CDAA627AE174F13FE1B9E69D7208E8C /* EventUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventUtil.h; path = folly/io/async/EventUtil.h; sourceTree = ""; }; 9CDF1F3AEEC7567280369856FF0EFE34 /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/FirebaseAnalytics.framework; sourceTree = ""; }; + 9CE7F533680E4C4799B9233BBAB2301E /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; + 9CE805BC8AF7C18A945002879CEEDFE0 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; 9CFFD22667604FFF6621EF6AFFAC0ABF /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; 9CFFF4D66CC03E01CA114647C324BF2B /* x509.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509.h; path = ios/include/openssl/x509.h; sourceTree = ""; }; 9D09D3B346118EA147B444C718299AE4 /* Common.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Common.cpp; path = rsocket/internal/Common.cpp; sourceTree = ""; }; + 9D199A68196561A183C2C458273B89B3 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + 9D2728DCA1A94E5FC2AE586207F7114B /* RCTRedBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTRedBox.mm; sourceTree = ""; }; + 9D36876618AF8C1D5CFD7D670B6F00E6 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSourceCode.h; path = React/CoreModules/RCTSourceCode.h; sourceTree = ""; }; + 9D38E6FDD4A61F1F05EA4D9DA4A2853A /* RNCSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaViewManager.h; path = ios/SafeAreaView/RNCSafeAreaViewManager.h; sourceTree = ""; }; 9D4CE3A71A5538DAAC51A80FB5C2E65D /* GoogleUtilities.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.xcconfig; sourceTree = ""; }; 9D8E50F8C628C76761489E50813FF2D3 /* ConnectionContextStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionContextStore.h; path = xplat/Flipper/ConnectionContextStore.h; sourceTree = ""; }; 9D9104ED8685F165F835159990D4F58E /* Futex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Futex-inl.h"; path = "folly/detail/Futex-inl.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; }; - 9D9953979307451128D4E556D376430A /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; - 9DBF4D24AFC5285B24DF28C06AA633AB /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; + 9DA801A0D86CF44C48116E43AEDC8415 /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; 9DD9693B486CD4C8709FF42213D434F1 /* GDTCORAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORAssert.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORAssert.h; sourceTree = ""; }; - 9DE6FE2B0EAF64393EAAF37AE268A59D /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; - 9E0E9F3CEF59482A043F2E3150CAEA0E /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; - 9E1FB6B4A44DC3F5D2618CED7EA91FED /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; - 9E4ACD2D1BB805CB1FE0BC1C0930A8E6 /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; + 9DFAADFF4BFEA5270DB56B0FC1A13236 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; + 9E2F76B6E1E1EB19639E0B346D5E3604 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; + 9E3F70C674345053796E4334EFB53427 /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; + 9E83CC859073893957AD662AEFB9EFC7 /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; 9EF1D6AF8629BAB66F153FAF672DB8D6 /* SKResponseInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKResponseInfo.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKResponseInfo.h; sourceTree = ""; }; 9EF3A2D266889D108A68CD6120506782 /* GDTCOREvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREvent.h; sourceTree = ""; }; - 9EFDB3D608A8D5F202D496AC45456444 /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = ""; }; - 9F2B174BD2BDAEB745C526A9F0ABB786 /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; - 9F4297F5B8A71095E993382EA72EB207 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; + 9EF66DC7902176479EC3A7E6677350CE /* RNCAsyncStorageDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorageDelegate.h; path = ios/RNCAsyncStorageDelegate.h; sourceTree = ""; }; + 9F27146AEF64C6E7181C8D981C69E02A /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; + 9F392271B33493EDB35C410C2AF6734D /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; 9F5E5E7947A5559B8B8DDDD4748189BF /* lossless_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_msa.c; path = src/dsp/lossless_msa.c; sourceTree = ""; }; + 9F82AE6DD88AA846CA41C23D4FF460AA /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; 9F872802024BEDB3B2C7D59B0057891E /* lossless_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_neon.c; path = src/dsp/lossless_neon.c; sourceTree = ""; }; 9F8C516CB2AEEA8AEA997D08A130F7BB /* vp8li_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_enc.h; path = src/enc/vp8li_enc.h; sourceTree = ""; }; - 9F8CEA997F00BBDBFCDC9BD09A8328D9 /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; - 9F91FBD8C02402B3464620BBA5223D9D /* RNFirebaseCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseCrashlytics.m; sourceTree = ""; }; + 9F926D61524B0E52E67BC8EDEE7B51BE /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; 9F932A9BB7CDCDC99B0DD8738E4601E0 /* FrameSerializer_v1_0.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameSerializer_v1_0.cpp; path = rsocket/framing/FrameSerializer_v1_0.cpp; sourceTree = ""; }; 9F99774561F4F74FC925E3F5E9EBDD5C /* Time.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Time.cpp; path = folly/portability/Time.cpp; sourceTree = ""; }; 9FA394ACA7C44B4C9B2B5516E8F68792 /* HazptrRec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrRec.h; path = folly/synchronization/HazptrRec.h; sourceTree = ""; }; 9FD00D90B96515E7533FA8D18F3EDA47 /* Promise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Promise-inl.h"; path = "folly/futures/Promise-inl.h"; sourceTree = ""; }; 9FF35AEBAC7F7D5E574BAE659430B77F /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; - 9FF3DD9B9C1335E737870C0ECA10AD76 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; + 9FF53C6BFB492D84AFA525364B3D7749 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; 9FFDEF6694588702A45512615587873C /* FIRAppAssociationRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAppAssociationRegistration.m; path = FirebaseCore/Sources/FIRAppAssociationRegistration.m; sourceTree = ""; }; - A0127FEFFEA4DAB715DA8E9814B88B22 /* RNCSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaView.m; path = ios/SafeAreaView/RNCSafeAreaView.m; sourceTree = ""; }; A017F7F754B9A7F93BB1415B725A3A4C /* Base-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Base-inl.h"; path = "folly/gen/Base-inl.h"; sourceTree = ""; }; - A03BE085C2E0CAA3999ED8B435C119A8 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; A0403F0F9C1AC41CDC6A65C8AA14B4A0 /* GDTCORAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORAssert.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORAssert.m; sourceTree = ""; }; - A040E75C09052596DFD08A69E7D684A3 /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = apple/RNCWebViewManager.m; sourceTree = ""; }; - A055F23165266D3F07A6EDFF9AB5D5C8 /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; - A07458186537F860067BEEAE8BBAE3F4 /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A065F6A32D5B68FA00622A733E69E4F0 /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; A086110668900BFCCD33139690B5B7F3 /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = ""; }; A08D7DDCA509340F213D190D49CD7EAD /* ChannelRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ChannelRequester.h; path = rsocket/statemachine/ChannelRequester.h; sourceTree = ""; }; - A0AE1F909E2334BA4F0E4BDCC7D9C45C /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTStatusBarManager.h; path = React/CoreModules/RCTStatusBarManager.h; sourceTree = ""; }; + A094DFB5652F74DC9F635E18A3DFDC3E /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; A0BBA4F76E2DC81178258BFB7841B712 /* ShutdownSocketSet.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ShutdownSocketSet.cpp; path = folly/io/ShutdownSocketSet.cpp; sourceTree = ""; }; + A0C2828F2B4FF05802F9848E410B8618 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; A0DB89335435413CEDC7E2202D0CE2AC /* GDTCORUploadPackage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadPackage.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploadPackage.h; sourceTree = ""; }; + A0ED982208918E631CC8CEFAE53C2933 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; A10567661A3C607D86AB9C073080A322 /* rpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc.h; path = src/event2/rpc.h; sourceTree = ""; }; + A1094A00A5F3A0C873FB4ED9B61090D6 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; + A1187D2DE7913231B81EA06DA1E81AC7 /* RCTLogBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLogBox.mm; sourceTree = ""; }; A11D53345D3B620DEA2CDECBB877F258 /* StringKeyedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedSet.h; path = folly/experimental/StringKeyedSet.h; sourceTree = ""; }; A11FDACF933BFC48C7F25902DCD57908 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = src/webp/encode.h; sourceTree = ""; }; - A1213869BBAAEDD07DD56606232430C5 /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; - A1302FD8C4F8F08CA345E43026D50654 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; + A13FC2338F3D6F110DDB43625E805AD8 /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; + A14E0D87C342ACA2A7F7E27AF1B68617 /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; A1530C9267EBA1AD0A80EE430F809CC9 /* RSocketRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketRequester.cpp; path = rsocket/RSocketRequester.cpp; sourceTree = ""; }; - A1534F22DB54903C6CC1A9A16D27592C /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; - A176CFF797D0340E3AF784BA6E4A8770 /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A16D81C8FE1CCC9CD79A6FE6991E7CFB /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A181A43245853FAC86236B435A587F7A /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = ""; }; + A1933BBD02D38ACD2CDFDE37C780B203 /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = ""; }; A193AC76514F0C4951A51C6AB1E59996 /* err.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = err.h; path = ios/include/openssl/err.h; sourceTree = ""; }; - A1CE6E3724E76CA87B21FCF16692A6CC /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; + A1B6E0DEAE050B7F6A8B40D80576E20D /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = ""; }; A1D3BE504280FA7FCA187A950D48BCB7 /* FutureDAG.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FutureDAG.h; path = folly/experimental/FutureDAG.h; sourceTree = ""; }; - A1D6AF6DB4FEDD98B983F99933FB44AF /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = ""; }; - A1FCA69C255F8634784234D96A3DCC72 /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = ""; }; + A1F03DD2D365629559DE3DD8C082C020 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; + A1F14998FCA22D0DA4C9B893F4D8917A /* ReactCommon.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.xcconfig; sourceTree = ""; }; + A1F302D34A31CE72D0DD9A4D7BB5FBCF /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; + A1F450DEB047BC3ED02DD9E68AEA8289 /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; + A1FD0EA09E15891DDD4ACE1E69F43381 /* UMAppLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMAppLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A2191BF801355D0DA84F034E7EB2E83C /* IOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOExecutor.h; path = folly/executors/IOExecutor.h; sourceTree = ""; }; A21F660C6F4A88B7477EE0F663966EA6 /* SKIOSNetworkAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKIOSNetworkAdapter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/SKIOSNetworkAdapter.h; sourceTree = ""; }; - A22165C603CF86BBA62AFC8C08B2D7EB /* RNFirebaseFirestore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestore.m; sourceTree = ""; }; - A229D9F50A2C098F0B13EEFFCFD153DB /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - A23D607E7B3F516107A22AC845C14446 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; + A24F0651001D095FEC18B9B782680C46 /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; A250758E44F4A5F1DCD80E124D73D269 /* CPUThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CPUThreadPoolExecutor.h; path = folly/executors/CPUThreadPoolExecutor.h; sourceTree = ""; }; - A26D555F22D3C4D5CC22A443F85F09BB /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; - A27F1F03F7BC60CAAAFB4C8FF1386CAA /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; + A2746C52008108330934A370E0ECCB4D /* ReactNativeKeyboardInput.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardInput.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A284C22076F6E210152F6954E6818433 /* demux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demux.h; path = src/webp/demux.h; sourceTree = ""; }; + A293EC2DCDBF9361BF57D53D69463EAF /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; A2954EDA5F99AA994A574222E19F60A3 /* symhacks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = symhacks.h; path = ios/include/openssl/symhacks.h; sourceTree = ""; }; + A2BA7BB9FDDDEEA91B757EF42419EFF6 /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A2C2BD6AFB03830F94794DF027E7A3D1 /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; A2D8DC65E6AEE62F2E8C0681847C6771 /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; + A2E0CC2B5B8F2A4D0940A946D22685E0 /* EXKeepAwake.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.xcconfig; sourceTree = ""; }; A2E40DD2E9D2404F4D1228100017FB63 /* MasterPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MasterPtr.h; path = folly/experimental/MasterPtr.h; sourceTree = ""; }; A2F36FC3A058C8D9905595D65EF6FC03 /* Barrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Barrier.h; path = folly/futures/Barrier.h; sourceTree = ""; }; A313721673F604A436A4747E7320DAAD /* huffman_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_utils.c; path = src/utils/huffman_utils.c; sourceTree = ""; }; - A348072444435A6F99F3323DB6778CA3 /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A32323E2A9D4274BEA35FD58720BBE89 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; + A357C1C79D11A5E4B03E38EBCD13B1EE /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; A36CE3017C1F5A32EBEE065CC8855CD9 /* 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 = ""; }; - A36D18CC47B5E1224A000592EDBD934A /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = ""; }; - A3832A17FF69F44CF1382D0F01546B2D /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; - A38575B3B8EA9243005150A893EA2112 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; + A38739075BE8C49655328CA01FDB4211 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; + A3886BA996379E627EC6F3B2F37D0000 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; A38F9408FEA21E580CAEB9C2D22CB895 /* EventFDWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventFDWrapper.h; path = folly/io/async/EventFDWrapper.h; sourceTree = ""; }; A39ED56B7975173BFDB659D2B177FE9B /* SDWebImageOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOperation.m; path = SDWebImage/Core/SDWebImageOperation.m; sourceTree = ""; }; - A3AB6894CE98026540443F3ECFFD15A2 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = ""; }; + A3AFE9E5C2A22F3A7BA9283481692588 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; A3B579D0718FD897A3F357CDFDAAC02B /* SKScrollViewDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKScrollViewDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKScrollViewDescriptor.m; sourceTree = ""; }; + A3C8CED532EE69042B4BD85F324EDBB9 /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; + A3C976C0C9E4692B59E23F4569D6001A /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; + A3C9F7CFD71D9EC434C4884589E690A1 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; A3CC1960619FE028FB7D20D56AC1819D /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; A3D19E82F6253E5548882A5A39A7E6B9 /* DefaultKeepAliveExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DefaultKeepAliveExecutor.h; path = folly/DefaultKeepAliveExecutor.h; sourceTree = ""; }; A3EBD396E277E6D7DD574B77821C8CCB /* Subscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscription.h; path = yarpl/observable/Subscription.h; sourceTree = ""; }; - A41064C9FA8F1A7C29EFF9F8B583AF54 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; - A4392652ED21B6B19AF66D94D815A783 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; - A4434D42050CE6D5CA8C346DB7F50E9B /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; - A462A2E1387C3E05B13E454FD9C7C5C3 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; + A42AC6EEE3449E7D788374F9B28D5F2C /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; + A42D2B3CF00BA2B3485C21C51CB84E49 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; + A46BA424F67F2C0AE8433FE86DF04D66 /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = ""; }; A4853219A1811FEC6666B9C528C04D9B /* CMakeLists.txt */ = {isa = PBXFileReference; includeInIndex = 1; name = CMakeLists.txt; path = rsocket/benchmarks/CMakeLists.txt; sourceTree = ""; }; - A48F2BC58B4B65559CFF40E6AF5D31D8 /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; + A48A149DEAAF21204FE75288FB4F0CB3 /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; A49371BEDC993D9EDE2700582E038300 /* CallstackHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallstackHelper.h; path = xplat/Flipper/utils/CallstackHelper.h; sourceTree = ""; }; - A49BFFF090944480DC816615C37D8111 /* RNFirebaseFirestoreCollectionReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreCollectionReference.m; sourceTree = ""; }; - A4A57AAD4F3D69657E8D24CBC1659818 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; + A4A926B9AEFB38F0C367919B6A7CE86A /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; A4B9E8D6A2DDF29D5C5F6F40BA57D60F /* RSocketServiceHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketServiceHandler.cpp; path = rsocket/RSocketServiceHandler.cpp; sourceTree = ""; }; A4BCECFB05C7458380B93A21BF9E05BA /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; A4C9F319863A3E9AA126317EB324BB45 /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; - A4D47E197DC0F3E2DBF3C4445BF0A1AC /* RNFirebaseFirestoreDocumentReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreDocumentReference.m; sourceTree = ""; }; A4DBE32307681C219297FF5F98951B89 /* CheckedMath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CheckedMath.h; path = folly/lang/CheckedMath.h; sourceTree = ""; }; A4E5C1A08ABAADFAF8C3B9A3F8F5E8C5 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; - A4E651B07840425D4D95B5723F1449AE /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; + A4EC7AA9C7BC50D70AB5A7FA0AA3C6FA /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; A4F1BB4AD11B8B0876DE2E21A6833B04 /* rescaler_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_sse2.c; path = src/dsp/rescaler_sse2.c; sourceTree = ""; }; - A5006732F65587CD1537CE06DC7E867B /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; A51ABC586C299853B08123F512C1DA70 /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Private/GULNetworkConstants.h; sourceTree = ""; }; + A5288D0138C700F37D5F9544FDCE7EC9 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; + A52CEA1075CFB48559DE962C61E9A405 /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; + A54474AD5A01A43B6E5C7B3E70AA79D3 /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; + A5451290C001BACA059F4CCADF8962F5 /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = ""; }; A5711F1C2346B03337D5B19F4C3979E2 /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; A57941512BEF6D020A629A9322962054 /* Future.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Future.h; path = folly/futures/Future.h; sourceTree = ""; }; - A57EAC7845873FDBDBDF56091C146267 /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = ""; }; - A581FCB78821DDAE95B2AE064BE4DC45 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; - A58D33408D0EB2921512E467A46DDDF7 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; - A595BE706668D105B4C902B56126AC98 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; - A59A3367288ADAB08AA4A94015AEAA17 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; + A5900BBACDCD80BE8A37E3943C76E8C0 /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = ""; }; A59AED1459218BFDCBC71446311AA614 /* HazptrDomain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HazptrDomain.h; path = folly/synchronization/HazptrDomain.h; sourceTree = ""; }; + A59EA16D7394CDC58C728B1031735568 /* react-native-notifications.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.xcconfig"; sourceTree = ""; }; A5A10F34324B6C322E444D3BEC47318B /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = ""; }; A5A55FFCE4292E4E32CA21DEBA8CFD79 /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = ""; }; - A5A7654B4C703570917FC019CD6FB717 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; - A5B407CB7FB98FE235ED25666DD2A4A7 /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; + A5A88B7A922E2D9C2F863A94F09E37E6 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; A5BB2FFFE6D3DB392ECC57F154030858 /* EvictingCacheMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EvictingCacheMap.h; path = folly/container/EvictingCacheMap.h; sourceTree = ""; }; + A5CDF8E8EF110508885D8EE58C50B06C /* RNFirebaseAdMobBannerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobBannerManager.h; sourceTree = ""; }; A5EA031AE10CB8C054D8F8AD27C8D814 /* StreamsWriter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamsWriter.cpp; path = rsocket/statemachine/StreamsWriter.cpp; sourceTree = ""; }; - A61C638B1EA38EE4558EF4004C289962 /* RCTImageStoreManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageStoreManager.mm; sourceTree = ""; }; - A621B444001C82637FAD3190B2A8A5F1 /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; + A5F8BDF0DA8AEB57878C86E6EF91B6C5 /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; + A618B8630154703739DBD50828EA56B5 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; A62B7F9D8BA15A75694B82E48D5AD161 /* Subprocess.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subprocess.h; path = folly/Subprocess.h; sourceTree = ""; }; - A638D0FA7AB3205099F7E8D5BCCD88E9 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; - A6492D18FCBF482B6DBECD94BCFE3721 /* RNFirebaseRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseRemoteConfig.m; sourceTree = ""; }; A66D1EF142F4FBE3A1B7B2FE7DB0D4C3 /* GULHeartbeatDateStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorage.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorage.m; sourceTree = ""; }; A673645F2A933818C12FFBA617D84A8C /* PThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PThread.cpp; path = folly/portability/PThread.cpp; sourceTree = ""; }; A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTNetwork.a"; path = "libReact-RCTNetwork.a"; sourceTree = BUILT_PRODUCTS_DIR; }; A69882B252866215CF34152328864C90 /* Flipper-PeerTalk-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-PeerTalk-prefix.pch"; sourceTree = ""; }; - A6AE3A16051DF5AC6EA9519C91C6D99A /* RCTUtilsUIOverride.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtilsUIOverride.m; sourceTree = ""; }; A6B1AF818C0C12B3452CDE12F36C1B8C /* event_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event_struct.h; path = src/event2/event_struct.h; sourceTree = ""; }; - A6D0908A5C598184049B728C746E1834 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; + A6BAA1941CE4A983F886D0036CB4A042 /* RNCMaskedView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCMaskedView-prefix.pch"; sourceTree = ""; }; + A6BC86E3BEA741E29A8DEEABC27592D7 /* RCTNativeAnimatedModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeAnimatedModule.mm; sourceTree = ""; }; A706122612151D161E2D2E611C819ACE /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; A718E68D26BDCFE9B9CDA4F834EF9883 /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Private/GULNetworkMessageCode.h; sourceTree = ""; }; - A73FCFE546A7888540B3404F38F752AC /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; - A77464EF37DA5927C152BFF014210D1F /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; A778DDD581ED2D015FDBC2547EC4FA0D /* CancellationToken-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CancellationToken-inl.h"; path = "folly/CancellationToken-inl.h"; sourceTree = ""; }; A781FCABDE816936461B692A120A64E1 /* SanitizeThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SanitizeThread.cpp; path = folly/synchronization/SanitizeThread.cpp; sourceTree = ""; }; A79382FD3D2B0EBF6A69C693409B1953 /* Flipper-Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Flipper-Folly-prefix.pch"; sourceTree = ""; }; - A79CE02B4FF34545D6C0A5F45038CD6E /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A79C1A4DBFDA57CFC27127DBB2A11675 /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; A7BAB4ED12A4A8C6D1E464A369EAE565 /* SKViewDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKViewDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewDescriptor.mm; sourceTree = ""; }; - A7C051B36684AD35D3B9E0855DC0B533 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; + A7D66534F7C21899BB0ABEBB274A4060 /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; A7F14F402D392BE57FBCF2876E86D236 /* Flipper-RSocket-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-RSocket-dummy.m"; sourceTree = ""; }; - A7FF20675CB7892F4FB555C651D6B8E5 /* RNCAsyncStorage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCAsyncStorage-dummy.m"; sourceTree = ""; }; - A803CD8A3F7CDDDA5937C6C863FFB920 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; A812F7CBC28C9A871E97E273CBD9202C /* aes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aes.h; path = ios/include/openssl/aes.h; sourceTree = ""; }; - A8134D4E8FEF2248A87CFF788DE69B83 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; - A815042718BB3946437B56DA39AB42D0 /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; - A8221DB088F1F97FA01608BCBB7F6805 /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; + A82A1A37003121FFF1FC59A5D04B5D1A /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; + A82E856B1804DF5549E0D6DF090F378A /* RCTTiming.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTiming.mm; sourceTree = ""; }; + A83C15C2E1E06665BD6E603B7BFAC3C2 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; A84B2126B26B6F8F513DC38027D01476 /* RequestResponseRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RequestResponseRequester.h; path = rsocket/statemachine/RequestResponseRequester.h; sourceTree = ""; }; + A866D8724690179C443304DD01537B91 /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; A86A3C6E957BCDF5D9F50C3BA611EFEA /* enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_neon.c; path = src/dsp/enc_neon.c; sourceTree = ""; }; A87B512D4AC3E8861D8E208D7977CFDD /* IPAddressV6.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressV6.h; path = folly/IPAddressV6.h; sourceTree = ""; }; - A88369EA1BA308AADC69E71FC52944A5 /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; A88BA7B3FD0C44D083A54567E699CE9F /* ThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadPoolExecutor.h; path = folly/executors/ThreadPoolExecutor.h; sourceTree = ""; }; - A8900F07EF4F2C1C02C4706CA08672AE /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = ""; }; - A89985B8D6B7454457C079CABB112119 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; A89A5E13A345AB0BD7A3A25759280635 /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; A8A52A66D6ECB595B10AB378B99C8CFD /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; A8A6F0742B14C8D349D9BCB716825AEC /* AtomicHashMap-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicHashMap-inl.h"; path = "folly/AtomicHashMap-inl.h"; sourceTree = ""; }; - A8C28AB7DDB0812AAA3FD5A41BAFCD6D /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; - A8D67A0C91A2C8F802E131D64416F0A3 /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; + A8CEDA1CC0E35E88DDA65F4DC4C0EC84 /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; A8DF85B78C24F26356B7E17B438D4F25 /* Shell.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Shell.cpp; path = folly/system/Shell.cpp; sourceTree = ""; }; + A8E64CDD8F164EFE89E3495B5FF777A8 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; A8E65D4CAF118B5E5E0C783A74FE67AF /* Checksum.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Checksum.cpp; path = folly/hash/Checksum.cpp; sourceTree = ""; }; + A8EB97193C365E6E7EAFE31C5912E075 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; A8FC42D4FC5B5C609C187742BBAEBA82 /* Pods-RocketChatRN-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-frameworks.sh"; sourceTree = ""; }; - A904A75FC50154E2FBAF567CB3737BE2 /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; - A90863DAF14AA25BBCFBE951F1520854 /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; + A90A43495ED577A8637E88E7EACD22A8 /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; A90E37B9D68B7238C8515BEA1EBE91FE /* mips_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mips_macro.h; path = src/dsp/mips_macro.h; sourceTree = ""; }; + A91AED3B058CA6161AB3FDA8B9AA3C5E /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; + A925110A95BE534EFC3228AD439EC44F /* UMPermissionsInterface-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMPermissionsInterface-prefix.pch"; sourceTree = ""; }; + A930CBD0FD05B3ABF9A65B2593FE0A9C /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; A9428250FEDA8D2937756E27BDCB64A1 /* CocoaAsyncSocket.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CocoaAsyncSocket.xcconfig; sourceTree = ""; }; - A9632268AF154A6CABA4DAE26034D98B /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; - A98F0C5C2BBC051FE79A61AB612C24E1 /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; + A94D69AEA667E8006F0C1D8968940527 /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; A99491D7D2C016F06275D579B43CF450 /* FIRHeartbeatInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatInfo.m; path = FirebaseCore/Sources/FIRHeartbeatInfo.m; sourceTree = ""; }; + A9D551E4309D8EA2825168768234E581 /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; A9EFFD37252C00A7675848AE074A106D /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; + A9F8AFE6BE212D3CE74C864B4630BFC4 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; AA05F8B4E8AC7C72A5E0CDFAB837D591 /* EnableSharedFromThis.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EnableSharedFromThis.h; path = folly/memory/EnableSharedFromThis.h; sourceTree = ""; }; + AA14D360EBA3D7252F32289CDC41F445 /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; + AA1CEE6105502CBCFEDAB7DF17BDDD23 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; AA2469C485F9FE943B5569FFE2527565 /* enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_msa.c; path = src/dsp/enc_msa.c; sourceTree = ""; }; AA29C7A7535F434B867178E6338D26B5 /* ConcurrentSkipList-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ConcurrentSkipList-inl.h"; path = "folly/ConcurrentSkipList-inl.h"; sourceTree = ""; }; AA5459247FBFB4744801D694000EE1A2 /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; - AA661057EDE002BB9254D1370C4875B2 /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; + AA611B1662B50B50C01F0F334CEAE12A /* RNCAsyncStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAsyncStorage.h; path = ios/RNCAsyncStorage.h; sourceTree = ""; }; AA766FEB8AFF1DEADB72485E6526D9DE /* TypeList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeList.h; path = folly/detail/TypeList.h; sourceTree = ""; }; - AA7D691E6F6853403B602F10AE7EA828 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = ""; }; + AA7994A17C6070F92CE1B28947D5D514 /* BridgeJSCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BridgeJSCallInvoker.cpp; path = callinvoker/ReactCommon/BridgeJSCallInvoker.cpp; sourceTree = ""; }; + AA81419FB3BD3B05F8B550FD9BF70F24 /* Yoga.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Yoga.modulemap; sourceTree = ""; }; + AA8A70A4EB1454F89801D58EC08BA7C1 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; AA91F6C11EC7314478FDE2E0B898D74D /* GDTCORClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORClock.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORClock.m; sourceTree = ""; }; + AAABB15E265670BAEFAF10C03A14D140 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; AACE10BCD9204EF7D1721622F2974945 /* NetOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetOps.h; path = folly/net/NetOps.h; sourceTree = ""; }; + AADA668C3E8ADDE75061470B168A4101 /* RNFirebase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFirebase.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + AADB504F9C156B3D00120181B51F2801 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + AAFA04A6AA5D6D51ACDF9A5D0D2A6E9C /* RCTConvert+UIBackgroundFetchResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+UIBackgroundFetchResult.m"; sourceTree = ""; }; AB0F4F98997582A5EC1D8A33181BE067 /* FramedReader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FramedReader.cpp; path = rsocket/framing/FramedReader.cpp; sourceTree = ""; }; - AB15DBA4D06B0F95D1DC5B7E7E59C822 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; - AB19C2DA349B77375CF0B72E4B2AB3EB /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; + AB11F3BB5215A50E51B6DC941235A7E5 /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; + AB2494725646DF282ADC3AB4F37FE632 /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = ""; }; AB3A000770E89F8E15885543D6BA2CBD /* StreamThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamThroughputTcp.cpp; path = rsocket/benchmarks/StreamThroughputTcp.cpp; sourceTree = ""; }; - AB406EA6A821F2164139861136834116 /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = ""; }; - AB473145F59E8DC9380B2AB5CC8F00E8 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; + AB3A3D569BE058F125B8EA58C1632CD3 /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; AB5FF49744979D40ECA028E79C2184AC /* RSocketTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketTransport.h; path = rsocket/transports/RSocketTransport.h; sourceTree = ""; }; - AB627D2AB477CA3CD3CD2976B9D5382F /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; - AB67BCAB258D7E051278D3BD076EB93D /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; + AB677D9A194FB8B52ED29A89A28B780C /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; + AB695411AF55B0DA52CE3E4F9F2D96D2 /* RCTLocalAssetImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLocalAssetImageLoader.mm; sourceTree = ""; }; + AB6A4E2A4BD289D73D1653709C5E37E3 /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; + AB6BBA309D3B07FA3242A2518C8AB751 /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; AB6BBDC47E1FA240EF6BEBE531278F14 /* TimekeeperScheduledExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TimekeeperScheduledExecutor.cpp; path = folly/executors/TimekeeperScheduledExecutor.cpp; sourceTree = ""; }; AB8C7B604F47671DB78576D860213C75 /* FormatArg.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FormatArg.h; path = folly/FormatArg.h; sourceTree = ""; }; ABA8FBB1DDA1BB0BDF1DD400099651DE /* common_sse41.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse41.h; path = src/dsp/common_sse41.h; sourceTree = ""; }; ABABCF020F0069E7D380C9AE62914445 /* AtomicRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicRef.h; path = folly/synchronization/AtomicRef.h; sourceTree = ""; }; - ABB47D5BD2CA888AF3BD370CF1BD2E2B /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-ShareRocketChatRN.a"; path = "libPods-ShareRocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - ABCF67441147F7505A4D4AE3861302A8 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFBReactNativeSpec.a; path = libFBReactNativeSpec.a; sourceTree = BUILT_PRODUCTS_DIR; }; + ABFF0EAB8FEBF013FDD823EEB2ADA203 /* RCTImageViewManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageViewManager.mm; sourceTree = ""; }; + AC02DFCAEE85510151707ED374945D10 /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; AC12C7E29555A7CFDDEF1EDB5BC2F3DA /* libFlipper-DoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-DoubleConversion.a"; path = "libFlipper-DoubleConversion.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - AC1667AFA251D0B12C4A273F4A6DB8F2 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; + AC1753BDF4B58DC930F9E4A08756DDEA /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; AC1F45606A44AE7B7A4C42703FF656DD /* CallOnce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CallOnce.h; path = folly/synchronization/CallOnce.h; sourceTree = ""; }; AC288156FCAC5528EE9A32A0D0BD1666 /* StreamResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamResponder.cpp; path = rsocket/statemachine/StreamResponder.cpp; sourceTree = ""; }; AC3008B2D7E12E475B9A4DC48370E2DA /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; - AC334934F62742F915EBBBECD557BA52 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; - AC58807FCD479A6F2650B746BB4FBFFD /* RNFirebaseEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseEvents.h; path = RNFirebase/RNFirebaseEvents.h; sourceTree = ""; }; - AC68DDDC7441B628763DD9D36213E057 /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; + AC7C4E268F090629D7215D51DC34FE8C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; AC86F16A869C08B98514E4FAD3877FA2 /* Codel.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Codel.cpp; path = folly/executors/Codel.cpp; sourceTree = ""; }; - AC9444E09C628EA7CDDE4ABC5831FBAF /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + AC97D7F4A9B089BF348F5D6495EEEF47 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; + AC9BA16F095F8C6C7F5547BF170F4DE5 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; AC9EB56BF7B71436C19576C6ECAB7DBA /* SKBufferingPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKBufferingPlugin.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKBufferingPlugin.h; sourceTree = ""; }; + ACA8142D7D50DEBD97F0FFAA8B39FFC6 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; + ACA9A34F4631EA4574360FABA26E283F /* RCTConvert+UIBackgroundFetchResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+UIBackgroundFetchResult.h"; sourceTree = ""; }; ACAC7108EA37ACF52A7DC94BAED1242B /* Util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Util.h; path = folly/container/detail/Util.h; sourceTree = ""; }; ACAF043733D30B36FFA455731AAD69A6 /* Builtins.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Builtins.cpp; path = folly/portability/Builtins.cpp; sourceTree = ""; }; ACBB7F62B267CC7C9BBBAE41DE94743B /* libFlipper-PeerTalk.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-PeerTalk.a"; path = "libFlipper-PeerTalk.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - ACD580006324A9490802733D59817A1D /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; + ACC49D210A52FB0039AE7951BEA5A57D /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; ACDBF46C9C94D75065ED86ABAEE2A5A1 /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/memory/Malloc.h; sourceTree = ""; }; - ACF0721D04DEE6D5C1E56141C5C8E4DC /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; - AD1C24B6F59776BBD97B229E9442BEC2 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; - AD2CA54231C14F8186AD91A1F2145F55 /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; - AD313F7671D7B76D259DAD10C0545981 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; - AD33857D528B2A4D54BBCFCFE7D00BC3 /* rn-fetch-blob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.xcconfig"; sourceTree = ""; }; + AD09A55A54F460A5D3FF0E8894246C47 /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; + AD14CAAFE08580EC3209B92CEE3C4C5A /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; + AD18ACAE2DA63187FD13B4505B223276 /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; + AD306CFEF5A52CE74956BC49EA506172 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; AD3DAF7158F5DEC8FF77922EB11427C0 /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = ""; }; + AD401082CD9FCC9240C43986DF8B0F9C /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAV.a; path = libEXAV.a; sourceTree = BUILT_PRODUCTS_DIR; }; AD4E1057656461228D8BC02EC88E2FB4 /* Aligned.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Aligned.h; path = folly/lang/Aligned.h; sourceTree = ""; }; AD584385DF132AD660066524FD6C7DBE /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = ""; }; + AD6394AE6A826BA7B35D3966725AA2CA /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; AD8424E56E214DA123484849471B9F60 /* json_pointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json_pointer.h; path = folly/json_pointer.h; sourceTree = ""; }; - AD8D144DD7C6C78299E910EA3D35394D /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; - AD9C7858F5095094776156A4627310E3 /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; + AD9CD05E58DED57FC500427F319A0AEC /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; + ADA42EFCA93F392F7E6C3722E6D826AC /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; + ADA589FE173707FA8149C6561C74CE09 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; ADAC875F4B48A2C4ADC94005F6B4478E /* UnboundedQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnboundedQueue.h; path = folly/concurrency/UnboundedQueue.h; sourceTree = ""; }; - ADAE76A88219B5296DA02CDD4ECB2FBA /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = ""; }; + ADB2D7F646A5AB21F1B0F692154A9A14 /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = ""; }; ADCC1A32A733912BC4AECBC8316FCC6A /* ThreadCachedLists.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedLists.h; path = folly/synchronization/detail/ThreadCachedLists.h; sourceTree = ""; }; - ADDE125601B8457E39EAE7E6A7D98303 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; + ADE981F0A6C85EBD1DD1A9461C5D061F /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; + ADF3FECBCF15C627A74DFE36A41BE5A7 /* RCTDataRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDataRequestHandler.mm; sourceTree = ""; }; ADF64367666308B42395B49531BE2FBB /* UIApplication+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+RSKImageCropper.m"; path = "RSKImageCropper/UIApplication+RSKImageCropper.m"; sourceTree = ""; }; + AE05B3A2F623970E866232B06AE5FEBB /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; AE15D1EDBC3474CB8B2033077058368D /* FrameProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameProcessor.h; path = rsocket/framing/FrameProcessor.h; sourceTree = ""; }; - AE1F33BCFDCCC075AA536A7B3EA7B04F /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; - AE2BA269FC8F7B708D9C56011444A49D /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; - AE43C7E09828679BC5E0A82EE1A9AAF3 /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; + AE1A3E8C67EF2A0702E44F9564A4F4ED /* RNFirebaseAdMobInterstitial.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobInterstitial.m; sourceTree = ""; }; + AE1E6A2B6589B61C39BAACB2650F4896 /* EXLocalAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXLocalAuthentication-prefix.pch"; sourceTree = ""; }; + AE3939FF02321F51D68A78D9F3D63612 /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; + AE4005C1801D24F2D215728F03673F41 /* RCTScrollEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollEvent.m; sourceTree = ""; }; AE56093E9078A473770ECE86FFE0A77D /* FKUserDefaultsSwizzleUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKUserDefaultsSwizzleUtility.h; path = iOS/Plugins/FlipperKitUserDefaultsPlugin/FKUserDefaultsSwizzleUtility.h; sourceTree = ""; }; - AE5A2D2336BDACC59D1DDE28C598F1FB /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; AE5BFE137AFBF9CFA0EFBEAD1BED7D50 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = event.h; path = src/event.h; sourceTree = ""; }; + AE70728376607B03B4CED6B6EE769CD5 /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; AE72A5CF938D526606C348B5A2B8B6AC /* RSKInternalUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKInternalUtility.m; path = RSKImageCropper/RSKInternalUtility.m; sourceTree = ""; }; AE763C2D1EF03E214CE34CABCDB31EFC /* FlipperUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperUtil.m; path = iOS/FlipperKit/FlipperUtil.m; sourceTree = ""; }; AE88B84C1DA2D74F566C9C1F7F72CFE4 /* quant_levels_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_utils.c; path = src/utils/quant_levels_utils.c; sourceTree = ""; }; - AE94C387DBEC7942C7E5AAA1ACC5C13D /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; - AE9645B6A346D32DFC512DE5ACE3F419 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; + AE91D4BE64AD0DFB21922399E4F8C84B /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; + AEAFF8B3B86A75352E5CA5A9E1D4C722 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; AEC82876CF0DF742EAF9B1FBB466153A /* F14Policy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Policy.h; path = folly/container/detail/F14Policy.h; sourceTree = ""; }; + AED0B857FAB2612A3C02EEFB0394AACC /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; AEE5A96ABF96049FAD05031B5C5209B3 /* Sleeper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Sleeper.h; path = folly/synchronization/detail/Sleeper.h; sourceTree = ""; }; AEE97EABF69D45AEDD71B127285F5E10 /* MPMCPipelineDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCPipelineDetail.h; path = folly/detail/MPMCPipelineDetail.h; sourceTree = ""; }; - AF023C883F422DA6A47D2C7FABB249A0 /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; AF245F65561B9AEF79DAAA1575BBEABC /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = ""; }; AF2EAA45F70C4D1A366106F071FD2362 /* RangeCommon.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RangeCommon.cpp; path = folly/detail/RangeCommon.cpp; sourceTree = ""; }; - AF316CBE0CA5A9ADFD961E4ED274B55D /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; + AF36392F1D7B314507E4BD61C3E5E701 /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = ""; }; AF3E5BD2D554C6B5A5D4612D81996D2D /* Fixture.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Fixture.cpp; path = rsocket/benchmarks/Fixture.cpp; sourceTree = ""; }; - AF4B0DD7FBEC49BA7A3A041162A97120 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; - AF5DA9FACDF827C7904FE02231E8A02B /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; - AF64CC66CF7F5FF11173BDC12E514A54 /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; + AF9735825DD918C1E3EEF5A123848A26 /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; + AF9DD0AD96DBE1ABE4849BA155EA6D3A /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; AFEA38054B66449445FC6B2F2A286675 /* FirebaseInstallations.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.xcconfig; sourceTree = ""; }; - B04A3000D987FFA9375C5040F1D14A33 /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; - B058920ABF87FB0263219FD9D0228A1C /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; + B00195CD357BD7C5CDCDBF85EC4B812E /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; + B02BAC2241E1E2A9886B5F0E1CDE816F /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; B066A05A05739142F9F5D70FA459BC44 /* GDTCORLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORLifecycle.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORLifecycle.h; sourceTree = ""; }; + B0677374922C26BAC58D1A175D7812AC /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B07888EAA4A0CFED7E31922A4E332369 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; B08A96271A96C96F79C23505E40F7239 /* Hazptr-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Hazptr-fwd.h"; path = "folly/synchronization/Hazptr-fwd.h"; sourceTree = ""; }; - B0A371D5A21AC68639256F45BDCA24D4 /* RCTPerfMonitor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPerfMonitor.mm; sourceTree = ""; }; + B096588386451650671EB5AD0236F260 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; B0A3E4E88F1771BE23E4E08DD7A2FFF8 /* RequestResponseResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RequestResponseResponder.cpp; path = rsocket/statemachine/RequestResponseResponder.cpp; sourceTree = ""; }; B0B19B592656BD9CC8100E880516AB3A /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImage.a; path = libSDWebImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; B0BB61794B6CCF1BC51DC9D0D706CAD9 /* FunctionScheduler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FunctionScheduler.h; path = folly/experimental/FunctionScheduler.h; sourceTree = ""; }; - B0C916D794C3FE779C110E14F1BA1A61 /* 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; }; - B0F26A286D2B52BBD17BAFEBA5AEA109 /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; + B0EDF3C69E161A7C793F6DF64F355104 /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; + B0F30F07515A758A483B860F3513C551 /* EXAV.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.xcconfig; sourceTree = ""; }; + B14AE9678A9119B06DBDCC495D19AA66 /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; + B14C8F61F83144EA8425727CB545C9EC /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; B160D2C5FBA458FEA51D4041D0BCFB11 /* FlipperConnectionImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionImpl.h; path = xplat/Flipper/FlipperConnectionImpl.h; sourceTree = ""; }; - B19328D30EFAEE6C7FD94F39C5D6FE50 /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; - B1C3FBEC0791669A99849D0E5D8DF61D /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; + B1872B7496598BB0F592386212968154 /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = ""; }; B1EE9536804A5BAB743C11B8E69AF4A6 /* FileUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtil.h; path = folly/FileUtil.h; sourceTree = ""; }; + B1F6E01FF687CF5E64CC893B49A16197 /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; B204995C87BCE66C2F9E44926EC1E42B /* Memory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Memory.h; path = folly/portability/Memory.h; sourceTree = ""; }; B219962AC4DDD3DB4BF1314B52062DFB /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = ""; }; B21E31C8653B3F3ACA24962099B2B330 /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cct.nanopb.c; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = ""; }; + B22C4B170E49A61F340C5E442EE9BAAC /* RCTVibration.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibration.mm; sourceTree = ""; }; B23D6FDF93DD1B322EDC854983FAE2D9 /* SocketOptionMap.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SocketOptionMap.cpp; path = folly/io/SocketOptionMap.cpp; sourceTree = ""; }; B2464C159201BF6E15435C7D2386F60D /* Flipper-Glog.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Glog.xcconfig"; sourceTree = ""; }; - B25E6C1397474967CB632772D4F63866 /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = ""; }; - B27AAEEE0353A88DBF876477948D4291 /* 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; }; + B264BE404B72DF4FCDC15B68DE155082 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; + B27494E5DCDCDE81B6D20D1A273AF99D /* RNFirebaseFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFunctions.m; sourceTree = ""; }; B2DD1E826DBBF52DF6080A7F85F3D688 /* Replaceable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Replaceable.h; path = folly/Replaceable.h; sourceTree = ""; }; + B2E4A081F15DF5441C9E66AAB59FB0CB /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; + B2F33DE9A04545AF996611650EDF1C36 /* UMAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppLoaderProvider.h; path = UMAppLoader/UMAppLoaderProvider.h; sourceTree = ""; }; B2FF725B7868244D2B9354B579024EFD /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; - B3143AC7D783B32CE3A0370B189EAE04 /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = apple/RNCWebView.h; sourceTree = ""; }; B314E38EF1834612C35C527E15D00B3B /* IOThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOThreadPoolExecutor.h; path = folly/executors/IOThreadPoolExecutor.h; sourceTree = ""; }; - B3262FD84C1E3BB00C4CF6EE49E677B5 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; - B33E2DA487D6E6682DCF63E4E5299C0A /* RNFirebaseFirestoreCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreCollectionReference.h; sourceTree = ""; }; - B33F8494FFD6A13CFAEAD5298CB749D7 /* RCTRefreshableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshableProtocol.h; sourceTree = ""; }; + B33E59935879E441D5B4C66045EEF7EE /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B3434BCB53404E1A7DBD7A6ACCECCEEB /* RNCSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaView.m; path = ios/SafeAreaView/RNCSafeAreaView.m; sourceTree = ""; }; B3485A505BF6FDFEDE8C828BF52B50E8 /* SysUio.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysUio.h; path = folly/portability/SysUio.h; sourceTree = ""; }; - B35CFDE05E5FE5FAFAC03053278BEC26 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; + B36102AD4F40C2FB149D0B74592E2CFC /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; B376A4DB64A47998145400EB1CA0826C /* OpenSSLLockTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLLockTypes.h; path = folly/ssl/OpenSSLLockTypes.h; sourceTree = ""; }; - B3878F1E993194C0070DF632755735F6 /* RCTAppState.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppState.mm; sourceTree = ""; }; - B38DFD28341D689393C7AEC5C063A64F /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; + B3878F5EA9C5FEAE41256E0F054135FD /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; B391B9CA0B494C6195981505D1E076FA /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; B3B471911019534847220C02ED65F8EB /* engine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = engine.h; path = ios/include/openssl/engine.h; sourceTree = ""; }; + B3B57B0DFC5265868A1243CFB40056BC /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; + B3B80503ED2A3688559AABB1B838752E /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; B3C43F2BECBC7AEC25B056DD35507702 /* FlipperClient+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FlipperClient+Testing.h"; path = "iOS/FlipperKit/FlipperClient+Testing.h"; sourceTree = ""; }; - B3C7C8627F248FF71686F8F15C3F7609 /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = ""; }; - B3C7E4123287CD6897A3CA379BE17A43 /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = ""; }; - B40930E9744DF8E998CB3411B59C0FF3 /* RCTVibrationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibrationPlugins.h; path = Libraries/Vibration/RCTVibrationPlugins.h; sourceTree = ""; }; + B3F59C591C756A06B15DEC6C6A4D8972 /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; B416B5CA7CCB6B57D7B8BAD721E0C1DF /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Private/GULMutableDictionary.h; sourceTree = ""; }; B431121E46F939344C25942872284812 /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; + B437F16764983919DA87773F3DA36059 /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B4393FAEC00309AEE6A2E659D8C2D635 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - B44FCB6AA07EFF8149CAA00C18C413A0 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; B46E5E9F119798C5DE2B74EF13607D1E /* SonarKitNetworkPlugin+CPPInitialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SonarKitNetworkPlugin+CPPInitialization.h"; path = "iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SonarKitNetworkPlugin+CPPInitialization.h"; sourceTree = ""; }; - B48188F0A471F30821CE698FBF7E9133 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; B491842CD162C3BC7BCFFD88A22AB94F /* StaticTracepoint-ELFx86.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "StaticTracepoint-ELFx86.h"; path = "folly/tracing/StaticTracepoint-ELFx86.h"; sourceTree = ""; }; + B499C9A9B19CB0B1CC863F5BCF6AA978 /* RNFirebase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFirebase-dummy.m"; sourceTree = ""; }; B49A5CA9B65652F90ECE77BE649EB704 /* Futex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Futex.cpp; path = folly/detail/Futex.cpp; sourceTree = ""; }; B4A21FD613E3CD8508D15E894998478A /* ScheduledSubscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledSubscription.cpp; path = rsocket/internal/ScheduledSubscription.cpp; sourceTree = ""; }; - B4C3E2B9A36416E0693F1F9CF4FDEE1E /* EXKeepAwake.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXKeepAwake.xcconfig; sourceTree = ""; }; B4D7F1C026B1CD62D1E7C020DEC220E3 /* ui_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ui_compat.h; path = ios/include/openssl/ui_compat.h; sourceTree = ""; }; - B4E23666F6328BE78029301BD16FA1E3 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; + B4D7F59DF30AE2E34AF88FC6E318B63A /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; B4E3C86733FC37102F88F15AE9941EDB /* GDTCORUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploader.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploader.h; sourceTree = ""; }; B4F147C150A48C9E88C17FC5E015667A /* OpenSSL.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpenSSL.cpp; path = folly/portability/OpenSSL.cpp; sourceTree = ""; }; + B4F36FE51EF529464449400DF1808669 /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; B4FFFB601246CD01C2D3DD65FB80D685 /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; - B50440F83C769FB72C446E4454AFE6D2 /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; - B524BF132646DAB58666BAEE74F53B86 /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; + B502B390566993FDB562FFD286D4CFC2 /* react-native-safe-area-context-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-safe-area-context-prefix.pch"; sourceTree = ""; }; + B5037CEDD30D0F53E3D072E7F82C93FC /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; B52681B3182A2D46267C820E3699F32B /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; - B526D300BB2FC69340103E1D370645E0 /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; B529A78B9CC2514C1BCAB8E8E35D749E /* rand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rand.h; path = ios/include/openssl/rand.h; sourceTree = ""; }; B5471CC595123375FF0DA18C40826E73 /* String-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "String-inl.h"; path = "folly/gen/String-inl.h"; sourceTree = ""; }; B56CD397A4A2CEAC002000DCD9D39FCA /* alpha_processing_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_neon.c; path = src/dsp/alpha_processing_neon.c; sourceTree = ""; }; - B5CCD8A80C54F72D40316EBB155801CF /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; + B57BB2FDBAF15E25406E1AD1BF08B9D7 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = React/CoreModules/RCTWebSocketExecutor.h; sourceTree = ""; }; + B59E391B39C4861662ABBB57AFF839B0 /* RCTFileRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileRequestHandler.mm; sourceTree = ""; }; + B5E2C6D6F9C6BB62D63CEA23FE408237 /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; B5F9AD0C7C17113CB205CC5FF7BE7339 /* RSKImageCropper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RSKImageCropper-prefix.pch"; sourceTree = ""; }; - B60927F207660FF1F534FEC57BF761D7 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; - B6173EB95FDD9752DE5D5A3FE50BDD39 /* RCTDeviceInfo.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDeviceInfo.mm; sourceTree = ""; }; B618CBAF356FE1C8D760FF63D6DD6812 /* ThreadWheelTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadWheelTimekeeper.cpp; path = folly/futures/ThreadWheelTimekeeper.cpp; sourceTree = ""; }; + B6366FF89EFD59303E103AA0DBFDD250 /* RCTView+SafeAreaCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTView+SafeAreaCompat.m"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.m"; sourceTree = ""; }; B6404047D3496F7DB92FABA6C69FD367 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/portability/String.cpp; sourceTree = ""; }; B64C39B4332656AD3F2E4E6BCE0650E5 /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; + B6611906E0BECBF166DBD1C43808A24B /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; + B66D2E18D1890CB55261D46591E30D3E /* react-native-safe-area-context-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-safe-area-context-dummy.m"; sourceTree = ""; }; B670D78AEA5F1926FD7248B63B0717BF /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; B6753785BC3312CA19994B9A755DE71A /* DestructorCheck.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DestructorCheck.h; path = folly/io/async/DestructorCheck.h; sourceTree = ""; }; - B6857FE0A012F6B7148319EFD9FF9451 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; - B6B18E19B3AB3EAFDD77A00D6D9B310E /* 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; }; B6B19B07331D7E71D957AABF6A9D3257 /* IPAddressException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IPAddressException.h; path = folly/IPAddressException.h; sourceTree = ""; }; B6C50FC767115CAE492253E1F49D9B55 /* CpuId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CpuId.h; path = folly/CpuId.h; sourceTree = ""; }; - B6D86900F642AF3628250062901E3B6C /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; + B6D8350560E1A7302D0F874FE3FB728F /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = ""; }; + B6FDFE41DC562331AEE368D37006C640 /* EXLocalAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXLocalAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B70A343169830D92F44D1C1E063279C2 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; B717BAB93B56433B8D02225FB7155342 /* MicroLock.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MicroLock.cpp; path = folly/MicroLock.cpp; sourceTree = ""; }; + B71DE3727ABE7459AB930F0D24F89C12 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; B71E8C8EB282CC6A581AD96F05FC4C12 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; B72E9EBEF6A12B5430864B87015FD3D4 /* MemoryMapping.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MemoryMapping.cpp; path = folly/system/MemoryMapping.cpp; sourceTree = ""; }; + B74E4AAD40CBD1BF91CDA0ADD5C17560 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; B75933D9F226520F1F63AFDAB49BCACD /* SKObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKObject.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKObject.h; sourceTree = ""; }; B75A261FE3CE62D5A559B997074E70FC /* libreact-native-background-timer.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-background-timer.a"; path = "libreact-native-background-timer.a"; sourceTree = BUILT_PRODUCTS_DIR; }; B762A6594DFA43F71BC11583945B2AC4 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = YogaKit/Source/YGLayout.h; sourceTree = ""; }; - B776AC9D8D0E04A5414B78438D7776EC /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; - B77E80DAEB31320DB5131AA2DF21943B /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; - B7932D0F1549FAE90D2EA9D758631E48 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; + B783F8FC0E87A8D40872ADF5E4EDED31 /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; B794065BBDF365D9EBD7C6655644DEFD /* GDTCORReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORReachability.h; sourceTree = ""; }; - B798C6C06396008B406AB7FCBAD216BB /* RNCSafeAreaViewEdges.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewEdges.m; path = ios/SafeAreaView/RNCSafeAreaViewEdges.m; sourceTree = ""; }; - B7A5C8CB88C1D2EDD86B5D8FA276A452 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; + B79B7BD72A8038B9D770EE572F3927F2 /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; B7BCA931BFCBC5D7CAE2878B4D6FF022 /* GDTCORConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORConsoleLogger.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORConsoleLogger.m; sourceTree = ""; }; B7D113CE1DC9A37F7B085B0ECA42F75B /* GlobalShutdownSocketSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GlobalShutdownSocketSet.h; path = folly/io/GlobalShutdownSocketSet.h; sourceTree = ""; }; - B7E7467BEE8E6F86B0DCABC64CF81B8E /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; + B7DA5543C58A10BE6E175610A60BD331 /* RCTNetworkPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkPlugins.mm; sourceTree = ""; }; + B7E0C6037F6D01B189B37DBE68F9269E /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; B7E893291B40C123F6EC0C9A4AB35FB6 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/portability/String.h; sourceTree = ""; }; - B7EDE79C53D1A0BFB62120926DA11087 /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; - B7EFEB5088F345DB3CAA9406AFE2B53B /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; - B810357A23274F0F984C0685A76D3696 /* RNFirebaseFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFunctions.h; sourceTree = ""; }; + B81358FFB5D63A92212033F18E143BC6 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; B82AE2359819957CA87A9C9347903301 /* lossless_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless_common.h; path = src/dsp/lossless_common.h; sourceTree = ""; }; - B840ED032943756ABB8E10A0DB084CBE /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = ""; }; + B8407A284EE1A7F497670355C67DD270 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; B8431C8CFCAAB610AF5886CA7FB28F3D /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; - B85DCA7215DCC24721034BA8491D07D1 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; - B871C0AFEEB5141B6031084C327FDD25 /* react-native-slider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.xcconfig"; sourceTree = ""; }; B88423B41F85BDF119CA2DFADB166825 /* bit_reader_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_reader_utils.c; path = src/utils/bit_reader_utils.c; sourceTree = ""; }; - B88C46013ACB4DFEA5D4244B205A3C41 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; - B8A8F62CD1B59B1B4A915981F0934129 /* RCTNetworkTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkTask.mm; sourceTree = ""; }; + B8AC1F7295F1E50FFCC9984CEBB13EFE /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; B8B672560B173A79679DEFFBA84C70A5 /* FIRInstallationsItem+RegisterInstallationAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstallationsItem+RegisterInstallationAPI.m"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.m"; sourceTree = ""; }; - B8CB036643D44984F995A2F1DF3C18AA /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; + B8C7A0C275CA5F6C3D75DAA0DB1F643F /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; B8CD4B9B578CE9FA38114B638C9CAA78 /* libRNCMaskedView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNCMaskedView.a; path = libRNCMaskedView.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B90463474E1454D60D3BDA3C4699CB69 /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; + B8D725DFB1F4C03BE8C7BA961AA793C6 /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; B904F014D6238EC720700454F027CBFD /* IPAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddress.cpp; path = folly/detail/IPAddress.cpp; sourceTree = ""; }; + B9072AD49A640B04370FD838CBB9280E /* UMErrorCodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMErrorCodes.m; path = UMCore/UMErrorCodes.m; sourceTree = ""; }; + B949C577C91CE50EDE4BE230FB6B0EA8 /* EXKeepAwake-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXKeepAwake-dummy.m"; sourceTree = ""; }; B957890B4CC126477F060EE903D4729D /* SSLContext.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLContext.cpp; path = folly/io/async/SSLContext.cpp; sourceTree = ""; }; B962EE99644085C11182BFF43968B8DD /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = SDWebImage/Private/SDDisplayLink.m; sourceTree = ""; }; - B97E97DB7AFAC13D5E6F157E5593C7D8 /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; + B970A1D21CBA9FD07FAF69CB26244BEA /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; B981F5CCF893CD06CFD03437E80DCA3C /* SSLSessionImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSessionImpl.h; path = folly/ssl/detail/SSLSessionImpl.h; sourceTree = ""; }; - B99C92243C54BCFBD07F15E26C67CFBE /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; + B98F3145D2BA05F5B984472D1F6A2504 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; B9A3071E0D8E8007E3BAB588CEA589EF /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = SDWebImage/Private/SDDeviceHelper.m; sourceTree = ""; }; - B9B0ED604DEFCA10B70AAE7638FD72F9 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; - B9BDDD78B1DEAC3FD1A250ADB412D8D5 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; - B9E91D21A3AF86FBE679D402F9D847CA /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; - BA0B40E78FBC5BEADCE390C45C701B1A /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = ""; }; + BA20595CD5B1A6DF6915499505DD46FF /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; BA3CF7A144EF12EBE95954FC10ED1798 /* FlipperCppBridgingResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingResponder.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.h; sourceTree = ""; }; BA53CD80191E2DA2D6F6430CE1DC3FE5 /* RSocketStats.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketStats.cpp; path = rsocket/RSocketStats.cpp; sourceTree = ""; }; - BA63F857FA550BBB06710A27D5F76B84 /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; BA7907E3054238613ED46592ACB57C28 /* Try-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Try-inl.h"; path = "folly/Try-inl.h"; sourceTree = ""; }; + BA7C3D0D2512BAEF12730C83AE7FAED1 /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; BA9A549EA28C581B319D3B66ADBA9A9E /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; - BA9D2FECCB6B5D2CFEF057A94D4FCE94 /* UMErrorCodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMErrorCodes.m; path = UMCore/UMErrorCodes.m; sourceTree = ""; }; BA9DFE4C128C09D9E5EB1FC370C41194 /* TypeInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TypeInfo.h; path = folly/lang/TypeInfo.h; sourceTree = ""; }; - BAA23C1CF418176CF23145E87404A612 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; + BAA22DDBB90EA6B0B64DCFEEA69CD39D /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; BAA3391F6EA4588106555028E4C0ED5D /* bn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bn.h; path = ios/include/openssl/bn.h; sourceTree = ""; }; BAC48720B210406AD0EC07D11DC2CEA8 /* CustomizationPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CustomizationPoint.h; path = folly/lang/CustomizationPoint.h; sourceTree = ""; }; BAC583BC017048E348F4C7A651E76E47 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; - BB11F78682F5F4581E3FDA9EDCA66206 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; - BB1BF29072A4F7C70FC2C39711F7FDF4 /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; + BAF5AD0C7B79779A4259EEFB6286E588 /* RNFirebaseAdMobRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobRewardedVideo.h; sourceTree = ""; }; BB2FDF9773480E2F063815824369732B /* ManualTimekeeper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ManualTimekeeper.cpp; path = folly/futures/ManualTimekeeper.cpp; sourceTree = ""; }; - BB35C8B34CE65D263DD4FF787E10D778 /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = ""; }; + BB474430F474AC9AEC4D15CC0BB43E50 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; BB4A8A6BA372FDC79C395901A139CD7E /* FIRInstallationsStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStatus.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsStatus.h; sourceTree = ""; }; - BB4E515183972964190DB1E137702400 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; BB5155F3E43B110DAF3E79535861EC66 /* 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 = ""; }; - BB595745BB33ED2B6577CE4E3F7ED950 /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = ""; }; + BB5F770E5DB4AB216E5E2BBDDF0AD67D /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; BB67F4FA9C283AF5469880D9B3CB4A1A /* Flowables.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Flowables.cpp; path = yarpl/flowable/Flowables.cpp; sourceTree = ""; }; BB68B1029621082D6F3449180E194484 /* alpha_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_enc.c; path = src/enc/alpha_enc.c; sourceTree = ""; }; - BB7507710AD9CEE099C15445BF9E94A2 /* RCTTVNavigationEventEmitter.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTVNavigationEventEmitter.mm; sourceTree = ""; }; BB84B24930416F99C62578B1F3EA34BA /* rpc_struct.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rpc_struct.h; path = src/event2/rpc_struct.h; sourceTree = ""; }; BB84B82EDB64DF3AB770311125FA3C6F /* SerialExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SerialExecutor.h; path = folly/executors/SerialExecutor.h; sourceTree = ""; }; BB9A451D14DEAAA3AD94DBE2736F4F4A /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = ""; }; - BB9E5B3EFEA74F851055B14191C29B87 /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; + BBC0B2BE955E924540B8D8A2D4A59001 /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; + BBC3A224341DD39F8F17B9E8291D2F93 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; + BBC45DA271905DEF77EDEE6E3456B6C6 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; BBDC1098F40796FF93B00BF55C41C5D4 /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; - BBE416D50F6F76A7D7A8C9AF48F18D14 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; - BC2F7696C4C7E09B59D4C3ADB56340D2 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; + BBDFE894843235B6191FDDF4E11065A8 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; + BC18AE76FC996D1CA1994A9A06890ACC /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; + BC1E2D88AA301AE5595F5A53D1D79146 /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + BC1EA21A8C048E4C30E64D18709CBE84 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; + BC1F9A15243C716881C044634647BCC6 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; + BC32FB6B0931D32FC17CD84C7381ED93 /* UMModuleRegistryHolderReactModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryHolderReactModule.h; sourceTree = ""; }; BC346128EEB711DB79B71F5384BC8F65 /* buffer_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer_compat.h; path = src/event2/buffer_compat.h; sourceTree = ""; }; BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMPermissionsInterface.a; path = libUMPermissionsInterface.a; sourceTree = BUILT_PRODUCTS_DIR; }; BC451CA059F0B0B1CB569B66829A1E0B /* DynamicConverter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DynamicConverter.h; path = folly/DynamicConverter.h; sourceTree = ""; }; + BC4FEBDB08E7EDD26604133A4237186E /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; BC54B43CCBA34AE2D53C896C74590EF3 /* GroupVarint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = GroupVarint.cpp; path = folly/GroupVarint.cpp; sourceTree = ""; }; - BC7275CE001F4FCC4605B05417942BB7 /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; - BC90A42F976DFA2E0DA3EBCBBB308286 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; + BC55FE2B35A40A7CA127DE0E0719A159 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; BCA41DC73155E4E6BCFB2D091C2B7773 /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; BCAB4E18232CFF7D83C09A37E1AADCAF /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = ""; }; - BCC39FF80147AFD7516495702A33FD10 /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; - BCC846BEA11D8CD633342B9E54C48FAF /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; - BCC9A9272B488D83A4EA09F1403BA079 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + BCB74053C197AB2AAD04A00E8D816C8A /* Yoga-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-umbrella.h"; sourceTree = ""; }; + BCC255329C1F5DA77E1310CDA1F16BE0 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; + BCD3DCC4CA8784083B88B132A508B9DD /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; BCE08215FEB482996BDC533DD5732EC9 /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; + BCF1EE7814D86414EB59001B5C2E1208 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; + BD026ED98E8135E15F5B4ECB528A1494 /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; BD037DC493AB6997B35B7E803E850865 /* SerialExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SerialExecutor.cpp; path = folly/executors/SerialExecutor.cpp; sourceTree = ""; }; + BD19107D43C4639B74AB628460123D65 /* react-native-cameraroll.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.xcconfig"; sourceTree = ""; }; BD224B7991A06769084E373BD2C36812 /* AtomicNotification.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AtomicNotification.cpp; path = folly/synchronization/AtomicNotification.cpp; sourceTree = ""; }; - BD6E489D62F906EF168083EA18447111 /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; + BD25A909971CBDABAD73C80EC1443642 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; + BD34B7401168EAAD4269A2F4AB9FC7C4 /* RNCSafeAreaViewEdges.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewEdges.m; path = ios/SafeAreaView/RNCSafeAreaViewEdges.m; sourceTree = ""; }; + BD6B9A656BBFCB32E751952127B4D7E1 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; BD71E2539823621820F84384064C253A /* libReact-Core.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-Core.a"; path = "libReact-Core.a"; sourceTree = BUILT_PRODUCTS_DIR; }; BD76F1F3F5837C4EE2BF0B840A9F71BC /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = ""; }; - BD8751552E35893BDF83F6025B06D03C /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; BD94B545CF0CE2E3B9229D6515A7F0D6 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; + BD9EE87E52C304844B9278F8E57A6145 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; BDBC260F9E107A8330F46C81000F6DFC /* config_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_enc.c; path = src/enc/config_enc.c; sourceTree = ""; }; BDC4A3859DB8D4A1D9F82E72C8AE97E2 /* evdns.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evdns.h; path = src/evdns.h; sourceTree = ""; }; BDC6EADEFAFEEA3CC421D1D8706BE1F2 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Sources/Private/FIRComponentContainer.h; sourceTree = ""; }; + BDC92CDF8B9FFC7427A79BFE9977090D /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; BDEFF41527DB8DB7AB27F051FD302834 /* FlipperRSocketResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperRSocketResponder.h; path = xplat/Flipper/FlipperRSocketResponder.h; sourceTree = ""; }; BDF673AF32381A3BA2BFE10AD51BDAC6 /* cost_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_neon.c; path = src/dsp/cost_neon.c; sourceTree = ""; }; - BDFCA872F8F308FFFFC0DDA2B70D7B88 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; BE0352323548C847DD880E0DBC955E77 /* quant_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_dec.c; path = src/dec/quant_dec.c; sourceTree = ""; }; - BE1ADD1FF39C1129F4E5A8E2C8C8ECA5 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; - BE27740D59217F5C5C5DBE3AC02D64A0 /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = apple/RNCWebViewManager.h; sourceTree = ""; }; + BE32E40EE45E7FEEDBABBB1F632D9BA1 /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; BE370EB5ACBFEDAC95A623C204E89B60 /* Malloc.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Malloc.cpp; path = folly/portability/Malloc.cpp; sourceTree = ""; }; BE445D0B15F8DF1243B7A0F53F6CC68E /* File.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = File.cpp; path = folly/File.cpp; sourceTree = ""; }; - BE507034EC91D662EA23C3A4B8002D1D /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; - BE6C7B879BFD452E4DCD69E7D8407DB1 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; + BE63BD5535AFC1604A4AC9C10C03089A /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; BE815080F7E80173CA594AFF25777BA4 /* LockFreeRingBuffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LockFreeRingBuffer.h; path = folly/experimental/LockFreeRingBuffer.h; sourceTree = ""; }; + BE830A908B06CF2B0AF559629ECA48C4 /* RNCSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaView.h; path = ios/SafeAreaView/RNCSafeAreaView.h; sourceTree = ""; }; BE86EF1665A73265C0AE5A2B03F40783 /* FireAndForgetResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FireAndForgetResponder.h; path = rsocket/statemachine/FireAndForgetResponder.h; sourceTree = ""; }; - BE8B80ACCF53BCA41AC1082A7BFA65EF /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; BEAF58E01C33A2C8648ABAB5B76051A7 /* ThreadCachedInts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInts.h; path = folly/synchronization/detail/ThreadCachedInts.h; sourceTree = ""; }; + BEB96F20D5726C0FED96A146722426D9 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; BEE19D01E393D6AED4889E0FE6D0AC9D /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; - BF0A58843EA221CB4FB1CA0B8A1BD1D9 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - BF23D26AA25EEC70A3E23E9191AEF7C8 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; + BEECDF931317B0C9A020961D7482834E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + BEFBFB07F80F1D7A438F709015151D87 /* RCTGIFImageDecoder.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTGIFImageDecoder.mm; sourceTree = ""; }; + BF085CE00A228405C2C3D86EE49E8CEB /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; + BF3F04E963085A34C8973461402D2B0B /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; BF519A127C0E7F964AC9FF650FD7AAAE /* GDTCCTPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTPrioritizer.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTPrioritizer.h; sourceTree = ""; }; BF60A7D435C7C7CF382B46B1A2CDE9DD /* InlineFunctionRef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineFunctionRef.h; path = folly/synchronization/detail/InlineFunctionRef.h; sourceTree = ""; }; BF7B9D2F15D064D840EC4BF5CE4EBAF2 /* anim_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_decode.c; path = src/demux/anim_decode.c; sourceTree = ""; }; - BF99D3FA1B59D96BFE371B6BAC43F123 /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; - BFA1EF4D9A7595A080E824D231F1C702 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; - BFB1789515B4B57A57BBA01180625822 /* AudioRecorderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AudioRecorderManager.m; path = ios/AudioRecorderManager.m; sourceTree = ""; }; + BF8C8B7FF6D66300305C1F59EFC6CD24 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; + BFA70CD3F240D73FAF1A8764AC631360 /* RNCMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedView.m; path = ios/RNCMaskedView.m; sourceTree = ""; }; + BFB7A9691F40A40E405F63775579A305 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; BFCE4058442BFB8DEB89BA3F261A76BA /* libRNUserDefaults.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNUserDefaults.a; path = libRNUserDefaults.a; sourceTree = BUILT_PRODUCTS_DIR; }; - BFD4AB29C51CF8BDA8D6DC0DFFFC923D /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; + BFDF4F5D7C0B527DB1100D4B8232675D /* react-native-slider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.xcconfig"; sourceTree = ""; }; BFE33B318F22862F845097FDCE5C1058 /* AsyncUDPSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncUDPSocket.cpp; path = folly/io/async/AsyncUDPSocket.cpp; sourceTree = ""; }; BFFC1A12553DF895079B0EE2123855F0 /* tag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tag.h; path = src/event2/tag.h; sourceTree = ""; }; - BFFC411F07683C9450E4200CA2760991 /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; - C01FD55251E04D79D54389D9E2505CB1 /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; - C02BFBD577016E09BB0A9A67D08B7290 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; - C048DC61E2D9E4D99D1D739E53B64635 /* RNCSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaShadowView.m; path = ios/SafeAreaView/RNCSafeAreaShadowView.m; sourceTree = ""; }; - C0597431E55F8169E3324DC6051A3CD1 /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; - C07C9EBD2EBB6DC37055104767E8F838 /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; + C00252FEAAC476E15DC46FA4A1E15A0F /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; + C06042E7541D08DF05F09BD91C949D80 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; + C073DF562B22E808041D0CF63D4109DD /* RCTAnimationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAnimationPlugins.mm; sourceTree = ""; }; C07EFDAF32E458508413BF17981E2CBE /* JSONSchema.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSONSchema.h; path = folly/experimental/JSONSchema.h; sourceTree = ""; }; C087057E1CB78F04BB1E4D342FC4B961 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; - C095144BC747280B07CA695F86A7471B /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; - C0A7ED31841E9A3740388ABBCE3A723C /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; + C0997D9A668A59B0FC36DB784D90DE80 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; C0BE079B8D2C7A9BCC6894400A116A35 /* DynamicParser-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DynamicParser-inl.h"; path = "folly/experimental/DynamicParser-inl.h"; sourceTree = ""; }; - C0F20F742C54B26F631F05038C9BA9BA /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; - C0F2679A5E0931013FA662954ED431F9 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; + C0C524874C6B504FE8846E136839CEE9 /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; + C0DDAFD4DA5593CA0C4A0BE516FDD389 /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; C108D7A13CAD13104F3AFC3364E34AF3 /* MallctlHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallctlHelper.h; path = folly/memory/MallctlHelper.h; sourceTree = ""; }; C10B86FB420804CA03EF2E7C13B7A0D4 /* OpenSSLHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLHash.h; path = folly/ssl/OpenSSLHash.h; sourceTree = ""; }; C11F232104618A6DF337628AD70745C9 /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = ""; }; C12036796447184091DA046F4AA6FDDF /* FIRInstallationsErrorUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsErrorUtil.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.m; sourceTree = ""; }; - C15412FB555EC82A84E5662C521F5A69 /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; - C163185A8C47364FE801EA2D186E4314 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; C1692BEEAD627DEF8994CE572CFB1A59 /* WriteChainAsyncTransportWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WriteChainAsyncTransportWrapper.h; path = folly/io/async/WriteChainAsyncTransportWrapper.h; sourceTree = ""; }; - C18F5EBFB911662933AB752A409FCB5B /* RNFirebaseNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseNotifications.h; sourceTree = ""; }; + C175B05619803671EBE3017CC20F955D /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; + C185F8B998CB65285F15AA23AB9A16C2 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; C19A2135BBEED47FB1749374D067BA31 /* Builtins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Builtins.h; path = folly/portability/Builtins.h; sourceTree = ""; }; + C19DF073BDDF25E492E8456257A7F78F /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; C1A22A0CCAA83F4432C1D88100CB077A /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTVibration.a"; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - C1B8302E6144ACBFD42B7B1CC9BE1127 /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; + C1B1B6FB49BD282706FFC998F667D2BB /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; C1BBDB076B66B8FACB04FB4FE96C71DC /* GDTCORUploadPackage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadPackage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadPackage.m; sourceTree = ""; }; C1C21254D9F7C2191C713FBCCC1E8103 /* NestedCommandLineApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NestedCommandLineApp.h; path = folly/experimental/NestedCommandLineApp.h; sourceTree = ""; }; - C1E4A437404DFDC3AF95DECB10C31E21 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; + C1D44AE70B75A13870DF66A153D7CD6B /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; C1E5E494A829407FF8BD55A891B14826 /* FlipperResponderImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponderImpl.h; path = xplat/Flipper/FlipperResponderImpl.h; sourceTree = ""; }; + C1E720AF8E7748216929A0D978916EAF /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; + C1E92117617ED4C7776D766E0647B816 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; C1EC005937337A3AF4021FD78FFF4A61 /* Varint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Varint.h; path = folly/Varint.h; sourceTree = ""; }; + C1F71DCB5E48D4EEF4564414654247FA /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; + C202C8EC08324AF5B06841DD9921B48A /* UMAppLoader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.xcconfig; sourceTree = ""; }; C20319ABD038571475EAE18DDAD747FD /* ThreadName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadName.h; path = folly/system/ThreadName.h; sourceTree = ""; }; - C204583E3149ED5B14004D44F70870B6 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; - C218912DC56D3A549EA9EFA6336D3CC7 /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; C22D08B07DEC2D822A9AD9429629A308 /* FirebaseCoreDiagnostics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreDiagnostics-dummy.m"; sourceTree = ""; }; - C23A2F489E66C0BBE98BDB2082178AC6 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; - C24EE1A964E34FECB1A87A875FAEE2BF /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; - C2683D2F2E237858A50FC07DAACFCB7F /* EXKeepAwake.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXKeepAwake.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - C27AF23759BF7A8DD86385A007D97791 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; C27C187C03F06420FA43B0A4C0750F7C /* yuv_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips32.c; path = src/dsp/yuv_mips32.c; sourceTree = ""; }; + C28015EBA60ACDD15E1763FA95DE2209 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; + C287C0F7C7408A6539BBB097113CA755 /* RCTAppearance.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppearance.mm; sourceTree = ""; }; C28D3AF9A04D627813C280AD720F2AE5 /* Random.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Random.cpp; path = folly/Random.cpp; sourceTree = ""; }; C2CEC68A27993B3355FC318D6B1EA3E6 /* dynamic-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "dynamic-inl.h"; path = "folly/dynamic-inl.h"; sourceTree = ""; }; - C2D5BD8C0270331BC9B6E938A4466600 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; C2FF9BA9CCE6CACD1C2EE9F1144420AA /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = ""; }; - C30F4DA8650B821D69927FC3C47B368C /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; - C325978CFDAB8C04548FF1E460600969 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; - C332354CE32553AE1D10339068F3F17B /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = ""; }; - C39A5EB4E3CE8AA00EAAAE47434F871E /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; - C3B12190FAA3292458A918B4AFC24225 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTClipboard.h; path = React/CoreModules/RCTClipboard.h; sourceTree = ""; }; + C3038BF806255782FB02991A8ADEC4D2 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; + C30408675328543FB4553B0DDB54A527 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; + C30B923B64B40ABD4B468A3ABCACF1C0 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; + C321DE3390CD49D23F73F0DE5F74C5EA /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; + C3657BDF1321BF897D84F0EE1094BEE9 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; + C38EBA586D9D97D483BF33FF6214541E /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; + C390BAF22AF8E88F3BF7544A3FCA2C50 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; C3C6707F29DE74544B084E88253702C8 /* SKTapListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKTapListener.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListener.h; sourceTree = ""; }; C3DEC4D104F3C26CFD8A08AC5D3426B4 /* quant_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_enc.c; path = src/enc/quant_enc.c; sourceTree = ""; }; C3E8026D2B56521C2BBAAC34B4B75E48 /* ConnectionAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionAcceptor.h; path = rsocket/ConnectionAcceptor.h; sourceTree = ""; }; C3F0242170128F0BF15004074ECE18DF /* DuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DuplexConnection.h; path = rsocket/DuplexConnection.h; sourceTree = ""; }; - C3F72457D7FEF7EA647F6E8C29B3C62B /* RCTLocalAssetImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLocalAssetImageLoader.mm; sourceTree = ""; }; C3F7DFD6177F24AA0AEF0B329765F934 /* GDTCOREvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREvent_Private.h; sourceTree = ""; }; + C40710EF5BFEB932034122504680A890 /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; C407E0C7DB34386D12B44F21A0804AC6 /* AsymmetricMemoryBarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsymmetricMemoryBarrier.h; path = folly/synchronization/AsymmetricMemoryBarrier.h; sourceTree = ""; }; - C40CA3B5B9D97DCF31953A8A61A49CF5 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; - C41320A799460C4301E8ADD1A4D045A3 /* RCTImagePlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImagePlugins.h; path = Libraries/Image/RCTImagePlugins.h; sourceTree = ""; }; - C416507DDE2D7C53BF5DDF7DB76AD238 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; C4281F09B0FF90C20173A2A5F7208B6C /* AsyncTimeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncTimeout.h; path = folly/io/async/AsyncTimeout.h; sourceTree = ""; }; C458CD06CE7469FC32F205CDA8F81E86 /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = ""; }; C469C17BF253AE6463BA6EB1DD6FF259 /* dns.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns.h; path = src/event2/dns.h; sourceTree = ""; }; - C484E6A346C7B52FB7A5C7F75ECCA52D /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; + C46BC88340457F394AE62CA9E0BB1471 /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; C4A26B7FE8F3E31AE5EBCBEE81AC1F36 /* FIRInstallationsIIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.h; sourceTree = ""; }; - C4A41718993E223E88F65EF3AF1ED7FD /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; - C4DB01C621BE511DA047046598329D5B /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - C4E01BA3026E41228999D2A42ABB1876 /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; + C4A918DB1835AD192E2CE23A6F8131D8 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; + C4C79237B9A4679C2D556CF6AF1F1C6F /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = ""; }; + C4DE6568F95B2C3EBE3575AB08654B21 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; + C4E2C296D739056C62ED7697ACBFAE14 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; C4FF0359587A94748FB7CE8936B901FB /* 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 = ""; }; - C50B1B626E2C3ACAB2EB1703D353DD47 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; + C509DE986746D706E0B1ED337AD462CC /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; C50C28D47E880EE339D1AD7E061DBE06 /* random_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = random_utils.c; path = src/utils/random_utils.c; sourceTree = ""; }; C5159A4213843DB8A8585B6B10AD39D2 /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; - C51D3687AEB894232CDC9593833ECEE9 /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; C520D41113FE32C6C9167648A90D442A /* Flipper-Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-Folly-dummy.m"; sourceTree = ""; }; C52827FE3E33A2486E9F3E9A5DB53FA6 /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = FirebaseCore/Sources/Private/FIRAnalyticsConfiguration.h; sourceTree = ""; }; C52A0895B240C1BAE40AE6AACF1ADC63 /* ScheduledSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSubscriber.h; path = rsocket/internal/ScheduledSubscriber.h; sourceTree = ""; }; C52DE7E72F7FC1E4F8A5714111A66A7B /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; C538E3BAFE7FB9B1F45E990DDC0E9D87 /* AtomicUnorderedMapUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMapUtils.h; path = folly/detail/AtomicUnorderedMapUtils.h; sourceTree = ""; }; - C561B80406BEB168381F3AF9E2A3004C /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; - C56C512382ED788D26B3A5277C050567 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C55A25EE2EAB2329BB93738686416BA7 /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; C57CE1955BB7CFE1A4709E580CA99940 /* FIRInstallationsStoredAuthToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredAuthToken.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h; sourceTree = ""; }; C584564A24FC9F29346D46E78173808E /* FlipperClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperClient.h; path = xplat/Flipper/FlipperClient.h; sourceTree = ""; }; + C5A2C19C08F46CC3E854EECD4D57F963 /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C5A2F7764279182700E1E604994C4043 /* RCTView+SafeAreaCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTView+SafeAreaCompat.h"; path = "ios/SafeAreaView/RCTView+SafeAreaCompat.h"; sourceTree = ""; }; C5B547F98753F73957FF249602ADA981 /* rescaler_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_utils.c; path = src/utils/rescaler_utils.c; sourceTree = ""; }; C5E0DA99068CF1070E64E05D5F0589A6 /* tree_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_enc.c; path = src/enc/tree_enc.c; sourceTree = ""; }; - C5E8C3D3C610C6144595BD88455E3153 /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; + C5E4029F0F04274F6FE1BE3AFDE192F0 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; C5ECF20665EC1D3F469FF3AF289E90EB /* Syslog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Syslog.h; path = folly/portability/Syslog.h; sourceTree = ""; }; - C5EF509288FDF5231D590D463F153A7E /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; + C60F74245BE1FE5A03730E7CE28A60D5 /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; C611B9834EEFF95ABA916CAEB1CC478E /* stop_watch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stop_watch.h; path = folly/stop_watch.h; sourceTree = ""; }; + C61D243EB276F04767E5A555DC5ABD08 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; C64F1ABE0A71785564EFEB70DA843B6A /* Pods-ShareRocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ShareRocketChatRN-resources.sh"; sourceTree = ""; }; - C68C178CF4D65216F2D9DACEAA476D1B /* RNFirebaseMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseMessaging.m; sourceTree = ""; }; - C68D2008F965DB8E53784194B227ACE7 /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = ""; }; + C688A3592A3A127537C8D88ADA323A4A /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; + C689E9F415906E0BAB059042CF6A948D /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; C6910297F97EEA607B6EFFFAB321DB97 /* RSKImageScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageScrollView.h; path = RSKImageCropper/RSKImageScrollView.h; sourceTree = ""; }; + C695CCD9D4612C601D8975D21FE02C1E /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; C6A2086E1649020F78866E0A42A03870 /* FIRAppAssociationRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppAssociationRegistration.h; path = FirebaseCore/Sources/Private/FIRAppAssociationRegistration.h; sourceTree = ""; }; - C7289159049E31701895AEDF256DE9BB /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; - C72E95A79577DA868BD39B4664B30CA5 /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; - C733CD9C74A357A76284D361EE462CBF /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; + C6CE7FD179C4AC1076A1490F1113E57F /* RNFirebaseDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabaseReference.h; sourceTree = ""; }; + C6D29CCF8C317AD3563755137F8E38D7 /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; + C6D59F279545F2743FE88CFCA871D1AA /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; + C6E13BB4A8778CC8B2EDADABF9D36D05 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; + C70381B0803791E4B1968F07DB602CBE /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; + C70670E7F79F3ED32EA6E056421F79D9 /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; + C711D2E1163EF0022FF8D0A3E51BC1D2 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; + C73A341574CDB13BF48F98C515AE8CF5 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; C73D217F3AF5A47F79A4D961287F1212 /* GDTCORReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORReachability.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORReachability.m; sourceTree = ""; }; C74A6B9B15C395BFB9BB73E4FEFCC17F /* FlipperKitReactPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitReactPlugin.h; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.h; sourceTree = ""; }; C75A41FBF7A255F6196E1C4FB75692E8 /* Lazy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lazy.h; path = folly/Lazy.h; sourceTree = ""; }; - C75BFFAF2381944841560A7E0DDC913F /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; - C7735874BBB2AF5626E4052A4BD2B566 /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; + C7767E56845E21A11C6CAD49A3455020 /* RNUserDefaults.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.xcconfig; sourceTree = ""; }; + C776D36B4550491D6AA0BA85FE98693B /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNReanimated.a; path = libRNReanimated.a; sourceTree = BUILT_PRODUCTS_DIR; }; - C78AED4A45BF8EBFEB1300A407736A56 /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; + C77BF8879C7703ED174D858B986369FD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; C7B5E92950A22AAC32BA05BA9C3AC80C /* FixedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FixedString.h; path = folly/FixedString.h; sourceTree = ""; }; + C7B94C3DDDFC4546093A9F4C1BFA3665 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; + C7BEF1633847DC3583DF0FE67E8B86BA /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; C7C284DB208CAE466AA7BFD5AE0DE3E4 /* Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Async.h; path = folly/executors/Async.h; sourceTree = ""; }; - C7D5215B0BDA835A65F4F5C7BB27358B /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; - C7FC31A9FFCC4A9ABDDD38B97CF17C38 /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; - C81302D8251A05E0C350052F06CE73CD /* RNFirebase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFirebase-prefix.pch"; sourceTree = ""; }; + C7D5A3C319BC585A1C0FBBAF8C6D3505 /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; + C7F62912D952D1B47E0B930105D261E5 /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = ""; }; C82B5680A163C64780EE09E382D7EEDC /* PolyException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyException.h; path = folly/PolyException.h; sourceTree = ""; }; C82C3C911EF776B47AE70152D5C2B2C9 /* SDWebImageWebPCoder-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImageWebPCoder-dummy.m"; sourceTree = ""; }; - C82F14F48778D57E2106F1FC0F8D0326 /* RNAudio-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNAudio-prefix.pch"; sourceTree = ""; }; - C838B404B5EE29521B38A7BF640B0404 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; C83D992973F17A2D65D6A56AE2411FD8 /* dec_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips_dsp_r2.c; path = src/dsp/dec_mips_dsp_r2.c; sourceTree = ""; }; + C84397767261FEA23CDA756B4B95F67B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; C856EA4C772FC5D8FDF1B227D52075BC /* FlipperKitLayoutPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitLayoutPlugin.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.h; sourceTree = ""; }; + C86CC306A7B0BF9921F54B59B50CDD54 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; + C8738D724EB5C0B73994234D19F32E94 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; C88933EF5580895A52694BD12032F2A6 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Sources/Private/FIRDependency.h; sourceTree = ""; }; - C894BDC9326638A226C65B45A7437B07 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; - C8B49794982FBDADB0177CBE38BCD190 /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = ""; }; - C8B6B90EB6C36BC126CCCD3BC87DDE8F /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; - C8B9C11862042751C14615E6498444B8 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; + C8C1E13BDC9B9DFCD9AC3FE13D22B9B2 /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; + C8DBA11BE7155D3CA87FBB981D9E5DBC /* ReactNativeKeyboardInput-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardInput-dummy.m"; sourceTree = ""; }; C8E497FD43BA1211D4BD7FD47B9A336E /* FLEXUtility.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXUtility.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXUtility.mm; sourceTree = ""; }; + C8FD457D5B45029B94B994FBA0B61D1F /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = ""; }; C90C73FCAC18187A8A58E68D7D0F1752 /* RSocketStateMachine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketStateMachine.cpp; path = rsocket/statemachine/RSocketStateMachine.cpp; sourceTree = ""; }; - C90FC567524FA661866C611EA3773C32 /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; - C9155BBDA5E01B68FF923EEB79990AF4 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; + C913C483F832353449BC7CC52534D81C /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; C91D0C35443EDCA61DC536A7777222CE /* FIRInstallationsItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsItem.h; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.h; sourceTree = ""; }; - C9238C9A7502CDE4EEA318937B3C2794 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; - C93543FE01A6C97729A0C5783545D254 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; C93A77331F2DCB76AC9069C20CBB68FF /* SpookyHashV1.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV1.cpp; path = folly/hash/SpookyHashV1.cpp; sourceTree = ""; }; + C9421AE41A48645182153049F4EB2BA1 /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; + C950075A6754CB0B42D2A710DD039049 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; C952F4B3BEB498CF6B44D8F8D53D258E /* YogaKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = YogaKit.modulemap; sourceTree = ""; }; - C967A21D4DB245B24B51E5278EB1D7AB /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; + C979B5F3D2A5D6F24CA190FCED3C4A1F /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = ""; }; + C97A0654B68840BC3AB9EBC96E9681D2 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; C97C339316168DB04985D4F5AAB468BB /* TLSDefinitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLSDefinitions.h; path = folly/io/async/ssl/TLSDefinitions.h; sourceTree = ""; }; + C990D4E0C827BCA4FAB0D26F0F2EF99A /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; C99D44016E628B64067CB76CD65802F1 /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; - C9C390E75F283ABC888301FFBE52BAC4 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; C9C5D8DA10F83B08DD9DD499558F760F /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; C9CA04D250814BDEC21277B2753E7B70 /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = ""; }; + C9CD2287E9245C164B8AB5D2C23A44DD /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; C9F4E6559ACBC02C36028E184C9B0CFC /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; C9F560D70310532BD6D8DF4D57B77F99 /* AsyncUDPServerSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncUDPServerSocket.h; path = folly/io/async/AsyncUDPServerSocket.h; sourceTree = ""; }; - CA0E451936088034A8C77715E4FCCF7B /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; + CA06FCA140EB7C5019462186D832A831 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXAV/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; + CA4A822BFC68A5B56F534E93D4A98414 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; CA4FBE8F8986D0FC6EEDD2B850A3F16B /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = ""; }; + CA603878C1DE3C10E2DDD81E789F53F6 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; CA6943F8AA0B58A4B5A6432B18F5BC2F /* GDTCCTCompressionHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTCompressionHelper.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTCompressionHelper.h; sourceTree = ""; }; + CA7B42287AF4F4F34489CC51E1010918 /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; + CA7FD6D34DE6846070D5EC863A88B82F /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; CA8F0AEC5B73D4DEDACF2423A7775BCB /* SKTapListenerImpl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKTapListenerImpl.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKTapListenerImpl.m; sourceTree = ""; }; - CA90EA4E58E7529F8578C7076B74E136 /* ReactNativeKeyboardInput-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeKeyboardInput-dummy.m"; sourceTree = ""; }; - CA934B616778A58F79F91943D21AD163 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; - CAB0C63FC8922ECF883FC7F217E727F5 /* RCTAlertManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAlertManager.mm; sourceTree = ""; }; - CAB3A635E372DA342C80E4E1538A8189 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; CAD5C87CC0AADC43135DE25CD663C1F4 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; - CADFC8278F2A60666A8ECF9734046582 /* 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; }; CAEF7BF5B0D67EB2CA6B19A209ED53BF /* UIImage+WebP.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+WebP.m"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.m"; sourceTree = ""; }; - CAF57B687DBABF5583B844CE17FE9AE7 /* ReactCommon.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.xcconfig; sourceTree = ""; }; - CAFB63F1B8EA2E9B7472E844151C95A2 /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; - CB0EB5237252D01EE79321BB308DC801 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + CAF915294CA0DE133B47DB746A574395 /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; CB1D4B7E31F361A7CF4AA4BEE1246517 /* WaitOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WaitOptions.h; path = folly/synchronization/WaitOptions.h; sourceTree = ""; }; CB239D55874C02D4160E9D47CB6FCB94 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; - CB36FE94E7064BDF21B7063705C2585A /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; - CB71456404F9CED77678659966DC7E12 /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; - CB89C0E53E4B81628E581462D440B938 /* RNAudio.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNAudio.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - CB92A840388D3EF7251E8F98F6D2AAB3 /* RNFirebaseUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebaseUtil.m; path = RNFirebase/RNFirebaseUtil.m; sourceTree = ""; }; + CB7525AFF031468F92F1D04391218AAD /* react-native-cameraroll.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-cameraroll.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; CB9684689C0C8B9E1517F55131E107D2 /* GDTCORDataFuture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORDataFuture.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORDataFuture.m; sourceTree = ""; }; - CBAAE47D598AD40CA21FEA1FD17438C2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - CBE9F092E3CA7E0A323FBF3F4350A49A /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; - CBF19FC14AA6BAF3B58FBF8FF15C1F3C /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = ""; }; - CBF1B2A24DF85F35EA84548F4AB66F11 /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = ""; }; + CBA835202D56745E2204C472A586EF2A /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; + CBAF7AE2FF13513D93C2F5EDFB8F8EDF /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; + CBD1AB90136F68537C045E58EAAAF49B /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; CC0BEC0B3F3C44148680AA1B3E1299F5 /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = ""; }; + CC23B91C02AAA9E443E23B245F2F5C89 /* RNCMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCMaskedViewManager.m; path = ios/RNCMaskedViewManager.m; sourceTree = ""; }; CC26518B462C7C18AD0566A2D78F6468 /* PublisherBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PublisherBase.h; path = rsocket/statemachine/PublisherBase.h; sourceTree = ""; }; - CC3D692DE6A573051DEFFB08CD5D594C /* RNDateTimePicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.xcconfig; sourceTree = ""; }; - CC4B27BF8CC6D6FBCA5B4FB3FF957EA7 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; CC50E959A5495A654034EF93E1B8E0E0 /* FlipperConnectionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionManager.h; path = xplat/Flipper/FlipperConnectionManager.h; sourceTree = ""; }; + CC526FF976F836ADF07E332D8977CA46 /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; CC52FF6D9D0F3038561FFCA474348B82 /* PTUSBHub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = PTUSBHub.m; path = peertalk/PTUSBHub.m; sourceTree = ""; }; - CC56E34364676629C753DC57D2AA659A /* RNFirebaseInstanceId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseInstanceId.h; sourceTree = ""; }; - CC60C4C23BBB6DFBB67F6C49C13440A5 /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; + CC5612B0BE29E9893C75A8AAFA2D43AE /* RNFirebaseStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseStorage.m; sourceTree = ""; }; CC765941F36F7C806C70C3CACD299C78 /* FIRCoreDiagnostics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnostics.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m; sourceTree = ""; }; - CC8CE58616903C09E8A1A7FE375264C4 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; CCA97D54CF9ACDAC4793DBE3A9798D4F /* Uri-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Uri-inl.h"; path = "folly/Uri-inl.h"; sourceTree = ""; }; CCC12E666629CBA68F8FA63EDA522C82 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; - CCDF36D5CBA4D1EAFBFFEB6356372FF6 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; - CCEF9059AAE3C22B0EBD5BAAB618D1A4 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; - CD1FD42F2DDF1DE25C6108AC6123ABD8 /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; - CD22B7DF933DE95063DBFA9AB621CA2E /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; - CD4E032F91D695EB8DD21783BFA10A01 /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; + CCDC5E18C1BFEA5E8CD4876AEE52C961 /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; + CD13841A20E5E1B13FF9F3E02F7313EE /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; + CD1B18086F274E26FE027F7BB567A099 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + CD4C105DDB1EEFE5A97E40378DC888AF /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; + CD54A8E47862DC1265F98BD2CAA80231 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + CD5FECA91017F9422141D82A951DCF12 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; CD6578E9DB7CDF81979D963425A34C54 /* Cursor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Cursor.cpp; path = folly/io/Cursor.cpp; sourceTree = ""; }; CD6AC95E7AD35654EAD053C4678D5D0A /* Bits.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bits.h; path = folly/lang/Bits.h; sourceTree = ""; }; - CD6E14841088CB752B6312D567BFFFE9 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; - CD6FB009D4E50D67DF92F21F8DAFE5BE /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; + CD71779C8AF26267D2D4FFF7FED8D385 /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; CD94EA6C56C571A5119413782C817379 /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; CD995CF17EC1F9D318275BEBD2E62248 /* pkcs7.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = pkcs7.h; path = ios/include/openssl/pkcs7.h; sourceTree = ""; }; + CD9BBC759FF18CDB2E66AEA651AF7C0D /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; CD9C204067CD033285E691091009DCB2 /* RecordIO-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RecordIO-inl.h"; path = "folly/io/RecordIO-inl.h"; sourceTree = ""; }; - CD9F04093EDD60E5467A82D034D381C9 /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; - CDA31622F4E079135E89048AD4D3BFD3 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; - CDA9DB3C10EE2461F7D5386A7349FF11 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; + CDA0866B9897FAC421362ECD9C0F37DC /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; + CDA3753DFF66488AAD1AC3E1EFD9C919 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; CDBEE17B3614A49EF2C714CDD27EC933 /* TcpConnectionFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TcpConnectionFactory.cpp; path = rsocket/transports/tcp/TcpConnectionFactory.cpp; sourceTree = ""; }; CDC541260A450E879BF1EAC2256B1206 /* TupleOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TupleOps.h; path = folly/experimental/TupleOps.h; sourceTree = ""; }; - CDCEE67BE04AD6AD8026326D187151A9 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; - CDD786035D3470DAC419646B3A0A7E2F /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; CDE9A7BDC20190CBE6630DC4DBB08F1E /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = ""; }; - CE04235EC62DB7D7F29A3F37AECFE8D2 /* REAUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAUtils.h; path = ios/REAUtils.h; sourceTree = ""; }; CE0A89CE53B60C565AEBF54AE0DAB4AB /* CoreCachedSharedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreCachedSharedPtr.h; path = folly/concurrency/CoreCachedSharedPtr.h; sourceTree = ""; }; - CE12368EE0E36359BB5A4EB2F69DC467 /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; - CE1F0F6B0DAC9A7AF9B7AA5F60C3FCCA /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; CE23695884956B445D045A5A4F2BEBD2 /* rescaler_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rescaler_utils.h; path = src/utils/rescaler_utils.h; sourceTree = ""; }; CE31A0F5E3EA614BF4602F172DABE60E /* RSKImageScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageScrollView.m; path = RSKImageCropper/RSKImageScrollView.m; sourceTree = ""; }; CE3512AFB48576B856FF3293A080CC8C /* evp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evp.h; path = ios/include/openssl/evp.h; sourceTree = ""; }; CE58D1517CD6A69CC8B968AB4F2722B0 /* des_old.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = des_old.h; path = ios/include/openssl/des_old.h; sourceTree = ""; }; - CE890AED702E2B7D65D9C57CA1C84A4C /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; CE9110AA4A8337DA6C2C3EEDDC1063CE /* MallctlHelper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallctlHelper.cpp; path = folly/memory/MallctlHelper.cpp; sourceTree = ""; }; CE91E5FEE989C5005FC302112EA3FE9B /* ebcdic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ebcdic.h; path = ios/include/openssl/ebcdic.h; sourceTree = ""; }; CE94652F977B229169B1D0B569945C92 /* Flipper-Folly.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Folly.xcconfig"; sourceTree = ""; }; CEAFDCEEFCA09B8A7CCAD985AE3B2DC1 /* Core.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Core.h; path = folly/gen/Core.h; sourceTree = ""; }; + CEB2AC17D76CB6BCB416C99E16094195 /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; CEB3C3DE564317AFAD5D00F480B050DC /* anim_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_encode.c; path = src/mux/anim_encode.c; sourceTree = ""; }; - CEB6982058473F3EB5B8DA8791154910 /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; CEB7C439EE2527E9C516911B814DE34B /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; CEB8150ADB2616065D796E11D415F2F8 /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = FirebaseCore/Sources/FIRComponentContainer.m; sourceTree = ""; }; - CED37D403F851EC64D48C2E6D7D32431 /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; + CEE21D1C447267023E86EA3DC180F48D /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + CEE872A6F656C1E3ACEABC79779A1A3F /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; + CEEA2AB72524B44262F1239949CA36E0 /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; + CEF512E1556F1CA7C06B1CAF5E44A019 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; CEFA8D39408945A8A01CD6A4CB446A71 /* TLRefCount.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TLRefCount.h; path = folly/experimental/TLRefCount.h; sourceTree = ""; }; - CEFFEEDDDB5FB56DD03F227ED67A8F76 /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; - CF1BE94E9EB48F52834BF5C9CD2CC1AD /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; - CF252186A9F263ADBC39FF5C79901C91 /* RNBootSplash.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.xcconfig; sourceTree = ""; }; CF32217F64402E516166B0907FBF62A3 /* SysTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysTypes.h; path = folly/portability/SysTypes.h; sourceTree = ""; }; - CF3B9420B237F152E6FF53C5062E1F44 /* 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; }; + CF4DB50F4BB2F0C4F3A7B6B724171315 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; CF62339FBA85228EAE5E41137BD5F3B7 /* Sockets.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Sockets.cpp; path = folly/portability/Sockets.cpp; sourceTree = ""; }; - CF6589B4CFEA7DB445518B81CCEA6184 /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; CF852D38B1E23A6121F49AA814196624 /* ScheduledSingleSubscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledSingleSubscription.cpp; path = rsocket/internal/ScheduledSingleSubscription.cpp; sourceTree = ""; }; CF8A87482535B796BF26E80DC743B5D2 /* ReentrantAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReentrantAllocator.h; path = folly/memory/ReentrantAllocator.h; sourceTree = ""; }; - CF9E4ED8267D8374BA9BFC9B190F5982 /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; + CF8C9936AA62CBAF5CB03F867530BBA4 /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = ""; }; + CFB9BDBEBCF046AB44C41E65CFB24930 /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; CFC63A93A6E7140E3290A8F899E63F0F /* PriorityThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PriorityThreadFactory.h; path = folly/executors/thread_factory/PriorityThreadFactory.h; sourceTree = ""; }; - CFC8E451D38E2E7D63F049CAB6CB0967 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; - CFCD3BFA6695639F4EDEBCDBC689BF95 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; + CFE96E2B7F1A54B5BB8BD48A34475937 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; CFEB0A20D4BC133A0888BF8E2F7516EE /* FIRInstallations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallations.m; path = FirebaseInstallations/Source/Library/FIRInstallations.m; sourceTree = ""; }; CFEE2BBDF9379116DDC81BC3AEDE175F /* animi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = animi.h; path = src/mux/animi.h; sourceTree = ""; }; CFF0D0EB4C41A1552334AD771EBF534C /* SKNamed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNamed.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/SKNamed.h; sourceTree = ""; }; - CFF6B84DE629461467249913044B6E0C /* RNFirebaseAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAnalytics.h; sourceTree = ""; }; - D00155A74656D652638CCCA43B402754 /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; + CFFDEC78DE605882E73BA709F9AC6A22 /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; + D000153CC971A1821CA9A2AC1F5472AE /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; + D01599CF77DFB0489A47E18D11DDB3B7 /* react-native-safe-area-context.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-safe-area-context.xcconfig"; sourceTree = ""; }; + D016CFA396AC7E48D28D0DF25DC64874 /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; D017CF786AC96A572897D8DBCEE96977 /* GULSceneDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSceneDelegateSwizzler.m; path = GoogleUtilities/SceneDelegateSwizzler/GULSceneDelegateSwizzler.m; sourceTree = ""; }; D02E6B9DB917675E5CCAECEFBC7819F4 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; D02ED6C4ECB2318D9F7A5B1B79581974 /* SSLContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLContext.h; path = folly/io/async/SSLContext.h; sourceTree = ""; }; + D052E7C8B38525A9FF57769BCE258C67 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; D0546800109BE6E261341AA3BFFD39AD /* FramedReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FramedReader.h; path = rsocket/framing/FramedReader.h; sourceTree = ""; }; + D070D2CBA945B841360C64E75B7531C9 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; + D073C331B87A79B01AB8D7DFC982F7FB /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; + D075950ACEC1CEB612EE725B66EDF1A4 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; D07C68A89645AB0B40080D5FB18AF91A /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/futures/Portability.h; sourceTree = ""; }; - D07EC03A0A4F60605B5636E6D82BDA69 /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; D08AD37297DE50EEACBE345D2CB202D6 /* opensslconf-i386.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-i386.h"; path = "ios/include/openssl/opensslconf-i386.h"; sourceTree = ""; }; - D09C4D3471AD4C2FCF718AA4409903D7 /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; D0AEB04BA9D42A4A9FAABFCA836F8524 /* conf_api.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf_api.h; path = ios/include/openssl/conf_api.h; sourceTree = ""; }; - D0B19BB1EEF8E5AA0124189F290A8861 /* RCTRedBoxSetEnabled.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxSetEnabled.m; sourceTree = ""; }; - D0B72DC40E4D609C9D01B5A10F3D02E5 /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; - D0CD50DECA479B51EAB670564F7B7B7F /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; - D0D2807855DB1F9BEE53DE18F1E705AD /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; + D0B4B699CF178C3B0664F745D8AD6313 /* Yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.xcconfig; sourceTree = ""; }; + D0BD3B93B9E0680BCBD567C66C4CCA7C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + D0C4C8842E9CCCB9CFFD4099A00A4D46 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; + D0CC7E2F8CC2A4524FA8E0B016307EDC /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; + D10AC064663A8621F9CA87C251D4360F /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; D142D9DB4D58940C58B19712A5E24AF6 /* FlipperClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperClient.cpp; path = xplat/Flipper/FlipperClient.cpp; sourceTree = ""; }; D1518213D9F7823AF378BF59C0A4A8DF /* IPAddressV4.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddressV4.cpp; path = folly/IPAddressV4.cpp; sourceTree = ""; }; + D1523E4D3D33FAF8B667ED1676211965 /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; D161D1CD4354D0B6D9B314DFCA658CD7 /* Cast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cast.h; path = folly/lang/Cast.h; sourceTree = ""; }; D1629C047EB6E5DE3EC6B5443873557A /* listener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = listener.h; path = src/event2/listener.h; sourceTree = ""; }; D16622E365F819469AFB29E1F0A2BBE5 /* SocketOptionMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketOptionMap.h; path = folly/io/SocketOptionMap.h; sourceTree = ""; }; - D1669CBA419AEEEB6CAC6C9F52448BD9 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; + D169C66ED71787413B3BE64DBDB90D26 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + D170D6C2BD5F7330435EEDDD78A8373A /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D17211126B230DF5446557FE9998B37C /* EDFThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EDFThreadPoolExecutor.cpp; path = folly/executors/EDFThreadPoolExecutor.cpp; sourceTree = ""; }; - D1730B766977805C9CC5855CFB6EF666 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - D17C3735E61F4FB2ACCB176EC13A4190 /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = ""; }; - D19AEAB77CA49609892379D559CF1C5A /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; D1A45B3636081D58B3A2C76BD76B56B8 /* RSocketServerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServerState.h; path = rsocket/RSocketServerState.h; sourceTree = ""; }; - D1B3F6A2C254EF6FDD66D17C7F17F393 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; - D1C4E2EE1DD85B0A8D9625A1B772A0E7 /* 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; }; + D1B2F818A7D3616EC28FFC0D4FA74CB0 /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D1C58B0EEBA51866F8799FED5F16F4DE /* GDTCOREvent+NetworkConnectionInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GDTCOREvent+NetworkConnectionInfo.m"; path = "GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCOREvent+NetworkConnectionInfo.m"; sourceTree = ""; }; + D1CC9ACC381EE5231F95FC6BBD4A5E5B /* RCTBlobPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobPlugins.mm; sourceTree = ""; }; + D1CEF8DF89F2C2D5CAF9107F6FD6BCC2 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; D1D93DB2CDD8B18C06B607F0BAE717AE /* Observables.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Observables.cpp; path = yarpl/observable/Observables.cpp; sourceTree = ""; }; - D2147363D7F325A2A17D40441CF6D364 /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = ""; }; - D21E91F70CF4592C5283820588A499C6 /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; - D225587E371647E1EF158B7E94B98E54 /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; + D1E0D03066BD59D10E00E6B714CE377F /* RCTAppState.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAppState.mm; sourceTree = ""; }; + D23193DBE12D3018997C78E9BDC18837 /* RNCSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewLocalData.m; path = ios/SafeAreaView/RNCSafeAreaViewLocalData.m; sourceTree = ""; }; D23FD2D49D40D0667B0E8E55571DC3E5 /* ssl3.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ssl3.h; path = ios/include/openssl/ssl3.h; sourceTree = ""; }; - D2424BAC76F59F7526912D76CB7E6E11 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - D24747C3BEA18E87BA7491E443BE13F9 /* RNFirebaseInstanceId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseInstanceId.m; sourceTree = ""; }; - D2496821890C3957B6369CCC233D5079 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; - D273679235B8B62AFE2DA61DF071BE70 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; + D24DC138C1453017E887875FEA11B809 /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; D2752E0FF90A0029F16DD9E81EBCCE88 /* obj_mac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = obj_mac.h; path = ios/include/openssl/obj_mac.h; sourceTree = ""; }; + D27F7FEAC197A6C34B0DCF99A6CFA283 /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; + D290732FB1A772D68C40D1DFC5859F7E /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; D2A44021F16E141D89AE08FC81E7BC54 /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; - D2A860FA24F85C1048D62057EB4A8297 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; D2B0944DB26F68CCB5D7A81F49A1A841 /* YGLayout+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "YGLayout+Private.h"; path = "YogaKit/Source/YGLayout+Private.h"; sourceTree = ""; }; + D2B9A44298FFAD0BC068594184B9EEBD /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; D2C27F372D793E139B6108DFE137291D /* ObservableDoOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservableDoOperator.h; path = yarpl/observable/ObservableDoOperator.h; sourceTree = ""; }; - D2EAAB1D38023ABD96763E62FA496CC3 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; + D2D822F35E3A28D5B5E51BCEE1AFA360 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; D303BCC0DF61B7DDE96777EF8365574C /* QueuedImmediateExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = QueuedImmediateExecutor.cpp; path = folly/executors/QueuedImmediateExecutor.cpp; sourceTree = ""; }; D30A5F6D4E615733B864938B01F86BA1 /* vp8l_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_enc.c; path = src/enc/vp8l_enc.c; sourceTree = ""; }; D3151F5AA5498492CA230FCF27400CD0 /* AtomicLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicLinkedList.h; path = folly/AtomicLinkedList.h; sourceTree = ""; }; - D33C61C8004717F147894A4F457C4CB5 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; + D330AEEA02CF16F617FC1B0D505B20CB /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D3325F6CA16762EEFE75312BAA9F2F9B /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D3625BCCC0F421D853BC5DA8F0AF5BAF /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; D363ABCB37DA623B13B7291B95128006 /* MicroLock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MicroLock.h; path = folly/MicroLock.h; sourceTree = ""; }; D36C1F0EC78A2845C14FB2963EA0A08D /* EventBaseThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseThread.h; path = folly/io/async/EventBaseThread.h; sourceTree = ""; }; + D375FF4A5C3CCECD3FF8C390972806C4 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; D38B789AFA3E08A0D80B75C3C58CF03C /* SysUio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysUio.cpp; path = folly/portability/SysUio.cpp; sourceTree = ""; }; - D3AF5E808F514DDD9EC46E125ED9B249 /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; - D3B484652A54786BFEE5700397369185 /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = ""; }; + D3965A3B816AEA1194A311D04EAFCCD3 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; D3CB0803F076C784C3212867D467D430 /* IOBufQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IOBufQueue.cpp; path = folly/io/IOBufQueue.cpp; sourceTree = ""; }; - D3CBD900A4CB49206B4C05BE7628238F /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; D3D16C2613A98591C7433A92989CB9FB /* FlatCombiningPriorityQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlatCombiningPriorityQueue.h; path = folly/experimental/FlatCombiningPriorityQueue.h; sourceTree = ""; }; D3DF2E2C76682D78850B1C27CC588C12 /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; - D3F6C4A7B7A52935C844753CDE09D46D /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = ""; }; - D406B162AD1A9BB2D5ED8E49D2583638 /* RCTImageViewManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageViewManager.mm; sourceTree = ""; }; D40E104D3809AC98D25DA6DFEC523567 /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; - D40FE7367A96160310E0FA038F585E92 /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = ""; }; + D40F23121BF71F1CBE7CB359C34D80AC /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = ""; }; D42CAE2EF157C716C678EEAE4EBE252A /* STTimerFDTimeoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = STTimerFDTimeoutManager.h; path = folly/experimental/STTimerFDTimeoutManager.h; sourceTree = ""; }; D42CB44BA9C69CBAF899C96FE903676E /* FlipperConnectionManagerImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnectionManagerImpl.h; path = xplat/Flipper/FlipperConnectionManagerImpl.h; sourceTree = ""; }; D42E726424ECEB4787BA7B6C50BCB3BA /* Subscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscriber.h; path = yarpl/flowable/Subscriber.h; sourceTree = ""; }; D438DA78F21E96F690BB9917585CACFB /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; D44BAFFBC0BFBE6966C8552BC70F1388 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Sources/Private/FIRComponentType.h; sourceTree = ""; }; + D464E9DAC2B1BE6EDB9F6AD3AF16B765 /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = ""; }; D48ECBF71CA2BD5108891B772F82D722 /* rc4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rc4.h; path = ios/include/openssl/rc4.h; sourceTree = ""; }; D49679914FE70C3E027D9C1C08D5A89F /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; - D4CB377774658A47456D1529B052C7EC /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; - D4CEC3C8952503C4CA46E9C7A1C49047 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; - D4D17CE1128CAD0C7376A221281249B1 /* 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; }; + D4A501B5DB4897607E43BD772D7B566D /* KeyCommands.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.xcconfig; sourceTree = ""; }; D4E9A9FB4E7AAEAC8F74E51C8764B81C /* Crashlytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Crashlytics.xcconfig; sourceTree = ""; }; D4EBF582A50CDBB1D77A0DD2EAD9213E /* Checksum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Checksum.h; path = folly/hash/Checksum.h; sourceTree = ""; }; - D5038AAD663414FC2313263B1DE2E738 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; - D5043F42CB101BE1E6DF266ACFD6DDFF /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; - D506AA27CADE62ECB13FCC7E2EC76BA4 /* EXImageLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXImageLoader-prefix.pch"; sourceTree = ""; }; - D5079C9E0AA2034E6A2CB45E93F262F1 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; - D5272E752DF667DB7AD74D945976AD07 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; - D53E39F99E7E0402FABF134698E1B16F /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; - D5427FE4E48FF6C6F79AD17B6DE1C649 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; - D54DA433BF592F5AB15189D1F3CB1DD5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + D4F3018A89BBEE04902A5387DA3DEEF0 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; + D51348ACEC209A2A49A6A0C056AF2208 /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; D564F5D27CBCF3B8EE77307584E0FC11 /* Format-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Format-inl.h"; path = "folly/Format-inl.h"; sourceTree = ""; }; D569C8EBC11F560FC5CA66BF071F7634 /* RSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocket.h; path = rsocket/RSocket.h; sourceTree = ""; }; - D5A5D66A3F340FAF357C3C23740B2CCA /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; + D58700AA53D869B15626EEA39FC664A7 /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; D5A918CEABBA94E7ADF5E0E0F4590B7C /* AsyncSocketException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSocketException.cpp; path = folly/io/async/AsyncSocketException.cpp; sourceTree = ""; }; - D5C0679C8FA015D5C911901384EE4D6A /* RNFirebaseAdMobBannerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobBannerManager.m; sourceTree = ""; }; D5C64C4B734B2F6E62C632650F55CB49 /* ResumeIdentificationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ResumeIdentificationToken.h; path = rsocket/framing/ResumeIdentificationToken.h; sourceTree = ""; }; D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactCommon.a; path = libReactCommon.a; sourceTree = BUILT_PRODUCTS_DIR; }; D5CB6C46BBD1F37F88EABC0C4C46944A /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; D5DE71527A5BC327D7F1879C6ADBB6E3 /* opensslconf-armv7s.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-armv7s.h"; path = "ios/include/openssl/opensslconf-armv7s.h"; sourceTree = ""; }; - D5E964FC44F2AA7D4C3EF7A41690D224 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; + D5E8E04EB4E91C0835046D12159EEFF8 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; D5FE7046165690E211F7FFD5DF80CC92 /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = ""; }; - D6318E5B6B7DC173B03E2ADAA68800A5 /* RCTImageEditingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageEditingManager.mm; sourceTree = ""; }; + D605E4032C2B8C36BFF8913353987F7C /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; + D62A483C99C907BD9DB3A5EDA32B5119 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; + D636A3760924F31F2E4AF8DC7FDF1457 /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; D6378D7C4460E3706422526FC7B02790 /* SKRequestInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKRequestInfo.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKRequestInfo.h; sourceTree = ""; }; D63FBF4C49B281E4555BBCC76309B2EE /* SKHiddenWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKHiddenWindow.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKHiddenWindow.m; sourceTree = ""; }; D64899346B43035B56313D189AA3D2C4 /* demux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = demux.c; path = src/demux/demux.c; sourceTree = ""; }; - D64AC27FE92DADF4D4A9DB08BDCF0F8B /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; + D654A042E466E53EFB2D56A8F7112B37 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; D670DDBD2F6E5F61745FB208D43BBD5F /* Subscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Subscription.h; path = yarpl/flowable/Subscription.h; sourceTree = ""; }; - D69C09EADAE5AB9F3A5B910990EAC6AB /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAlertManager.h; path = React/CoreModules/RCTAlertManager.h; sourceTree = ""; }; - D6AF50488FE8EC76893A6868564AB615 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D67172DC70E2E1E0EA48C8D941C08151 /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; D6BC4EB89FB043565DB890070B5916CA /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; D6BFDF996B01A912B94084E492836A2C /* Payload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Payload.h; path = rsocket/Payload.h; sourceTree = ""; }; D6C60021AE285818245003443143D156 /* NetOps.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = NetOps.cpp; path = folly/net/NetOps.cpp; sourceTree = ""; }; - D6F1FB7F281468D9F70331029D55677B /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; - D709AB9666286F00ED5D6D6A2F4A8D0B /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = ""; }; + D6C8B6125EDED348D3F287B2AAEE8233 /* RNBootSplash.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.xcconfig; sourceTree = ""; }; + D6D3C2E16B0602C74178760CCFD36F05 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; + D6D8EF074200FD4A7477713FFFD6EA87 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + D7089DA72758BEA1CA52D22B76C9BAA9 /* RCTNetworkTask.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworkTask.mm; sourceTree = ""; }; D70D9EBB5B766C22C2364940119C9F1B /* Pods-RocketChatRN-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-RocketChatRN-umbrella.h"; sourceTree = ""; }; - D77B16B96F40A6536D7E047E5CD22C68 /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D78966FD8B3B4035E81DC0546AA2E366 /* UMAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppLoaderProvider.m; path = UMAppLoader/UMAppLoaderProvider.m; sourceTree = ""; }; + D717574A3A257D0004108AAB70A3A9D0 /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; + D719AE35D5D415EEE135E7E098E611D4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + D722A405FA19C6CC7008096B753DC674 /* RNFirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseCrashlytics.h; sourceTree = ""; }; + D75F03B31C32851A96675E67ED127367 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; D78A0123098D28C5D3E135C01E38E39B /* FIRInstallationsErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrors.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsErrors.h; sourceTree = ""; }; D7B190E3ACB04EBB4801EDBFA54609F5 /* upsampling_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_mips_dsp_r2.c; path = src/dsp/upsampling_mips_dsp_r2.c; sourceTree = ""; }; D7B38CF963E4B5EBF6F336D06B440921 /* SysResource.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysResource.cpp; path = folly/portability/SysResource.cpp; sourceTree = ""; }; - D7BAE26AC52601842834BDCE65545B5E /* 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; }; - D7D01B2F130EF49706E4DDC323B47010 /* RNCMaskedView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNCMaskedView-prefix.pch"; sourceTree = ""; }; + D7C9B295574DF5320A3402BEFD57B09A /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; + D7CBE2E576A6F7D3D91B521B10F2EF4D /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; D7D43B9A81C5CFB7CC964B198C8BF176 /* JemallocHugePageAllocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JemallocHugePageAllocator.h; path = folly/experimental/JemallocHugePageAllocator.h; sourceTree = ""; }; - D7D5330BA7F406E82D2A64AD902CE53B /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; D7ECAAE8A2CCA4ADE5B901E16909C5E4 /* Pods-ShareRocketChatRN.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ShareRocketChatRN.modulemap"; sourceTree = ""; }; - D7F2E42BCDF6367B224D7E349E95B1AD /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; - D7F56A33A983244B08AECC4C4EEBDAAC /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; + D81099672572D0577DA53A25CEEB67C8 /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D81BCB488A688F932AE45EF8B3C5E5B3 /* DelayedDestructionBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DelayedDestructionBase.h; path = folly/io/async/DelayedDestructionBase.h; sourceTree = ""; }; - D826E60BC234B9FF7AD9EE10C96EE99B /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; + D8288F5668BC50E9C7A67EEBBDDF61EE /* EXKeepAwake-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXKeepAwake-prefix.pch"; sourceTree = ""; }; D84A2AC75061051C62EF7AAB2CE0ED5B /* Merge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Merge.h; path = folly/container/Merge.h; sourceTree = ""; }; D850BB62E6C022FEAA267C2CE99A4AEC /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = SDWebImage/Core/SDImageHEICCoder.m; sourceTree = ""; }; D86404E62D00A42BC3480DCEFAD40A6B /* SmallLocks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SmallLocks.h; path = folly/synchronization/SmallLocks.h; sourceTree = ""; }; D87BC4659B21C43E2DE2DC8B806E7DF3 /* RangeSse42.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeSse42.h; path = folly/detail/RangeSse42.h; sourceTree = ""; }; - D882CD265BAAC8C8EB8DBD2BE886AF69 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; - D8835DFC24DE1B46F747338F9C259C6B /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; - D8B10E7B4093EA180B50CC5E3CED277E /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; D8B5ACE0E6FA599B800ED969620E15F6 /* Flowable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowable.h; path = yarpl/flowable/Flowable.h; sourceTree = ""; }; - D8BC6D684FC93C5BBD851B095B4BCA6C /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; D8E439BA476130C23BF7C6A07CF4DB84 /* dec_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse41.c; path = src/dsp/dec_sse41.c; sourceTree = ""; }; D8E68F8DDA9D284449FE4EA765590F3D /* GDTCORPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORPlatform.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORPlatform.m; sourceTree = ""; }; D8F27D693A9D70A1E15610ED01D638D6 /* upsampling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling.c; path = src/dsp/upsampling.c; sourceTree = ""; }; D8F5319932C25E358AB24E8ED53D4F06 /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; D8FD6B2BE2BFC5E7D9B2B10CD7DB9210 /* Unicode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Unicode.h; path = folly/Unicode.h; sourceTree = ""; }; D902F332899320E93E02D84D939FFA28 /* SKStateUpdateCPPWrapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKStateUpdateCPPWrapper.mm; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.mm; sourceTree = ""; }; - D9107F10343A9D0842D5085B25F198F0 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; D9306EE62AD39ADA40650280B3F6BB8A /* Sched.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Sched.cpp; path = folly/portability/Sched.cpp; sourceTree = ""; }; D937487C3061F03755D71E545664D573 /* Demangle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Demangle.h; path = folly/detail/Demangle.h; sourceTree = ""; }; D9464598046241785B5443A7676E3609 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; - D94A4FC53AED68F8848D4EA0F216B06F /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; - D958CE2B81B824D413EE641BDF933F55 /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; + D948B71F7FC30E1FF122D7727C0EA51D /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; + D94D994617AE02E6FE088AA48918ED0D /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; D96B57221ABDA9A8EAEDE4AC20AB620C /* SDWebImageWebPCoder.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.xcconfig; sourceTree = ""; }; D96E80E0B8C87F6390DA8CB6B41F85C0 /* Uri.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Uri.cpp; path = folly/Uri.cpp; sourceTree = ""; }; - D9915994EECACD7D790907711164FF55 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; - D9B37A15E0FA6CD3DB37864804AD63AD /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - D9CC335C8C592AEFC9057636EA09D300 /* react-native-safe-area-context-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-safe-area-context-dummy.m"; sourceTree = ""; }; + D9A8909DE5336730A4353A7246904F49 /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D9BD6D3361B305856056293EB356277C /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; D9CF2394D44341B54D3A25FF1027D896 /* Common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Common.h; path = rsocket/internal/Common.h; sourceTree = ""; }; D9D67A48064ACEFA668CF1E62AC1632A /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; D9D9D03BFCBCAD2A7339B4C6A86B467B /* utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = utils.c; path = src/utils/utils.c; sourceTree = ""; }; D9EC99C72D868B3A7BC823FE6FD40B3F /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Sources/Private/FIRLogger.h; sourceTree = ""; }; D9EDB0192FA9FC531B82B0AC8C991FF9 /* BlockingQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlockingQueue.h; path = folly/executors/task_queue/BlockingQueue.h; sourceTree = ""; }; - D9F1014F239236BC5F2F41AB81D21B01 /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsi.a"; path = "libReact-jsi.a"; sourceTree = BUILT_PRODUCTS_DIR; }; D9FBD50E9063031FACDB5234DD759A0E /* ExecutorWithPriority.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ExecutorWithPriority.cpp; path = folly/executors/ExecutorWithPriority.cpp; sourceTree = ""; }; D9FF6760F7D70B64394EA79D41B64CBF /* RSKImageCropViewController+Protected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RSKImageCropViewController+Protected.h"; path = "RSKImageCropper/RSKImageCropViewController+Protected.h"; sourceTree = ""; }; D9FFC6C7BE0A6E54794B106414DB1B9F /* boost-for-react-native.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.xcconfig"; sourceTree = ""; }; DA1E0B387C0503DAE734788BE8C16855 /* yuv_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse2.c; path = src/dsp/yuv_sse2.c; sourceTree = ""; }; - DA2317BAB68F0AA88BEBBD1092C9C171 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; - DA23FA802004150814858F296B06E271 /* UMPermissionsMethodsDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMPermissionsMethodsDelegate.m; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.m; sourceTree = ""; }; + DA3E4C5835932D3BEB8B7986FEDD1D99 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; DA3F2CFCB12B1B29744C28647FD6CF3D /* AtFork.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AtFork.cpp; path = folly/detail/AtFork.cpp; sourceTree = ""; }; + DA70884E7FDA3795BFD5C16FFE565B79 /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; DA898CEFED39AA72F200D8C1DD7AE9B9 /* SKViewControllerDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKViewControllerDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewControllerDescriptor.m; sourceTree = ""; }; + DA899EB45EC9B57268155D598B7FBA5B /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; + DA93844539F9B41A65CC73F109587D1D /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; + DA97570F844984C4A3EB9C5094249D1E /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; + DA982766DD37C11DFF161F7A01D7AB07 /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; + DAB4DB32EF33AA894F1809353C136158 /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; DAC317C7EB06A759F8B238A9746390C6 /* AsyncSignalHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncSignalHandler.cpp; path = folly/io/async/AsyncSignalHandler.cpp; sourceTree = ""; }; + DAC3E4DBB5DAD38F84C500E85D18E30C /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; DAC73F3CECA41478519413F49926203D /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = FirebaseCore/Sources/FIRConfiguration.m; sourceTree = ""; }; - DAC74069D9D5F477EAEF1DD93F60EAD1 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; - DAE471F02C23B363E017C53DA3A781CF /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DAD33D331055D1CFECFD62DD2D2C5A08 /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; + DAE698D83C3018DA7D94A29BCA3C2F99 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; DAFAFDA223DEE59D35E812DD10ABB64C /* FBDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBDefines.h; path = iOS/FBDefines/FBDefines.h; sourceTree = ""; }; DB016C82CC168E317D90FA49A48E576E /* F14Mask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Mask.h; path = folly/container/detail/F14Mask.h; sourceTree = ""; }; - DB30904BAAE60FADA3C166321E867CFA /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = ""; }; + DB3ED2C7C0845409CA9E960C11096A52 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; + DB5604C9ED19C28003800F8E65692022 /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = ""; }; DB6031C2D1663B56C2BFC3DC302D3269 /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; - DB67FF762D01F761C5B6571BCF2BD58F /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; - DB8EEFC2865862922C0F3D62D40909BE /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; - DBA47DDEAD4D6754F88945C0073C0BBB /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; + DB848A3694B2A20115E6215C34CBC043 /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; DBAA5A67FE1FC63A1065005C74D13EC8 /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; DBC2B283A2DE4C0ACBBC43E233D77211 /* 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 = ""; }; + DBC7B94308CDDEB933D9CFA7617976C7 /* RCTTypeSafety.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.xcconfig; sourceTree = ""; }; + DBD32390C988B0EDD281390E40FFB1E0 /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = ""; }; DBE52C59AA142A99D50F0AA974CC635D /* BitIteratorDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitIteratorDetail.h; path = folly/container/detail/BitIteratorDetail.h; sourceTree = ""; }; - DC27A0095FF48D6786C3E980C983CEE5 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; + DC0870324320FE7D1BB55F1E46684821 /* BugsnagPlugin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagPlugin.h; sourceTree = ""; }; DC4921858537797DF6DE8FEF93F73B84 /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/init/Init.h; sourceTree = ""; }; - DC4E149D47C8711B5127CE4B75308EF1 /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; DC53DF962492C30428EE3CA2285C86A7 /* TimedDrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TimedDrivableExecutor.h; path = folly/executors/TimedDrivableExecutor.h; sourceTree = ""; }; - DC7C17EDE1D3ADAF9E4AAAA4F0805E93 /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = ""; }; - DC7EC9BBE139A8CAD5680DA48B1B9B0F /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; - DC92F37702AA404B9EEFC33B82445BC7 /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; DC955D2B20DCA90BB1C7C11AAC5F6940 /* dh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dh.h; path = ios/include/openssl/dh.h; sourceTree = ""; }; DC95B708D8BF834D9658FBE9EDD9B44A /* AsyncServerSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AsyncServerSocket.cpp; path = folly/io/async/AsyncServerSocket.cpp; sourceTree = ""; }; + DC9674D5C03ED251F517E10F4E2BB6E1 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; DCA1E0D1BC1C44D03756BBF4B8CABC5F /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; DCABDEB1ECA6AB1D95D2A6CB9ADD5C59 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; + DCAE2B7CAA8DE69FB38B4C1CC00366F6 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; DCAED6D266049A21DBEA116A3D22AC25 /* Constexpr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Constexpr.h; path = folly/portability/Constexpr.h; sourceTree = ""; }; - DCB94CBCFE0C715380C60E0F455AF63D /* ReactNativeKeyboardTrackingView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardTrackingView.xcconfig; sourceTree = ""; }; + DCB10EB363B93E5F38A13034E9276D41 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; + DCBC7728CF60EED657D74457555870AA /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; + DCBEA93901E0F18536C3154CDBDE4456 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; DCC8C93413C4A20B2CEDDF097CA3F6B4 /* TcpDuplexConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpDuplexConnection.h; path = rsocket/transports/tcp/TcpDuplexConnection.h; sourceTree = ""; }; - DCCD4B155D3FF26274DC1610F26D297A /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; - DCEC1BBDA66CBCA038CFCAF6348C0923 /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; DD00CB56D91621F69493ADDD3139090A /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = FirebaseCore/Sources/FIRApp.m; sourceTree = ""; }; DD1DFEBA5CCBEEB299A75CE87A9B5550 /* Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Folly-prefix.pch"; sourceTree = ""; }; DD2F2A78ADD1936F72196CD6A8D00E5B /* ScheduledSingleObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSingleObserver.h; path = rsocket/internal/ScheduledSingleObserver.h; sourceTree = ""; }; - DD38F2F2FA7D1CA194A4316CC114CE7C /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; + DD30A2F09A0E218AACC62DA2BA33CEF5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; DD68D1B933AEA3BDA8518B72E32AB135 /* FBCxxFollyDynamicConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBCxxFollyDynamicConvert.h; path = iOS/FlipperKit/FBCxxFollyDynamicConvert/FBCxxFollyDynamicConvert.h; sourceTree = ""; }; + DD8E85CE4F365EEAFE4AB0F7D8E742F2 /* RNFirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAuth.h; sourceTree = ""; }; + DDA553F0C0F23533F39A1CB4DC9E5036 /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; DDB4574B3B770599A9B8E3F74E2411F3 /* FIRInstallationsVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsVersion.m; path = FirebaseInstallations/Source/Library/FIRInstallationsVersion.m; sourceTree = ""; }; DDBAEEF4A7B911A600314EF9A676CC5D /* Flipper-DoubleConversion.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-DoubleConversion.xcconfig"; sourceTree = ""; }; DDCB993469467EC1426890E2EC115BD5 /* Partial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Partial.h; path = folly/functional/Partial.h; sourceTree = ""; }; DDD3823CD61B5AEB828827F65D3489AA /* FIRInstallationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStore.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.m; sourceTree = ""; }; - DDD9A8FF0995E1241DCED980BF3FAA61 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; DDE2BF68CAB2616E23655DB39C7D4A3E /* IPAddressV6.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddressV6.cpp; path = folly/IPAddressV6.cpp; sourceTree = ""; }; DDE59FCFD27414109C6670A3A72CDD0E /* nanopb.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.xcconfig; sourceTree = ""; }; DDEDE414179CA9F5476CDA0BC142D864 /* DoubleConversion.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.xcconfig; sourceTree = ""; }; DDF66D0EAA9FE4DFE3CF45380C10DF21 /* dsa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsa.h; path = ios/include/openssl/dsa.h; sourceTree = ""; }; DDF8A6BC140C502062CFC253CD1CB371 /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; - DDF9A745239F49B68E9F0B8533915281 /* react-native-slider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-slider.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DE047E7DA6E2227F9D776E4BBD0E2455 /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = ""; }; DE1413051450C50DB0DFBD6429DA5C89 /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; DE249746A99AC56A7CA87BF98C330888 /* 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 = ""; }; - DE419D5973B7551B6077FD66A45A82D3 /* RCTConvert+UIBackgroundFetchResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+UIBackgroundFetchResult.h"; sourceTree = ""; }; - DE5CDE7B990E4422CA317D651285C02B /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; - DE6A50A3C93D966F1701A784B02E764B /* FBReactNativeSpec.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.xcconfig; sourceTree = ""; }; - DE728416151A6E0409CC9B54D5A3AEF9 /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - DE7F6277315A36A1D833DE0C44B3E033 /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; + DE25AB36DF1683FB80CBFF80590FB05D /* RNFirebasePerformance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebasePerformance.m; sourceTree = ""; }; + DE2B13FD4F4DE3C9705E95D588295E09 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; + DE2E9B96789DF180FE312CD37CA4454B /* 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; }; + DE30B4F86E8465B83ABD00A3B78E1063 /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; DE86D9C3EA27126489E3A87E9686CAA9 /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = ""; }; - DE8F625CA9B70EFC0ACF66753B2B8C75 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; DEA2CE6EAF463BF959C6C469CA77AB13 /* ScheduledFrameTransport.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScheduledFrameTransport.cpp; path = rsocket/framing/ScheduledFrameTransport.cpp; sourceTree = ""; }; DEA3D9B5C8E4A8DE486F429B4D13D521 /* picture_csp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_csp_enc.c; path = src/enc/picture_csp_enc.c; sourceTree = ""; }; + DEA63D349F8046FF0925A466C59026F1 /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; DEA6B6E5794DE17A73763EDA7F2640C0 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; - DEB14E8B79D4E1EDC3C7F619DB0F76D1 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; - DEB422D3B76E77B2B06F217E5FD64CCF /* RNFirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseRemoteConfig.h; sourceTree = ""; }; - DEF4697C35F84407BB74729FC41F9B7B /* RNCAsyncStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAsyncStorage.m; path = ios/RNCAsyncStorage.m; sourceTree = ""; }; - DF03482AC925EB58BCD8FEE81E27C735 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; - DF0598EC4E96419F8C605A212DF295D8 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; + DEADEAD6C7CCD67A1AE3FC7EE30B7B02 /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = ""; }; + DF062F0947A341275A25E7705736DF21 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; + DF132D8E04244DFF406C105C77F67000 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; + DF13E0F96EBCD3D9CA5D788138682C68 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; + DF153716257E8284E747023ED54F0F81 /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; DF178130FB35B0F86164837E4125CEFB /* Invoke.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Invoke.h; path = folly/functional/Invoke.h; sourceTree = ""; }; - DF36CC4EC6787DC51E7084B92E5E9001 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; DF43449DB5768DD12D5FBFAB6172F716 /* seed.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = seed.h; path = ios/include/openssl/seed.h; sourceTree = ""; }; DF4E5CD7212197F9EB85998AB69C6321 /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; - DF7DFF3A414B0E7D5C751B535DB89338 /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; - DF85DEADCDCE3CC0A2717889EF77DA40 /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; - DF8BCC9C723065E000C2A4D4A913777F /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = ""; }; - DF8CCF2AA86951C0C89788443FC66288 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; - DF8D77ED36497353F79CA30D64E32966 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; - DF92CE034A458C57CFC9FDD2166F2176 /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; + DF6F3496F8688A1C552A282A65030625 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; DFA07EEEB8570BD73E25EC6F93C4AF90 /* LifoSem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LifoSem.h; path = folly/synchronization/LifoSem.h; sourceTree = ""; }; DFAD59C64C4A25E07742F178A059CEA4 /* SharedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedMutex.h; path = folly/SharedMutex.h; sourceTree = ""; }; - DFBED849C843D4DF967E45C83D99233F /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; - DFBFB9EE3E0BC111F644FFD270312695 /* RNCMaskedView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNCMaskedView-dummy.m"; sourceTree = ""; }; DFC527850FAFC5440685B7384E42C9EE /* Futex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Futex.h; path = folly/detail/Futex.h; sourceTree = ""; }; DFFA2485C026362746BC6DEA4B5C750A /* opensslconf-arm64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "opensslconf-arm64.h"; path = "ios/include/openssl/opensslconf-arm64.h"; sourceTree = ""; }; E008D088ECFBC0055C52C9B8FFF48BE2 /* ConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionFactory.h; path = rsocket/ConnectionFactory.h; sourceTree = ""; }; E00BE2A3146698E81A8F9D00E8F93A6C /* libFlipper-Glog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-Glog.a"; path = "libFlipper-Glog.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - E00F29323FDC2221DEC6688F99664369 /* RCTLogBox.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLogBox.mm; sourceTree = ""; }; E01627C9FADCDFAD3407038312E4CF57 /* AsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocket.h; path = folly/io/async/AsyncSocket.h; sourceTree = ""; }; - E0416A48BB81A3B7DCD63873C246F10D /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; - E04944B846FE8EC84AA406381ADE1C0A /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; E061E500898E80FE2F24E34CCB6EBFE6 /* RSocketServer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketServer.cpp; path = rsocket/RSocketServer.cpp; sourceTree = ""; }; + E070F59768430E1F763F4FEA905C30C9 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; + E0A44BB4D8CC51254A701F6932D029AC /* RNFirebaseNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseNotifications.m; sourceTree = ""; }; E0A5E5379B080007D7EB8A706911E252 /* CancellationToken.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CancellationToken.cpp; path = folly/CancellationToken.cpp; sourceTree = ""; }; - E0DFA6854FAB0AE1641D77286FC5DDE3 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; + E0C880EB09D63CA8E3E4659D04C69957 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; E0F6C58E2DF711485E4D992D5D375A5F /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = ""; }; - E0FB7A2BCB26E6FA7FAF1995311D73E2 /* RCTImageView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageView.mm; sourceTree = ""; }; E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; + E1068FC7BC9FAE86B64A4A858CE22089 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; E11720C8437E0D5F25B9999FA856078E /* 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 = ""; }; E1251A48F04B7E490647FD77E07F6635 /* FlipperKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FlipperKit.modulemap; sourceTree = ""; }; - E12ABAFF3171D02F51399E7A8490FC79 /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; - E138989E28E0CBEE52F963CE389779E8 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; - E1551C8062D1ED0104DBC41541A65C2F /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; + E1267B87B5E59D656061CB97B29CA63D /* BannerComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BannerComponent.h; sourceTree = ""; }; + E151DED940CE3340E8776922A596C1A4 /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; E16109B9EB664F918C2B6A019364F2D1 /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = ""; }; E170B7D134F5E84EAF48809EE0563194 /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = ""; }; E1744DA8B3810869EDBEFD26A77EFD9D /* Benchmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Benchmark.h; path = folly/Benchmark.h; sourceTree = ""; }; E1940DEEAC17A92734A7038D221AE41D /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; - E1C0FD671C82989A3D3C58576B986687 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; - E1CB6BECF058E3A4985899EE7B0B23A2 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; - E1DE80D90C565FAD31CC5F26AECDF252 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; + E1D4D993C8965906F4AC01EDF9794E04 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; E1E2E8FE98F9ED5FBA8DA6B061E3CF4C /* ThreadName.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadName.cpp; path = folly/system/ThreadName.cpp; sourceTree = ""; }; - E1F337022FAD323E4E4537DA434CEE80 /* RNCMaskedView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCMaskedView.xcconfig; sourceTree = ""; }; + E1FF5B4A8425AF847AFA2F0B34FB6D7C /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; + E2016F217CC3D2A21FAE96516375C928 /* RNFirebase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFirebase-prefix.pch"; sourceTree = ""; }; E2060A315A5DB499B27EACB59616E6FB /* FLEXNetworkTransaction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkTransaction.m; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkTransaction.m; sourceTree = ""; }; - E214B9CEE51A727C5AE4AC727593DE85 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; E215EFB6073591F6E2FF5E01B38E345D /* MPMCQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MPMCQueue.h; path = folly/MPMCQueue.h; sourceTree = ""; }; E21C75C0A81895300FD2DCEB5DD2ECF6 /* objects.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = objects.h; path = ios/include/openssl/objects.h; sourceTree = ""; }; + E22229ACA846827ABCD00F9EE7319B95 /* RCTRefreshableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshableProtocol.h; sourceTree = ""; }; E227691798690C6BE6692621F1ACC5EC /* TcpDuplexConnection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TcpDuplexConnection.cpp; path = rsocket/transports/tcp/TcpDuplexConnection.cpp; sourceTree = ""; }; - E242EDC375AF5831097F51B852EB51A6 /* RCTVibrationPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTVibrationPlugins.mm; sourceTree = ""; }; - E246AF0BBED7036FBE5BB7342F0E2387 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; E24FCB4952C86FCF76EDC7C1D0E561E8 /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = FirebaseCore/Sources/FIRLogger.m; sourceTree = ""; }; E2516D63BEA2B740D3E80F31D007E2E6 /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; E25DA40E0026AE4DD2820972900080B6 /* FABAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FABAttributes.h; path = iOS/Fabric.framework/Headers/FABAttributes.h; sourceTree = ""; }; - E264446847198B24564078FFE2989119 /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; - E265D20CED969AF5718CC2576B0D2FCC /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = ""; }; E278E225162A389E82A6B92D8C973798 /* Asm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Asm.h; path = folly/portability/Asm.h; sourceTree = ""; }; + E27B91E05142F77BABA30F0CD38DB75C /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; E28015CFB7B823A373528A421C6F2923 /* CacheLocality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CacheLocality.h; path = folly/concurrency/CacheLocality.h; sourceTree = ""; }; - E2967776DBB8C2491E39D6BE35D0275B /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; + E28F5BE343EDDBC6960DE3A38B8AC576 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; + E29655ABA3D738C02F961D55C57A27DA /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = ""; }; + E2A5C7FEDF5324A60792BB6AB8DBC936 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E2C653BA98A073B45B33E340C973D86D /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; E2D1B133318B83CC336785C91785D681 /* ThreadedRepeatingFunctionRunner.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadedRepeatingFunctionRunner.h; path = folly/experimental/ThreadedRepeatingFunctionRunner.h; sourceTree = ""; }; - E2D64ECC5835599A6514F50D193FEC7A /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; E2D909FC84C596D4FA13501456774A88 /* GoogleDataTransportCCTSupport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransportCCTSupport.xcconfig; sourceTree = ""; }; - E316BF26AE4B9F5479B1EC5A92FAC816 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - E32701A5312FF5486D49E353569C4571 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; + E2DC3EE57D9478800D5F721D930B70B8 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; + E339C7E6CECA9A2CCA9C293674EFC4E3 /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; E33F6F25B1A319CD98E7EED0364DC1E1 /* ConnectionContextStore.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectionContextStore.cpp; path = xplat/Flipper/ConnectionContextStore.cpp; sourceTree = ""; }; E3575F3A9BC08A5FAD6227C9E2CE3926 /* FlipperConnectionManagerImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperConnectionManagerImpl.cpp; path = xplat/Flipper/FlipperConnectionManagerImpl.cpp; sourceTree = ""; }; + E35AB47F21BF54CCF80693CA198AD9A1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; E3850E79F71D621ADC40A39FE30A4F1A /* UIImage+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+RSKImageCropper.h"; path = "RSKImageCropper/UIImage+RSKImageCropper.h"; sourceTree = ""; }; - E38FE81BDDD5BD672BD3F564F64D524C /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; - E3B80F371ADCB8A43C619930E4C88649 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; E3B9F2E2045D0788B9F558559D9E3279 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; - E3BAB038B14C3C7D99E760D3B99ABE29 /* ReactNativeKeyboardTrackingView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardTrackingView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - E3ED780732B909991C8A1D797B113375 /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; - E3F7D9AF8CA85FA31381F3C1E5A53EEB /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; + E3D3F1F51A9701774A4230C7CADB7BA9 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; + E3FDCFA08F36789EBF4C865A9F9B86CB /* 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; }; + E404649237AF8D3405C5E7A49F44AA22 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; E41635B0C90A557F36FBA2C3F7213926 /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = SDWebImage/Private/SDDeviceHelper.h; sourceTree = ""; }; + E4197BA19A99AFF099E7B1F96C2BF98A /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; E421CDD78CFBC69897AB99248C9DE3CC /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; - E427264B56A7CEB31CA0BF7DDE13B5BB /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; E42EB11146478ED93A18225F403E840E /* SetupResumeAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SetupResumeAcceptor.cpp; path = rsocket/internal/SetupResumeAcceptor.cpp; sourceTree = ""; }; - E434EC2FB629FBB95FFA4D9637BFFBC6 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; + E43A7C55554F6A25B0C051FBEADE2759 /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; E43EB0F46632FA8C2CC6E97D21978FBA /* YGLayoutExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = YGLayoutExtensions.swift; path = YogaKit/Source/YGLayoutExtensions.swift; sourceTree = ""; }; E44BC299022EA501E799E13117E8DBCE /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; - E45A58CC7E74042249B75831FE86A803 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; E45E1848AE365E998CC9EDABD1D1782E /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; E4769B5ED370A40DF23C904BC98B4E80 /* Assume.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Assume.h; path = folly/lang/Assume.h; sourceTree = ""; }; E48D44415F84BF7AED6E1B9F0504D132 /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; E48FF60598432561EA3B912A67001EF5 /* idec_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = idec_dec.c; path = src/dec/idec_dec.c; sourceTree = ""; }; - E496A1597D2C8132C654D45BB3F241D6 /* RNCSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSafeAreaView.h; path = ios/SafeAreaView/RNCSafeAreaView.h; sourceTree = ""; }; E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNRootView.a; path = libRNRootView.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E499E992ADE815C14367F331C98405B2 /* RCTSourceCode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSourceCode.mm; sourceTree = ""; }; - E4BE33020F71E8470F7194767E33E0C7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - E4BF95C9C73202A4F49C1C4F3F0AFD9C /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; + E4B84CE374E4791CE00F0495746EA555 /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; E4C3FC9ADAB83B11E93EFE083DBD9D33 /* AsyncUDPSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncUDPSocket.h; path = folly/io/async/AsyncUDPSocket.h; sourceTree = ""; }; E4C4E89A25DD07D4ED5207FDA6340727 /* filters_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_msa.c; path = src/dsp/filters_msa.c; sourceTree = ""; }; E4E2648211201464652B1487C44C900F /* rescaler_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_msa.c; path = src/dsp/rescaler_msa.c; sourceTree = ""; }; - E4E34D60E16609B4903F2C82BFAC7361 /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; E4F600571076E94B7971D91DFFF8118F /* FireForgetThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FireForgetThroughputTcp.cpp; path = rsocket/benchmarks/FireForgetThroughputTcp.cpp; sourceTree = ""; }; E4FA37A4BB3A256BB3748C57BCFB7444 /* SysStat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysStat.h; path = folly/portability/SysStat.h; sourceTree = ""; }; - E533079A5A60ED45D2840B8F31B01B66 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; E53E535B0D7E94210A940AAFB705BCEC /* Stdio.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Stdio.cpp; path = folly/portability/Stdio.cpp; sourceTree = ""; }; E54644174B74406C94D5183063CF47C1 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; - E55871F9C2198B66272FDFED3493DDC5 /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; + E5515B968616712FC0ABBD3B9E538D4A /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFastImage.a; path = libRNFastImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E57CB5393938F05134054752FF3A5ACC /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; + E57FD1A818973E00CEA39D4F7117DC89 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; E58400A644A9B682CCC01FB4F5FC5918 /* AsyncPipe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncPipe.h; path = folly/io/async/AsyncPipe.h; sourceTree = ""; }; E58EC4A32463C065C5565A34EDD61677 /* DrivableExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DrivableExecutor.h; path = folly/executors/DrivableExecutor.h; sourceTree = ""; }; + E5A6370B7C73A043A8FF32CF2159663E /* RNCAsyncStorage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNCAsyncStorage.xcconfig; sourceTree = ""; }; + E5A99D61BC32FDB3E180C15A49884227 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; + E5BE70CDD066B568037BBBAB9F9E0088 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E5F739963806C8A554836D765A67FF88 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; E5F9233B485E051515A84031898F4B5D /* krb5_asn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = krb5_asn.h; path = ios/include/openssl/krb5_asn.h; sourceTree = ""; }; E60EA72F9FA5321E22349580C0FCF0CE /* CocoaAsyncSocket-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CocoaAsyncSocket-prefix.pch"; sourceTree = ""; }; - E63199558C4A6FD2AC4B36A19B0751C6 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; - E6358156D78B68B00D4BE4D149283F3A /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + E61A1C5653AD0EA4AF8BFDD95F9D03F9 /* RCTConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConstants.h; sourceTree = ""; }; + E6380C5E127BF624781A1E19119B1A74 /* RNFirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseMessaging.h; sourceTree = ""; }; E63FD166211C9DD8992C8AF24D706F9A /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; E6445DD2681B0D31839C79B83EFB5FBC /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; - E664162CC3D20649879EE5C9EE42FF99 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; + E64A3F11EF0C961806EEEFF73C903EAD /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; + E67B82F37619263BFACB3D924ADE23F2 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; + E67DC662F60E63C9E493F499FA11A267 /* EXImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXImageLoader.m; path = EXImageLoader/EXImageLoader.m; sourceTree = ""; }; E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTText.a"; path = "libReact-RCTText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - E6ACBAD632439F409068F8598984ACE9 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; - E6B5011534201E3763AB22784CE8E753 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; - E6C0E11D8A8B1FD548645D7202DE152B /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; E6C545282794390EC5B3F993544E896B /* asn1.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = asn1.h; path = ios/include/openssl/asn1.h; sourceTree = ""; }; E6CDB819EAD7C970698E1BA550A0B871 /* ManualExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ManualExecutor.h; path = folly/executors/ManualExecutor.h; sourceTree = ""; }; + E6D7C9681AD4FC32C1A296370A50A91D /* RNFirebaseAdMobBannerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobBannerManager.m; sourceTree = ""; }; E6FC69ACB00CC2FE217B6FEE56A61C87 /* UTF8String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UTF8String.h; path = folly/UTF8String.h; sourceTree = ""; }; - E700032730765E8D6A7310102C555CB4 /* RCTLinkingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingManager.mm; sourceTree = ""; }; E702511CB604799D32133909BD9C08EA /* FlowableDoOperator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableDoOperator.h; path = yarpl/flowable/FlowableDoOperator.h; sourceTree = ""; }; E7107D2046052CD7A4AF313913FC9584 /* SingleWriterFixedHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingleWriterFixedHashMap.h; path = folly/experimental/SingleWriterFixedHashMap.h; sourceTree = ""; }; E710C1D3477D55D637DC898F5F428EBC /* IndexedMemPool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IndexedMemPool.h; path = folly/IndexedMemPool.h; sourceTree = ""; }; - E7201C8B292DF82622394CC050A937B9 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - E72085AB6706EBC6398EC9DE1C48257A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; E7212E56B264E284F19A7D721819825C /* FIRInstallationsErrorUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrorUtil.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h; sourceTree = ""; }; + E723648F24B8CEE56B5BD178A2C40B0B /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; + E7255553FE2730EF3470DA939C286372 /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; E730127AFF93894208BF52F0F6F84552 /* Instructions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Instructions.h; path = folly/experimental/Instructions.h; sourceTree = ""; }; - E732B1F3F10F6B1D59C6227D9628145F /* BugsnagReactNative.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.xcconfig; sourceTree = ""; }; - E749EFFD4D169830F385E39E74FEEAE2 /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; - E76D46F06A84B4B9286B578A69AD010D /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSourceCode.h; path = React/CoreModules/RCTSourceCode.h; sourceTree = ""; }; - E7846734562A86F0F18D518A1A103385 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; + E740EAA285AC1FD55E56719C1EE72F93 /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; + E7597CDCC89E5EFCC048177EBEDB1036 /* UMPermissionsMethodsDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsMethodsDelegate.h; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.h; sourceTree = ""; }; E79885D71DD91FDC77D1CB86B4BD3CBC /* Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Folly-dummy.m"; sourceTree = ""; }; + E79FDE1EF9E842BE4E0E95A77B70CEBE /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; E7B9E241EABF8A5A40C7EDD67432603C /* RSocketStateMachine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketStateMachine.h; path = rsocket/statemachine/RSocketStateMachine.h; sourceTree = ""; }; + E7BAA5278A651C0127BD7239C38EBCE2 /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; E7C17EAD202035E688B4B171F70E4195 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; - E7C2406EB26E7373D603678D269F1956 /* RCTSettingsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSettingsManager.mm; sourceTree = ""; }; - E7FEFC8BF31652AE75D2A6B5CCF97FE3 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; E80F9E4B9F1E0CD1D7E847EECA4E1E40 /* picture_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_enc.c; path = src/enc/picture_enc.c; sourceTree = ""; }; E81C052BDC30A35F1D0F94A8BCB93F3F /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; - E843670879CA7CD7B3EDC89F66951D99 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; - E851E6CD968E6A6AE221C1053E27E8F7 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; - E86A1500A927E39874D8337AFE45667D /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; + E82FE94D3F4E5B342B904E3B7D181021 /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; + E83A88E809AEF3803F4E5A761CE9EBD4 /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; + E8706E1DA14B12D2BF99066A1CFBE2F5 /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; E877B24BBCFEEB3B33063DAB3FC98BC2 /* MemoryMapping.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryMapping.h; path = folly/system/MemoryMapping.h; sourceTree = ""; }; - E8849E3901042473FCB415D574D15750 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; - E88F78294801819BD69BE99ED540E704 /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; + E87C6EEEC92FDE90E7B6AC175FAC3285 /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = ""; }; + E87D4A792FAD154490E6F61C7EB69E9E /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; + E8987BAB3A8B021656E0C28FDDFD36A0 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = apple/RNCWKProcessPoolManager.h; sourceTree = ""; }; E898D5CC2804FC6CAFFB81DCF6D138A7 /* Iterators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Iterators.h; path = folly/detail/Iterators.h; sourceTree = ""; }; + E8A4EADCDDEA4A9244BA30B3A970CB58 /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = ""; }; E8AB14C7C536EF5778108D1396DC9F96 /* StreamStateMachineBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StreamStateMachineBase.h; path = rsocket/statemachine/StreamStateMachineBase.h; sourceTree = ""; }; - E8B2D04B65CB01A5C753E613DE9CBAC3 /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; E8B59FF69585BDEA20ACADA68A597D1D /* ProgramOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProgramOptions.h; path = folly/experimental/ProgramOptions.h; sourceTree = ""; }; E8BE1BA1EAFFFB8328E7F20969E2E6FC /* GLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GLog.h; path = folly/GLog.h; sourceTree = ""; }; E8C9A2A36721E59FF629EF87DAB54EEB /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; - E8D3B8F52EEE1AAD7AF95F4D98371347 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; - E8DB84CAA9FFF35B26830F2F6B2E1093 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; + E8E9A804A7E0F676469F0B6A13CC9593 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; E9128F86352D76A79FF505730FB26393 /* ErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ErrorCode.h; path = rsocket/framing/ErrorCode.h; sourceTree = ""; }; - E9365E0F3C70A00DFFB73C55CE208FA1 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; + E93D126B448F75F301364547ED319491 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; E93F701CA8EB196D77AE99E094D873E4 /* libFlipper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFlipper.a; path = libFlipper.a; sourceTree = BUILT_PRODUCTS_DIR; }; E9468203F858002BB65BC64AC815D7E1 /* FKPortForwardingCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FKPortForwardingCommon.h; path = iOS/FlipperKit/FKPortForwarding/FKPortForwardingCommon.h; sourceTree = ""; }; - E947376F560B801ED9ED40D457FF7E09 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; E94A0C52E511CD9E2FF483F8B9E4C7A7 /* Folly.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Folly.xcconfig; sourceTree = ""; }; - E94FC1C094B87AA5B9F330ED67E9B2D0 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; - E950EA795D2359323C7DD283B2307452 /* 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; }; - E954433A769ECCCFBE05DCF2B3D7EA5B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + E9519BBD99C3479A582869773DEAFC32 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; + E965D873B420C837AC529798128E532C /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; + E96AFEE6871AD4086E800C2659CBA731 /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; + E980C8736A67A1A15C41A61B0F99BF0D /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; E9A08106247C981C9CB70A47A55548FC /* Flipper-DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Flipper-DoubleConversion-dummy.m"; sourceTree = ""; }; + E9CD393B98F3A4EF6DD9042AB30187D8 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; E9F70C81914D7BC850E6ED63B0B23709 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; + E9FAF826DC54D2EA58997BF0FD376821 /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; E9FC9295BF6894CA675511B28B16BB62 /* GDTCORReachability_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability_Private.h; sourceTree = ""; }; - EA02EC2BFDF7958CBC02B8993CBB85D4 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; - EA19326E85E449FBF80D9050EE2053EB /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; - EA44ACEDEE1F1FF7B1994EF60272F3CA /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; + E9FFF1CA7142E826A297E690DB0A6A55 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; EA487FB8FB99E1AACE8BD924399C4214 /* Random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Random.h; path = folly/Random.h; sourceTree = ""; }; - EA9D90BC42F1BB4D0B77A103B9C3E35B /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; - EAA20CCB46DCC333665BD15C89A69BB2 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; + EA5A439F4076CE9EF35C6E8028D1DA2A /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; + EA7E8D48F7DDFA1913B46F6F9EC23D43 /* RNFirebaseRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseRemoteConfig.m; sourceTree = ""; }; + EAACA436CF9DDA9300A82EFFF2F51DB4 /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; EAB75F734DB509881BF344E366E90952 /* RValueReferenceWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RValueReferenceWrapper.h; path = folly/lang/RValueReferenceWrapper.h; sourceTree = ""; }; + EAB9E1841AAF9AC77E59F6FFBEA1177C /* BitUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BitUtils.h; path = yoga/BitUtils.h; sourceTree = ""; }; EAD7AD982554DA58DCD160C2D2D9D1E5 /* libevent_core.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libevent_core.a; path = lib/libevent_core.a; sourceTree = ""; }; - EAE2BFF0F123F1A27CF0D9AC2F84DA1A /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; - EAE32E30BFC9792E281139AEB50CBF12 /* rn-extensions-share.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.xcconfig"; sourceTree = ""; }; EAF1CB55BA567376FA0B97F48D19DEBE /* 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 = ""; }; - EB0F2E6BE8BDE409BE62FE776AAE5C15 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; + EB24BF5ED945CA8EAED2266D71BB0232 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + EB31A99910B6FCD1EB13EDCB189A82E7 /* RNFirebaseUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebaseUtil.m; path = RNFirebase/RNFirebaseUtil.m; sourceTree = ""; }; + EB34A51173DDEA6E14DD142D7E627F39 /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = ""; }; EB564E3DAC37E01D80AAAA34088B6182 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; EB65F5A086F84B5E1FEA590AA5BC08B1 /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = src/webp/types.h; sourceTree = ""; }; EB6B8E9E54916AC4287652A8764EDCFE /* EliasFanoCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EliasFanoCoding.h; path = folly/experimental/EliasFanoCoding.h; sourceTree = ""; }; EB75D0BE9B54EC660470AC8F46C55481 /* HHWheelTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = HHWheelTimer.cpp; path = folly/io/async/HHWheelTimer.cpp; sourceTree = ""; }; EB79F4597D795053C773D200E7806FBC /* SKHiddenWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKHiddenWindow.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/utils/SKHiddenWindow.h; sourceTree = ""; }; - EB8E7291BDC9D10EED12CC97D6CD1827 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; + EB82921F2E02FC1ECFB4492D20963B69 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; EB96F6FA78DD5982BC5C32FD2B7DBB65 /* Math.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Math.h; path = folly/portability/Math.h; sourceTree = ""; }; EB9AA65A09BAC02C00A55ADCD67D1B98 /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; - EBCD948AC4674100418902BD3A89E2E3 /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; + EBC8F18223A97621CA35B62BA4B6F2C4 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; + EBD14064E01CD80FBAE87F3B405F2595 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; EBDD2425E88112600ADA145269B8A6AA /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; + EBE01B3239B0AC125CE548C9CBC6114D /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; EBF37905FE0BADE6A1B4A72A16BAD45D /* GDTCORRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORRegistrar_Private.h; sourceTree = ""; }; EC00A2FB16072B5624DA498C2104B846 /* histogram_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = histogram_enc.c; path = src/enc/histogram_enc.c; sourceTree = ""; }; EC05A6B47FC3B6DA0EF08F20EB8B30DA /* ExecutorWithPriority.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExecutorWithPriority.h; path = folly/executors/ExecutorWithPriority.h; sourceTree = ""; }; - EC1F50667604BD0C2E526395F6B6D9C5 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; + EC1A175023CE8618E61DF3CC94DBDA01 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; EC24D056B8F16DFD9CEE5881270EAABB /* dns_compat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dns_compat.h; path = src/event2/dns_compat.h; sourceTree = ""; }; - EC3D5D021E2F22216428F54B28857BF7 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; EC58DB4A0FDE2AEE215C48D99BD4E6CC /* json.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = json.h; path = folly/json.h; sourceTree = ""; }; - ECB82060F47068594888AF3BDE08E50C /* EXImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXImageLoader.h; path = EXImageLoader/EXImageLoader.h; sourceTree = ""; }; - ECD7DBDB498A909518124AA224354D4D /* EXUserNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXUserNotificationPermissionRequester.m; sourceTree = ""; }; - ECE95D51C92A8BC75C7F4108723F4AE4 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; - ECF522805480D2064AB9453B7FE101B3 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; - ED01C7BBEE2469668C100E6C64B6B39F /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; + EC6232DF4301737B27E7C7AECD9E0C44 /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = ""; }; + EC67C9806144A3DAAAA0D3C3201410D8 /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; + ECC5CC63163AE9C0F9CEE7EB00527FBE /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; + ECF4AF9E62137D242440263CAC97B57E /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + ED1247E2285479CD2809B2F50BA91771 /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; ED18491DC3AB97238509DFB603377910 /* yuv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv.c; path = src/dsp/yuv.c; sourceTree = ""; }; ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; ED2C183AE153088411F27862D87C05C9 /* AtomicNotification-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicNotification-inl.h"; path = "folly/synchronization/AtomicNotification-inl.h"; sourceTree = ""; }; - ED7807348F460F24A6796E2FCAFF067C /* RNFirebaseFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFunctions.m; sourceTree = ""; }; + ED483243F1A4C81114D244DE05E13457 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; ED85ED2327D4E496F23675F165E5EEFF /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; - ED94D1793B8A55328B5B64B884D106DD /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = ""; }; - EDA6323AE8935DC7449DD61F1AFA19DC /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; + EDB7098BC4121811D264018CE04CB6DF /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; EDB771581C668A716F2929172EA45F25 /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; EDCCF263BE056FAF6A969BC36CF5DC1D /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Public/GULSecureCoding.h; sourceTree = ""; }; - EDD08559E2215CE06A3DEF7092092158 /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = ""; }; - EDD126C6D0351882C6B39C1B0A2B3210 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; EDD16EA40620A7D3F4320345E38B0524 /* picture_psnr_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_psnr_enc.c; path = src/enc/picture_psnr_enc.c; sourceTree = ""; }; - EDD44CAE1181AC6836BA7E115466AF2C /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; + EE0B40365C5A9E83E019BDB1A385DC54 /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; EE1094E1D52DB502F9DFF547244DF3E0 /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; EE2470F180040A30D504B633183981B9 /* Combine-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Combine-inl.h"; path = "folly/gen/Combine-inl.h"; sourceTree = ""; }; EE260BD6913FE04982DD42B73126D681 /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = ""; }; EE4E5E73B879B9EC13468395FE769AE5 /* SingletonThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonThreadLocal.h; path = folly/SingletonThreadLocal.h; sourceTree = ""; }; + EE59CC08F54BCE62F1F1CCAF1DD64AAF /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; + EE6998582AD69397537481EADD7C1462 /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; EE6FFA316C5E886501F769E10E6F04C2 /* Select64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Select64.h; path = folly/experimental/Select64.h; sourceTree = ""; }; - EE76B874A21F14B25CFF737B7F22D7FD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + EE794BB16C18F3ED406FDFEAD0BE8B67 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; EE9E30CA68CB867C1C2E594FB4678686 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; + EEAC4ED40688D5724E274559ECCD2C0E /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; EEC64A0DCD2E0046255CBC400D036418 /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTImage.a"; path = "libReact-RCTImage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; EEE0808E6D7B2D5F36AB820D667123B0 /* FBString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBString.h; path = folly/FBString.h; sourceTree = ""; }; - EEEF1FEF57923E087FF4D9233211B421 /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; EF0F68A91E168C44451761944275BEF0 /* GDTCCTPrioritizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTPrioritizer.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTPrioritizer.m; sourceTree = ""; }; EF1554E3531643AC1338DA8F2FA7A6FD /* 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 = ""; }; EF18340EB9B162B1F064BA8EAFAB25B3 /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; EF1AEC39CE3A96AE1A9C6DB8A78EE20C /* YogaKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YogaKit-prefix.pch"; sourceTree = ""; }; - EF230F501A71192A035DD44408668E12 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; + EF385987057096D9CA20B53F58C2793A /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = ""; }; EF3F7FEA5474D69FE2649113E76B0399 /* IPAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPAddress.cpp; path = folly/IPAddress.cpp; sourceTree = ""; }; - EF474563AFA5D4DE1AE9D6DEAFC3ED60 /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; - EF588114EB45D0C58E840F95E882905C /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; + EF435D53936D260C865C216841DF0D52 /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; EF5D4FE795206498890300707EF6CE4B /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = ""; }; + EF7301889EE1F37785C78A9971C00ED4 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; + EF823F172E902D70ED144ED081652D6B /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; EF9EA4FE7261AD88C6508FF0BA7DC190 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; EFA19E9C97FE4A0DED634EE1FC44548F /* ScheduledSingleSubscription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledSingleSubscription.h; path = rsocket/internal/ScheduledSingleSubscription.h; sourceTree = ""; }; EFA7606795FDB5888AFEE892A79A018F /* PromisesObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesObjC-dummy.m"; sourceTree = ""; }; EFA9E989106978D4E80BC8EE286D6304 /* FlipperConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperConnection.h; path = iOS/FlipperKit/FlipperConnection.h; sourceTree = ""; }; - EFC0079859E42358B491F854702DB88B /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = ""; }; - EFE0653D22BE12EBA90C1FC022D00913 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; + EFBEAA96B5822FEA611A8805634AFA2E /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; + EFE19630C364FB0847B192FDB12D4585 /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; EFE70113AB1891B8700EF3061EA21E74 /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = ""; }; - EFE9C7F9E630710AE14DC0088B128EB6 /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; F02F6E994B9537FC420EA54EDEC36571 /* SafeAssert.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SafeAssert.cpp; path = folly/lang/SafeAssert.cpp; sourceTree = ""; }; F03305D95B13901C45D0E5D488973FD6 /* ChannelRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ChannelRequester.cpp; path = rsocket/statemachine/ChannelRequester.cpp; sourceTree = ""; }; - F04DF803FCB058655E2F5A9DF0317A24 /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; - F04F5797167F566DEC173C68ED322390 /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = ""; }; + F03D71A97A573DBB970AA100A7DDFA0B /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; F0574453A93A0711AB29EE7CDFFB0BEE /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; F072BFD907A6FCC7834CFE7FCFC1883F /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; F08851DA08DD037434F74B51751E3EA1 /* alphai_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alphai_dec.h; path = src/dec/alphai_dec.h; sourceTree = ""; }; - F08AB5F4C1F34510E8E82AA7FD7A56AA /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; + F098421D9F3F53D0590E880A70989A68 /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; F0A037A46EF17388BD951F5073AAA0CF /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; F0A85D7A09133E03844A2CF18195CB8D /* SingletonRelaxedCounter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonRelaxedCounter.h; path = folly/experimental/SingletonRelaxedCounter.h; sourceTree = ""; }; + F0AE7A40A3F99BFCDAC8313C2E66A66A /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; F0CAD417C95E21148CD78EF8D0DD96BC /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; - F0D5EB0C0AF1B46416A6E4E7E3D33DA5 /* RCTDataRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDataRequestHandler.mm; sourceTree = ""; }; F0DCAC264BA4ED2D4100C356EA1ACB22 /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = ""; }; - F0E0C101451EA03BB79D6AAFC9A07CBB /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; - F0EA7EFFD6F92FB7ECA84ED25FFA4DDA /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; - F0F8ECDEFFE4E135FB39B000FF214874 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; + F0E264BE547EC61F5D8823E96733114C /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; + F0F0D78F6A791AE9AF2F87D811C570D6 /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = ""; }; + F0F9EF97E346B71CB7B7758D32084716 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTStatusBarManager.h; path = React/CoreModules/RCTStatusBarManager.h; sourceTree = ""; }; + F0FFD207A76094B2057D8F3DA4C763FC /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; + F109541A37535E3245C452BF5292AF6E /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = ""; }; F10A46E052312AA2D141721324EBC6B3 /* Fcntl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Fcntl.cpp; path = folly/portability/Fcntl.cpp; sourceTree = ""; }; F10B6E9FB3CCF467E6832F03D1449E3B /* Foreach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Foreach.h; path = folly/container/Foreach.h; sourceTree = ""; }; - F10EED5C802D21F194A7C2B7067A4348 /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; - F12B3E9A08BDB290145E3B2BD5B66667 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; F147D77D758F4964688AFF951D9018D2 /* dec_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_msa.c; path = src/dsp/dec_msa.c; sourceTree = ""; }; - F15223809380E9E04498D8B990A790A9 /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; F1695BC522458CDC1A43977CFCEF32C6 /* CodingDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CodingDetail.h; path = folly/experimental/CodingDetail.h; sourceTree = ""; }; F1838048F02BA54E58AFEEEB54D23364 /* EventBaseBackendBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EventBaseBackendBase.h; path = folly/io/async/EventBaseBackendBase.h; sourceTree = ""; }; + F19D2DC6B50D3626B771B0A36634D8DF /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; F1B5747101B4A24255235F06AD9F043F /* rc2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rc2.h; path = ios/include/openssl/rc2.h; sourceTree = ""; }; F1FED56A0BD356904BFD90C41C60BBA3 /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = ""; }; - F22234F81976884632464C9774982352 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; - F235122697705D62E08B57C7B9483E66 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; - F24DF451B924756AB9891D0AE05E825D /* RNNotificationCenterMulticast.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterMulticast.h; path = RNNotifications/RNNotificationCenterMulticast.h; sourceTree = ""; }; - F264626D6307524A77063BDB881ED581 /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; - F2A2A89B3C14D61E41B4004651846E25 /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; - F2A3944BFF7C3DD1AA2993E0A8F21D48 /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; - F2B2FB1E278B24DF0352FFF93299CD9B /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; - F2BCB20CE87AD5A692F09AA4B712F2DC /* react-native-cameraroll.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-cameraroll.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F2C2DFAAE79C00DD3A4A99DCB8ECA3B7 /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; + F2038D105A456660E49DCF35A1ADC3D8 /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; + F29737B13216CC9485CADAE76E3434F5 /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; + F2A62AFA72CEBD136ABD03D41C420A49 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; + F2B0D41B7054DF4FE418A0DF86C8D74F /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; + F2B1BCD61D2B012F29E20E1A38AEA3B7 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; + F2C77F127954BFAB999C2BD86DC97890 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; F2CA620EBE3855DA4C134916DEF9A7B9 /* GDTCOREvent+NetworkConnectionInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GDTCOREvent+NetworkConnectionInfo.h"; path = "GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCOREvent+NetworkConnectionInfo.h"; sourceTree = ""; }; F2CBE8588AEC619EF1058D5143DDDEBE /* Pods-RocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-resources.sh"; sourceTree = ""; }; - F2CD6713AD3426DD32DF3BCAA79C2CFA /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; F2CE43D327AA3E39E0442DC0A05A471C /* StreamThroughputMemory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamThroughputMemory.cpp; path = rsocket/benchmarks/StreamThroughputMemory.cpp; sourceTree = ""; }; F2D12A063B372699162E406DDB4F6ED8 /* Unistd.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unistd.cpp; path = folly/portability/Unistd.cpp; sourceTree = ""; }; + F2D9D0685FC4C50D2C918DB05892460D /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = ""; }; F2E0B7FA697F1E29B5912DDC969BCA91 /* FrameFlags.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameFlags.cpp; path = rsocket/framing/FrameFlags.cpp; sourceTree = ""; }; F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsiexecutor.a"; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F2F118877102B5F49DE30F73F4133164 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; F2F7EBCA68F9A1A9EE80E15EA3AE785B /* camellia.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = camellia.h; path = ios/include/openssl/camellia.h; sourceTree = ""; }; + F30F51FF6DE53B9A4689AB030BAEFBE3 /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = ""; }; F331749C73AFBDC65921F6C1FA1B18C0 /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; F343E8E6DDBCE646DDC08C75FF9C4A8B /* AtomicIntrusiveLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicIntrusiveLinkedList.h; path = folly/AtomicIntrusiveLinkedList.h; sourceTree = ""; }; F3562AD6460EB0A578BF2F0ED259FDC6 /* http.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = http.h; path = src/event2/http.h; sourceTree = ""; }; - F36308EEFC7D2B93E991A98340CDC649 /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; F36BAC743B334156669AB5F54F5D2B88 /* cost_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cost_enc.h; path = src/enc/cost_enc.h; sourceTree = ""; }; + F370366D214C24AEC8016C7F3376858F /* ReactNativeKeyboardTrackingView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeKeyboardTrackingView.xcconfig; sourceTree = ""; }; + F37A78F5CB57D71EA098A72686187367 /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; + F3828857C44F267E0CE7E41BDDCCE8B3 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; + F38418884820E6FC828755774B24358F /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; F38814CB2CC48101D8965CF484BDB1C6 /* UIView+SKInvalidation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+SKInvalidation.h"; path = "iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/UIView+SKInvalidation.h"; sourceTree = ""; }; F3C2CE01C00846AFEA01081D39470057 /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; - F3C3E84FE030DC137DCA3DE564F34749 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; - F47C6A80B111FB05337FAEADB7A4358B /* ReactNativeKeyboardInput.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeKeyboardInput.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F3C325EBFB4B2EA1E1153643601F409D /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; + F3D0A7E5A03304AB54873FD1FFD41B98 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; + F3E85B5EBB79416CEC3F2E3E940D421A /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; + F3EBF7D167ECB7E6EBFB913E7674A261 /* EXLocalAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocalAuthentication.m; path = EXLocalAuthentication/EXLocalAuthentication.m; sourceTree = ""; }; + F40002D41A5200DC2460CD8B27DEFB04 /* 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; }; + F43C7D5C11048F34C6597BD2D94D21A7 /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; + F4437D13FB7E34182EDBABF8928A85FA /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; F486AF3EF93E58CBFFF2F7DE1D4870F4 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; - F499C1B29AA068DB65988968E24DAE59 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; - F4AD38E0B6EC319AA34AEEDBD78E6F51 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; - F4C8D38F7CD6C7A1F5D3C85CE2F0D181 /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = ""; }; + F4AFF3A212C1AB98DEE5372847C81B3A /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; + F4B0666AC296292B90F6ECD283BDE0CD /* RCTLinkingManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLinkingManager.mm; sourceTree = ""; }; F506EB52B1FEE22D69A75A5E5B317979 /* ThreadWheelTimekeeperHighRes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadWheelTimekeeperHighRes.h; path = folly/experimental/ThreadWheelTimekeeperHighRes.h; sourceTree = ""; }; F509EF5B3CBCECA92BD7B721513561E0 /* x509_vfy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = x509_vfy.h; path = ios/include/openssl/x509_vfy.h; sourceTree = ""; }; F50EDCAB794DF60CA055C1158F9F2FD0 /* UniqueInstance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UniqueInstance.h; path = folly/detail/UniqueInstance.h; sourceTree = ""; }; - F526B81DD346CBF3318256EC6D0D00F0 /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; - F53BCCEADEADB82BF87B66397B482947 /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = ""; }; F53C113A3ACB2993EE41CEFB1F9BF31C /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; F53E266ABBA0580FDCE7E1B40F1D99F3 /* Hazptr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Hazptr.h; path = folly/synchronization/Hazptr.h; sourceTree = ""; }; - F547C382874BFEFDAF914E0B2965FB61 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; - F557C5AEE9C0BAD4A29F3B44DF064AE0 /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = ""; }; F5614EA1B4E668ADB31D0C34B9BE29A9 /* SKViewControllerDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKViewControllerDescriptor.h; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKViewControllerDescriptor.h; sourceTree = ""; }; - F56F453B57D2D90F9DF91753E5A9C8AD /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; + F567FF72B4CD720A784248848C6D32F7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + F58C31634DED40B665D872550F49F254 /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; F5A50D7A065476A0C4747B680D7254E6 /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; - F5B78C6A4B84127419E4C2CB6762402D /* EXRemoteNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXRemoteNotificationPermissionRequester.h; sourceTree = ""; }; - F5BC8B2FD5EB70416804537EE96B3C1A /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; - F5BE3635EEFB4A7DDF77DAF374D06EF6 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; - F5C25C555092FBD964CC1EE884307AF4 /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F5E0D9130277A6F3085653F6AA2A4DDD /* Singleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = folly/detail/Singleton.h; sourceTree = ""; }; - F5E4192AE7921B806BBB7C8B4A0FCB3C /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; F5E59825E1567763251F6BA3C07E114F /* Chrono.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Chrono.h; path = folly/Chrono.h; sourceTree = ""; }; + F60065F7B272B34B1FA4EFCBA2C2B591 /* RCTUtilsUIOverride.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtilsUIOverride.m; sourceTree = ""; }; + F60F336DC55778EA0711B81C90113C75 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; F61DA646F70603FFB9B2E7890FC424F2 /* FBVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBVector.h; path = folly/FBVector.h; sourceTree = ""; }; - F61E79DC7918C604DB071008644B48B7 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; + F63D8A44AE3171808A0B84AAE84799C4 /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = ""; }; + F63E5457439C6AE5E37CF6C2EC8180E5 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; F647E423185A624785F5D46422A3DB07 /* cmac.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cmac.h; path = ios/include/openssl/cmac.h; sourceTree = ""; }; - F66E026AD4035C4B969CBBC952928F48 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; F673F7A4451F2EB7B7CAC0BDBB6536EF /* FrameSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FrameSerializer.h; path = rsocket/framing/FrameSerializer.h; sourceTree = ""; }; F67FF5C363C76D77ED33D6D936A9626E /* GDTCORTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransformer.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransformer.m; sourceTree = ""; }; - F688B0918BF24C5CD7FA3EAC9AEDA883 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; + F6A9FCEB121028CCA01C3DAF503EA454 /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = ""; }; + F6C8B2787D703916336434677904960E /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; F6CB2A66C13E457EED5F54B9238D2892 /* OpenSSLVersionFinder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OpenSSLVersionFinder.h; path = folly/ssl/OpenSSLVersionFinder.h; sourceTree = ""; }; - F6D854D60016F1B78279D87669AF804D /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F6D896DF889FC496FE599DB11FA9E0D3 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; + F6D24F11DDC1032DCF9B4E391613A676 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; + F6DBF78FB912B6DC5B49B915E348554B /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = ""; }; F6F294F71453C531ACB159172A062002 /* NamedThreadFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NamedThreadFactory.h; path = folly/executors/thread_factory/NamedThreadFactory.h; sourceTree = ""; }; + F6FAB81FD9028155BC5269B58962DF4F /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTBlob.a"; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; F73FA56BEADCF3C038B8E74CF684643B /* FIRInstallationsStoredItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredItem.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.m; sourceTree = ""; }; F73FF4F8F7812A822865FFFA289A82DC /* ecdh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ecdh.h; path = ios/include/openssl/ecdh.h; sourceTree = ""; }; - F774838772BFA084164BBD15EB276FCC /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; - F775CA009736DE4DD87CF5B45C553E53 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; + F766BBBD23EF3617D4DF64707FC54C28 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; + F7869DEF8CF538E075D646BC5C2707BB /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; + F788F3F64412D163EC0A7F7DABF475F0 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; F7AB54913C5AF527335DF4F9928AE3D1 /* FrameSerializer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameSerializer.cpp; path = rsocket/framing/FrameSerializer.cpp; sourceTree = ""; }; - F7AC4425EDE6BFB8E5072393B5AC89E5 /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; + F7B1E58A1FB227B2DABFD7D25000B59D /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; F7B4A3D1B52ECDFF9E7A674301370271 /* FlipperStep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperStep.h; path = xplat/Flipper/FlipperStep.h; sourceTree = ""; }; F7E2CA6F686A4D5C2B87CEF43C99493C /* FlipperKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlipperKit-prefix.pch"; sourceTree = ""; }; + F7E47EE93C4111153FBED63AE964B77B /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = ""; }; + F7FC50AB3769D8B489703AF8B57EE592 /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; F815DF55B9BB388F5C7D1D9B638219C3 /* ThreadCachedInt.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedInt.h; path = folly/ThreadCachedInt.h; sourceTree = ""; }; F81B0B9AF74EA1B9823E923967ECB355 /* cost_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips_dsp_r2.c; path = src/dsp/cost_mips_dsp_r2.c; sourceTree = ""; }; - F8248CD3ADC3F5F6091D2CFEEDCBC10E /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; + F81E77CFAD95329406A7386A1BB38797 /* EXImageLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXImageLoader-prefix.pch"; sourceTree = ""; }; F830D7A467353BE7FFC483C48DF75AC9 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = FirebaseCore/Sources/FIRDependency.m; sourceTree = ""; }; F83814029243EE4354E9FFC684BFF9D6 /* QuotientMultiSet-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "QuotientMultiSet-inl.h"; path = "folly/experimental/QuotientMultiSet-inl.h"; sourceTree = ""; }; - F851C04DBFE8CA57312A9FF7D4AD29B8 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; + F84239460D5A80372292B67350E2BC8B /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; F85CF2A508228A89D77307670C09B0C1 /* ScheduledExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ScheduledExecutor.h; path = folly/executors/ScheduledExecutor.h; sourceTree = ""; }; F885840BD15DE323B145CA94BB4F6B67 /* Executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Executor.h; path = folly/Executor.h; sourceTree = ""; }; F885B7B43A41983387381CB7913523CD /* SysMembarrier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMembarrier.h; path = folly/portability/SysMembarrier.h; sourceTree = ""; }; - F88FEF53D9ACBC842772E7378CDD10A7 /* RCTFileRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileRequestHandler.mm; sourceTree = ""; }; + F88FC068C80A53582D786FB470E5582C /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; F89AC34C60188365F35B3219B72C38C0 /* SetupResumeAcceptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SetupResumeAcceptor.h; path = rsocket/internal/SetupResumeAcceptor.h; sourceTree = ""; }; - F8D317B01532D8171FD0933F1D90EDB1 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; F8ED60728838621F539415E4077A7154 /* ColdClass.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ColdClass.cpp; path = folly/lang/ColdClass.cpp; sourceTree = ""; }; F8F7CBD2B1FAC92FBC8A7461B2E5DEDE /* InlineExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineExecutor.h; path = folly/executors/InlineExecutor.h; sourceTree = ""; }; F928DEF1F4C03431EB6FC20885D5B7AB /* SSLErrors.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLErrors.cpp; path = folly/io/async/ssl/SSLErrors.cpp; sourceTree = ""; }; - F93518BC798B6148F9C4B8FC8C045423 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; + F930B0140651E1470E092D5C593DB665 /* BugsnagReactNative.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.xcconfig; sourceTree = ""; }; + F9315A5C855D9B9CD1B0B17F99FF0A24 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; + F93691C416830228EA4E922220E4DFDA /* RCTFileReaderModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFileReaderModule.mm; sourceTree = ""; }; F941A045D7BB55176B9C871E9566E1BE /* FIRDiagnosticsData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDiagnosticsData.m; path = FirebaseCore/Sources/FIRDiagnosticsData.m; sourceTree = ""; }; F94BD1D204DCF22BCEDBF671F3E4491B /* SharedPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedPromise.h; path = folly/futures/SharedPromise.h; sourceTree = ""; }; - F9522507026DB193E512A8E014D681B2 /* 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; }; F9563CDBB00CE3D8E720F62CB0A9D96C /* StringKeyedUnorderedMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedUnorderedMap.h; path = folly/experimental/StringKeyedUnorderedMap.h; sourceTree = ""; }; F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRCTTypeSafety.a; path = libRCTTypeSafety.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F982B0E52AB2E4E1B81DDAB4B8F60CC1 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; - F9AB58141DE09EF4AC8B4F0FDA2A9CD1 /* RNFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebase.m; path = RNFirebase/RNFirebase.m; sourceTree = ""; }; - F9B01DF099050119316618AFBCCBFD9D /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; + F9A777C98941200FD4D7871716120D34 /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; + F9A8B20448B23252F18508B27F43AA01 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; F9C70C0DE50B1BDE4F31EE82E99A4926 /* RSocketServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketServer.h; path = rsocket/RSocketServer.h; sourceTree = ""; }; F9C78C720B773766CDC9BF8BBF340064 /* MemoryIdler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MemoryIdler.h; path = folly/detail/MemoryIdler.h; sourceTree = ""; }; + F9CF41B54E333B76EC739A081A224523 /* RNFirebaseEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseEvents.h; path = RNFirebase/RNFirebaseEvents.h; sourceTree = ""; }; + F9D43CC243B4B32C89C1EDDB43553770 /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; + F9D723C11951EE73400111FF975738CF /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; F9E397BE7F402417B1ED72709AB86BF0 /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; FA0D07D7B695DD29C27AACE7ED6B5662 /* CLSReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSReport.h; path = iOS/Crashlytics.framework/Headers/CLSReport.h; sourceTree = ""; }; - FA10995DDDECEA08F51CFF426D956258 /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; - FA2060F52377558351C43D46F0379845 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; + FA12563AB2B66946EC850692C5564453 /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; FA2EB69DCBE1E28DC0760CF7E6D5841F /* WarmResumeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WarmResumeManager.h; path = rsocket/internal/WarmResumeManager.h; sourceTree = ""; }; - FA45D31E77F2ADC94723D36D93225EB8 /* 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; }; + FA4ED891F92EF9DE3D0361FE7AB9E090 /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; FA7620C33D98CA444273207FD555ABAF /* FLEXNetworkTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkTransaction.h; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkTransaction.h; sourceTree = ""; }; - FA94BFB94A42E252349264828408B209 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; - FA9DC7CE04AE3EFC8603996E0BB0F3EF /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; + FA94C772C348D2F5AFACA48BE28279B1 /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; + FA994E068490DFA29215F156920F1C2D /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = ""; }; FAA974287358097962979FFDDC7817C5 /* StaticSingletonManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticSingletonManager.h; path = folly/detail/StaticSingletonManager.h; sourceTree = ""; }; FAAAA8269B5EEB70685F47DA901D4B89 /* FlipperKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlipperKit.xcconfig; sourceTree = ""; }; FAB2EBFB395939FCECF63C7A3778B9FE /* conf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = conf.h; path = ios/include/openssl/conf.h; sourceTree = ""; }; FACAB515A9E0BC51A4C6B8B8159EE2F5 /* Flowable_FromObservable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Flowable_FromObservable.h; path = yarpl/flowable/Flowable_FromObservable.h; sourceTree = ""; }; - FADDCB66AE8BC9E7C8DFB025BAD562C6 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; + FACD48FEBD3DEAFCAA3F98F0E4C0CC1F /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; + FAEF5F18CE1A860CC5F59E7DA8FDC706 /* RNCSafeAreaViewMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaViewMode.m; path = ios/SafeAreaView/RNCSafeAreaViewMode.m; sourceTree = ""; }; FB1411CF080F2B693F14589EE28CCF08 /* FIRInstallationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStore.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.h; sourceTree = ""; }; - FB1CA6C03E7D44A0EACA8FC328819F99 /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; + FB2588E4AD9B0F14A4204399375CBA98 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; FB2F287510518D3B23AA2C01AEB3AC96 /* vp8l_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_dec.c; path = src/dec/vp8l_dec.c; sourceTree = ""; }; - FB45350C9346A722E8E74112BC52B443 /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; - FB4644FF07D75BA088A2DC60B5CF79B5 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; - FB5A0CD79F1E53BE13EB6F4C591D9B13 /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; + FB511DCBCB8C1E39F08170011B1EC53C /* RNFirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabase.h; sourceTree = ""; }; + FB6041E6D3567F30A0394A7CCD1779B1 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; FB73DF7B7BA890A12D30D59FA1F2774B /* AtomicReadMostlyMainPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicReadMostlyMainPtr.h; path = folly/experimental/AtomicReadMostlyMainPtr.h; sourceTree = ""; }; - FB778FAD940294AABA45B65ABA0C8374 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; FB8D9FC9225755C2093E81F8EC58B9A3 /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = xplat/Flipper/FlipperResponder.h; sourceTree = ""; }; FB99886C1D76074BC6C12C7256092A39 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; + FBB08FBD72D5720D04F8E9214A1CD560 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; + FBB97382066662CAFEB8D86DDEF39AC5 /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = ""; }; FBBC787FA1E7F34559B2DCFDB9AB12C5 /* RSocketStats.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketStats.h; path = rsocket/RSocketStats.h; sourceTree = ""; }; + FBC7A978885BF28F2759DC9AB4FE2308 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + FBCD1127E89D870CA14518D0A1517292 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRedBox.h; path = React/CoreModules/RCTRedBox.h; sourceTree = ""; }; FBCE2FDF0CE0B180C2AF59536B663A8D /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.h"; sourceTree = ""; }; - FBE8F1E2A57485398832FABA2C87BED8 /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; - FC0110D216D4372BFFF4A82540AE74AD /* EXRemoteNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXRemoteNotificationPermissionRequester.m; sourceTree = ""; }; FC08E55E970220E686A21BCC4171AEB3 /* RSocketConnectionEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocketConnectionEvents.h; path = rsocket/RSocketConnectionEvents.h; sourceTree = ""; }; - FC094B5674B29F3C7EE5840E3F4FCCAE /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; - FC1169799DC69BE14CE10CA9F70E27B4 /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; + FC11F78267A3776FD075A5C5E6FEBF1D /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; FC18FF65788DF7D547828224925E7274 /* PackedSyncPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PackedSyncPtr.h; path = folly/PackedSyncPtr.h; sourceTree = ""; }; - FC1EDE67008215F51101F35C2C193913 /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; FC235C09984F2578184426088A6F00A2 /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = FirebaseCore/Sources/FIROptions.m; sourceTree = ""; }; - FC2DC5C86F5CECF620384916C4995D9B /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; - FC429F00E2DBFC7193540F246B0E6365 /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; + FC2BD8D5D87362CE3750BEC01FA67F01 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; FC49E3677696B83511C886B9C066D9B2 /* Fabric.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Fabric.xcconfig; sourceTree = ""; }; FC4C3DD5B9B22406E01CE136DE483040 /* libssl.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libssl.a; path = ios/lib/libssl.a; sourceTree = ""; }; - FC62EE3D482E365E56024FE8B612D7CA /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = React/CoreModules/RCTWebSocketExecutor.h; sourceTree = ""; }; - FC76F239BF3B62D1ACCD0007933BDF72 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; + FC63028A8DDA27DFBC8BBBFE1036F6D1 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; FC79CB545AD11717DEFBA8A8762449C9 /* RSocketResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RSocketResponder.cpp; path = rsocket/RSocketResponder.cpp; sourceTree = ""; }; + FC817A03C9EEFDC24E3618A52250275D /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; FC8F6E233D037583958956D70CBE4920 /* SKApplicationDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKApplicationDescriptor.m; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKApplicationDescriptor.m; sourceTree = ""; }; FC9D4CCE27BAFB6DDCB41CBAB00A7C0D /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; FCAC7A2D66B155F138335B0C2F002778 /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = ""; }; FCADA8566E47EFBBC1E5CC1591D6B28E /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = FirebaseCore/Sources/Private/FIRComponentContainerInternal.h; sourceTree = ""; }; FCC0AA0FB200B90A95C98B02F8909AC5 /* DistributedMutexSpecializations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DistributedMutexSpecializations.h; path = folly/synchronization/DistributedMutexSpecializations.h; sourceTree = ""; }; + FCC696F61846039C31A49E94D0894997 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + FCCF9C52E1B50FD667CB699359B97528 /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; FCCFDB9DE0425A466516DDCBE25CD777 /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Private/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; - FCD5362D68B85E6601A2FED4F6E7500B /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; - FCDC9F5D6C960EF2306EBEDC5BE43AB9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImageWebPCoder.a; path = libSDWebImageWebPCoder.a; sourceTree = BUILT_PRODUCTS_DIR; }; + FD2FF00E8E1D5BA74687F5449EF45F68 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; + FD35075FC3768FFEAAA32C2B085634A2 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; FD350C2D53E9E7F3DD5CB8D2B1ECB3D9 /* SKButtonDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKButtonDescriptor.mm; path = iOS/Plugins/FlipperKitLayoutPlugin/FlipperKitLayoutPlugin/descriptors/SKButtonDescriptor.mm; sourceTree = ""; }; - FD3FAF17769AA4C5BD3A3A08446A8239 /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; FD4C88170E5E9ABBAA25E326FD4556DE /* IOBuf.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IOBuf.cpp; path = folly/io/IOBuf.cpp; sourceTree = ""; }; FD5962EE39CB504F050E47855D7409C9 /* GDTCORLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORLifecycle.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORLifecycle.m; sourceTree = ""; }; FD7E959C518BB93B5548494C34BD2DBD /* SharedPromise-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SharedPromise-inl.h"; path = "folly/futures/SharedPromise-inl.h"; sourceTree = ""; }; - FD80D3557B7F95C1F231BFF7DD19C97F /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; + FD835E3716F81D566E4681ED75AB1C75 /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; FD89E877061D905E9B19FC9BEEAC05A3 /* Function.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Function.h; path = folly/Function.h; sourceTree = ""; }; - FDD64D0F88E2C0BE02AC4EE251307A2A /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = ""; }; + FDAC10A8D4E08670787E03272AB43528 /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; + FDB438421B7D53597F45E5484ECA47E0 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; + FDCAC4E478AE580F24AE8E5D90B80E0F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + FDDFD02E5EBF885F87AB856DB146E86C /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; FDE540B0639E42FA08FF08C3E0FD9BF5 /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; + FDE5B9F0DB89F28D60E8BB63C7725CCC /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; FDF8610EC5A6F59C3F89C83050AE6580 /* GDTCORTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransport.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransport.m; sourceTree = ""; }; + FDFD916E483F1F3CC13AB4DB64E9DD48 /* 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; }; FDFEE578BDACDF8A7DAAA1CD21387886 /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; FE392A777F740FCC1F1EFC731F72ED82 /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; - FE3950213BA5881CF4D302913A641927 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; + FE41DF668E120C3E28D229F5950CE2B1 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; FE46758639181FC6497B58527D37A4A1 /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; FE49077A861D5E21DF7F544798F4C122 /* Synchronized.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Synchronized.h; path = folly/Synchronized.h; sourceTree = ""; }; FE52830DF5CB21EA5B1AE66B44B95413 /* Codel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Codel.h; path = folly/executors/Codel.h; sourceTree = ""; }; - FE57B27FCD352BE6A537713A07C9CE57 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; + FE58ED4E5902F18A8C8827EB5F4252F2 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; FE5AEDB8583C91650C6B9734B0BF962D /* idea.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = idea.h; path = ios/include/openssl/idea.h; sourceTree = ""; }; + FE5E10696BC62AFF4EAF70780A1DB264 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; + FE6B350E840F2144EAD90E076BD88311 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTAnimation.a"; path = "libReact-RCTAnimation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - FEC14D37AD94DAECA2EAF070894A6381 /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; + FE9D5BD20DFC81A7B2BFF0817A601A82 /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + FEB5BB714408BE7E3E55256B8006E814 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; + FEC84F3D1098EC37193C3028759F50A5 /* 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; }; + FECA065D211ECD58DC4A33E8E4F13BA2 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; FECA93BF616383B99E7EA634F594FB5F /* AtomicUtil-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicUtil-inl.h"; path = "folly/synchronization/AtomicUtil-inl.h"; sourceTree = ""; }; - FEDCC95D19CBA4FE7AA7D755C04571E0 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; - FEE12A9E98B8D825BBCE044BB9BDD0FD /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; - FF15DF6D8710A1D72E233A78C4A9D239 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; - FF265AB52B23A7E06EB3545394C853D7 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; - FF346B1F539C0033DC89A3628BB4EB56 /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; + FEDC3047D4C3E65989E6A15D1D0362BA /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; + FEF0E52FB34EE2257A8878FD1459183C /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; + FF0120FDCDDCD45476ACF42E53B0E683 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; + FF2614EB0FA07010280C4B240EAD5A9C /* RCTAlertManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTAlertManager.mm; sourceTree = ""; }; FF36AFBA13BEF7187C587D6256176EDF /* SysMman.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysMman.h; path = folly/portability/SysMman.h; sourceTree = ""; }; FF3F5880EA2798E9F1380057A2F66360 /* UIColor+SDHexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+SDHexString.m"; path = "SDWebImage/Private/UIColor+SDHexString.m"; sourceTree = ""; }; FF586CD523D95A658AADA902B005000D /* FlipperState.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FlipperState.cpp; path = xplat/Flipper/FlipperState.cpp; sourceTree = ""; }; + FF5C4F23D4B873252D3A6AE0DF8097A2 /* RNFirebaseDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabase.m; sourceTree = ""; }; FF67601B849AD8043039ACE8C73DF64E /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; - FF6933A8827E414F03FE665F8F86110A /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = ""; }; + FF732703275D3A56A4C17FF1BA210E11 /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; + FF8557D82213FDE6BE722E56176F5686 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; FF9E7AD61C9216985F645645C9725004 /* FrameHeader.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FrameHeader.cpp; path = rsocket/framing/FrameHeader.cpp; sourceTree = ""; }; - FFA4CFB3B95B6F4C70B41392CFAAC74F /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = ""; }; FFD0365953B805435F038F1DA8230E14 /* FLEXNetworkObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXNetworkObserver.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkObserver.mm; sourceTree = ""; }; + FFDB8495C0C08F1FAF4B8DE29E4F9273 /* RNFirebaseAdMob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMob.h; sourceTree = ""; }; FFDC7746794AB17CFB7150820479DF40 /* libFlipper-RSocket.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-RSocket.a"; path = "libFlipper-RSocket.a"; sourceTree = BUILT_PRODUCTS_DIR; }; FFE0B63AAB7455814F4D4F51B9B4B0F0 /* PropagateConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PropagateConst.h; path = folly/lang/PropagateConst.h; sourceTree = ""; }; + FFEB65DE690608D57881E1435448C0E5 /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; FFED175A51D1C78378F5B09D9BBE61E6 /* AtomicHashUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashUtils.h; path = folly/detail/AtomicHashUtils.h; sourceTree = ""; }; + FFFD65F89899E7581B14E6D5591A908D /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; FFFDCD49160C16CA5FD6315148B4F07B /* EventBaseThread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventBaseThread.cpp; path = folly/io/async/EventBaseThread.cpp; sourceTree = ""; }; /* End PBXFileReference section */ @@ -9727,6 +9694,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 7F28D50592389035FEFF5B4498B656B1 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 812E9D3F8CDE9AD14037097D2BC8F998 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -9832,13 +9806,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B025459747091C59F3470B1E7E53F397 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; B0F177AEC03683D2E4C1FCABDB82DD34 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -9888,13 +9855,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C3B6ABE03A03E391ACC53041A408218D /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; C3DD719B706DB3ED8A0BDD4892010561 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -9944,6 +9904,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + CFE367DB77AFB4D3328A56FF6C08D060 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; D137692D0A0C134DFA41FD9D70A80E91 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -10035,13 +10002,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F0BC5C95B86DEDD201856C422C8E4B0A /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; F0C65E16DD4D254C916F18D36A1ED0EF /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -10110,164 +10070,234 @@ path = "../Target Support Files/Fabric"; sourceTree = ""; }; - 00F964082C84394EFE9453B8C3AD69E0 /* Source */ = { + 00D2A3A69C1D7272B068403DA847B6B5 /* Pod */ = { isa = PBXGroup; children = ( - BE42C93098C250F9D4E032275E565041 /* KSCrash */, + 7B86AEBC9DF8D8E77B27AD6372783154 /* React-RCTLinking.podspec */, ); - name = Source; - path = Source; + name = Pod; sourceTree = ""; }; - 01B83819926FC18242C3BCF6E947D9C4 /* Support Files */ = { + 00FE9C99E81E7B0D90B443C553E2E4B8 /* Support Files */ = { isa = PBXGroup; children = ( - 6DCAD9F2C019CFD4B9270A1B91B9D2C0 /* react-native-safe-area-context.xcconfig */, - D9CC335C8C592AEFC9057636EA09D300 /* react-native-safe-area-context-dummy.m */, - 20110542FD849A0ED0F1A1345A97FFAD /* react-native-safe-area-context-prefix.pch */, + 97B89602ED6ABDDE6450722CCD0129D7 /* RNDeviceInfo.xcconfig */, + 3E849D8C7E504EE5598FEF4AFAEB654D /* RNDeviceInfo-dummy.m */, + 199FE22A0E473788A6D4774C1BF21AE7 /* RNDeviceInfo-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-safe-area-context"; + path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; sourceTree = ""; }; - 0283F8E5059CB7628E599316EBD9C880 /* Pod */ = { + 018754076F2EAFC9BFE0EED518CC75A8 /* React-RCTBlob */ = { isa = PBXGroup; children = ( - 7D3525B6C8556840842B28C45468D502 /* LICENSE */, - D7BAE26AC52601842834BDCE65545B5E /* react-native-webview.podspec */, - 753E0905C98819E42A1CF1A46A0170AF /* README.md */, + 44A42F6DC91441E6C50439E4FCD80855 /* RCTBlobCollector.mm */, + 67C6BA4C82A212B40F1071C6557671AE /* RCTBlobManager.mm */, + D1CC9ACC381EE5231F95FC6BBD4A5E5B /* RCTBlobPlugins.mm */, + F93691C416830228EA4E922220E4DFDA /* RCTFileReaderModule.mm */, + C5D2C2E71951044822B11A2A3C014411 /* Pod */, + 311B67522A8CFA12E37565791EC8F472 /* Support Files */, ); - name = Pod; + name = "React-RCTBlob"; + path = "../../node_modules/react-native/Libraries/Blob"; sourceTree = ""; }; - 02B1E09C9F76CBE9237DD3B3976E92D0 /* Support Files */ = { + 018E555A19C140BC4B43482F0B1CB258 /* React-RCTLinking */ = { isa = PBXGroup; children = ( - 708DB8109DA3CBF05AA39C5EF54F7F96 /* EXImageLoader.xcconfig */, - 7F99470B4CFB1DFF0E1519B85AFA600A /* EXImageLoader-dummy.m */, - D506AA27CADE62ECB13FCC7E2EC76BA4 /* EXImageLoader-prefix.pch */, + F4B0666AC296292B90F6ECD283BDE0CD /* RCTLinkingManager.mm */, + 0985EF0291EB48A10F62D7DD1750389E /* RCTLinkingPlugins.mm */, + 00D2A3A69C1D7272B068403DA847B6B5 /* Pod */, + 20AB1F1684CE13A433151DE308F68579 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXImageLoader"; + name = "React-RCTLinking"; + path = "../../node_modules/react-native/Libraries/LinkingIOS"; sourceTree = ""; }; - 02D77A59F48F6CF6CE6E56CC8773D443 /* fabric */ = { + 02970EAE51870E4C8410330442B68440 /* jsi */ = { isa = PBXGroup; children = ( - 97ED2B9EAB91405A7030E427358C76EE /* crashlytics */, + BC1EA21A8C048E4C30E64D18709CBE84 /* decorator.h */, + 2BAC563A129266B3DB6F6A1C895CF4B2 /* instrumentation.h */, + FEF0E52FB34EE2257A8878FD1459183C /* jsi.cpp */, + C4DE6568F95B2C3EBE3575AB08654B21 /* jsi.h */, + BD25A909971CBDABAD73C80EC1443642 /* jsi-inl.h */, + 65E2ED7A5221424D3A7683F9C881A544 /* JSIDynamic.cpp */, + 30465E769F2B34F0984617F34B20E439 /* JSIDynamic.h */, + 1DD455F9A5374D9D8D1C39C4D5F2AF41 /* jsilib.h */, + 8B3E4AAF66C22411968EFAD2546BAB15 /* jsilib-posix.cpp */, + 3807D5E58D3562F760AA950C7D9C01BB /* jsilib-windows.cpp */, + 6FC358BF92C05B330C87A384C1A36E99 /* threadsafe.h */, ); - name = fabric; - path = RNFirebase/fabric; + name = jsi; + path = jsi; sourceTree = ""; }; - 0313269D82DB594D3F30A282D3E07A5E /* EXPermissions */ = { + 034A0BB53386A3FA7715F023286488FC /* Pod */ = { isa = PBXGroup; children = ( - 019000D78E96C67B33027B1AC4CBE890 /* EXPermissions.h */, - 3D0EC160F40518C6771B030C1BB9FE75 /* EXPermissions.m */, - 4AC9046FC579AB3098D2E25E77291FDA /* EXReactNativeUserNotificationCenterProxy.h */, - F66E026AD4035C4B969CBBC952928F48 /* EXReactNativeUserNotificationCenterProxy.m */, - CEF7B960F2F07CB31CC57B6B60A56BFF /* Pod */, - 6BF30F45E596F0D8A86648362950C157 /* Requesters */, - D3F0A476A68FEE435021BFF21486BFB2 /* Support Files */, + 15D616749CD7DB2D45B8A80B56A96869 /* React-RCTSettings.podspec */, ); - name = EXPermissions; - path = "../../node_modules/expo-permissions/ios"; + name = Pod; + sourceTree = ""; + }; + 0388F9F1E890256C158463DAF211F820 /* React-cxxreact */ = { + isa = PBXGroup; + children = ( + A13FC2338F3D6F110DDB43625E805AD8 /* CxxModule.h */, + 2CDE903C3BDEDE5D08F16FC3BE3ECB21 /* CxxNativeModule.cpp */, + 2DD0D936FD3A5A59177806D1D0665B3F /* CxxNativeModule.h */, + 7F990959DFBA2E0065F0AC917787355C /* Instance.cpp */, + 91A562D2B59CAA401119AC3562DD6438 /* Instance.h */, + 9F82AE6DD88AA846CA41C23D4FF460AA /* JsArgumentHelpers.h */, + E9FFF1CA7142E826A297E690DB0A6A55 /* JsArgumentHelpers-inl.h */, + C6D59F279545F2743FE88CFCA871D1AA /* JSBigString.cpp */, + E7BAA5278A651C0127BD7239C38EBCE2 /* JSBigString.h */, + CFFDEC78DE605882E73BA709F9AC6A22 /* JSBundleType.cpp */, + 4532E14FEF0122CE6E39807825414AF4 /* JSBundleType.h */, + FA94C772C348D2F5AFACA48BE28279B1 /* JSDeltaBundleClient.cpp */, + AB6BBA309D3B07FA3242A2518C8AB751 /* JSDeltaBundleClient.h */, + E1068FC7BC9FAE86B64A4A858CE22089 /* JSExecutor.cpp */, + AE05B3A2F623970E866232B06AE5FEBB /* JSExecutor.h */, + 35EA76CFBFCA0BCEA6A9A4F9254CB5B1 /* JSIndexedRAMBundle.cpp */, + A91AED3B058CA6161AB3FDA8B9AA3C5E /* JSIndexedRAMBundle.h */, + 1475F643FA2C29EC263FCAAB5242CF40 /* JSModulesUnbundle.h */, + BF8C8B7FF6D66300305C1F59EFC6CD24 /* MessageQueueThread.h */, + 8D504EA0CF8077E1D6198D05281E8CA8 /* MethodCall.cpp */, + 7F32604F21134142C1C091B6119C30E2 /* MethodCall.h */, + 8DA51A5EC856863FC4224D5658CC1326 /* ModuleRegistry.cpp */, + C70670E7F79F3ED32EA6E056421F79D9 /* ModuleRegistry.h */, + 3C7A6954C569327CA18E71E12127352E /* NativeModule.h */, + A42AC6EEE3449E7D788374F9B28D5F2C /* NativeToJsBridge.cpp */, + 93292D6AF38BF2943EFBF8B1D6EEE038 /* NativeToJsBridge.h */, + D2D822F35E3A28D5B5E51BCEE1AFA360 /* RAMBundleRegistry.cpp */, + BAA22DDBB90EA6B0B64DCFEEA69CD39D /* RAMBundleRegistry.h */, + 64450509CB1B3C9AED96F9ED63268D00 /* ReactMarker.cpp */, + 576E53E2454A76334F048A3A84BE33BA /* ReactMarker.h */, + 542AFB0AB153C9A4E487708AA0006E9C /* RecoverableError.h */, + 77FDF60D10456AE4B6F9A44200B58FC5 /* SharedProxyCxxModule.h */, + 98DF8ED2FF840E36AA190E7AEFD3E79B /* SystraceSection.h */, + 200493F6AB8BA6FCA9DD37077EDBD9E8 /* Pod */, + BC372CC6C78C3CE6B70DD84E993EE0A9 /* Support Files */, + ); + name = "React-cxxreact"; + path = "../../node_modules/react-native/ReactCommon/cxxreact"; sourceTree = ""; }; - 0352856E1BF7B7187BD2BC8470781B6B /* Pod */ = { + 03AF7AA4E4A82CB0B1DEB517DC221FD0 /* Pod */ = { isa = PBXGroup; children = ( - D6AF50488FE8EC76893A6868564AB615 /* UMBarCodeScannerInterface.podspec */, + E3FDCFA08F36789EBF4C865A9F9B86CB /* React-jsi.podspec */, ); name = Pod; sourceTree = ""; }; - 03DBB74D426625F3B653E838CDA966AD /* React-jsiexecutor */ = { + 047B13C7989A14DDE9006C63B9F1C874 /* notifications */ = { isa = PBXGroup; children = ( - 9AF67609001A45E16F9812CB6552BC57 /* JSIExecutor.cpp */, - CAB3A635E372DA342C80E4E1538A8189 /* JSIExecutor.h */, - A8221DB088F1F97FA01608BCBB7F6805 /* JSINativeModules.cpp */, - AE9645B6A346D32DFC512DE5ACE3F419 /* JSINativeModules.h */, - 1ECC0CA3DA2B16BC0774485AD15F0603 /* Pod */, - 6C87F72243F692A4DE76085CF6D789E6 /* Support Files */, + 018401E074E8057F5A1D91B03D88A5E8 /* RNFirebaseNotifications.h */, + E0A44BB4D8CC51254A701F6932D029AC /* RNFirebaseNotifications.m */, ); - name = "React-jsiexecutor"; - path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; + name = notifications; + path = RNFirebase/notifications; sourceTree = ""; }; - 044FE8B248F2EDFDFA4B4D4B5A0530F7 /* internal */ = { + 04A033DDB902761F189A24E9CB2DCCD8 /* Pod */ = { isa = PBXGroup; children = ( - CD22B7DF933DE95063DBFA9AB621CA2E /* experiments.cpp */, - 91297C5FA5AA16DE081A805FF346F321 /* experiments.h */, - D09C4D3471AD4C2FCF718AA4409903D7 /* experiments-inl.h */, + 22F4AD55A34ADED24930616B1F875534 /* LICENSE */, + 80574AEC4649C58DF7B6EB5C28C1FFF2 /* react-native-appearance.podspec */, + 983775372B80DE84DFB21BFE08A9BAA0 /* README.md */, ); - name = internal; - path = yoga/internal; + name = Pod; sourceTree = ""; }; - 04DD37C5BF852F9C84FF47AE4D322B43 /* Pod */ = { + 058241B8D27184C6DD872B32AEBA52E2 /* Support Files */ = { isa = PBXGroup; children = ( - 18BD91E28252A0B76ED45F7725EF8C3F /* EXConstants.podspec */, + E2D909FC84C596D4FA13501456774A88 /* GoogleDataTransportCCTSupport.xcconfig */, + 8B124E865FCBD63DF12A08FEAD8E5204 /* GoogleDataTransportCCTSupport-dummy.m */, ); - name = Pod; + name = "Support Files"; + path = "../Target Support Files/GoogleDataTransportCCTSupport"; + sourceTree = ""; + }; + 05903C76D3E0A67D2752739C51ABF1B9 /* CoreModulesHeaders */ = { + isa = PBXGroup; + children = ( + CA7B42287AF4F4F34489CC51E1010918 /* CoreModulesPlugins.h */, + 23FEEB7213A35963CD60B68364E93522 /* RCTAccessibilityManager.h */, + 267E5E85FF9CB701B4B72B6906391986 /* RCTActionSheetManager.h */, + 4293D99D9984C530013AF75B1D4B741A /* RCTAlertManager.h */, + 9144E1923016492A3E1C5A3863DD6CBA /* RCTAppearance.h */, + 6019F4A967CF7F183D45D3DCB5D50BC1 /* RCTAppState.h */, + 9AB9A338105236D77A1F05D7CF2BF40F /* RCTAsyncLocalStorage.h */, + 2A00BB922183FA3404F92CE65688555A /* RCTClipboard.h */, + 12D783C1B21FB89199B4E71FAC7425C4 /* RCTDeviceInfo.h */, + 8FA66CEEF304BF487060CE44C79EEA0A /* RCTDevMenu.h */, + 43CAF30BB64826D5129049AA9370F37E /* RCTDevSettings.h */, + FC11F78267A3776FD075A5C5E6FEBF1D /* RCTExceptionsManager.h */, + 28AB3075885ECF649C0F95837736FCCD /* RCTFPSGraph.h */, + 96230DF4E3F73486B3A8F8F0CDEDCBA9 /* RCTI18nManager.h */, + 0B7E866039B0D15406931BCBD123C69B /* RCTKeyboardObserver.h */, + 1413F6F195B831F0081637D8CBF9B38F /* RCTLogBox.h */, + 32C24B079339C218064D1D3F89649FD8 /* RCTPlatform.h */, + FBCD1127E89D870CA14518D0A1517292 /* RCTRedBox.h */, + 9D36876618AF8C1D5CFD7D670B6F00E6 /* RCTSourceCode.h */, + F0F9EF97E346B71CB7B7758D32084716 /* RCTStatusBarManager.h */, + 575E29E1FC4F2879378633DC426EA027 /* RCTTiming.h */, + 26E35B845A5B19D9353458A64BCD1FDE /* RCTTVNavigationEventEmitter.h */, + B57BB2FDBAF15E25406E1AD1BF08B9D7 /* RCTWebSocketExecutor.h */, + 2B6392E34D1EDBB6F22DCAC11FA7A2CE /* RCTWebSocketModule.h */, + ); + name = CoreModulesHeaders; sourceTree = ""; }; - 052E3E35D9B314E37CC365A8B9079212 /* Support Files */ = { + 06EF9268AA7559A59F99D355933620FF /* Pod */ = { isa = PBXGroup; children = ( - 77C5B60149667B362E4FE28027169C28 /* UMFaceDetectorInterface.xcconfig */, + 6D6F60D62D305F10FEBB4BA7F2F5069E /* React-RCTVibration.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; + name = Pod; sourceTree = ""; }; - 058241B8D27184C6DD872B32AEBA52E2 /* Support Files */ = { + 0761801C968AE0B0C2340EAAD5C6885D /* Pod */ = { isa = PBXGroup; children = ( - E2D909FC84C596D4FA13501456774A88 /* GoogleDataTransportCCTSupport.xcconfig */, - 8B124E865FCBD63DF12A08FEAD8E5204 /* GoogleDataTransportCCTSupport-dummy.m */, + C5A2C19C08F46CC3E854EECD4D57F963 /* UMFaceDetectorInterface.podspec */, ); - name = "Support Files"; - path = "../Target Support Files/GoogleDataTransportCCTSupport"; + name = Pod; sourceTree = ""; }; - 0781F43E500DC52C1BF9264E02070D34 /* Interfaces */ = { + 0ABD599FC6EAED821B87A97C39E9DC0F /* Pod */ = { isa = PBXGroup; children = ( - 633A906CE55E133E541EECD104AA1625 /* UMAppLoaderInterface.h */, - 1641694B922617A51FF834292C8E44B3 /* UMAppRecordInterface.h */, + D3325F6CA16762EEFE75312BAA9F2F9B /* EXFileSystem.podspec */, ); - name = Interfaces; - path = UMAppLoader/Interfaces; + name = Pod; sourceTree = ""; }; - 0ADC05D66D8870FAB46A080BCD2E018A /* KeyCommands */ = { + 0AC365AD9E330C708E18789B63C867B5 /* Pod */ = { isa = PBXGroup; children = ( - 3C06A74260BEBB5976EC38B84C16A54A /* RCTKeyCommandConstants.h */, - AB406EA6A821F2164139861136834116 /* RCTKeyCommandConstants.m */, - EFC0079859E42358B491F854702DB88B /* RCTKeyCommandsManager.h */, - 5FD707FAB446B9FD7708C85ADB7EEE19 /* RCTKeyCommandsManager.m */, - B21622C79F6C89777264A45D79B1FA2F /* Pod */, - 322B20C7021CF21E72CD06031AEC9202 /* Support Files */, + 2025EDF2EF5BCD30C279AABD5CF2F4CE /* LICENSE */, + 28E5A7322B769723F0DE198A1DE2E547 /* README.md */, + 459D82871612907F6D894DC813FB4044 /* RNImageCropPicker.podspec */, ); - name = KeyCommands; - path = "../../node_modules/react-native-keycommands"; + name = Pod; sourceTree = ""; }; - 0AE6FD7D76F038C1A4F9B4A537117DA8 /* Support Files */ = { + 0B2AE45351C5CFC327A09636239980A4 /* FBLazyVector */ = { isa = PBXGroup; children = ( - 1A57C009B67AD4A473B2FADD3D320055 /* react-native-cameraroll.xcconfig */, - ACF0721D04DEE6D5C1E56141C5C8E4DC /* react-native-cameraroll-dummy.m */, - E8B2D04B65CB01A5C753E613DE9CBAC3 /* react-native-cameraroll-prefix.pch */, + 42898D998388A4D6F2990E7FB52CF585 /* FBLazyIterator.h */, + A866D8724690179C443304DD01537B91 /* FBLazyVector.h */, + 4BDE7DAF8356CFBAE87F41312D7444F7 /* Pod */, + 46504D9224A1309960ECE5AC19F24836 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; + name = FBLazyVector; + path = "../../node_modules/react-native/Libraries/FBLazyVector"; sourceTree = ""; }; 0B323C44BDFE19BA008B4C6BA0178443 /* GoogleDataTransport */ = { @@ -10320,860 +10350,787 @@ path = GoogleDataTransport; sourceTree = ""; }; - 0CC1A52E1277DC7D986393C45CEC131C /* react-native-slider */ = { + 0B62C8E7EC0EB1EC86B1A7EC974EEF34 /* UMModuleRegistryAdapter */ = { isa = PBXGroup; children = ( - A1FCA69C255F8634784234D96A3DCC72 /* RNCSlider.h */, - 019221C7B171A8784728465F9FE50ABE /* RNCSlider.m */, - FF6933A8827E414F03FE665F8F86110A /* RNCSliderManager.h */, - CBF19FC14AA6BAF3B58FBF8FF15C1F3C /* RNCSliderManager.m */, - AF3F289D9904231702C2FF5D5FC55B11 /* Pod */, - E81FA8B1651697AA6ACAE276D8379554 /* Support Files */, + 952B42CF2EC65DCF5379CF006C34718D /* UMModuleRegistryAdapter.h */, + DA899EB45EC9B57268155D598B7FBA5B /* UMModuleRegistryAdapter.m */, + BC32FB6B0931D32FC17CD84C7381ED93 /* UMModuleRegistryHolderReactModule.h */, + 748B108762659D26296DEB350919ED76 /* UMModuleRegistryHolderReactModule.m */, + 2F5CB58018AACF27CE0F42652F58CB11 /* UMViewManagerAdapterClassesRegistry.h */, + 13770FDD6A9D293A8769FDA90C6FF8C1 /* UMViewManagerAdapterClassesRegistry.m */, ); - name = "react-native-slider"; - path = "../../node_modules/@react-native-community/slider"; + name = UMModuleRegistryAdapter; + path = UMReactNativeAdapter/UMModuleRegistryAdapter; sourceTree = ""; }; - 0E6454C95D3C8FD02B69246E4F2296F3 /* RNFetchBlob */ = { + 0E47C8EC55DD953DEC9449D9295FB5CB /* Support Files */ = { isa = PBXGroup; children = ( - AB627D2AB477CA3CD3CD2976B9D5382F /* RNFetchBlob.h */, - 5DEBC18A46494601D218BB6CFF822423 /* RNFetchBlob.m */, + DBC7B94308CDDEB933D9CFA7617976C7 /* RCTTypeSafety.xcconfig */, + 4E1B8B6BB8BE1341F28885BE3316FFD7 /* RCTTypeSafety-dummy.m */, + 6CE6EAF5EB7E101BDE197BF7514228B9 /* RCTTypeSafety-prefix.pch */, ); - name = RNFetchBlob; - path = ios/RNFetchBlob; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; sourceTree = ""; }; - 0EA584F9E36175DA047E8C69DE8C4DBB /* Inspector */ = { + 105C06F6A55732CDD12B027425F32B0D /* TextInput */ = { isa = PBXGroup; children = ( - 86142F493DDE680A50CF9D3BC242BEA1 /* RCTInspector.h */, - 5597149807C5CD9062AF0D8023D0B074 /* RCTInspector.mm */, - F4AD38E0B6EC319AA34AEEDBD78E6F51 /* RCTInspectorPackagerConnection.h */, - 3A3741B86AFDBCB513EABA7C00306FB0 /* RCTInspectorPackagerConnection.m */, + 519433B12338DE88625944378658C13C /* RCTBackedTextInputDelegateAdapter.m */, + DCBC7728CF60EED657D74457555870AA /* RCTBaseTextInputShadowView.m */, + 6962DCFBB4ED7C0AA562F55252D69C48 /* RCTBaseTextInputView.m */, + D1CEF8DF89F2C2D5CAF9107F6FD6BCC2 /* RCTBaseTextInputViewManager.m */, + B81358FFB5D63A92212033F18E143BC6 /* RCTInputAccessoryShadowView.m */, + B8407A284EE1A7F497670355C67DD270 /* RCTInputAccessoryView.m */, + 1A0611DDE49D426961492BD17560B5C1 /* RCTInputAccessoryViewContent.m */, + 0E7C866026F97EF303C9827B08345147 /* RCTInputAccessoryViewManager.m */, + DA3E4C5835932D3BEB8B7986FEDD1D99 /* RCTTextSelection.m */, + 94FCBF9E18E22DFA68150531C181F8D7 /* Multiline */, + 207043E94202C5F966D6EBCA32C99B10 /* Singleline */, ); - name = Inspector; - path = React/Inspector; + name = TextInput; + path = TextInput; sourceTree = ""; }; - 0F2ED98A21CD0F49899861F120EF3E43 /* Pod */ = { + 11726816C1155A0490184A02753A4FB7 /* Pod */ = { isa = PBXGroup; children = ( - 47334D1C0A25C8B95A919986395B4E4F /* LICENSE */, - DF36CC4EC6787DC51E7084B92E5E9001 /* README.md */, - 7B6497C88283A72EF08F18A3EA2D0997 /* RNVectorIcons.podspec */, + 9CB7A4A99C876A28F36C0F5C9D454E56 /* LICENSE */, + CD1B18086F274E26FE027F7BB567A099 /* README.md */, + 8DAEED43793D40ED413435AB88715FBB /* RNVectorIcons.podspec */, ); name = Pod; sourceTree = ""; }; - 10AA064574CB8EF033A937230FE032D3 /* Support Files */ = { + 12383953F9A37BB86D4B77CFFD3E4A48 /* Pod */ = { isa = PBXGroup; children = ( - 17E475146D66F0F10D91E05C8A9ADEC9 /* RNLocalize.xcconfig */, - 71E63E99A20695BB9EE32555A25813A6 /* RNLocalize-dummy.m */, - 06DE0CFE6EF973F7525BC19782E877B1 /* RNLocalize-prefix.pch */, + 8802E59DA47A6A150BD238DC6FEA4E09 /* React-RCTImage.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNLocalize"; + name = Pod; sourceTree = ""; }; - 11EC61C611EE23A864D4F80591F331FF /* Pod */ = { + 1298701BA6C3A542C1A225EF45CB9C7E /* Support Files */ = { isa = PBXGroup; children = ( - 00B683AE6E1CBC46286F76D903C3CCCA /* EXLocalAuthentication.podspec */, + F0E264BE547EC61F5D8823E96733114C /* UMImageLoaderInterface.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; sourceTree = ""; }; - 12A0ED8E743693028028E41630057E01 /* Pod */ = { + 16D06874B3CD39DC2702AD4EF051CEF9 /* Support Files */ = { isa = PBXGroup; children = ( - 51BA4E67C19A7D7F0B629B19C1B227F2 /* advancedIos.md */, - 120A2F7AE95B07B1B111D98983BF4F39 /* installation.md */, - 8DCE4D4B6D4BBF737B27AF55749D0EAD /* LICENSE */, - AA661057EDE002BB9254D1370C4875B2 /* localNotifications.md */, - 9B8384303A2532E24C921A0F688CA617 /* notificationsEvents.md */, - D4D17CE1128CAD0C7376A221281249B1 /* react-native-notifications.podspec */, - 3D90C5DD717032ADDD6AA5FA6A1DA9E0 /* README.md */, - D3CBD900A4CB49206B4C05BE7628238F /* subscription.md */, + 1D1EDFB9232BCC84D44D1B60E1BFCC08 /* FirebaseCore.xcconfig */, + D49679914FE70C3E027D9C1C08D5A89F /* FirebaseCore-dummy.m */, ); - name = Pod; + name = "Support Files"; + path = "../Target Support Files/FirebaseCore"; sourceTree = ""; }; - 12E89D545F98C9845F284C64EA251DED /* RNImageCropPicker */ = { + 172343BC4DBE582DCE8BB7F7C9DA5E28 /* React-RCTNetwork */ = { isa = PBXGroup; children = ( - 1435A5F30752CD73BD4A3E3394EB0EFF /* Compression.h */, - AC1667AFA251D0B12C4A273F4A6DB8F2 /* Compression.m */, - B88C46013ACB4DFEA5D4244B205A3C41 /* ImageCropPicker.h */, - 483014B9AD6D877783DD88E8D0B8AD11 /* ImageCropPicker.m */, - 947DC1D9D5F537AC8ADD1652D178F627 /* UIImage+Resize.h */, - 49C3ADC6C2C4519340F0B60372FFA46E /* UIImage+Resize.m */, - A36DFC13B58A860E716ECB6AAF977EAF /* Pod */, - DC51473D82ADE91D2682DEDAD92AEFBC /* QBImagePickerController */, - C5AC6B708CB022009FD7B7E6FF5A1B05 /* Support Files */, + ADF3FECBCF15C627A74DFE36A41BE5A7 /* RCTDataRequestHandler.mm */, + B59E391B39C4861662ABBB57AFF839B0 /* RCTFileRequestHandler.mm */, + 8F62C88B0B8F6B810B7E909D4872B87C /* RCTHTTPRequestHandler.mm */, + A2C2BD6AFB03830F94794DF027E7A3D1 /* RCTNetworking.mm */, + B7DA5543C58A10BE6E175610A60BD331 /* RCTNetworkPlugins.mm */, + D7089DA72758BEA1CA52D22B76C9BAA9 /* RCTNetworkTask.mm */, + 5FC4E4E0E0603874E79EC94DEEFEAE58 /* Pod */, + B358EE1E3107C83D7FDAB5F76402E019 /* Support Files */, ); - name = RNImageCropPicker; - path = "../../node_modules/react-native-image-crop-picker"; + name = "React-RCTNetwork"; + path = "../../node_modules/react-native/Libraries/Network"; sourceTree = ""; }; - 1355EE9090BE64A91AED075B6ACF00DE /* FBLazyVector */ = { + 17AAE83A838DC9E3722268F52D072517 /* React-RCTSettings */ = { isa = PBXGroup; children = ( - 2A6455F4DA46D3D011AFEDCB85C66A94 /* FBLazyIterator.h */, - 4FE0A388D1FAB6CE31BD44DD33632804 /* FBLazyVector.h */, - F151609BD4C16CE097816F689A45C8AA /* Pod */, - 1EC78119A3581C98493B96AC876DE35A /* Support Files */, + 46CBB8B9186B4301E06887D86D332927 /* RCTSettingsManager.mm */, + 35909D4DCD6F551ADC49776A7E457BF5 /* RCTSettingsPlugins.mm */, + 034A0BB53386A3FA7715F023286488FC /* Pod */, + 59E4131A3E054A83788298EEB08F293A /* Support Files */, ); - name = FBLazyVector; - path = "../../node_modules/react-native/Libraries/FBLazyVector"; + name = "React-RCTSettings"; + path = "../../node_modules/react-native/Libraries/Settings"; sourceTree = ""; }; - 1371DD7D731AFEFDA3832D1BB954050A /* ScrollView */ = { + 18644B443F4671F0B6411C3D37E85352 /* Support Files */ = { isa = PBXGroup; children = ( - B1C3FBEC0791669A99849D0E5D8DF61D /* RCTScrollableProtocol.h */, - 35557C57F235E90EB2ACCFF11F014BE9 /* RCTScrollContentShadowView.h */, - D2A860FA24F85C1048D62057EB4A8297 /* RCTScrollContentShadowView.m */, - 7D013E58A4B0CF45BD86DAB1BE88BBAC /* RCTScrollContentView.h */, - DEB14E8B79D4E1EDC3C7F619DB0F76D1 /* RCTScrollContentView.m */, - 0777B403F17F492A3B73D37EFB89229C /* RCTScrollContentViewManager.h */, - 1CFA32E7F3C5F31B35D111D6C612DA04 /* RCTScrollContentViewManager.m */, - 2A174FCBA44E8253E94EF53F873F0FA6 /* RCTScrollEvent.h */, - 94DC58CFD685B9D5EB1D708DC0020EE5 /* RCTScrollEvent.m */, - 7502B382F060A689307030BFB63EC280 /* RCTScrollView.h */, - 6F327DF5D1EF9193E97A40C31E991E13 /* RCTScrollView.m */, - F851C04DBFE8CA57312A9FF7D4AD29B8 /* RCTScrollViewManager.h */, - 1672F4FBDCDB899F8282004CD26D8164 /* RCTScrollViewManager.m */, + EE6998582AD69397537481EADD7C1462 /* UMBarCodeScannerInterface.xcconfig */, ); - name = ScrollView; - path = ScrollView; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; sourceTree = ""; }; - 1467D8E20A7865E67780EEB3DD700113 /* Singleline */ = { - isa = PBXGroup; - children = ( - D1669CBA419AEEEB6CAC6C9F52448BD9 /* RCTSinglelineTextInputView.m */, - B85DCA7215DCC24721034BA8491D07D1 /* RCTSinglelineTextInputViewManager.m */, - 97DDBC044CE7DA5CCCE4A31EF03BAB65 /* RCTUITextField.m */, + 1A853E48A9468F0A81AEFCD6C20A8A72 /* react-native-notifications */ = { + isa = PBXGroup; + children = ( + 401D62C0014073EBE5EE8D9AB2A42DDA /* RCTConvert+RNNotifications.h */, + A4A926B9AEFB38F0C367919B6A7CE86A /* RCTConvert+RNNotifications.m */, + 55BAFB6F4B064F5A6021FE4DC931F7FB /* RNBridgeModule.h */, + C06042E7541D08DF05F09BD91C949D80 /* RNBridgeModule.m */, + ED1247E2285479CD2809B2F50BA91771 /* RNCommandsHandler.h */, + 7196B73093E0A7E6E73BFA7688939872 /* RNCommandsHandler.m */, + F9A777C98941200FD4D7871716120D34 /* RNEventEmitter.h */, + 9F926D61524B0E52E67BC8EDEE7B51BE /* RNEventEmitter.m */, + 832319D462FAB4CE77093E0E73C2B140 /* RNNotificationCenter.h */, + 1366DD549BDDEC657FDE238975488B40 /* RNNotificationCenter.m */, + C40710EF5BFEB932034122504680A890 /* RNNotificationCenterListener.h */, + E83A88E809AEF3803F4E5A761CE9EBD4 /* RNNotificationCenterListener.m */, + 2CC1D7B1FCAA03FF7C646C98B551D435 /* RNNotificationCenterMulticast.h */, + 1718E61E826755F3E0FB92377D78F4F3 /* RNNotificationCenterMulticast.m */, + 80CFA61EA0B5D4667D7441DB40FDAFEA /* RNNotificationEventHandler.h */, + 41164767C0AD86E7E741BF2A15BFC977 /* RNNotificationEventHandler.m */, + CAF915294CA0DE133B47DB746A574395 /* RNNotificationParser.h */, + C46BC88340457F394AE62CA9E0BB1471 /* RNNotificationParser.m */, + E151DED940CE3340E8776922A596C1A4 /* RNNotifications.h */, + E2A5C7FEDF5324A60792BB6AB8DBC936 /* RNNotifications.m */, + 301B5EEE4D976F7960898431238C08AE /* RNNotificationsStore.h */, + BA7C3D0D2512BAEF12730C83AE7FAED1 /* RNNotificationsStore.m */, + 85B0C9E09475A87487BEE618B504E58B /* RNNotificationUtils.h */, + 987D4D1AC79F152497F420C97D2EA5EB /* RNNotificationUtils.m */, + 7A3EF3B919579A79C9329B7678B685F4 /* RNPushKit.h */, + 4E22CD034AD21690010CB1D17D6C1ECB /* RNPushKit.m */, + 9E3F70C674345053796E4334EFB53427 /* RNPushKitEventHandler.h */, + A48A149DEAAF21204FE75288FB4F0CB3 /* RNPushKitEventHandler.m */, + 4402E5C737E4EBD8BF9ACF3CB468000A /* RNPushKitEventListener.h */, + B8D725DFB1F4C03BE8C7BA961AA793C6 /* RNPushKitEventListener.m */, + 86016DD3E7D589F624940468E4C49891 /* Pod */, + E72E958DF3BB7D7C1E6E98333BEA5282 /* Support Files */, ); - name = Singleline; - path = Singleline; + name = "react-native-notifications"; + path = "../../node_modules/react-native-notifications"; sourceTree = ""; }; - 147CD9F32702691595FC2FE11C3403BD /* RemoteNotification */ = { + 1B155F37AC8526FDD6868727B81B2EFF /* RNReanimated */ = { isa = PBXGroup; children = ( - F5B78C6A4B84127419E4C2CB6762402D /* EXRemoteNotificationPermissionRequester.h */, - FC0110D216D4372BFFF4A82540AE74AD /* EXRemoteNotificationPermissionRequester.m */, + BC1F9A15243C716881C044634647BCC6 /* REAModule.h */, + AE70728376607B03B4CED6B6EE769CD5 /* REAModule.m */, + 2CA74F7AE406D898D8DC5AF4957AD1D4 /* REANodesManager.h */, + 13357CBC37C785D0D0B46E2741A1B5FA /* REANodesManager.m */, + 8E1C7BBCBB1C5B8FBB9FD5DFC86C4FAC /* REAUtils.h */, + D357DB90AABB8802AB787BC9711D9ED8 /* Nodes */, + 3935ECAEF34A5DCF4F1DF014E2E94558 /* Pod */, + D812A85C15C9130F0727A7A46899B61D /* Support Files */, + C5645910EBD5064CDE56CA250505252C /* Transitioning */, ); - name = RemoteNotification; - path = RemoteNotification; + name = RNReanimated; + path = "../../node_modules/react-native-reanimated"; sourceTree = ""; }; - 1505B62DE4AC138FBC06155E6B362A90 /* ReactNativeKeyboardInput */ = { - isa = PBXGroup; - children = ( - 3F0CE042EFD03DE40C11A3FE11B306CE /* LNInterpolation */, - 4F943FBBC22267DDDE7521855445AF90 /* Pod */, - 1EF8233FDB7A11836EE3382083EBDA01 /* RCTCustomInputController */, - 3EC2277730C8EAF00187100039934BC3 /* Support Files */, + 1BE8F60795CFF4C4F6636C0A2A506E2E /* Modules */ = { + isa = PBXGroup; + children = ( + 941BE9107D69226EA419920CDD86FADD /* RCTEventEmitter.h */, + 8AD5E726A25BEF67B9CB75353A83FC11 /* RCTEventEmitter.m */, + 1823F85D252E1576FE3C7EAF4A0D48F3 /* RCTI18nUtil.h */, + AED0B857FAB2612A3C02EEFB0394AACC /* RCTI18nUtil.m */, + 7D7B27D4446D3FBF19ABF958FBD4321B /* RCTLayoutAnimation.h */, + 1E2BF6EC3E88E1C806354E565BC9D9CC /* RCTLayoutAnimation.m */, + 1BBD89B386138AC734E76FEB46720463 /* RCTLayoutAnimationGroup.h */, + A83C15C2E1E06665BD6E603B7BFAC3C2 /* RCTLayoutAnimationGroup.m */, + D94D994617AE02E6FE088AA48918ED0D /* RCTRedBoxExtraDataViewController.h */, + 8F15BDDF3430D62B0A017A83E7D76323 /* RCTRedBoxExtraDataViewController.m */, + FDB438421B7D53597F45E5484ECA47E0 /* RCTSurfacePresenterStub.h */, + 242769661A070BE96392D9823B30A215 /* RCTSurfacePresenterStub.m */, + BD6B9A656BBFCB32E751952127B4D7E1 /* RCTUIManager.h */, + 78D2CA12ADB80CE1E5BAF738F5A9026D /* RCTUIManager.m */, + C30408675328543FB4553B0DDB54A527 /* RCTUIManagerObserverCoordinator.h */, + CD5FECA91017F9422141D82A951DCF12 /* RCTUIManagerObserverCoordinator.mm */, + 059FA1B009B2D01A2E1AC3B1ECB200BE /* RCTUIManagerUtils.h */, + 7519D419BB18BADD3259D87DE9D4A0E6 /* RCTUIManagerUtils.m */, ); - name = ReactNativeKeyboardInput; - path = "../../node_modules/react-native-keyboard-input"; + name = Modules; + path = React/Modules; sourceTree = ""; }; - 15B62160302337FDC23F9FE70B942F88 /* Pod */ = { + 1C1BB4344EE308E2E1D151183329DB9A /* RNCAsyncStorage */ = { isa = PBXGroup; children = ( - DE728416151A6E0409CC9B54D5A3AEF9 /* UMPermissionsInterface.podspec */, + AA611B1662B50B50C01F0F334CEAE12A /* RNCAsyncStorage.h */, + 32436D44B834FF122739FB54598DF723 /* RNCAsyncStorage.m */, + 9EF66DC7902176479EC3A7E6677350CE /* RNCAsyncStorageDelegate.h */, + EAF6A9739FB5D4147F5F82B69550AAA4 /* Pod */, + A101AFA711928A563A4BD7779B1DC5F4 /* Support Files */, ); - name = Pod; + name = RNCAsyncStorage; + path = "../../node_modules/@react-native-community/async-storage"; sourceTree = ""; }; - 15BDBE06651BFBF8EC637F76A1DB472E /* RNUserDefaults */ = { + 1C37484845ABB37D57243159C886C968 /* Handlers */ = { isa = PBXGroup; children = ( - 3BF7FCBDBE58FF824E55296C47D01FB9 /* RNUserDefaults.h */, - DC7C17EDE1D3ADAF9E4AAAA4F0805E93 /* RNUserDefaults.m */, - E1E3DC83464E8AF0FCE5B92016341051 /* Pod */, - 9DCC93BF7F53637CB68C43A583C73448 /* Support Files */, + 64CBC7D750748F9F96DADA161A097832 /* RNFlingHandler.h */, + 326C71645C00D356FF14EDBB384BFC02 /* RNFlingHandler.m */, + 1D2F110440E6536D1B3F88D769990A27 /* RNForceTouchHandler.h */, + 886760A0962ACB54D2235A4C853BD046 /* RNForceTouchHandler.m */, + BCF1EE7814D86414EB59001B5C2E1208 /* RNLongPressHandler.h */, + 7E92624035021AD1CB1174358688560E /* RNLongPressHandler.m */, + DF13E0F96EBCD3D9CA5D788138682C68 /* RNNativeViewHandler.h */, + 15C44261D170A8DF9C8AB211C4227703 /* RNNativeViewHandler.m */, + BCD3DCC4CA8784083B88B132A508B9DD /* RNPanHandler.h */, + 255791213825BDEE0B9D20D5A9527FBC /* RNPanHandler.m */, + C7D5A3C319BC585A1C0FBBAF8C6D3505 /* RNPinchHandler.h */, + 56A237E6BCD357D07916D1B97DE90BA6 /* RNPinchHandler.m */, + F098421D9F3F53D0590E880A70989A68 /* RNRotationHandler.h */, + 28B7C0C3C5C900D6A0D9B128EC437B23 /* RNRotationHandler.m */, + 8AD0A5CB1D0D3CD2BCA009B81F9BB319 /* RNTapHandler.h */, + 2877B9421293EC9697DC663C8D7EDF7F /* RNTapHandler.m */, ); - name = RNUserDefaults; - path = "../../node_modules/rn-user-defaults"; + name = Handlers; + path = ios/Handlers; sourceTree = ""; }; - 1609EB5F050C78DDBA9B0764B53FFFED /* Support Files */ = { + 1CDA384C38F8F351A0C2BFCB56A61537 /* UMCameraInterface */ = { isa = PBXGroup; children = ( - D3F6C4A7B7A52935C844753CDE09D46D /* React-RCTSettings.xcconfig */, - A7C051B36684AD35D3B9E0855DC0B533 /* React-RCTSettings-dummy.m */, - CEFFEEDDDB5FB56DD03F227ED67A8F76 /* React-RCTSettings-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; - sourceTree = ""; - }; - 1632967B47D1DE19EBEFF374D7049024 /* Source */ = { - isa = PBXGroup; - children = ( - E55871F9C2198B66272FDFED3493DDC5 /* BSG_KSCrashReportWriter.h */, - 107D451387B07A0C867AD34BC92323BC /* BSGConnectivity.h */, - 84E2ED926657E49C1145928B73B70718 /* BSGConnectivity.m */, - 2CBB7A0A0D3341A8729B9F3D14F53598 /* BSGOutOfMemoryWatchdog.h */, - 7FD2CE14B86C01D0182D5232A65D8AB7 /* BSGOutOfMemoryWatchdog.m */, - 8CD005D0F8167E89E726EC24D86EF397 /* BSGSerialization.h */, - 32697D5DA0B612CE8AFF865E3133F083 /* BSGSerialization.m */, - F36308EEFC7D2B93E991A98340CDC649 /* Bugsnag.h */, - B38DFD28341D689393C7AEC5C063A64F /* Bugsnag.m */, - 381E485B872E78BA9520875768779D42 /* BugsnagApiClient.h */, - 3E0327631D614F964926C116CE2D0667 /* BugsnagApiClient.m */, - C5E8C3D3C610C6144595BD88455E3153 /* BugsnagBreadcrumb.h */, - 437CE74CA59C58F794EBC32E2CB8FC0E /* BugsnagBreadcrumb.m */, - 0A114E7E7641DE0E9E85B5BC6D7F7044 /* BugsnagCollections.h */, - 3F6FCF94C80C1D5782D49CE8FF488110 /* BugsnagCollections.m */, - 4E60F5AF0B10402EF09199C76684B61C /* BugsnagConfiguration.h */, - B7E7467BEE8E6F86B0DCABC64CF81B8E /* BugsnagConfiguration.m */, - 60FBFC75084DECB3CEC5950D42179801 /* BugsnagCrashReport.h */, - 6A13372A97961B2FCEE907AF7C06F9D8 /* BugsnagCrashReport.m */, - A9632268AF154A6CABA4DAE26034D98B /* BugsnagCrashSentry.h */, - FC094B5674B29F3C7EE5840E3F4FCCAE /* BugsnagCrashSentry.m */, - C07C9EBD2EBB6DC37055104767E8F838 /* BugsnagErrorReportApiClient.h */, - 82C01850FCE0DC70E3D118328348F262 /* BugsnagErrorReportApiClient.m */, - 8791F28043B93FB45126A4FF1B18FD25 /* BugsnagFileStore.h */, - DCEC1BBDA66CBCA038CFCAF6348C0923 /* BugsnagFileStore.m */, - A1213869BBAAEDD07DD56606232430C5 /* BugsnagHandledState.h */, - 1EACE5B4C9E08B4DDD8549B2C025DC9D /* BugsnagHandledState.m */, - EFE9C7F9E630710AE14DC0088B128EB6 /* BugsnagKeys.h */, - 25DC3494FB12543357BB8575BAAE65AA /* BugsnagKSCrashSysInfoParser.h */, - 258D5FDD1098DA394D695543A5EC6D96 /* BugsnagKSCrashSysInfoParser.m */, - B04A3000D987FFA9375C5040F1D14A33 /* BugsnagLogger.h */, - CE12368EE0E36359BB5A4EB2F69DC467 /* BugsnagMetaData.h */, - 3E5B2EF96696FDE275E71309F9EABDF1 /* BugsnagMetaData.m */, - 4E63113E3489FE47881A391D1384385D /* BugsnagNotifier.h */, - 90B55EA33B950C64B25090F072B8B472 /* BugsnagNotifier.m */, - 6571DF5436311985C9F0ECDD2F9B822D /* BugsnagPlugin.h */, - C484E6A346C7B52FB7A5C7F75ECCA52D /* BugsnagSession.h */, - 104F2E03F055BC209F368334BCAFFD3A /* BugsnagSession.m */, - 67DEC3CEBDF826564BC379BD72DAB258 /* BugsnagSessionFileStore.h */, - C095144BC747280B07CA695F86A7471B /* BugsnagSessionFileStore.m */, - 80989FD1E3A28D668EEF944CEBF3D75D /* BugsnagSessionTracker.h */, - 484F71D2F1FE4AFC1C9AA945E58569D6 /* BugsnagSessionTracker.m */, - 34AE55DEA5FFA61EFF3FEC80D5A8FD8D /* BugsnagSessionTrackingApiClient.h */, - AE43C7E09828679BC5E0A82EE1A9AAF3 /* BugsnagSessionTrackingApiClient.m */, - 1EAD16F1C76B70E914D9B8ED5A9E49AF /* BugsnagSessionTrackingPayload.h */, - C967A21D4DB245B24B51E5278EB1D7AB /* BugsnagSessionTrackingPayload.m */, - 12465FEC11132425BF0FFA79B10C0558 /* BugsnagSink.h */, - E4E34D60E16609B4903F2C82BFAC7361 /* BugsnagSink.m */, - 604983AC2EFDD2D9B0108CF938E38A58 /* BugsnagUser.h */, - FBE8F1E2A57485398832FABA2C87BED8 /* BugsnagUser.m */, - D5043F42CB101BE1E6DF266ACFD6DDFF /* Private.h */, - FA3BC48DB57690DF8D87F0BB3932161D /* KSCrash */, + 7921158A140DC003DCEE3B81A931540C /* UMCameraInterface.h */, + 8620BB1664A0DF9F468248ED7A878359 /* Pod */, + 57EE6235DDA5D1547878AAA8C062DC71 /* Support Files */, ); - name = Source; - path = Source; + name = UMCameraInterface; + path = "../../node_modules/unimodules-camera-interface/ios"; sourceTree = ""; }; - 16D06874B3CD39DC2702AD4EF051CEF9 /* Support Files */ = { + 1F44EC1F9C0C70C9BA6BDD0B4F46AAC3 /* RCTWebSocket */ = { isa = PBXGroup; children = ( - 1D1EDFB9232BCC84D44D1B60E1BFCC08 /* FirebaseCore.xcconfig */, - D49679914FE70C3E027D9C1C08D5A89F /* FirebaseCore-dummy.m */, + 0507D6DE5F3C35DC7C375FC338FF4B78 /* RCTReconnectingWebSocket.h */, + 7ACE70D6FBF609A3BE8037EA4A534CFF /* RCTReconnectingWebSocket.m */, + 63A575FBD3384F2AF8768F8207A29F95 /* RCTSRWebSocket.h */, + F0AE7A40A3F99BFCDAC8313C2E66A66A /* RCTSRWebSocket.m */, ); - name = "Support Files"; - path = "../Target Support Files/FirebaseCore"; + name = RCTWebSocket; sourceTree = ""; }; - 18C49B13A8EEEA8FD0865EB7448001CB /* vendor */ = { + 1F648791837B8B2D69FE6020B19C285A /* RemoteNotification */ = { isa = PBXGroup; children = ( - D7AE5B1FF606197028A74A02A761B3EA /* bugsnag-cocoa */, + 97DD6E501C8BBE027A870A3E4C025DD6 /* EXRemoteNotificationPermissionRequester.h */, + 6E90B6A1AD3EC6BACE7E73A716E17A3E /* EXRemoteNotificationPermissionRequester.m */, ); - name = vendor; - path = cocoa/vendor; + name = RemoteNotification; + path = RemoteNotification; sourceTree = ""; }; - 197A56B58475CBFFF08ECAD8DAA96D96 /* Pod */ = { + 200493F6AB8BA6FCA9DD37077EDBD9E8 /* Pod */ = { isa = PBXGroup; children = ( - 94B74D53963393C4A8D7CF14C52FB7DC /* React-RCTVibration.podspec */, + 9C3A30B77E206AF30D0EA8404F3DB572 /* React-cxxreact.podspec */, ); name = Pod; sourceTree = ""; }; - 19E947B31AF75232AB38BD22A6B87943 /* Pod */ = { + 207043E94202C5F966D6EBCA32C99B10 /* Singleline */ = { isa = PBXGroup; children = ( - 0F9FE5C49D2E5C7EB4CF15D88966A005 /* UMCameraInterface.podspec */, + DCB10EB363B93E5F38A13034E9276D41 /* RCTSinglelineTextInputView.m */, + 526516976CC7F4E76034F56C74AA7C44 /* RCTSinglelineTextInputViewManager.m */, + 3A0F5AAA833DA71DA10BB80D25011C40 /* RCTUITextField.m */, ); - name = Pod; + name = Singleline; + path = Singleline; sourceTree = ""; }; - 1AFB6AFCE41371CBE9B1057E5FA11DA5 /* Support Files */ = { + 20AB1F1684CE13A433151DE308F68579 /* Support Files */ = { isa = PBXGroup; children = ( - DCB94CBCFE0C715380C60E0F455AF63D /* ReactNativeKeyboardTrackingView.xcconfig */, - 990D1CEEE097DFC53048ADB570956DD0 /* ReactNativeKeyboardTrackingView-dummy.m */, - 1A96DC001042A58CFA27387096C2A9D6 /* ReactNativeKeyboardTrackingView-prefix.pch */, + 434C89B7FF1C87A3657C1C43B3CB5CAA /* React-RCTLinking.xcconfig */, + 75780E13956DE67F7E1C2DA61ABF67BE /* React-RCTLinking-dummy.m */, + EBE01B3239B0AC125CE548C9CBC6114D /* React-RCTLinking-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardTrackingView"; + path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; sourceTree = ""; }; - 1B2BEFA4AD79884F68B0733DDDE09EFF /* ios */ = { + 20B6E363F68A46E9B0C0A219B0CADAF0 /* Frameworks */ = { isa = PBXGroup; children = ( - 7EFAFCF9D2A38BF4A31E5989EE8A6C1C /* RCTTurboModule.h */, - 775244808FA9C3FF8CB7F2A4E4A7EECB /* RCTTurboModule.mm */, - 9F8CEA997F00BBDBFCDC9BD09A8328D9 /* RCTTurboModuleManager.h */, - 6E212ED79BB2DBDB1AC098B2D414E584 /* RCTTurboModuleManager.mm */, - ); - name = ios; - path = ios; - sourceTree = ""; - }; - 1B51F2FA84D17DCE9E370287B01EE0FF /* React-CoreModules */ = { - isa = PBXGroup; - children = ( - DF92CE034A458C57CFC9FDD2166F2176 /* CoreModulesPlugins.mm */, - 1068F3228D5C1F21249353FD5E724FEB /* RCTAccessibilityManager.mm */, - 75CF2E8B87594CB234E3D95A5412993F /* RCTActionSheetManager.mm */, - CAB0C63FC8922ECF883FC7F217E727F5 /* RCTAlertManager.mm */, - 8227AB0A9A09777A728CC25B4E49D9A0 /* RCTAppearance.mm */, - B3878F1E993194C0070DF632755735F6 /* RCTAppState.mm */, - 6E64AFA5C6D9BA5AD3C6FE804F1376F2 /* RCTAsyncLocalStorage.mm */, - 676AC51213B44BDACA97E33DA530D6A8 /* RCTClipboard.mm */, - B6173EB95FDD9752DE5D5A3FE50BDD39 /* RCTDeviceInfo.mm */, - 00CBC60CA92F11200494D717671FEDDB /* RCTDevMenu.mm */, - DF8D77ED36497353F79CA30D64E32966 /* RCTDevSettings.mm */, - A90863DAF14AA25BBCFBE951F1520854 /* RCTExceptionsManager.mm */, - D6F1FB7F281468D9F70331029D55677B /* RCTFPSGraph.m */, - 1F2D8B1A106F59DD53D8F961BDA2346D /* RCTI18nManager.mm */, - 149CCEB54C1BE4CF3A0ABD79358751EF /* RCTKeyboardObserver.mm */, - E00F29323FDC2221DEC6688F99664369 /* RCTLogBox.mm */, - B0A371D5A21AC68639256F45BDCA24D4 /* RCTPerfMonitor.mm */, - 1DE315D70E5C21E0A0D947E0AF34567A /* RCTPlatform.mm */, - 2AF05263F11E9264AB29F3FF7BEF7AB2 /* RCTRedBox.mm */, - E499E992ADE815C14367F331C98405B2 /* RCTSourceCode.mm */, - 0ECCB6FAFF8614DB159F724F44861AAB /* RCTStatusBarManager.mm */, - 4ECC1133CD66CE037AC97303759C6DB0 /* RCTTiming.mm */, - BB7507710AD9CEE099C15445BF9E94A2 /* RCTTVNavigationEventEmitter.mm */, - 2CD41FE5D4488D18AEA8D0FE2255E01B /* RCTWebSocketExecutor.mm */, - 755B72D5DA9A44B53932D49C7E48A722 /* RCTWebSocketModule.mm */, - B5E11CB613A779916E7F21DEB93AE85E /* Pod */, - 3524D57F853B742453001279A377022C /* Support Files */, + 4085FF73C7C30BADB2FBEF9BAAE48C10 /* libcrypto.a */, + FC4C3DD5B9B22406E01CE136DE483040 /* libssl.a */, ); - name = "React-CoreModules"; - path = "../../node_modules/react-native/React/CoreModules"; + name = Frameworks; sourceTree = ""; }; - 1BB693B9296587624B879FD0BFDB1F01 /* Support Files */ = { + 20E47EE1E745FD2B0C2CD40443745A24 /* Nodes */ = { isa = PBXGroup; children = ( - E732B1F3F10F6B1D59C6227D9628145F /* BugsnagReactNative.xcconfig */, - 4D8121F726CDAE6ADCD01AAC8172BAA9 /* BugsnagReactNative-dummy.m */, - 9B4B3036D4BA8F33E941D941CF48E3DB /* BugsnagReactNative-prefix.pch */, + 147E4035E6C050595E076374B843483B /* RCTAdditionAnimatedNode.h */, + C1B1B6FB49BD282706FFC998F667D2BB /* RCTAnimatedNode.h */, + CEE872A6F656C1E3ACEABC79779A1A3F /* RCTDiffClampAnimatedNode.h */, + 59EA5FD29A858A36792BCF999ADACFDB /* RCTDivisionAnimatedNode.h */, + 975823F16A54D59A863411205C024027 /* RCTInterpolationAnimatedNode.h */, + 4367D6B59AE267081A0B5EC679BDFE4B /* RCTModuloAnimatedNode.h */, + B8C7A0C275CA5F6C3D75DAA0DB1F643F /* RCTMultiplicationAnimatedNode.h */, + F4AFF3A212C1AB98DEE5372847C81B3A /* RCTPropsAnimatedNode.h */, + D169C66ED71787413B3BE64DBDB90D26 /* RCTStyleAnimatedNode.h */, + D7C9B295574DF5320A3402BEFD57B09A /* RCTSubtractionAnimatedNode.h */, + 049DFFA1F6F0BF65EB4CE7E2498C8407 /* RCTTrackingAnimatedNode.h */, + D073C331B87A79B01AB8D7DFC982F7FB /* RCTTransformAnimatedNode.h */, + 17D30F11B146D9CCDD98E5C067F9ED9E /* RCTValueAnimatedNode.h */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; + name = Nodes; + path = Libraries/NativeAnimation/Nodes; sourceTree = ""; }; - 1C7B27831281EA1E403BFB736DBD1F29 /* UMModuleRegistryAdapter */ = { + 2138BF45623BF6967E8205CC7B58011B /* demux */ = { isa = PBXGroup; children = ( - 4F47506F7D233C846DE592A73AA5D7A2 /* UMModuleRegistryAdapter.h */, - 0B83AF1D415F0617AB05BEE783FD1524 /* UMModuleRegistryAdapter.m */, - 83951F110FBE70C27DA463137C925BCF /* UMModuleRegistryHolderReactModule.h */, - 45B3F54749A87CE4A5D8040256402A95 /* UMModuleRegistryHolderReactModule.m */, - B60927F207660FF1F534FEC57BF761D7 /* UMViewManagerAdapterClassesRegistry.h */, - E86A1500A927E39874D8337AFE45667D /* UMViewManagerAdapterClassesRegistry.m */, + BF7B9D2F15D064D840EC4BF5CE4EBAF2 /* anim_decode.c */, + D64899346B43035B56313D189AA3D2C4 /* demux.c */, + A284C22076F6E210152F6954E6818433 /* demux.h */, ); - name = UMModuleRegistryAdapter; - path = UMReactNativeAdapter/UMModuleRegistryAdapter; + name = demux; sourceTree = ""; }; - 1C7BEFEF7EE832B9363224727E1DE8FD /* Support Files */ = { + 21C82C314C2C1A92F9ABE56B60E73C93 /* RNBootSplash */ = { isa = PBXGroup; children = ( - 521AA54144A721F1FCE59D66407111DA /* RCTTypeSafety.xcconfig */, - 9BA16C8E1EE792F051C468252733D6A9 /* RCTTypeSafety-dummy.m */, - D21E91F70CF4592C5283820588A499C6 /* RCTTypeSafety-prefix.pch */, + B1872B7496598BB0F592386212968154 /* RNBootSplash.h */, + 22AACFD454C2973AF1DEEF4B50404805 /* RNBootSplash.m */, + DD3CF46D7E52A2D14BCE166254594823 /* Pod */, + B592ED218B74AC396E43632FA172CE18 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; + name = RNBootSplash; + path = "../../node_modules/react-native-bootsplash"; sourceTree = ""; }; - 1D3D928A5F0A2C90D16DBE9E7AE0CB99 /* Pod */ = { + 22458E3533B6FDCA162FFA48B7F6F32F /* Support Files */ = { isa = PBXGroup; children = ( - 99C9CBF9618B653FEE2EAB24B9742D4F /* LICENSE */, - E950EA795D2359323C7DD283B2307452 /* react-native-safe-area-context.podspec */, - 7553BF735B0F59822716711C24372CFF /* README.md */, + C952F4B3BEB498CF6B44D8F8D53D258E /* YogaKit.modulemap */, + 76068A15B2460ADC84FF361BB4197837 /* YogaKit.xcconfig */, + 566BDC3CA9E55B141F1F03BA37242126 /* YogaKit-dummy.m */, + EF1AEC39CE3A96AE1A9C6DB8A78EE20C /* YogaKit-prefix.pch */, + 953453F81B33399A8EEA663B3ACE3F22 /* YogaKit-umbrella.h */, ); - name = Pod; + name = "Support Files"; + path = "../Target Support Files/YogaKit"; sourceTree = ""; }; - 1DDFA0F74E6D017333791440D900A927 /* links */ = { + 22830D6A13F0887AA0839CAA32F3BC1D /* Support Files */ = { isa = PBXGroup; children = ( - 57BC2564DE7D58D34C118892BB94ED29 /* RNFirebaseLinks.h */, - 47E106347AA5264F3182C3270E9B7D23 /* RNFirebaseLinks.m */, + 47BE8606ADAA46F17D3BCB260DFDB92E /* FirebaseCoreDiagnosticsInterop.xcconfig */, ); - name = links; - path = RNFirebase/links; + name = "Support Files"; + path = "../Target Support Files/FirebaseCoreDiagnosticsInterop"; sourceTree = ""; }; - 1DEE9BE6EC8E5499D31EFA70F360C4AC /* EXLocalAuthentication */ = { + 2393A1F5598670D444E1E000EFE6E5DB /* Pod */ = { isa = PBXGroup; children = ( - 4701A56E6E6454DF97BC15234A739DF5 /* EXLocalAuthentication.h */, - 330566AE5AF4C4FFF95E7C2D625511FB /* EXLocalAuthentication.m */, - 11EC61C611EE23A864D4F80591F331FF /* Pod */, - F3212ABD255CCDD7B82EDCF22D36496B /* Support Files */, + FDCAC4E478AE580F24AE8E5D90B80E0F /* LICENSE */, + 74EA67289740305E72F78F1F7400B0C3 /* README.md */, + CEE21D1C447267023E86EA3DC180F48D /* RNFastImage.podspec */, ); - name = EXLocalAuthentication; - path = "../../node_modules/expo-local-authentication/ios"; + name = Pod; sourceTree = ""; }; - 1E405E1B544584101E824D3DBB8FCBCB /* Support Files */ = { + 246BDFFEBA74718AFB14FDEF976E32FE /* Support Files */ = { isa = PBXGroup; children = ( - F04F5797167F566DEC173C68ED322390 /* React-RCTLinking.xcconfig */, - 59138562FB292D9BF6D6DCF80210A029 /* React-RCTLinking-dummy.m */, - 319EB6FAC518BAF8FB8D069B119BBCC3 /* React-RCTLinking-prefix.pch */, + D4A501B5DB4897607E43BD772D7B566D /* KeyCommands.xcconfig */, + 4430FA90A83C85CCF5163594CEFF18D2 /* KeyCommands-dummy.m */, + F109541A37535E3245C452BF5292AF6E /* KeyCommands-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; + path = "../../ios/Pods/Target Support Files/KeyCommands"; sourceTree = ""; }; - 1EC78119A3581C98493B96AC876DE35A /* Support Files */ = { + 26067628151C17BB0DD62E5D6308E605 /* ReactCommon */ = { isa = PBXGroup; children = ( - 92F931B69167975533EFB5B58AFD1845 /* FBLazyVector.xcconfig */, + 2DE716F93E1C098199FABF0438AEF7DF /* callinvoker */, + 45713939BBAEAEC3D27602716D91840E /* Support Files */, + 6E122A577A17D199F753E6775420244F /* turbomodule */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; + name = ReactCommon; + path = "../../node_modules/react-native/ReactCommon"; sourceTree = ""; }; - 1ECC0CA3DA2B16BC0774485AD15F0603 /* Pod */ = { + 2640709F36CD653BB12883C720226F9D /* Support Files */ = { isa = PBXGroup; children = ( - 543EE479196945500F4F316FF197BD5A /* React-jsiexecutor.podspec */, + BFDF4F5D7C0B527DB1100D4B8232675D /* react-native-slider.xcconfig */, + 2FE2865D78BF371822DD76F8FB6EB511 /* react-native-slider-dummy.m */, + 7D616FE4E6634143E1FC8F0B5550F8E8 /* react-native-slider-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-slider"; sourceTree = ""; }; - 1EF8233FDB7A11836EE3382083EBDA01 /* RCTCustomInputController */ = { + 26BBBACC169934D2B1E6CB4F73121AC1 /* UMFaceDetectorInterface */ = { isa = PBXGroup; children = ( - 77FE8AA76FBC75C95712E64CBDF7DD05 /* RCTCustomInputController.h */, - 2631ADD27366017C1CF5E6C4B7E68F6F /* RCTCustomInputController.m */, - 7E93A2F0919CAF3E8CBFEF8A8844BCB8 /* RCTCustomKeyboardViewController.h */, - 64EAAA7D3E3B9EA2C22622919AB96085 /* RCTCustomKeyboardViewController.m */, + E27B91E05142F77BABA30F0CD38DB75C /* UMFaceDetectorManager.h */, + 748B9BDF0A782902EDC71AE5A5D5C70C /* UMFaceDetectorManagerProvider.h */, + 0761801C968AE0B0C2340EAAD5C6885D /* Pod */, + 9FD59ABC52A11284C0D38CB87B7EFA3B /* Support Files */, ); - name = RCTCustomInputController; - path = lib/ios/RCTCustomInputController; + name = UMFaceDetectorInterface; + path = "../../node_modules/unimodules-face-detector-interface/ios"; sourceTree = ""; }; - 20676D7B672826C1AA5B9A6C4309BC23 /* BaseText */ = { + 26DECA541D0B01C750C1192D02562926 /* UMFontInterface */ = { isa = PBXGroup; children = ( - B9BDDD78B1DEAC3FD1A250ADB412D8D5 /* RCTBaseTextShadowView.h */, - 0C41708280F44C5ABDFC17D711D57CD8 /* RCTBaseTextViewManager.h */, + E57FD1A818973E00CEA39D4F7117DC89 /* UMFontManagerInterface.h */, + 5431E84C7A831801A4D1933BA24BDBBF /* UMFontProcessorInterface.h */, + 23C6F4DF926D01629FB89CDDE88C4CE1 /* UMFontScalerInterface.h */, + 27FCBE4175BBAFDEB20A1F223A1D46FC /* UMFontScalersManagerInterface.h */, + A27455B4F063EF3E3DB072A54391D9E4 /* Pod */, + BA4926AF269FDA42BE68595D4BCAE560 /* Support Files */, ); - name = BaseText; - path = Libraries/Text/BaseText; + name = UMFontInterface; + path = "../../node_modules/unimodules-font-interface/ios"; sourceTree = ""; }; - 20A93AD6805BACDE104F15F9F7D4FF14 /* RCTSettingsHeaders */ = { + 287A08FE9CB84CF37F001990E0ACC6E8 /* EXAV */ = { isa = PBXGroup; children = ( - 59915589514583DB857FDF711C887880 /* RCTSettingsManager.h */, - 6D9CB1B65131C59EBB47BC1727E119BE /* RCTSettingsPlugins.h */, + CA06FCA140EB7C5019462186D832A831 /* EXAudioRecordingPermissionRequester.h */, + 4ED05566417600D4BA5679AC83552852 /* EXAudioRecordingPermissionRequester.m */, + 43665162C9FC3B548258749A74D09AB8 /* EXAudioSessionManager.h */, + 85AE0C3D78916FBB5BB5BCC954AAAA6E /* EXAudioSessionManager.m */, + AD09A55A54F460A5D3FF0E8894246C47 /* EXAV.h */, + 1B8781B3DB75EA93F6DDD2118C4DF36E /* EXAV.m */, + 5AB3E45BA424F5C874A1658BD2FF6C55 /* EXAVObject.h */, + 8575F196D55B1B8579B40A6C7B60029E /* EXAVPlayerData.h */, + E82FE94D3F4E5B342B904E3B7D181021 /* EXAVPlayerData.m */, + 44CA0202AC84193F290C562E5E5D49C6 /* Pod */, + 65CE47ABA2305F271B8E1E1BC3B6A4AE /* Support Files */, + DBE64838342C47578F335CFB6770190F /* Video */, ); - name = RCTSettingsHeaders; + name = EXAV; + path = "../../node_modules/expo-av/ios"; sourceTree = ""; }; - 20AD3A3E10626049E9F941C52C53BC95 /* DevSupport */ = { + 28D08CDEB5619CC1A43F013116E66B93 /* Sentry */ = { isa = PBXGroup; children = ( - 2F8915E6DDB9DB9DC5F4B4D32959B660 /* RCTDevLoadingView.h */, - DF8BCC9C723065E000C2A4D4A913777F /* RCTDevLoadingView.m */, - 76BD0F72902E48C2CFBCD65755A792B4 /* RCTInspectorDevServerHelper.h */, - 1451F1374D41FEC6691A399289ED3015 /* RCTInspectorDevServerHelper.mm */, - 57F565A0716A8A2504C090CBEAD20E1D /* RCTPackagerClient.h */, - 5DB50946D34C0843D5418E4DF571D536 /* RCTPackagerClient.m */, - 43B30801029C061FA6A7CB4004C37E50 /* RCTPackagerConnection.h */, - 07DC53839E3BF5F28191DD0BA3F31A48 /* RCTPackagerConnection.mm */, + CFB9BDBEBCF046AB44C41E65CFB24930 /* BSG_KSCrashSentry.c */, + 6663B1E64C895CFA3B43A47C4FBE9B9D /* BSG_KSCrashSentry.h */, + 88146B4D372AE7F11BF7EACF8BE2DADF /* BSG_KSCrashSentry_CPPException.h */, + 9880EE0D5ABA07FDC55C47F6B699B88D /* BSG_KSCrashSentry_CPPException.mm */, + AA14D360EBA3D7252F32289CDC41F445 /* BSG_KSCrashSentry_MachException.c */, + C689E9F415906E0BAB059042CF6A948D /* BSG_KSCrashSentry_MachException.h */, + 213F9924FFC6514FD80671209A6BF530 /* BSG_KSCrashSentry_NSException.h */, + 25B7949B169E5EECF0CC451DF9753930 /* BSG_KSCrashSentry_NSException.m */, + CA7FD6D34DE6846070D5EC863A88B82F /* BSG_KSCrashSentry_Private.h */, + 921F37724166A71912E427E6B1B092E1 /* BSG_KSCrashSentry_Signal.c */, + 262F4696C44FF01497A42DFF4060D983 /* BSG_KSCrashSentry_Signal.h */, + 94789ADB65A3901F0272A7035F8A12E1 /* BSG_KSCrashSentry_User.c */, + 5D102934F54BC8E0CBADCE74F1F357CA /* BSG_KSCrashSentry_User.h */, ); - name = DevSupport; - path = React/DevSupport; + name = Sentry; + path = Sentry; sourceTree = ""; }; - 20B6E363F68A46E9B0C0A219B0CADAF0 /* Frameworks */ = { + 29EF9A7041985C74D61689EEBDE1FE5C /* Pod */ = { isa = PBXGroup; children = ( - 4085FF73C7C30BADB2FBEF9BAAE48C10 /* libcrypto.a */, - FC4C3DD5B9B22406E01CE136DE483040 /* libssl.a */, + 07F5D5DAE8BD5C1F707F1117557B6298 /* LICENCE */, + CB7525AFF031468F92F1D04391218AAD /* react-native-cameraroll.podspec */, + 87CCFD21C87F8C220DBB8F4AB4C94225 /* README.md */, ); - name = Frameworks; + name = Pod; sourceTree = ""; }; - 2138BF45623BF6967E8205CC7B58011B /* demux */ = { + 2AADB825145AA6959A9527A360236918 /* DevSupport */ = { isa = PBXGroup; children = ( - BF7B9D2F15D064D840EC4BF5CE4EBAF2 /* anim_decode.c */, - D64899346B43035B56313D189AA3D2C4 /* demux.c */, - A284C22076F6E210152F6954E6818433 /* demux.h */, + D464E9DAC2B1BE6EDB9F6AD3AF16B765 /* RCTDevLoadingView.h */, + 1AA1BD15854D21A55E4DEDD9F5802904 /* RCTDevLoadingView.m */, + 3C91FD8A4DE74D4BA113984DFE51F805 /* RCTInspectorDevServerHelper.h */, + F88FC068C80A53582D786FB470E5582C /* RCTInspectorDevServerHelper.mm */, + 94F9460629B6AE632D98BDE0F629BD2A /* RCTPackagerClient.h */, + D4F3018A89BBEE04902A5387DA3DEEF0 /* RCTPackagerClient.m */, + 772FB595D1116D8618377349EAF9C96A /* RCTPackagerConnection.h */, + 452265926F4F1AD477B398E738D0A447 /* RCTPackagerConnection.mm */, ); - name = demux; + name = DevSupport; + path = React/DevSupport; sourceTree = ""; }; - 22314EB82BE621D6A0560322443E78F4 /* Support Files */ = { + 2ACFA4860EE018543E0B12294151583F /* UIUtils */ = { isa = PBXGroup; children = ( - FFA4CFB3B95B6F4C70B41392CFAAC74F /* React-jsi.xcconfig */, - 9F2B174BD2BDAEB745C526A9F0ABB786 /* React-jsi-dummy.m */, - 5B413BE8228FDBB4B0C6C7C9FB61A6A3 /* React-jsi-prefix.pch */, + CDA3753DFF66488AAD1AC3E1EFD9C919 /* RCTUIUtils.h */, + 62C5B9CD1A5834E16C15482BC493ED6E /* RCTUIUtils.m */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsi"; + name = UIUtils; + path = React/UIUtils; sourceTree = ""; }; - 22458E3533B6FDCA162FFA48B7F6F32F /* Support Files */ = { + 2AF9C4CACF40EB1A64B8A62115A7DBAC /* React-RCTText */ = { isa = PBXGroup; children = ( - C952F4B3BEB498CF6B44D8F8D53D258E /* YogaKit.modulemap */, - 76068A15B2460ADC84FF361BB4197837 /* YogaKit.xcconfig */, - 566BDC3CA9E55B141F1F03BA37242126 /* YogaKit-dummy.m */, - EF1AEC39CE3A96AE1A9C6DB8A78EE20C /* YogaKit-prefix.pch */, - 953453F81B33399A8EEA663B3ACE3F22 /* YogaKit-umbrella.h */, + 9F392271B33493EDB35C410C2AF6734D /* RCTConvert+Text.m */, + 20CB9EC86D31D9D66A76B70A1354F20E /* RCTTextAttributes.m */, + 866AB7D09B179A994F2D0855450B577D /* BaseText */, + 4F0F6AEC9A64609B3A706631636060C1 /* Pod */, + FC4153CB15D7A86ADDEF44C6A1A05F34 /* RawText */, + 2DD9803C920EA232486616E599B9B8C6 /* Support Files */, + F54E8781846C1D88A554DCCB595B0212 /* Text */, + 105C06F6A55732CDD12B027425F32B0D /* TextInput */, + 726BBB1304EF42720D1D39259A727A11 /* VirtualText */, ); - name = "Support Files"; - path = "../Target Support Files/YogaKit"; + name = "React-RCTText"; + path = "../../node_modules/react-native/Libraries/Text"; sourceTree = ""; }; - 2265F1EC2DB7F5B03AD12E77CEB5040C /* Support Files */ = { + 2BE503C8F6E1FA387970D5C4C08D7B76 /* Support Files */ = { isa = PBXGroup; children = ( - 501D5082B219424D8DF417D923AA4F7E /* React-RCTNetwork.xcconfig */, - AF5DA9FACDF827C7904FE02231E8A02B /* React-RCTNetwork-dummy.m */, - D5079C9E0AA2034E6A2CB45E93F262F1 /* React-RCTNetwork-prefix.pch */, + 467D30BBBCF05A268C5376F1447E6934 /* react-native-orientation-locker.xcconfig */, + 15428E6F440CA7CD6BEBAC2B2FC8A800 /* react-native-orientation-locker-dummy.m */, + 12658C7EEF8DBCEDDC8E54646AA0D57A /* react-native-orientation-locker-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; + path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; sourceTree = ""; }; - 22830D6A13F0887AA0839CAA32F3BC1D /* Support Files */ = { + 2C86BBD984A12AF54883CF9062839F81 /* Fabric */ = { isa = PBXGroup; children = ( - 47BE8606ADAA46F17D3BCB260DFDB92E /* FirebaseCoreDiagnosticsInterop.xcconfig */, + E25DA40E0026AE4DD2820972900080B6 /* FABAttributes.h */, + 4164EE003AFF094D680F7CE313560262 /* Fabric.h */, + A186D62CD75B4C2386BF882528028363 /* Frameworks */, + 000C8A8F84A1F6DF5E0EA5ECF4344343 /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/FirebaseCoreDiagnosticsInterop"; + name = Fabric; + path = Fabric; sourceTree = ""; }; - 22AAAF4D4F024DE387AA41C4A73F2132 /* Pod */ = { + 2C90162C456ADC7B91C535861AD2059B /* BugsnagReactNative */ = { isa = PBXGroup; children = ( - 65E4440EE31CB8F998754FC55591F20A /* LICENSE */, - 73F37B8C8F67C39C1519D66CD4296655 /* react-native-background-timer.podspec */, - 0FCD10A58261C38003864DF3394A45BE /* README.md */, + FF732703275D3A56A4C17FF1BA210E11 /* BugsnagReactNative.h */, + 3D6EA589126F31CF5869987B619AB175 /* BugsnagReactNative.m */, + C53B2B8FDADEC37CE2E6D9B157A5E7BE /* Core */, + 400947FBA1463DCAE2D64F44D9859217 /* Pod */, + 3171ED29DE893AD5D268888318BA0BC2 /* Support Files */, + 35F1BAF4C5B30F17FEA8F918131C93D9 /* vendor */, ); - name = Pod; + name = BugsnagReactNative; + path = "../../node_modules/bugsnag-react-native"; sourceTree = ""; }; - 22B3BA08AA94C30605C63FC5C709D235 /* Pod */ = { + 2D38E00C1EF56923C80D8DA2025990B9 /* KSCrash */ = { isa = PBXGroup; children = ( - C56C512382ED788D26B3A5277C050567 /* UMConstantsInterface.podspec */, + B96E396D639A6F9319D5B77308C036FD /* Source */, ); - name = Pod; + name = KSCrash; + path = KSCrash; sourceTree = ""; }; - 255A1F3846BB901BB4CF02DFD6D01923 /* Resources */ = { + 2D75F82F2EDA1C3C23B5F6CE65B79AF3 /* RCTCustomInputController */ = { isa = PBXGroup; children = ( - 94684772FF13857F48CC5125F84A19C7 /* AntDesign.ttf */, - DC7EC9BBE139A8CAD5680DA48B1B9B0F /* Entypo.ttf */, - 543203FB8D4208545E517A49207FDB26 /* EvilIcons.ttf */, - DB67FF762D01F761C5B6571BCF2BD58F /* Feather.ttf */, - 5CC0F74BC3951272C9AE7D4668E950E9 /* FontAwesome.ttf */, - A3832A17FF69F44CF1382D0F01546B2D /* FontAwesome5_Brands.ttf */, - 40BA53CDF13B063CB38159B8F1FFF71A /* FontAwesome5_Regular.ttf */, - 1B215F5106A34C76BD7AA30B94C89F28 /* FontAwesome5_Solid.ttf */, - C51D3687AEB894232CDC9593833ECEE9 /* Fontisto.ttf */, - 5B9E1711916938B4550078E5CBE3AA79 /* Foundation.ttf */, - 209951A4C6E443A5A3BA0CE4DAB14DEF /* Ionicons.ttf */, - FA9DC7CE04AE3EFC8603996E0BB0F3EF /* MaterialCommunityIcons.ttf */, - F547C382874BFEFDAF914E0B2965FB61 /* MaterialIcons.ttf */, - 3679A9C3EAA7E2A632E8B6689309FC57 /* Octicons.ttf */, - D5272E752DF667DB7AD74D945976AD07 /* SimpleLineIcons.ttf */, - 678513A72FA0C2B0C590EF9F5FD5995E /* Zocial.ttf */, + 667A1783ED518ACBF89630EC6FBC8C8A /* RCTCustomInputController.h */, + EFE19630C364FB0847B192FDB12D4585 /* RCTCustomInputController.m */, + 1518B6A8A9EE142CED75CCB82B5FE847 /* RCTCustomKeyboardViewController.h */, + BC18AE76FC996D1CA1994A9A06890ACC /* RCTCustomKeyboardViewController.m */, ); - name = Resources; + name = RCTCustomInputController; + path = lib/ios/RCTCustomInputController; sourceTree = ""; }; - 265660F6808E1240BEE0FCF1DA4810AE /* Support Files */ = { + 2DD9803C920EA232486616E599B9B8C6 /* Support Files */ = { isa = PBXGroup; children = ( - C15412FB555EC82A84E5662C521F5A69 /* UMFileSystemInterface.xcconfig */, + 53C080B81E4DA7601E54FFD20BE475BA /* React-RCTText.xcconfig */, + 7D9DDBD2B29F51A46B90F55399066BE7 /* React-RCTText-dummy.m */, + 54417371CD77B107C35D9C690082A444 /* React-RCTText-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; + path = "../../../../ios/Pods/Target Support Files/React-RCTText"; sourceTree = ""; }; - 26C9B498EF4A2B893A6E333055FC80F7 /* Pod */ = { + 2DE716F93E1C098199FABF0438AEF7DF /* callinvoker */ = { isa = PBXGroup; children = ( - 844FE1C9E4BD929D0603E29C1E01DC55 /* UMFontInterface.podspec */, + AA7994A17C6070F92CE1B28947D5D514 /* BridgeJSCallInvoker.cpp */, + 7AC79F74EE6FEC7A4FA6387C5214143D /* BridgeJSCallInvoker.h */, + 8FCE97B87F2004AF515FCBD601F5AECB /* CallInvoker.h */, + 984D6282A0D257F57775F7BE9D8C2AA2 /* MessageQueueThreadCallInvoker.cpp */, + 8880B3A541ECB9C5780F8A64D1B41C18 /* MessageQueueThreadCallInvoker.h */, ); - name = Pod; + name = callinvoker; sourceTree = ""; }; - 26FF7DA43D891D3FE2D571844619D10F /* Support Files */ = { + 2E75024CFFBE40E959EB83327BCBDD70 /* EXWebBrowser */ = { isa = PBXGroup; children = ( - 2D1F8A63863074A0FED82448954C3904 /* UMTaskManagerInterface.xcconfig */, + E1FF5B4A8425AF847AFA2F0B34FB6D7C /* EXWebBrowser.h */, + 9520435F0879CCF621CD7A83573BE808 /* EXWebBrowser.m */, + 3FF6881F22D0A316FEF35F7F0AF7ABD6 /* Pod */, + F2E7107A2E2DCC50637DA4905483D897 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; + name = EXWebBrowser; + path = "../../node_modules/expo-web-browser/ios"; sourceTree = ""; }; - 27969F211D2B111C527161B1D1A8B553 /* Support Files */ = { + 2E954155DD6426978F8F374F97AB1F34 /* Support Files */ = { isa = PBXGroup; children = ( - 0DED49DBE81C96433EAEA2DD88F579E2 /* RNFirebase.xcconfig */, - 1326137DEEA71E097D28136A3A4EC4A3 /* RNFirebase-dummy.m */, - C81302D8251A05E0C350052F06CE73CD /* RNFirebase-prefix.pch */, + 02E9A3D5B9DAE21C00A3C9E91CA495C7 /* RNRootView.xcconfig */, + EF385987057096D9CA20B53F58C2793A /* RNRootView-dummy.m */, + F2D9D0685FC4C50D2C918DB05892460D /* RNRootView-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFirebase"; + path = "../../ios/Pods/Target Support Files/RNRootView"; sourceTree = ""; }; - 285D0D72E18EC4C84478990CAEDCB68F /* core */ = { + 2EBFB4F1BDE9623922EA9D3965ADE328 /* RNFetchBlob */ = { isa = PBXGroup; children = ( - 6CDC0EB331DB0D4FA5F4673557464E8B /* LongLivedObject.cpp */, - 322C21C553A1DAB04CC9C758267576DC /* LongLivedObject.h */, - 0E46A58A12FC794BA1AE3A482A5DC6DC /* TurboCxxModule.cpp */, - 2A8D197A0AD529686EE251B7CBA051CE /* TurboCxxModule.h */, - 88CC26E86C4581E34F084F45491BF81B /* TurboModule.cpp */, - 12DCA4210F595CEC6392C49D0448A1CB /* TurboModule.h */, - A4A57AAD4F3D69657E8D24CBC1659818 /* TurboModuleBinding.cpp */, - DC4E149D47C8711B5127CE4B75308EF1 /* TurboModuleBinding.h */, - C218912DC56D3A549EA9EFA6336D3CC7 /* TurboModuleUtils.cpp */, - D94A4FC53AED68F8848D4EA0F216B06F /* TurboModuleUtils.h */, - 80CFF7CAB8AAC775CABCE6B263904010 /* platform */, + 690ECC4A894247FA177E6143FA9B4171 /* RNFetchBlob.h */, + F2B1BCD61D2B012F29E20E1A38AEA3B7 /* RNFetchBlob.m */, ); - name = core; + name = RNFetchBlob; + path = ios/RNFetchBlob; sourceTree = ""; }; - 28ECFA63F581207D15118128A10AD38A /* react-native-background-timer */ = { + 2EFE3DFF5ACEEB86FAAFB00314D37E17 /* Pod */ = { isa = PBXGroup; children = ( - 78E119A66BD3B26DE1ED3C51B35208E3 /* RNBackgroundTimer.h */, - C39A5EB4E3CE8AA00EAAAE47434F871E /* RNBackgroundTimer.m */, - 22AAAF4D4F024DE387AA41C4A73F2132 /* Pod */, - B1276E2C97F91445784BC454EF91560D /* Support Files */, + FBC7A978885BF28F2759DC9AB4FE2308 /* LICENSE */, + 540B7131D177D35EEA3A087F3E86EEFC /* ReactNativeKeyboardTrackingView.podspec */, + 601A8FC76CE8C72CC62955FBA0FDC6D2 /* README.md */, ); - name = "react-native-background-timer"; - path = "../../node_modules/react-native-background-timer"; + name = Pod; sourceTree = ""; }; - 29D65B96344FE111D335E84270A96303 /* Nodes */ = { + 2F28D9B482C1113BBD79E79F3C2B8D91 /* Resources */ = { isa = PBXGroup; children = ( - CDCEE67BE04AD6AD8026326D187151A9 /* RCTAdditionAnimatedNode.h */, - 72D348AD963FD80AA19656A4C004FAC7 /* RCTAnimatedNode.h */, - 12569BA1E5FD08B4ED65AE7842806DD3 /* RCTDiffClampAnimatedNode.h */, - D53E39F99E7E0402FABF134698E1B16F /* RCTDivisionAnimatedNode.h */, - 71265F598C7E83D4369BFDDC2E80304E /* RCTInterpolationAnimatedNode.h */, - 1A70291ECEF7C38CC3D4003CC6E27B9B /* RCTModuloAnimatedNode.h */, - C0A7ED31841E9A3740388ABBCE3A723C /* RCTMultiplicationAnimatedNode.h */, - C93543FE01A6C97729A0C5783545D254 /* RCTPropsAnimatedNode.h */, - 0B0F7DAF876312D7B591AE13DEFED38F /* RCTStyleAnimatedNode.h */, - 74AC6DFBD0003601B52F8DE3AF61BA14 /* RCTSubtractionAnimatedNode.h */, - 35690D5F90F8D260BD6751FC9BBF609F /* RCTTrackingAnimatedNode.h */, - AB473145F59E8DC9380B2AB5CC8F00E8 /* RCTTransformAnimatedNode.h */, - E246AF0BBED7036FBE5BB7342F0E2387 /* RCTValueAnimatedNode.h */, + 278D2204B731B6483DAB6E05F60ABE15 /* RSKImageCropperStrings.bundle */, ); - name = Nodes; - path = Libraries/NativeAnimation/Nodes; + name = Resources; sourceTree = ""; }; - 2B30A260514DC94443003EB21801ECB7 /* RNFastImage */ = { + 2FAA053C930E92CF075276CBD145CAB9 /* bugsnag-cocoa */ = { isa = PBXGroup; children = ( - E664162CC3D20649879EE5C9EE42FF99 /* FFFastImageSource.h */, - 8FBD94102E34B2FB6F59A4A6E8F50EBE /* FFFastImageSource.m */, - 9A2E36F623BDC96728EFCD9D1A8DDBCE /* FFFastImageView.h */, - 760DD8DEC20023A36378BBBBF751F203 /* FFFastImageView.m */, - C2D5BD8C0270331BC9B6E938A4466600 /* FFFastImageViewManager.h */, - 247B221CDE93B0F8AF6F2E1DE91C2178 /* FFFastImageViewManager.m */, - 7139D5968A6AC023AF37F861DE93F83D /* RCTConvert+FFFastImage.h */, - 212466682BAE7E9458E3FDD6DEEDE465 /* RCTConvert+FFFastImage.m */, - 51F9154E76B78ABDFAD2BD6798488140 /* Pod */, - 48391A11354E2570728699C1331867D4 /* Support Files */, + 96F7D7BF4C00B281B5DF7FCCCC541324 /* Source */, ); - name = RNFastImage; - path = "../../node_modules/react-native-fast-image"; + name = "bugsnag-cocoa"; + path = "bugsnag-cocoa"; sourceTree = ""; }; - 2B6EF2153EDD204BDF08FD43E79FB355 /* Support Files */ = { + 2FB27108B534604316B538A6C12C55F8 /* Support Files */ = { isa = PBXGroup; children = ( - 927ADF884056F9DE57AB890BF56E39EB /* UMConstantsInterface.xcconfig */, + 8EF35648A59FD5DB6F7ED71EB947B1B8 /* RNGestureHandler.xcconfig */, + 601EC67A5DFBEA9EF5A920BEAB9037A4 /* RNGestureHandler-dummy.m */, + 485C9CB260631FF75DD5F952D9F1A699 /* RNGestureHandler-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; + path = "../../ios/Pods/Target Support Files/RNGestureHandler"; sourceTree = ""; }; - 2C86BBD984A12AF54883CF9062839F81 /* Fabric */ = { + 2FCD3EC4BC30484158F9B94AEEA6779D /* Pod */ = { isa = PBXGroup; children = ( - E25DA40E0026AE4DD2820972900080B6 /* FABAttributes.h */, - 4164EE003AFF094D680F7CE313560262 /* Fabric.h */, - A186D62CD75B4C2386BF882528028363 /* Frameworks */, - 000C8A8F84A1F6DF5E0EA5ECF4344343 /* Support Files */, + 2CB5D8C4469548083FF1CC9B36D0F165 /* FBReactNativeSpec.podspec */, ); - name = Fabric; - path = Fabric; + name = Pod; sourceTree = ""; }; - 2CBB7C149768AB08741FC1B0A588F95A /* Pod */ = { + 2FD8ABE1E8FC03B4988E232ED5831464 /* UMPermissionsInterface */ = { isa = PBXGroup; children = ( - 06588A0773015BE726D926827B8A288C /* EXHaptics.podspec */, + 95CA6E0FA8A1D8CD890DA19C8A9AD226 /* UMPermissionsInterface.h */, + E7597CDCC89E5EFCC048177EBEDB1036 /* UMPermissionsMethodsDelegate.h */, + 5294FB1006D3EC816EB96B3F50A7B860 /* UMPermissionsMethodsDelegate.m */, + FE5E10696BC62AFF4EAF70780A1DB264 /* UMUserNotificationCenterProxyInterface.h */, + D92978074AC1B2FBF89EF2CD64537900 /* Pod */, + 490B70887291105583E0BB37D7C8E086 /* Support Files */, ); - name = Pod; + name = UMPermissionsInterface; + path = "../../node_modules/unimodules-permissions-interface/ios"; sourceTree = ""; }; - 2CC3E63A927121AA4374F37A3A629EBE /* UMCameraInterface */ = { + 30B554291D1CB18F6D2CD8524F62740D /* UMImageLoaderInterface */ = { isa = PBXGroup; children = ( - ADDE125601B8457E39EAE7E6A7D98303 /* UMCameraInterface.h */, - 19E947B31AF75232AB38BD22A6B87943 /* Pod */, - 998B5490D353010997DC77BBCBD773F1 /* Support Files */, + 3823BD387F680D5BE6028A690B106A45 /* UMImageLoaderInterface.h */, + E19EE904CE11E3C92EDCFF2032AD6D7C /* Pod */, + 1298701BA6C3A542C1A225EF45CB9C7E /* Support Files */, ); - name = UMCameraInterface; - path = "../../node_modules/unimodules-camera-interface/ios"; + name = UMImageLoaderInterface; + path = "../../node_modules/unimodules-image-loader-interface/ios"; sourceTree = ""; }; - 2D48D59DCC2B5AFF40B6BDF35013EDFB /* Support Files */ = { + 30B8250F1EAFF39F00281582D3705A7A /* Filters */ = { isa = PBXGroup; children = ( - 0C6442FC28EE73A623CF965B80E181F0 /* EXAV.xcconfig */, - 19CB053CF23AFCD3BA264178A105A854 /* EXAV-dummy.m */, - 61A712C2DBA1BA55EA32DD1DE3CECA40 /* EXAV-prefix.pch */, + 05B62DE0CB2F421B3D6B26554A5EB4D0 /* BSG_KSCrashReportFilter.h */, + 5C7524862A968BA3C7A17FA5522756C5 /* BSG_KSCrashReportFilterCompletion.h */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAV"; + name = Filters; + path = Filters; sourceTree = ""; }; - 2D4B7CB9373E72892986C0D392C3826E /* Support Files */ = { + 311B67522A8CFA12E37565791EC8F472 /* Support Files */ = { isa = PBXGroup; children = ( - C8B6B90EB6C36BC126CCCD3BC87DDE8F /* React.xcconfig */, + 1C5743DDDD74488674FE6DE4BC6E8259 /* React-RCTBlob.xcconfig */, + F43C7D5C11048F34C6597BD2D94D21A7 /* React-RCTBlob-dummy.m */, + A7D66534F7C21899BB0ABEBB274A4060 /* React-RCTBlob-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React"; + path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; sourceTree = ""; }; - 2D72F126EFB0E398EAA00DFDD5FA3D53 /* analytics */ = { - isa = PBXGroup; - children = ( - CFF6B84DE629461467249913044B6E0C /* RNFirebaseAnalytics.h */, - 789BC1B4A708A2D8B704E3B951491BFC /* RNFirebaseAnalytics.m */, + 314980B6905F26E5AA5D1B8ED4956305 /* QBImagePickerController */ = { + isa = PBXGroup; + children = ( + F788F3F64412D163EC0A7F7DABF475F0 /* QBAlbumCell.h */, + 5581FFA6AF5B2D8C5F417E2A4E714CB2 /* QBAlbumCell.m */, + 3348F971DB1E990B5590E8EBA0E31AE5 /* QBAlbumsViewController.h */, + 6F8990EE6E59AABBD982F7605E36C990 /* QBAlbumsViewController.m */, + 4E23C1C01B395E92820B7E2797F5A561 /* QBAssetCell.h */, + F7E47EE93C4111153FBED63AE964B77B /* QBAssetCell.m */, + 82A1D8BAF41D806910DB11CA339019BD /* QBAssetsViewController.h */, + 866070F3962D06477C66B8CD83382BC4 /* QBAssetsViewController.m */, + 5EA48C1651EB9704917E0BD7AE78822D /* QBCheckmarkView.h */, + 7062D721B108477DB0A633CC5930A917 /* QBCheckmarkView.m */, + 7CD43B10A20CDA72067E350C4FF8854C /* QBImagePickerController.h */, + 195A99A9AAE66B3B55102C6367345DEF /* QBImagePickerController.m */, + AE3939FF02321F51D68A78D9F3D63612 /* QBSlomoIconView.h */, + 4E64AA61F9FB110E17E1BF13DF20F1A0 /* QBSlomoIconView.m */, + D605E4032C2B8C36BFF8913353987F7C /* QBVideoIconView.h */, + 031A2401B5286EEB902272E09DECB094 /* QBVideoIconView.m */, + 3722D48DE6A5E5A23A9C0ECDCB093EEA /* QBVideoIndicatorView.h */, + A54474AD5A01A43B6E5C7B3E70AA79D3 /* QBVideoIndicatorView.m */, + D4D73A1E640143629480885D5211021F /* Resources */, ); - name = analytics; - path = RNFirebase/analytics; + name = QBImagePickerController; sourceTree = ""; }; - 2EEAC6FA5E7A833ADCA9C6F96B3E01B4 /* Support Files */ = { + 3171ED29DE893AD5D268888318BA0BC2 /* Support Files */ = { isa = PBXGroup; children = ( - 324340B7C0A3CBAF308887B4453E9BD4 /* React-RCTActionSheet.xcconfig */, + F930B0140651E1470E092D5C593DB665 /* BugsnagReactNative.xcconfig */, + 957D51D1D3CEA160E7092767884C588D /* BugsnagReactNative-dummy.m */, + E980C8736A67A1A15C41A61B0F99BF0D /* BugsnagReactNative-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; + path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; sourceTree = ""; }; - 2F28D9B482C1113BBD79E79F3C2B8D91 /* Resources */ = { - isa = PBXGroup; - children = ( - 278D2204B731B6483DAB6E05F60ABE15 /* RSKImageCropperStrings.bundle */, - ); - name = Resources; - sourceTree = ""; - }; - 2FA0C6D639432EE8DFAC57838149B797 /* admob */ = { - isa = PBXGroup; - children = ( - 123BCBAAC647F3A369933558170BD9F4 /* BannerComponent.h */, - 055EA80443EBCEC8F7C23CE5DC385C56 /* BannerComponent.m */, - 57FB57EB684658B26EF51C068CED7380 /* NativeExpressComponent.h */, - 0F137720240DA2F405C2B3E33C02EAB7 /* NativeExpressComponent.m */, - 99B4FA6C21FE7D85DD4A2A26A3536958 /* RNFirebaseAdMob.h */, - 18599074AEE17E3DE57927E34123B8E3 /* RNFirebaseAdMob.m */, - 582B4B4EF40968FFBF3C53E67990F8E8 /* RNFirebaseAdMobBannerManager.h */, - D5C0679C8FA015D5C911901384EE4D6A /* RNFirebaseAdMobBannerManager.m */, - 89B547B5B2FB6D8A1B67CEF47329FA12 /* RNFirebaseAdMobInterstitial.h */, - 4335EF4928C61574AB47E7CD8B7BFA1B /* RNFirebaseAdMobInterstitial.m */, - 6FFBC11ADF2C10BD3FF998B81FA7DDE3 /* RNFirebaseAdMobNativeExpressManager.h */, - 70061EAFA4A32A9FB6554029E9BBFBE1 /* RNFirebaseAdMobNativeExpressManager.m */, - 8B21BA4FAD083D3D105A46A5E31BD32F /* RNFirebaseAdMobRewardedVideo.h */, - 80888C4D60C85D341F05D74889DFFA4C /* RNFirebaseAdMobRewardedVideo.m */, - ); - name = admob; - path = RNFirebase/admob; - sourceTree = ""; - }; - 309B82EB73FA8CFCD44734B27D387B19 /* FBReactNativeSpec */ = { - isa = PBXGroup; - children = ( - C561B80406BEB168381F3AF9E2A3004C /* FBReactNativeSpec.h */, - EFE0653D22BE12EBA90C1FC022D00913 /* FBReactNativeSpec-generated.mm */, - 906A2B62F8F15AB2E4172B4607522D31 /* Pod */, - F8B6BB50879B0153948AC66049F7633B /* Support Files */, - ); - name = FBReactNativeSpec; - path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; - sourceTree = ""; - }; - 30DCF6BC88C4D589D97C794D008ECB13 /* Support Files */ = { - isa = PBXGroup; - children = ( - 13A209B7AC8202BCCBD6658FE2ADFC80 /* RNGestureHandler.xcconfig */, - 94190577BAEEC37307893DA822D0BAD7 /* RNGestureHandler-dummy.m */, - F9B01DF099050119316618AFBCCBFD9D /* RNGestureHandler-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNGestureHandler"; - sourceTree = ""; - }; - 31164C3A0492A78A33EBC23F1EDCD567 /* Support Files */ = { - isa = PBXGroup; - children = ( - 71CBCA8FC53D1D188B46BB564F697E9D /* react-native-appearance.xcconfig */, - 2795DA0AB50B806E3127BDEB66A5A180 /* react-native-appearance-dummy.m */, - A36D18CC47B5E1224A000592EDBD934A /* react-native-appearance-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-appearance"; - sourceTree = ""; - }; - 31BD69B02DD95AE19BDEF00CBF3B2110 /* converters */ = { - isa = PBXGroup; - children = ( - DE419D5973B7551B6077FD66A45A82D3 /* RCTConvert+UIBackgroundFetchResult.h */, - 46043EA22750F5C014FAC7118BBA397B /* RCTConvert+UIBackgroundFetchResult.m */, - ); - name = converters; - path = RNFirebase/converters; - sourceTree = ""; - }; - 320683C3DAEA8CE3EA807C84CD084441 /* webp */ = { + 320683C3DAEA8CE3EA807C84CD084441 /* webp */ = { isa = PBXGroup; children = ( 44919622BD454671DB4D66170BABA29F /* alpha_dec.c */, @@ -11328,48 +11285,29 @@ name = webp; sourceTree = ""; }; - 322B20C7021CF21E72CD06031AEC9202 /* Support Files */ = { - isa = PBXGroup; - children = ( - 102B618FBDF9A29644423919A343E83C /* KeyCommands.xcconfig */, - 890605CD3E314EC9B9611BEDAD9196E0 /* KeyCommands-dummy.m */, - D2147363D7F325A2A17D40441CF6D364 /* KeyCommands-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/KeyCommands"; - sourceTree = ""; - }; - 329773985A834B34AF3BD1565758D7C3 /* Support Files */ = { + 322CE1567E87B4E3FFC5E3DB65E189C1 /* Support Files */ = { isa = PBXGroup; children = ( - 33296D02D55691A0EB008324A67ED97C /* React-RCTBlob.xcconfig */, - 2DED67D16CA9A33AD31C49901B1634BE /* React-RCTBlob-dummy.m */, - 1A54C0ABD6B40C4EB6FC64D55B96F6F9 /* React-RCTBlob-prefix.pch */, + 78FA3E580A83E7B3822370ACC3E1854F /* RNDateTimePicker.xcconfig */, + 67FAF651E9D2D60F38774C6DDE7348A7 /* RNDateTimePicker-dummy.m */, + A5900BBACDCD80BE8A37E3943C76E8C0 /* RNDateTimePicker-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; + path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; sourceTree = ""; }; - 32BFCAA2A7B1F59DD11547D97BC1BDF6 /* Services */ = { + 32D1C5B4AD249088DFBB235D50AE5BBA /* Pod */ = { isa = PBXGroup; children = ( - 9D9953979307451128D4E556D376430A /* UMReactFontManager.h */, - C838B404B5EE29521B38A7BF640B0404 /* UMReactFontManager.m */, - F775CA009736DE4DD87CF5B45C553E53 /* UMReactLogHandler.h */, - 1DCB116A084B6610053249AAB840B959 /* UMReactLogHandler.m */, - 286EDA02ED5D09F9992ABE65ABD78CA8 /* UMReactNativeAdapter.h */, - 94AB3EA544ADE14FA2198F7AC7905656 /* UMReactNativeAdapter.m */, - BDFCA872F8F308FFFFC0DDA2B70D7B88 /* UMReactNativeEventEmitter.h */, - 3A6C91F2959D078E7D6060F10431C3E5 /* UMReactNativeEventEmitter.m */, + D330AEEA02CF16F617FC1B0D505B20CB /* UMReactNativeAdapter.podspec */, ); - name = Services; - path = UMReactNativeAdapter/Services; + name = Pod; sourceTree = ""; }; - 32FE41D4F8F3D32878FF954773B9BDA3 /* Pod */ = { + 338AEA5F913069326626CF5A3F294157 /* Pod */ = { isa = PBXGroup; children = ( - 08E8ABF2AA68CCA32828468841E0E2C9 /* React-RCTAnimation.podspec */, + E5BE70CDD066B568037BBBAB9F9E0088 /* UMFileSystemInterface.podspec */, ); name = Pod; sourceTree = ""; @@ -11389,15 +11327,38 @@ path = YogaKit; sourceTree = ""; }; - 341A499AADE3A8BFFD90E5EC3690C621 /* Support Files */ = { - isa = PBXGroup; - children = ( - CF252186A9F263ADBC39FF5C79901C91 /* RNBootSplash.xcconfig */, - 8722295C25B3943AF10E50B691C16D55 /* RNBootSplash-dummy.m */, - 8561E97E1C040160AEEA2F3B8518D2EB /* RNBootSplash-prefix.pch */, + 344EED8D4F91F71FC060F8E74282FAEF /* Recording */ = { + isa = PBXGroup; + children = ( + F37A78F5CB57D71EA098A72686187367 /* BSG_KSCrash.h */, + 0E1AB60B55766D82096D15603B9E4252 /* BSG_KSCrash.m */, + BE32E40EE45E7FEEDBABBB1F632D9BA1 /* BSG_KSCrashAdvanced.h */, + 4457043744BE9229F5CA40B3CF45C1EC /* BSG_KSCrashC.c */, + 0B2BBD5293BA80161449C61E170DABEC /* BSG_KSCrashC.h */, + 6B4162732273A002E95916D9053C936B /* BSG_KSCrashContext.h */, + 2B03AB67B2358D17DF310464355CC54F /* BSG_KSCrashDoctor.h */, + 022CBFB6D2A9E47BAB3AAE24023C4341 /* BSG_KSCrashDoctor.m */, + DE047E7DA6E2227F9D776E4BBD0E2455 /* BSG_KSCrashIdentifier.h */, + E29655ABA3D738C02F961D55C57A27DA /* BSG_KSCrashIdentifier.m */, + 4074950A1EF759EDFC43E7FFC54E10C9 /* BSG_KSCrashReport.c */, + 8F96F4F566619BA087F17E0672BACE93 /* BSG_KSCrashReport.h */, + 770342D181B3A40DFD2166CFC1D20A45 /* BSG_KSCrashReportFields.h */, + F58C31634DED40B665D872550F49F254 /* BSG_KSCrashReportStore.h */, + 62759A446D1F8442C9A5345C330972CF /* BSG_KSCrashReportStore.m */, + C0C524874C6B504FE8846E136839CEE9 /* BSG_KSCrashReportVersion.h */, + 0437717A3CA4E8F2306033621154FB8D /* BSG_KSCrashState.h */, + 60C95598D2EA90865EACF0DDA11E73F5 /* BSG_KSCrashState.m */, + 2DF08470844D08D3FCDD27490BC8F6CB /* BSG_KSCrashType.c */, + 7E5500695845F12EB1C754A2DF682D9F /* BSG_KSCrashType.h */, + DAD33D331055D1CFECFD62DD2D2C5A08 /* BSG_KSSystemCapabilities.h */, + 876C703A1900CBED99237E0C91DC930E /* BSG_KSSystemInfo.h */, + 0073D3E4D887E3A919D638EB781C9C20 /* BSG_KSSystemInfo.m */, + 59014AB8310FE69B8FAC4460318BA7FF /* BSG_KSSystemInfoC.h */, + 28D08CDEB5619CC1A43F013116E66B93 /* Sentry */, + AA061302CB9A08F17D89A44294756729 /* Tools */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNBootSplash"; + name = Recording; + path = Recording; sourceTree = ""; }; 34717BD8C6D513A5E33BDB8B1352D7DB /* Core */ = { @@ -11559,15 +11520,54 @@ path = FirebaseCoreDiagnostics; sourceTree = ""; }; - 3524D57F853B742453001279A377022C /* Support Files */ = { + 34D5A3A87DF1BE5040E7A34C392DB605 /* Pod */ = { isa = PBXGroup; children = ( - 7DD272DCA947023FE82762683D2897FA /* React-CoreModules.xcconfig */, - A6D0908A5C598184049B728C746E1834 /* React-CoreModules-dummy.m */, - 234D7174B898D7155E4CB08F88C5F96F /* React-CoreModules-prefix.pch */, + AC9BA16F095F8C6C7F5547BF170F4DE5 /* React.podspec */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; + name = Pod; + sourceTree = ""; + }; + 34DEB3A5B8477414B14C2E1A1A99481B /* SafeAreaView */ = { + isa = PBXGroup; + children = ( + 5E833EB9FF7A7EEDFD562CC1AD3F091B /* RCTSafeAreaShadowView.h */, + 2D41ED878A5CB15D1F40CFFB4D90520D /* RCTSafeAreaShadowView.m */, + DE2B13FD4F4DE3C9705E95D588295E09 /* RCTSafeAreaView.h */, + BC4FEBDB08E7EDD26604133A4237186E /* RCTSafeAreaView.m */, + 5287B52A2E9759F609606CF11B2ABAB5 /* RCTSafeAreaViewLocalData.h */, + 412FCE5B237E1D17DF34BCA16B90BC36 /* RCTSafeAreaViewLocalData.m */, + 74EFF811C1FB271E3414A12DD20A63E7 /* RCTSafeAreaViewManager.h */, + 2C65CED781EB4FC243BC413608DAD050 /* RCTSafeAreaViewManager.m */, + ); + name = SafeAreaView; + path = SafeAreaView; + sourceTree = ""; + }; + 34F48CE1C7A6227353A6815A386598F1 /* UMReactNativeAdapter */ = { + isa = PBXGroup; + children = ( + 246324D5D9C5B71C4CF2D751AD2779DB /* UMBridgeModule.h */, + 32D1C5B4AD249088DFBB235D50AE5BBA /* Pod */, + B2D26D937E97178A8707AC020037D3A2 /* Services */, + 65802E1BEB2E0B1AC95412F3A30FE632 /* Support Files */, + 0B62C8E7EC0EB1EC86B1A7EC974EEF34 /* UMModuleRegistryAdapter */, + CAC9DFF567E13D5B028CD575754D9C70 /* UMNativeModulesProxy */, + 94CFA91120BE84EDD6CEAD81AE046C90 /* UMViewManagerAdapter */, + ); + name = UMReactNativeAdapter; + path = "../../node_modules/@unimodules/react-native-adapter/ios"; + sourceTree = ""; + }; + 3549719E4A8871C1D0FEEC30EEC1816B /* UMModuleRegistry */ = { + isa = PBXGroup; + children = ( + 2AD327CED0B16E70BBFAC1F8C1CB8E1B /* UMModuleRegistry.h */, + AD14CAAFE08580EC3209B92CEE3C4C5A /* UMModuleRegistry.m */, + 7956E2A86C2C272EA5F2E7CAFD7995F8 /* UMModuleRegistryDelegate.h */, + ); + name = UMModuleRegistry; + path = UMCore/UMModuleRegistry; sourceTree = ""; }; 356FE283A47818A52C111E7897FDEE23 /* Support Files */ = { @@ -11581,60 +11581,63 @@ path = "../Target Support Files/Flipper-DoubleConversion"; sourceTree = ""; }; - 3600A6665F640C5CAE3E2DF5119F9F90 /* EXKeepAwake */ = { + 357DC58CA49630C11F0E5902B6BFFDB8 /* react-native-webview */ = { isa = PBXGroup; children = ( - 2B118C388E08FB135AF5C4AF3FBFB753 /* EXKeepAwake.h */, - 4369D81D63471C3982BABEBFC22901CD /* EXKeepAwake.m */, - 7E8C44961FBF3FEDE139B7EBED39395A /* Pod */, - 6971FF86BE33A4F936AC7A2A53EB6692 /* Support Files */, + 068F344C873A22E6EEC3E98A80E8F90A /* RNCWebView.h */, + 96DFC1D9065E01034B4C262FAD966984 /* RNCWebView.m */, + 44C9DA7ACFA6487EF1D0040C2BBFA065 /* RNCWebViewManager.h */, + 2694BBE57D0FD53F26257B56F7E5F829 /* RNCWebViewManager.m */, + E8987BAB3A8B021656E0C28FDDFD36A0 /* RNCWKProcessPoolManager.h */, + 3E88C1639E456C9CF45039744B34B73A /* RNCWKProcessPoolManager.m */, + B1E411DBDA459D1E0C1B0CD8BCDFBED5 /* Pod */, + E6EF278232CB58AF5D7AAE1131DFDC3D /* Support Files */, ); - name = EXKeepAwake; - path = "../../node_modules/expo-keep-awake/ios"; + name = "react-native-webview"; + path = "../../node_modules/react-native-webview"; sourceTree = ""; }; - 361BCACE7E3A9F20E9778EF32CA85F5A /* RNRootView */ = { + 3590378343D51C137670C7EFE2CA0B78 /* Pod */ = { isa = PBXGroup; children = ( - 06EA2F015CC2FF6A8803D9BD622FC9A4 /* RootView.h */, - 78BB8675C806A5A0065A184F76F86922 /* RootView.m */, - D44353245C20E32C6A83E090B12CC8BE /* Pod */, - 9F78B3429D4F86ED2AF0E4190BBE1379 /* Support Files */, + 8D84AF549514F96092AE06107C9897C9 /* LICENSE */, + 27BEECCCA2EC8DA1D908D5BD7CD49E88 /* README.md */, + 5BF6616A9D87037D1FF48647F33355AF /* RNDeviceInfo.podspec */, ); - name = RNRootView; - path = "../../node_modules/rn-root-view"; + name = Pod; sourceTree = ""; }; - 36D532A99F3C31D1FB9C68651F10C4E1 /* JitsiMeetSDK */ = { + 35F1BAF4C5B30F17FEA8F918131C93D9 /* vendor */ = { isa = PBXGroup; children = ( - 724E49F6988B03CBA90AD23C7230D6EF /* Frameworks */, - A4CC2200E01FC18969857656BE433289 /* Support Files */, + 2FAA053C930E92CF075276CBD145CAB9 /* bugsnag-cocoa */, ); - name = JitsiMeetSDK; - path = JitsiMeetSDK; + name = vendor; + path = cocoa/vendor; sourceTree = ""; }; - 36E3519A1410052ACA0736A427B724D9 /* Support Files */ = { + 36521019C5168D1D404D2854F016B08C /* RCTTypeSafety */ = { isa = PBXGroup; children = ( - B0F26A286D2B52BBD17BAFEBA5AEA109 /* EXConstants.xcconfig */, - AE1F33BCFDCCC075AA536A7B3EA7B04F /* EXConstants-dummy.m */, - 798D6C8908BE1EF520B2123C0303E59E /* EXConstants-prefix.pch */, + 94421D05FF42B5520560508983C521D3 /* RCTConvertHelpers.h */, + 7D007E5727603165F11E1E369CC70634 /* RCTConvertHelpers.mm */, + 06132ECBD22BEA72D2C727E65BD65BEA /* RCTTypedModuleConstants.h */, + 0909610ED74EA0B4AD5C14B874B8A921 /* RCTTypedModuleConstants.mm */, + 40727F3A477453381DDB8843AB92A15F /* Pod */, + 0E47C8EC55DD953DEC9449D9295FB5CB /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXConstants"; + name = RCTTypeSafety; + path = "../../node_modules/react-native/Libraries/TypeSafety"; sourceTree = ""; }; - 36E83F542B1A8A57CF96293D1A670CC3 /* UMConstantsInterface */ = { + 36D532A99F3C31D1FB9C68651F10C4E1 /* JitsiMeetSDK */ = { isa = PBXGroup; children = ( - AB67BCAB258D7E051278D3BD076EB93D /* UMConstantsInterface.h */, - 22B3BA08AA94C30605C63FC5C709D235 /* Pod */, - 2B6EF2153EDD204BDF08FD43E79FB355 /* Support Files */, + 724E49F6988B03CBA90AD23C7230D6EF /* Frameworks */, + A4CC2200E01FC18969857656BE433289 /* Support Files */, ); - name = UMConstantsInterface; - path = "../../node_modules/unimodules-constants-interface/ios"; + name = JitsiMeetSDK; + path = JitsiMeetSDK; sourceTree = ""; }; 37084289FDC898852CA0D7BFBE23FE3F /* CoreOnly */ = { @@ -11645,35 +11648,57 @@ name = CoreOnly; sourceTree = ""; }; - 378AA1E05E8AEA45E7D3057D0F0A92BB /* Pod */ = { + 376C2421B844FA1AD8D64D12F5A83CBA /* EXConstants */ = { isa = PBXGroup; children = ( - 2F74A495375CC373ED1DE23E8F032EB5 /* LICENSE */, - 2F00430F4588DE0811AFF23C2FC72E54 /* README.md */, - 242E3459A63C4A83BE36384D867E7011 /* RNDeviceInfo.podspec */, + 4C277F93CB86935DA998421E5E116812 /* EXConstants.h */, + 88F598AA1EFC372C09C827F2A5298EB8 /* EXConstants.m */, + C776D36B4550491D6AA0BA85FE98693B /* EXConstantsService.h */, + D51348ACEC209A2A49A6A0C056AF2208 /* EXConstantsService.m */, + FBCB239CD70A884205685E13069B23B4 /* Pod */, + FF45E9CB760F34F05C2F4CFAF08A2256 /* Support Files */, ); - name = Pod; + name = EXConstants; + path = "../../node_modules/expo-constants/ios"; sourceTree = ""; }; - 37A94581832CEEB5F2786A63636F4FE1 /* react-native-orientation-locker */ = { + 379659CFE8E7781D289B258B7A0FFA2B /* RNVectorIcons */ = { isa = PBXGroup; children = ( - 4A997A07823FE6EF7EDD39E9C0C2A47D /* Orientation.h */, - A621B444001C82637FAD3190B2A8A5F1 /* Orientation.m */, - 773CD5572DD70CAEBFB454A9AF729AE2 /* Pod */, - 8BB80A3AFC541A6587C0EB1DEC3EA261 /* Support Files */, + 5A9DB80364CF202FBE54AC30880A387D /* RNVectorIconsManager.h */, + 8E61BD1682BC89BA8714CEB46FF523A5 /* RNVectorIconsManager.m */, + 11726816C1155A0490184A02753A4FB7 /* Pod */, + 9FB098FEDB281BE02FE0491DDE9EA4C7 /* Resources */, + 7DB9FF371EFAF8693012FE4555EFE5D0 /* Support Files */, ); - name = "react-native-orientation-locker"; - path = "../../node_modules/react-native-orientation-locker"; + name = RNVectorIcons; + path = "../../node_modules/react-native-vector-icons"; sourceTree = ""; }; - 382ACA6805D7C3F9D9D3CA567E473EFF /* DevSupport */ = { + 379C5A9097189B2D84A70FACF5C806C4 /* Pod */ = { isa = PBXGroup; children = ( - 20AD3A3E10626049E9F941C52C53BC95 /* DevSupport */, - 0EA584F9E36175DA047E8C69DE8C4DBB /* Inspector */, + 44C271289443856467C4CF8689CF7371 /* LICENSE */, + 9104496C66FAE947936FDC76B082FE29 /* react-native-background-timer.podspec */, + 92A23A56B74B0056DB2B33EB4A60E902 /* README.md */, ); - name = DevSupport; + name = Pod; + sourceTree = ""; + }; + 37DD90D59052E95254FE8D9ADD256AE8 /* ReactNativeKeyboardTrackingView */ = { + isa = PBXGroup; + children = ( + 13D4431D0F08E347ED38DDC4A9144E80 /* KeyboardTrackingViewManager.h */, + 60E65A93CB98B25001A6651D19F6D25D /* KeyboardTrackingViewManager.m */, + 5832AE1D8131530301A4288286DD3176 /* ObservingInputAccessoryView.h */, + B4F36FE51EF529464449400DF1808669 /* ObservingInputAccessoryView.m */, + 5A2CA0802FCE6955DD507300B8328B1F /* UIResponder+FirstResponder.h */, + B2E4A081F15DF5441C9E66AAB59FB0CB /* UIResponder+FirstResponder.m */, + 2EFE3DFF5ACEEB86FAAFB00314D37E17 /* Pod */, + E20737A8B17BF68A8E0C1DABE391678B /* Support Files */, + ); + name = ReactNativeKeyboardTrackingView; + path = "../../node_modules/react-native-keyboard-tracking-view"; sourceTree = ""; }; 3873074B38FFFAAAF5520ED05B62FDBE /* SDWebImageWebPCoder */ = { @@ -11690,162 +11715,189 @@ path = SDWebImageWebPCoder; sourceTree = ""; }; - 398373FEDD58B0002DF4A8922B961C5A /* perf */ = { + 3935ECAEF34A5DCF4F1DF014E2E94558 /* Pod */ = { isa = PBXGroup; children = ( - 1D90EADE13FE1E34BD47BE0C21C5EB80 /* RNFirebasePerformance.h */, - 7E0474ADF523E01E0CB4B9930DD9D438 /* RNFirebasePerformance.m */, + F4437D13FB7E34182EDBABF8928A85FA /* LICENSE */, + BEECDF931317B0C9A020961D7482834E /* README.md */, + CD54A8E47862DC1265F98BD2CAA80231 /* RNReanimated.podspec */, ); - name = perf; - path = RNFirebase/perf; + name = Pod; sourceTree = ""; }; - 3AFDD1353BD4156B528830379A890346 /* Support Files */ = { + 3AFDFF57B51D66CCFAED7F7D11153660 /* Support Files */ = { isa = PBXGroup; children = ( - 1A589265F3297A75FF9C6602E4183895 /* UMSensorsInterface.xcconfig */, + 909B45974AE02EE540314C73386554A1 /* GoogleAppMeasurement.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; + path = "../Target Support Files/GoogleAppMeasurement"; sourceTree = ""; }; - 3AFDFF57B51D66CCFAED7F7D11153660 /* Support Files */ = { + 3C67BF9F74CA97E4EF6EFBED4E4A4D02 /* Support Files */ = { isa = PBXGroup; children = ( - 909B45974AE02EE540314C73386554A1 /* GoogleAppMeasurement.xcconfig */, + 7E30232E1A649C5A30B9B190310D1DD1 /* Firebase.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/GoogleAppMeasurement"; + path = "../Target Support Files/Firebase"; sourceTree = ""; }; - 3B11B0D697F1834D1E564F74DF54916A /* Pod */ = { - isa = PBXGroup; - children = ( - 74E466F3D35DA85D8EFF63F4BA71602A /* React-RCTNetwork.podspec */, + 3E02B4303FF962564442B56085EEAEFA /* Yoga */ = { + isa = PBXGroup; + children = ( + EAB9E1841AAF9AC77E59F6FFBEA1177C /* BitUtils.h */, + 78DD90FE0D96F26C130966311D06593D /* CompactValue.h */, + C913C483F832353449BC7CC52534D81C /* log.cpp */, + 6CDF7845C04C8AF8A4637E4E4D07A17C /* log.h */, + 8C50391E32F1647597BE734AF9F36DD3 /* Utils.cpp */, + C38EBA586D9D97D483BF33FF6214541E /* Utils.h */, + F84239460D5A80372292B67350E2BC8B /* YGConfig.cpp */, + 621222848BBBC14CAC6EA0ED52150978 /* YGConfig.h */, + 7CEDE1E96DC29F3EA70A5FBD2A5B064B /* YGEnums.cpp */, + 664FA1123AA2DC6EA9D0BCD12ADCAB11 /* YGEnums.h */, + 369ADF9B197315DB3178B1EE2554EEEF /* YGFloatOptional.h */, + B98F3145D2BA05F5B984472D1F6A2504 /* YGLayout.cpp */, + E8E9A804A7E0F676469F0B6A13CC9593 /* YGLayout.h */, + 08FC500EA7197F6DF71A9EB77E174884 /* YGMacros.h */, + CD9BBC759FF18CDB2E66AEA651AF7C0D /* YGNode.cpp */, + BEB96F20D5726C0FED96A146722426D9 /* YGNode.h */, + FEDC3047D4C3E65989E6A15D1D0362BA /* YGNodePrint.cpp */, + 40AC2AC3B6A4FC0AB286F040709123FE /* YGNodePrint.h */, + A1F03DD2D365629559DE3DD8C082C020 /* YGStyle.cpp */, + A3C976C0C9E4692B59E23F4569D6001A /* YGStyle.h */, + B00195CD357BD7C5CDCDBF85EC4B812E /* YGValue.cpp */, + 66063AC5E7567C3439D6D450574099E1 /* YGValue.h */, + DCAE2B7CAA8DE69FB38B4C1CC00366F6 /* Yoga.cpp */, + 86A705C8E8CF8619F488FAF56FA0B184 /* Yoga.h */, + 2D78775B7EF9D8518ACABB535901FF01 /* Yoga-internal.h */, + 455CB786702EF1645A99B0989E15C0F6 /* event */, + AD9074ED08BAC5FB9BBA15513F80F23C /* internal */, + 420FD2C7A3C30AB92F7A8D8044E58297 /* Pod */, + EF8F66035229E87C1F5FBD04C46E2C23 /* Support Files */, ); - name = Pod; + name = Yoga; + path = "../../node_modules/react-native/ReactCommon/yoga"; sourceTree = ""; }; - 3B85E8A0293ED4C0ADE3D65D0635F5A6 /* Pod */ = { + 3EDCA2AD2771EF344107B546D8863C31 /* RNScreens */ = { isa = PBXGroup; children = ( - D1730B766977805C9CC5855CFB6EF666 /* LICENSE */, - 8C3100AF91002DD0641DECA9EE6B6AA2 /* README.md */, - F6D854D60016F1B78279D87669AF804D /* RNLocalize.podspec */, + 00FF18650B7A3F163BC7AABF294A2E34 /* RNSScreen.h */, + 86F1C24ED17E1DC0E97426478AB1312E /* RNSScreen.m */, + 496AD1B8FEBB2277DA651398AA927A67 /* RNSScreenContainer.h */, + 9CE805BC8AF7C18A945002879CEEDFE0 /* RNSScreenContainer.m */, + 0C55BF6C3CF5F3C835B6ED8CFF6B8C26 /* RNSScreenStack.h */, + FA12563AB2B66946EC850692C5564453 /* RNSScreenStack.m */, + DA97570F844984C4A3EB9C5094249D1E /* RNSScreenStackHeaderConfig.h */, + 271CE91E6EC0C9097F31B11377FBC7EF /* RNSScreenStackHeaderConfig.m */, + E5CC68FDA0B63AAB29F3C7807629DD54 /* Pod */, + 7CA1A380778956CA329E3DD9756E7AB9 /* Support Files */, ); - name = Pod; + name = RNScreens; + path = "../../node_modules/react-native-screens"; sourceTree = ""; }; - 3B889B9D29E83886500CAAE90738CE5B /* Support Files */ = { + 3F43E0BB61BB01667ED22F7EB537A8B0 /* nanopb */ = { isa = PBXGroup; children = ( - 20258C64C159B7362A628C8082ED1D8A /* ReactNativeART.xcconfig */, - 77AE3AE043D8C08417145BCCF53E4AF7 /* ReactNativeART-dummy.m */, - 6E82A255197AB2A178DF55469A085C92 /* ReactNativeART-prefix.pch */, + 2465EEC076DAD80C81BE4185445B2A9D /* pb.h */, + E421CDD78CFBC69897AB99248C9DE3CC /* pb_common.c */, + EB9AA65A09BAC02C00A55ADCD67D1B98 /* pb_common.h */, + A5711F1C2346B03337D5B19F4C3979E2 /* pb_decode.c */, + 13EF0915712C8F78394138D0B6A2A050 /* pb_decode.h */, + 77FD8DB8FB6FD0282DEB41D410F329CF /* pb_encode.c */, + D3625BCCC0F421D853BC5DA8F0AF5BAF /* pb_encode.h */, + 9E4B57EB405798E7F6F950ED64431D66 /* decode */, + 68E115FF35737531A179FD6EB66F09EB /* encode */, + AB3EBDE4519C9E4109B9BDD8104C2307 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactNativeART"; + name = nanopb; + path = nanopb; sourceTree = ""; }; - 3C67BF9F74CA97E4EF6EFBED4E4A4D02 /* Support Files */ = { + 3F56A50D720557D8A615A6118CA93730 /* Support Files */ = { isa = PBXGroup; children = ( - 7E30232E1A649C5A30B9B190310D1DD1 /* Firebase.xcconfig */, + 7710D2E200011A16F735222C5A3532CE /* react-native-appearance.xcconfig */, + 6FE3082CB01E5CC863E47C230D8D6815 /* react-native-appearance-dummy.m */, + C7F62912D952D1B47E0B930105D261E5 /* react-native-appearance-prefix.pch */, ); name = "Support Files"; - path = "../Target Support Files/Firebase"; + path = "../../ios/Pods/Target Support Files/react-native-appearance"; sourceTree = ""; }; - 3C912B52CABE53D2FD22A1005697134D /* UMFileSystemInterface */ = { + 3FF6881F22D0A316FEF35F7F0AF7ABD6 /* Pod */ = { isa = PBXGroup; children = ( - 1608E844F3A2E64140ADD9FD31C15458 /* UMFilePermissionModuleInterface.h */, - 37E2873581DB11877516F8501B3EABDC /* UMFileSystemInterface.h */, - D7D63AAB97F184EEC62D34A2807FA7A9 /* Pod */, - 265660F6808E1240BEE0FCF1DA4810AE /* Support Files */, + EDB7098BC4121811D264018CE04CB6DF /* EXWebBrowser.podspec */, ); - name = UMFileSystemInterface; - path = "../../node_modules/unimodules-file-system-interface/ios"; + name = Pod; sourceTree = ""; }; - 3DAFC0DFB604B76B028C5C20BAA6AD6D /* Support Files */ = { + 400947FBA1463DCAE2D64F44D9859217 /* Pod */ = { isa = PBXGroup; children = ( - E1F337022FAD323E4E4537DA434CEE80 /* RNCMaskedView.xcconfig */, - DFBFB9EE3E0BC111F644FFD270312695 /* RNCMaskedView-dummy.m */, - D7D01B2F130EF49706E4DDC323B47010 /* RNCMaskedView-prefix.pch */, + A2BA7BB9FDDDEEA91B757EF42419EFF6 /* BugsnagReactNative.podspec */, + 77337A405525FC1E0862F59CE20D2F49 /* LICENSE.txt */, + 5CA91A8378C044CEC5CEAFE37300C81D /* README.md */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNCMaskedView"; + name = Pod; sourceTree = ""; }; - 3E947B14F34A43B7B8AA16F72842375C /* SafeAreaView */ = { + 40727F3A477453381DDB8843AB92A15F /* Pod */ = { isa = PBXGroup; children = ( - FB778FAD940294AABA45B65ABA0C8374 /* RCTSafeAreaShadowView.h */, - 4242A7899DB4A39CA35B05A1C266409E /* RCTSafeAreaShadowView.m */, - 14CC47269B6761A5EA09A8775959799D /* RCTSafeAreaView.h */, - 8F83BAA8354FE1415F44E732F1032CE1 /* RCTSafeAreaView.m */, - 319B47D9A35D9D659C3A3ACCFACDFAAF /* RCTSafeAreaViewLocalData.h */, - 0A0BD1EDF40A187E8200F57B14DACE0D /* RCTSafeAreaViewLocalData.m */, - 8C910CC24C086E197750941C95262852 /* RCTSafeAreaViewManager.h */, - 83433962F347CF9964944E8ECF30B5FC /* RCTSafeAreaViewManager.m */, + 0CC931E3C2DDD8D38DF0A5619436C137 /* RCTTypeSafety.podspec */, ); - name = SafeAreaView; - path = SafeAreaView; + name = Pod; sourceTree = ""; }; - 3EC2277730C8EAF00187100039934BC3 /* Support Files */ = { + 4143E198B7EDF2444AC135745C73D315 /* Profiler */ = { isa = PBXGroup; children = ( - 25CFED65ACBDF5664F0F70F8F7FBDC06 /* ReactNativeKeyboardInput.xcconfig */, - CA90EA4E58E7529F8578C7076B74E136 /* ReactNativeKeyboardInput-dummy.m */, - 366B857DB460F6EA175748F3CB9E520B /* ReactNativeKeyboardInput-prefix.pch */, + C711D2E1163EF0022FF8D0A3E51BC1D2 /* RCTMacros.h */, + DF062F0947A341275A25E7705736DF21 /* RCTProfile.h */, + 61BEE51AE3CAC5006678B55C26A7476D /* RCTProfile.m */, + 41D15151FC10125BFAAF9639B1E786E8 /* RCTProfileTrampoline-arm.S */, + 5AD338F2C06887E2F1C96561BAE8D24C /* RCTProfileTrampoline-arm64.S */, + 3CE15148AE76E3ECA964846475CEC007 /* RCTProfileTrampoline-i386.S */, + 97500C0903A8ED5A6554A1D5EBE21E91 /* RCTProfileTrampoline-x86_64.S */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardInput"; + name = Profiler; + path = React/Profiler; sourceTree = ""; }; - 3F0CE042EFD03DE40C11A3FE11B306CE /* LNInterpolation */ = { + 41705B7DEAD815B5168B49917C726E01 /* fabric */ = { isa = PBXGroup; children = ( - BCC846BEA11D8CD633342B9E54C48FAF /* Color+Interpolation.h */, - B99C92243C54BCFBD07F15E26C67CFBE /* Color+Interpolation.m */, - 8275006D7171489B1B0923F4BB8DBE4F /* LNAnimator.h */, - A815042718BB3946437B56DA39AB42D0 /* LNAnimator.m */, - 3F3EABA8585CA3821A70440DE9644798 /* LNInterpolable.h */, - C50B1B626E2C3ACAB2EB1703D353DD47 /* LNInterpolable.m */, - FF346B1F539C0033DC89A3628BB4EB56 /* LNInterpolation.h */, - EDA6323AE8935DC7449DD61F1AFA19DC /* NSValue+Interpolation.h */, + D1BFA282A92A2743BCD5C0676FEC5145 /* crashlytics */, ); - name = LNInterpolation; - path = lib/ios/LNInterpolation; + name = fabric; + path = RNFirebase/fabric; sourceTree = ""; }; - 3F43E0BB61BB01667ED22F7EB537A8B0 /* nanopb */ = { + 419057DA609A9DFB0D5268E8EF9749B7 /* RNDateTimePicker */ = { isa = PBXGroup; children = ( - 2465EEC076DAD80C81BE4185445B2A9D /* pb.h */, - E421CDD78CFBC69897AB99248C9DE3CC /* pb_common.c */, - EB9AA65A09BAC02C00A55ADCD67D1B98 /* pb_common.h */, - A5711F1C2346B03337D5B19F4C3979E2 /* pb_decode.c */, - 13EF0915712C8F78394138D0B6A2A050 /* pb_decode.h */, - 77FD8DB8FB6FD0282DEB41D410F329CF /* pb_encode.c */, - D3625BCCC0F421D853BC5DA8F0AF5BAF /* pb_encode.h */, - 9E4B57EB405798E7F6F950ED64431D66 /* decode */, - 68E115FF35737531A179FD6EB66F09EB /* encode */, - AB3EBDE4519C9E4109B9BDD8104C2307 /* Support Files */, + E87C6EEEC92FDE90E7B6AC175FAC3285 /* RNDateTimePicker.h */, + 7C49DC5AFD28ACC0613C396EA9DF4210 /* RNDateTimePicker.m */, + 8D769049AB3B27D143B48937641584E4 /* RNDateTimePickerManager.h */, + 830F4EF9FDF73517E09ACF76EFA248B8 /* RNDateTimePickerManager.m */, + 8EED69FDFC6CD52C7BBA4142E1E64027 /* Pod */, + 322CE1567E87B4E3FFC5E3DB65E189C1 /* Support Files */, ); - name = nanopb; - path = nanopb; + name = RNDateTimePicker; + path = "../../node_modules/@react-native-community/datetimepicker"; sourceTree = ""; }; - 415E79C7762D42558D18A3E0893F75D5 /* Pod */ = { + 41A9C93B68AED2A3F015DDD1E4A44FD8 /* Pod */ = { isa = PBXGroup; children = ( - 56C9B7B55742024335719A8E9ABAD44B /* LICENSE */, - 4F19EBA29103DC2448E841002CC11C7A /* react-native-appearance.podspec */, - 2A66A0DC8DD246AC86E7EF106774B144 /* README.md */, + 56CCBAA0FE762FCD9C06F386A3F1CA98 /* api.md */, + 26DE54FCD3291D9FE812ADCF31AB621D /* LICENSE */, + E5515B968616712FC0ABBD3B9E538D4A /* ReactNativeART.podspec */, + E35AB47F21BF54CCF80693CA198AD9A1 /* README.md */, ); name = Pod; sourceTree = ""; @@ -11859,6 +11911,14 @@ name = FlipperKitHighlightOverlay; sourceTree = ""; }; + 420FD2C7A3C30AB92F7A8D8044E58297 /* Pod */ = { + isa = PBXGroup; + children = ( + EEAC4ED40688D5724E274559ECCD2C0E /* Yoga.podspec */, + ); + name = Pod; + sourceTree = ""; + }; 4223C9A5B18EB0F60E29C2DCF0BCB96F /* Flipper-Glog */ = { isa = PBXGroup; children = ( @@ -11880,92 +11940,62 @@ path = "Flipper-Glog"; sourceTree = ""; }; - 429DBE0204A1CCCC852AFD06ED814E70 /* Yoga */ = { - isa = PBXGroup; - children = ( - 17C7CB6B1D4A3E3E2C7EF4A816EC877A /* BitUtils.h */, - E4BF95C9C73202A4F49C1C4F3F0AFD9C /* CompactValue.h */, - 3C0C031D54483C4716ECA6D731C239F4 /* log.cpp */, - 9E0E9F3CEF59482A043F2E3150CAEA0E /* log.h */, - E1CB6BECF058E3A4985899EE7B0B23A2 /* Utils.cpp */, - 7E3B49CBFF762A1C703210855E543C2E /* Utils.h */, - F56F453B57D2D90F9DF91753E5A9C8AD /* YGConfig.cpp */, - 12FE2ACF3C60F48E6F74E827FC5BDB82 /* YGConfig.h */, - 60C5527B609F93E18346725FD1B1F454 /* YGEnums.cpp */, - 50601530BA179B2CA3FA469BF548DC57 /* YGEnums.h */, - CDA31622F4E079135E89048AD4D3BFD3 /* YGFloatOptional.h */, - 0FD8226FCC7309B2337EB58188BAFC55 /* YGLayout.cpp */, - 58BD6E5AED675450ABB68C160C6386CD /* YGLayout.h */, - 09A4A381355DC64EAB844B04A5BA6970 /* YGMacros.h */, - 50A93D4815E9A8F99BA52DDF7F226000 /* YGNode.cpp */, - 2F1D4A55EA9BEA7C6F854E7A48AA4BE6 /* YGNode.h */, - A5A7654B4C703570917FC019CD6FB717 /* YGNodePrint.cpp */, - 50E233B1E5177E8DA53E63374F960DDF /* YGNodePrint.h */, - BC90A42F976DFA2E0DA3EBCBBB308286 /* YGStyle.cpp */, - 0E67B37021122702D85563E203C2FA96 /* YGStyle.h */, - B9B0ED604DEFCA10B70AAE7638FD72F9 /* YGValue.cpp */, - A638D0FA7AB3205099F7E8D5BCCD88E9 /* YGValue.h */, - 33B7C5D1D926FC345037DFC006FCC356 /* Yoga.cpp */, - 3305EBFCDE2F3D9BE8746FA55736C793 /* Yoga.h */, - DD38F2F2FA7D1CA194A4316CC114CE7C /* Yoga-internal.h */, - 659E9F351E7A9531188C24D200881546 /* event */, - 044FE8B248F2EDFDFA4B4D4B5A0530F7 /* internal */, - B5F9093B727DD693B4CC0DFC7E060F79 /* Pod */, - 9C096D918B3C41A584D8DEB2F10A17F6 /* Support Files */, + 44CA0202AC84193F290C562E5E5D49C6 /* Pod */ = { + isa = PBXGroup; + children = ( + D170D6C2BD5F7330435EEDDD78A8373A /* EXAV.podspec */, ); - name = Yoga; - path = "../../node_modules/react-native/ReactCommon/yoga"; + name = Pod; + sourceTree = ""; + }; + 455CB786702EF1645A99B0989E15C0F6 /* event */ = { + isa = PBXGroup; + children = ( + AD18ACAE2DA63187FD13B4505B223276 /* event.cpp */, + 52993449D46219F4CB752405BFBB3E73 /* event.h */, + ); + name = event; + path = yoga/event; sourceTree = ""; }; - 433BC581F38245A7EF55F962BAAAF798 /* Support Files */ = { + 45713939BBAEAEC3D27602716D91840E /* Support Files */ = { isa = PBXGroup; children = ( - 98DC296BF9AB6C5F92D462E85FF0B4E9 /* react-native-document-picker.xcconfig */, - 70953D120538AAD374CEED481B327482 /* react-native-document-picker-dummy.m */, - 4FA994CE366C65719695EB6F013ABD30 /* react-native-document-picker-prefix.pch */, + A1F14998FCA22D0DA4C9B893F4D8917A /* ReactCommon.xcconfig */, + A5F8BDF0DA8AEB57878C86E6EF91B6C5 /* ReactCommon-dummy.m */, + 79B7587F1241800B06EE1741D881BA69 /* ReactCommon-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-document-picker"; + path = "../../../ios/Pods/Target Support Files/ReactCommon"; sourceTree = ""; }; - 44DE1329A49A4CF3811C1FE5179954FF /* Pod */ = { + 45935F7615FEEE32DC36545950902F83 /* CxxUtils */ = { isa = PBXGroup; children = ( - AC9444E09C628EA7CDDE4ABC5831FBAF /* EXWebBrowser.podspec */, + EF435D53936D260C865C216841DF0D52 /* RCTFollyConvert.h */, + 344FFFF0EFAD313B31C53816933583FA /* RCTFollyConvert.mm */, ); - name = Pod; + name = CxxUtils; + path = React/CxxUtils; sourceTree = ""; }; - 45AEE774D6EC8CF0DD6B4359873D050A /* Support Files */ = { + 46504D9224A1309960ECE5AC19F24836 /* Support Files */ = { isa = PBXGroup; children = ( - 141E273C68C9F6143C1000B3D0FEA407 /* RNVectorIcons.xcconfig */, - F2A3944BFF7C3DD1AA2993E0A8F21D48 /* RNVectorIcons-dummy.m */, - 017D7E96C0E85B39A122FDA67530E6C0 /* RNVectorIcons-prefix.pch */, + 5834A146A19C77147AEB1AA4C34C14F9 /* FBLazyVector.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNVectorIcons"; + path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; sourceTree = ""; }; - 46FA891290231E98AD4C1324A1D9AB7C /* Nodes */ = { + 475A996BFA27295783C6D44BCB8695EF /* Pod */ = { isa = PBXGroup; children = ( - 0555DEA8CCC5B069C0C2EE89E97498DA /* RCTAdditionAnimatedNode.m */, - F0EA7EFFD6F92FB7ECA84ED25FFA4DDA /* RCTAnimatedNode.m */, - F93518BC798B6148F9C4B8FC8C045423 /* RCTDiffClampAnimatedNode.m */, - C9C390E75F283ABC888301FFBE52BAC4 /* RCTDivisionAnimatedNode.m */, - 3BCE74587D3EB3186469314D0C81FEDB /* RCTInterpolationAnimatedNode.m */, - 3C88B7C68A22A41BF671FF5473A7AC4C /* RCTModuloAnimatedNode.m */, - 2ACF4DAE836F3A6D95CFD47CA16B8438 /* RCTMultiplicationAnimatedNode.m */, - 6C4F9E3BF3C9734CFD410F10F8CFBFE9 /* RCTPropsAnimatedNode.m */, - 0626132BA2BF2C2F53356A32CBDABBAA /* RCTStyleAnimatedNode.m */, - 45F7D27CBCB40E8F77D9ABC84E89A8B7 /* RCTSubtractionAnimatedNode.m */, - 530DADB2FB61BD3E084E3AC0FA61255A /* RCTTrackingAnimatedNode.m */, - CE1F0F6B0DAC9A7AF9B7AA5F60C3FCCA /* RCTTransformAnimatedNode.m */, - DB8EEFC2865862922C0F3D62D40909BE /* RCTValueAnimatedNode.m */, + 3F9D28FB8EBDC62B118CF9CF05C4D95F /* LICENSE */, + A2746C52008108330934A370E0ECCB4D /* ReactNativeKeyboardInput.podspec */, + DD30A2F09A0E218AACC62DA2BA33CEF5 /* README.md */, ); - name = Nodes; - path = Nodes; + name = Pod; sourceTree = ""; }; 478205160CCC32B7FF015256061E3D99 /* Support Files */ = { @@ -11979,121 +12009,133 @@ path = "../Target Support Files/Flipper-RSocket"; sourceTree = ""; }; - 48153B400849E5B644FCCB7A294624BC /* RCTBlobHeaders */ = { + 48757F58B0018F4996810CC34B7E30DA /* Singleline */ = { isa = PBXGroup; children = ( - 2A7191EDD6EC5DAD69F0407AA2C1E31B /* RCTBlobManager.h */, - FA94BFB94A42E252349264828408B209 /* RCTFileReaderModule.h */, + DCBEA93901E0F18536C3154CDBDE4456 /* RCTSinglelineTextInputView.h */, + AE91D4BE64AD0DFB21922399E4F8C84B /* RCTSinglelineTextInputViewManager.h */, + A094DFB5652F74DC9F635E18A3DFDC3E /* RCTUITextField.h */, ); - name = RCTBlobHeaders; + name = Singleline; + path = Singleline; sourceTree = ""; }; - 48281E44BD792FA0BC72449B22A97733 /* UMNativeModulesProxy */ = { + 490B70887291105583E0BB37D7C8E086 /* Support Files */ = { isa = PBXGroup; children = ( - 38EE6352FEB572021F497970361E22E2 /* UMNativeModulesProxy.h */, - DF8CCF2AA86951C0C89788443FC66288 /* UMNativeModulesProxy.m */, + 4AB4319EDC95A50EF7679752214D6855 /* UMPermissionsInterface.xcconfig */, + 4A8F8E09E4BC1F686F38F42378A9540F /* UMPermissionsInterface-dummy.m */, + A925110A95BE534EFC3228AD439EC44F /* UMPermissionsInterface-prefix.pch */, ); - name = UMNativeModulesProxy; - path = UMReactNativeAdapter/UMNativeModulesProxy; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; sourceTree = ""; }; - 48391A11354E2570728699C1331867D4 /* Support Files */ = { + 4A08A04C0EE834E35680D3EC25AD5E48 /* Pod */ = { isa = PBXGroup; children = ( - 17707C0ABA9B0849AD25E3238ADBE1D5 /* RNFastImage.xcconfig */, - 777DB95C529E023178F362938B1B2C7E /* RNFastImage-dummy.m */, - 9AAB2A68C220F565273DB515053421EA /* RNFastImage-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNFastImage"; - sourceTree = ""; - }; - 48551461CB2993EAE44AA46329D81251 /* RNGestureHandler */ = { - isa = PBXGroup; - children = ( - B7EDE79C53D1A0BFB62120926DA11087 /* RNGestureHandler.h */, - 892ACACF678844715CB306AFD8C18753 /* RNGestureHandler.m */, - DE8F625CA9B70EFC0ACF66753B2B8C75 /* RNGestureHandlerButton.h */, - A595BE706668D105B4C902B56126AC98 /* RNGestureHandlerButton.m */, - 4FA86B460D2D7CF23574D4E10D10EF7A /* RNGestureHandlerDirection.h */, - C01FD55251E04D79D54389D9E2505CB1 /* RNGestureHandlerEvents.h */, - 913EC418AF05573D3B6922EDCAAA5BCF /* RNGestureHandlerEvents.m */, - E2D64ECC5835599A6514F50D193FEC7A /* RNGestureHandlerManager.h */, - D00155A74656D652638CCCA43B402754 /* RNGestureHandlerManager.m */, - 4A5B84D8D191ADDAEECEB3851DFBC0F6 /* RNGestureHandlerModule.h */, - 1847A9120986DF8A84BD996E25133F73 /* RNGestureHandlerModule.m */, - C163185A8C47364FE801EA2D186E4314 /* RNGestureHandlerRegistry.h */, - 05F0473BC278863B6BBF9D7DCC8A3051 /* RNGestureHandlerRegistry.m */, - 73E7D4E693B09406B129387AF3530146 /* RNGestureHandlerState.h */, - BD6E489D62F906EF168083EA18447111 /* RNRootViewGestureRecognizer.h */, - 87EE4D05DA2D8345EE7790161750FF38 /* RNRootViewGestureRecognizer.m */, - A1604653D63D02B350460457540D8A9D /* Handlers */, - A851C3BE2903E1B060152E7E347B1778 /* Pod */, - 30DCF6BC88C4D589D97C794D008ECB13 /* Support Files */, + 4186C436DCEBB032D7176D3DCA9EA74A /* EXPermissions.podspec */, ); - name = RNGestureHandler; - path = "../../node_modules/react-native-gesture-handler"; + name = Pod; sourceTree = ""; }; - 49BD3AF8011731CAB5B74BC47B217734 /* functions */ = { + 4AA6996B4BE5F69A92BAFBF6F882980D /* Support Files */ = { isa = PBXGroup; children = ( - B810357A23274F0F984C0685A76D3696 /* RNFirebaseFunctions.h */, - ED7807348F460F24A6796E2FCAFF067C /* RNFirebaseFunctions.m */, + 5EB0253DA06DCDD17D12D4001B8C6E6A /* EXImageLoader.xcconfig */, + 7014FF39C1FF978F5BD752ECEFB37727 /* EXImageLoader-dummy.m */, + F81E77CFAD95329406A7386A1BB38797 /* EXImageLoader-prefix.pch */, ); - name = functions; - path = RNFirebase/functions; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXImageLoader"; sourceTree = ""; }; - 4A2F677C508DBC4CFA621CCC2D1ECB60 /* Support Files */ = { + 4AE1CE3EA586082F3EB759C5FB9AA4F1 /* messaging */ = { isa = PBXGroup; children = ( - A26D555F22D3C4D5CC22A443F85F09BB /* RNDeviceInfo.xcconfig */, - 7FE3B1419A93B1EB88EA99EE971138C2 /* RNDeviceInfo-dummy.m */, - 29FBA07AD4FFC50AD572B8481FEE71B1 /* RNDeviceInfo-prefix.pch */, + E6380C5E127BF624781A1E19119B1A74 /* RNFirebaseMessaging.h */, + 0ABFBCB28727FEB3E3838FD774B921E3 /* RNFirebaseMessaging.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; + name = messaging; + path = RNFirebase/messaging; sourceTree = ""; }; - 4BA1240FB7FF8EF81340069ADB8CE4F5 /* Pod */ = { + 4B064E32DE4C8A2FA5506BF6606706A4 /* React-RCTVibration */ = { isa = PBXGroup; children = ( - CF3B9420B237F152E6FF53C5062E1F44 /* React-RCTActionSheet.podspec */, + B22C4B170E49A61F340C5E442EE9BAAC /* RCTVibration.mm */, + 5DB67D5B9B8762D82C91BE6B2C2B0F1A /* RCTVibrationPlugins.mm */, + 06EF9268AA7559A59F99D355933620FF /* Pod */, + 9E712FFC9B86242AF2EA974844E29728 /* Support Files */, ); - name = Pod; + name = "React-RCTVibration"; + path = "../../node_modules/react-native/Libraries/Vibration"; sourceTree = ""; }; - 4BFE82B23744D61178F2FF6252751820 /* BaseText */ = { + 4B2FA7E827A476A1C9EBF6B682C6F10F /* RawText */ = { isa = PBXGroup; children = ( - 2FAF2CA43B8035437F93508EE9003AD7 /* RCTBaseTextShadowView.m */, - 0414BF0BBB66ECC4D8141C234CF79791 /* RCTBaseTextViewManager.m */, + E0C880EB09D63CA8E3E4659D04C69957 /* RCTRawTextShadowView.h */, + 82AEF35996658F64D84BC88F7E0C1F38 /* RCTRawTextViewManager.h */, ); - name = BaseText; - path = BaseText; + name = RawText; + path = Libraries/Text/RawText; sourceTree = ""; }; - 4F943FBBC22267DDDE7521855445AF90 /* Pod */ = { + 4B51395E09A70C3FDA2DB2BBAD44F1C3 /* EXKeepAwake */ = { isa = PBXGroup; children = ( - 52D02674CEFEA02DF36005B198EFE9FC /* LICENSE */, - F47C6A80B111FB05337FAEADB7A4358B /* ReactNativeKeyboardInput.podspec */, - E4BE33020F71E8470F7194767E33E0C7 /* README.md */, + 44861378DF4BF5BD8EBBE0C54AF388D4 /* EXKeepAwake.h */, + 42E328D9467A29FAEADF41946D086934 /* EXKeepAwake.m */, + E1958E05B6BD813BBF33FB92AB52C907 /* Pod */, + 64FEE0E51BC07E0059F7E60495204A77 /* Support Files */, + ); + name = EXKeepAwake; + path = "../../node_modules/expo-keep-awake/ios"; + sourceTree = ""; + }; + 4BDE7DAF8356CFBAE87F41312D7444F7 /* Pod */ = { + isa = PBXGroup; + children = ( + BFB7A9691F40A40E405F63775579A305 /* FBLazyVector.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 4E0BB34CC2D8AC85816AF81147757D53 /* links */ = { + isa = PBXGroup; + children = ( + 8B9C04E3222A67441A61756262DBFFCA /* RNFirebaseLinks.h */, + 8871093A45BB8898DF03296EC4CED5EC /* RNFirebaseLinks.m */, + ); + name = links; + path = RNFirebase/links; + sourceTree = ""; + }; + 4F0F6AEC9A64609B3A706631636060C1 /* Pod */ = { + isa = PBXGroup; + children = ( + 4B43AB6B72959D79FE328DCE641D6F3B /* React-RCTText.podspec */, ); name = Pod; sourceTree = ""; }; - 5177C8A0700A73D29C911ECC46DAF0EE /* Support Files */ = { + 50AC12D353F20A95C2F10C58713C9526 /* Support Files */ = { isa = PBXGroup; children = ( - CC3D692DE6A573051DEFFB08CD5D594C /* RNDateTimePicker.xcconfig */, - 145A7D59176345B6F215E0E11D6B17F8 /* RNDateTimePicker-dummy.m */, - 6416EDE9EE7CA2789EEBA998ED56CFDB /* RNDateTimePicker-prefix.pch */, + DF153716257E8284E747023ED54F0F81 /* UMFileSystemInterface.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; + path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; + sourceTree = ""; + }; + 50FB56223B55FE3FD05E5DE7E13F7EF7 /* RCTLinkingHeaders */ = { + isa = PBXGroup; + children = ( + 1C5B460064923AEE386FECAE18993733 /* RCTLinkingManager.h */, + 5B0320E6CC654DDB814551FBE9FEA448 /* RCTLinkingPlugins.h */, + ); + name = RCTLinkingHeaders; sourceTree = ""; }; 519321310C6145F0BC711C3B3BC24F11 /* Pods-RocketChatRN */ = { @@ -12113,41 +12155,42 @@ path = "Target Support Files/Pods-RocketChatRN"; sourceTree = ""; }; - 51F9154E76B78ABDFAD2BD6798488140 /* Pod */ = { + 52C4A8FEA0B955EDA978EB4953294B3F /* Pod */ = { isa = PBXGroup; children = ( - 311043C1601FF102B6E628231C20528A /* LICENSE */, - EE76B874A21F14B25CFF737B7F22D7FD /* README.md */, - D77B16B96F40A6536D7E047E5CD22C68 /* RNFastImage.podspec */, + ECF4AF9E62137D242440263CAC97B57E /* UMCore.podspec */, ); name = Pod; sourceTree = ""; }; - 5525A85551AE85D1ED3034A1D9FDBC79 /* RNVectorIcons */ = { + 52FE0CB054A166801BCCB0887CDEA0F3 /* Support Files */ = { isa = PBXGroup; children = ( - A98F0C5C2BBC051FE79A61AB612C24E1 /* RNVectorIconsManager.h */, - CD4E032F91D695EB8DD21783BFA10A01 /* RNVectorIconsManager.m */, - 0F2ED98A21CD0F49899861F120EF3E43 /* Pod */, - 255A1F3846BB901BB4CF02DFD6D01923 /* Resources */, - 45AEE774D6EC8CF0DD6B4359873D050A /* Support Files */, + 1E231DB88DBDDA719E356518743872C4 /* EXLocalAuthentication.xcconfig */, + 9802786C99D260109FB3160F6E40F0FD /* EXLocalAuthentication-dummy.m */, + AE1E6A2B6589B61C39BAACB2650F4896 /* EXLocalAuthentication-prefix.pch */, ); - name = RNVectorIcons; - path = "../../node_modules/react-native-vector-icons"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXLocalAuthentication"; sourceTree = ""; }; - 55F79EAC12A427EB3D127E2395EC91DE /* SurfaceHostingView */ = { + 54649C99080E4010A0F610906546CED1 /* Pod */ = { isa = PBXGroup; children = ( - A1CE6E3724E76CA87B21FCF16692A6CC /* RCTSurfaceHostingProxyRootView.h */, - D9915994EECACD7D790907711164FF55 /* RCTSurfaceHostingProxyRootView.mm */, - 10444C68A034B8B32F03D93EBBF935DF /* RCTSurfaceHostingView.h */, - EC1F50667604BD0C2E526395F6B6D9C5 /* RCTSurfaceHostingView.mm */, - 0BD6B475F506A117D93185B7968288B5 /* RCTSurfaceSizeMeasureMode.h */, - FADDCB66AE8BC9E7C8DFB025BAD562C6 /* RCTSurfaceSizeMeasureMode.mm */, + A16D81C8FE1CCC9CD79A6FE6991E7CFB /* KeyCommands.podspec */, + 0009FFC47EC4A57867FDE71D40CA588C /* README.md */, ); - name = SurfaceHostingView; - path = SurfaceHostingView; + name = Pod; + sourceTree = ""; + }; + 559C49B5488C5C654BB7B6AB97FA1C85 /* Pod */ = { + isa = PBXGroup; + children = ( + 7BC8D5E88DB9364A9E7683CFE99CDEA4 /* LICENSE.md */, + 6BFD168C4EED659BE820EF49D6EEE759 /* react-native-document-picker.podspec */, + 9596EE408B6B938C2E7C6D1200F5A609 /* README.md */, + ); + name = Pod; sourceTree = ""; }; 560D59B3D7FA7AA98C508EB59C0106CD /* boost-for-react-native */ = { @@ -12159,46 +12202,42 @@ path = "boost-for-react-native"; sourceTree = ""; }; - 5727CC7C56F6EF1765CCAC3649378E02 /* RCTImageHeaders */ = { - isa = PBXGroup; - children = ( - C733CD9C74A357A76284D361EE462CBF /* RCTAnimatedImage.h */, - 373D9CFD1D5D8E68722A9BF8BA08B629 /* RCTGIFImageDecoder.h */, - 8C155F0FF36BE9E97E842352F2207414 /* RCTImageBlurUtils.h */, - 8EA7D1FBF69E61F7830FB148A5E50990 /* RCTImageCache.h */, - 5AD2B6D719ADA2E1D3B263FE4F910F46 /* RCTImageDataDecoder.h */, - C27AF23759BF7A8DD86385A007D97791 /* RCTImageEditingManager.h */, - 41FE7C4DC3FAC003F1B598A2B9F5C053 /* RCTImageLoader.h */, - 0AD54FCA63DCA7D0C67F6F026BD7A1C8 /* RCTImageLoaderProtocol.h */, - 565BE9B8724E8F9DD645CFB25EFE6CA5 /* RCTImageLoaderWithAttributionProtocol.h */, - C41320A799460C4301E8ADD1A4D045A3 /* RCTImagePlugins.h */, - 2F4A0CC84C0513BE8B9846E35F771239 /* RCTImageShadowView.h */, - 74D51A595C752C87ADD691D3A6411EA0 /* RCTImageStoreManager.h */, - 00947C580ABCC7B722ECB8D7D351E6F7 /* RCTImageURLLoader.h */, - 9BDD9AD6CBDA0656FB33DD8C1354B565 /* RCTImageURLLoaderWithAttribution.h */, - 3AC56F9DA9CF3A8DD38C1913E720E0D7 /* RCTImageUtils.h */, - C325978CFDAB8C04548FF1E460600969 /* RCTImageView.h */, - E2967776DBB8C2491E39D6BE35D0275B /* RCTImageViewManager.h */, - 1A4BF455D2EB8C3B0ED975E7D28C952D /* RCTLocalAssetImageLoader.h */, - 94FD43A814135FF3A79FCCD0F3B3AED0 /* RCTResizeMode.h */, - D0B72DC40E4D609C9D01B5A10F3D02E5 /* RCTUIImageViewAnimated.h */, + 57EE6235DDA5D1547878AAA8C062DC71 /* Support Files */ = { + isa = PBXGroup; + children = ( + 3AE883FCB4846DF697DDDB8421B46ADA /* UMCameraInterface.xcconfig */, ); - name = RCTImageHeaders; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; sourceTree = ""; }; - 58210328A9659CF3262373BD75D45E8E /* UMTaskManagerInterface */ = { + 5840949A48B14929CDBC4D9102953D2C /* react-native-jitsi-meet */ = { isa = PBXGroup; children = ( - 9E1FB6B4A44DC3F5D2618CED7EA91FED /* UMTaskConsumerInterface.h */, - 17B51F1B918F1A8CC74355FA300050C1 /* UMTaskInterface.h */, - 4FC16D49BF9944D48937049011C40DDB /* UMTaskLaunchReason.h */, - 5144A3DB29D7509839A527B2C0690C0B /* UMTaskManagerInterface.h */, - 87CF3D5290C63D9BC0C8F06B0B65D238 /* UMTaskServiceInterface.h */, - 8B898BCFEE3C304B5241350FFF655399 /* Pod */, - 26FF7DA43D891D3FE2D571844619D10F /* Support Files */, + 52D32E114667683B042418A11F2639B3 /* RNJitsiMeetView.h */, + 0706C0DEEDF57CFC4FF50B50D4D56F3F /* RNJitsiMeetView.m */, + 7723B709B97658061BC395D02723E9DF /* RNJitsiMeetViewManager.h */, + 2F2668002AB9B4E751068F15C25494A8 /* RNJitsiMeetViewManager.m */, + F534B7D4DEA904B7907F60B833C4A5B6 /* Pod */, + CE03D5F8ACA18BF7A68BA6086BBC65AD /* Support Files */, ); - name = UMTaskManagerInterface; - path = "../../node_modules/unimodules-task-manager-interface/ios"; + name = "react-native-jitsi-meet"; + path = "../../node_modules/react-native-jitsi-meet"; + sourceTree = ""; + }; + 589576E6CA64BADB8F80EF3ABE36DCEC /* RCTTextHeaders */ = { + isa = PBXGroup; + children = ( + 4BE866F82A76432AF11300FAF33461B2 /* RCTConvert+Text.h */, + EE59CC08F54BCE62F1F1CCAF1DD64AAF /* RCTTextAttributes.h */, + C4E2C296D739056C62ED7697ACBFAE14 /* RCTTextTransform.h */, + 9C26AEEBF29A365EACFCEB445F9C1821 /* BaseText */, + 4B2FA7E827A476A1C9EBF6B682C6F10F /* RawText */, + 7164545B32BB9092F5466466E6EAFF35 /* Text */, + 60D924A57B6D75BFC7603818A68A9B9C /* TextInput */, + 7272D0EA413AA8DADC89B02D4D0FB518 /* VirtualText */, + ); + name = RCTTextHeaders; sourceTree = ""; }; 590C469E7BA249AACB46FFAE3B725F19 /* DoubleConversion */ = { @@ -12228,38 +12267,70 @@ path = DoubleConversion; sourceTree = ""; }; - 59D56E212D35F13C04A478945DFDB112 /* Pod */ = { + 59199BCEE7D34DDAF7D1A19C83E2C4FD /* Reporting */ = { isa = PBXGroup; children = ( - 20880348C7D369561B78EA32911E79CC /* React-RCTSettings.podspec */, + 30B8250F1EAFF39F00281582D3705A7A /* Filters */, ); - name = Pod; + name = Reporting; + path = Reporting; + sourceTree = ""; + }; + 59523F32B7D8501CE1451B560584C3F0 /* React-CoreModules */ = { + isa = PBXGroup; + children = ( + 0973AA78A5A1F3D9E86E1E0096E24E59 /* CoreModulesPlugins.mm */, + 94E48299149F24D975C8BA603D3E79EE /* RCTAccessibilityManager.mm */, + 9253181F81EC31F33BD654B6F8066DFD /* RCTActionSheetManager.mm */, + FF2614EB0FA07010280C4B240EAD5A9C /* RCTAlertManager.mm */, + C287C0F7C7408A6539BBB097113CA755 /* RCTAppearance.mm */, + D1E0D03066BD59D10E00E6B714CE377F /* RCTAppState.mm */, + 1801ACCCB86DBDE67201B8F75D8F14A1 /* RCTAsyncLocalStorage.mm */, + 396E0A3EB709DC0F34B78634AE2ABF04 /* RCTClipboard.mm */, + 80A568B9B044A020997E0E87DB7B4CF6 /* RCTDeviceInfo.mm */, + 57753C3252FD2FABA5824B4C5240ECEB /* RCTDevMenu.mm */, + FACD48FEBD3DEAFCAA3F98F0E4C0CC1F /* RCTDevSettings.mm */, + 011822721445F5EF8F12EDA15D1F0A3C /* RCTExceptionsManager.mm */, + A8EB97193C365E6E7EAFE31C5912E075 /* RCTFPSGraph.m */, + 02076217C68670657003164127656BB5 /* RCTI18nManager.mm */, + 7AE141C59CDB269A306C102E4EF53DB3 /* RCTKeyboardObserver.mm */, + A1187D2DE7913231B81EA06DA1E81AC7 /* RCTLogBox.mm */, + 96F0797E7B67C00668BBE5F948D6345A /* RCTPerfMonitor.mm */, + EC67C9806144A3DAAAA0D3C3201410D8 /* RCTPlatform.mm */, + 9D2728DCA1A94E5FC2AE586207F7114B /* RCTRedBox.mm */, + 92BDDD31A80B689CDF040BD06B39DFDC /* RCTSourceCode.mm */, + 60F910794D2AEF0D95487DBDFCBC9C1E /* RCTStatusBarManager.mm */, + A82E856B1804DF5549E0D6DF090F378A /* RCTTiming.mm */, + 6F12D0637B3D2526773BD8BBEB9ACA0A /* RCTTVNavigationEventEmitter.mm */, + 9BE8F1BB7020D48EDE81B0588D91B91C /* RCTWebSocketExecutor.mm */, + 307FA4F940815467DFE0BA6926175C96 /* RCTWebSocketModule.mm */, + C831EE4FF8E55AEB8DB7912C3AFA000F /* Pod */, + 6BA2C68FADFAA91299CE1BC07B24F703 /* Support Files */, + ); + name = "React-CoreModules"; + path = "../../node_modules/react-native/React/CoreModules"; sourceTree = ""; }; - 5BCC56AD542BBDA9A8FD2FD15ED103FA /* UMReactNativeAdapter */ = { + 59E4131A3E054A83788298EEB08F293A /* Support Files */ = { isa = PBXGroup; children = ( - AD2CA54231C14F8186AD91A1F2145F55 /* UMBridgeModule.h */, - F733254350CCF8A9CCA88E7FC3FE55B2 /* Pod */, - 32BFCAA2A7B1F59DD11547D97BC1BDF6 /* Services */, - B77022EF9FCD3553CDC99FBE6A7BD67F /* Support Files */, - 1C7B27831281EA1E403BFB736DBD1F29 /* UMModuleRegistryAdapter */, - 48281E44BD792FA0BC72449B22A97733 /* UMNativeModulesProxy */, - 97AAF911130B9475DD3F2B13B97DC4C7 /* UMViewManagerAdapter */, + DBD32390C988B0EDD281390E40FFB1E0 /* React-RCTSettings.xcconfig */, + 37187EBD3E6EA5CF062475D498E45DF1 /* React-RCTSettings-dummy.m */, + 9B6A5D18454E29015601EE0AB3932E2F /* React-RCTSettings-prefix.pch */, ); - name = UMReactNativeAdapter; - path = "../../node_modules/@unimodules/react-native-adapter/ios"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; sourceTree = ""; }; - 5C180598BE03068B5075DC5B94B440FF /* Support Files */ = { + 5AB29CB3E433B4BF5D2517E11899BD54 /* Support Files */ = { isa = PBXGroup; children = ( - D958CE2B81B824D413EE641BDF933F55 /* UMCore.xcconfig */, - 7A3B44B0EE5021D9B6F9B6FDB5B2FB27 /* UMCore-dummy.m */, - 608DB5CAABECC13DA111E0248582A04C /* UMCore-prefix.pch */, + 3EA59C8E8F8FD565FBB99D325DA6D0A4 /* ReactNativeART.xcconfig */, + 5D6DC0B213BF7B141237863B519BC9B7 /* ReactNativeART-dummy.m */, + 103C98353C0BE4C8E3710557410BBB76 /* ReactNativeART-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMCore"; + path = "../../../ios/Pods/Target Support Files/ReactNativeART"; sourceTree = ""; }; 5D29D4DFEC969725127A72699ADD0ECF /* Support Files */ = { @@ -12284,50 +12355,39 @@ path = CocoaAsyncSocket; sourceTree = ""; }; - 5D8A195208F5F9D1AD40BBD67BEF0862 /* RNDateTimePicker */ = { + 5ECF0EFAA7CB465D1F6FDAF5C2E6BAEB /* Pod */ = { isa = PBXGroup; children = ( - C332354CE32553AE1D10339068F3F17B /* RNDateTimePicker.h */, - EDD08559E2215CE06A3DEF7092092158 /* RNDateTimePicker.m */, - 27500E1C3EC9295178F620CC41A73CA3 /* RNDateTimePickerManager.h */, - 469614418673ECF5A39C6A40E4EAE2F4 /* RNDateTimePickerManager.m */, - 87C436A7B1AE8BB6C82E14004284BE3D /* Pod */, - 5177C8A0700A73D29C911ECC46DAF0EE /* Support Files */, + FDFD916E483F1F3CC13AB4DB64E9DD48 /* React-RCTActionSheet.podspec */, ); - name = RNDateTimePicker; - path = "../../node_modules/@react-native-community/datetimepicker"; + name = Pod; sourceTree = ""; }; - 5D8DBD031C93AE6D46EAC75B0765F98F /* ViewManagers */ = { + 5ED8E8D5D13A6EDAAFBB999A99C42CD5 /* RNDeviceInfo */ = { isa = PBXGroup; children = ( - 1C9FCF945444DD05ECD9D1A6D9CDF2D2 /* ARTGroupManager.h */, - 600E11526FC1B31D3900246187123E89 /* ARTGroupManager.m */, - ED94D1793B8A55328B5B64B884D106DD /* ARTNodeManager.h */, - 3CBC29214A35D70A6460363696F3A412 /* ARTNodeManager.m */, - 1D058CA8909B39B41CBDE50B374B7BEE /* ARTRenderableManager.h */, - 5BAFBBE57DAE334A1168DBD0F4E64ACB /* ARTRenderableManager.m */, - A8900F07EF4F2C1C02C4706CA08672AE /* ARTShapeManager.h */, - 54AA020BD3FF830AE950170EBEB58E8A /* ARTShapeManager.m */, - 58A7AA742BB72B9CC46855C6A063EB42 /* ARTSurfaceViewManager.h */, - 98197B703C5B25832FEF5F172B51223C /* ARTSurfaceViewManager.m */, - B840ED032943756ABB8E10A0DB084CBE /* ARTTextManager.h */, - F53BCCEADEADB82BF87B66397B482947 /* ARTTextManager.m */, + 0DE38E8A98A2D833FCEC276EC68AB084 /* DeviceUID.h */, + EE794BB16C18F3ED406FDFEAD0BE8B67 /* DeviceUID.m */, + E070F59768430E1F763F4FEA905C30C9 /* RNDeviceInfo.h */, + 31757C4EB15476B1F9D587841D3879E3 /* RNDeviceInfo.m */, + 3590378343D51C137670C7EFE2CA0B78 /* Pod */, + 00FE9C99E81E7B0D90B443C553E2E4B8 /* Support Files */, ); - name = ViewManagers; - path = ios/ViewManagers; + name = RNDeviceInfo; + path = "../../node_modules/react-native-device-info"; sourceTree = ""; }; - 5F2584076E044899708AF10A3E606285 /* EXHaptics */ = { + 5F2ED04E8F86F7F48F66CCDB013526A3 /* React-jsi */ = { isa = PBXGroup; children = ( - D2496821890C3957B6369CCC233D5079 /* EXHapticsModule.h */, - C30F4DA8650B821D69927FC3C47B368C /* EXHapticsModule.m */, - 2CBB7C149768AB08741FC1B0A588F95A /* Pod */, - A3B05376FDB6A26061C1294D424047E9 /* Support Files */, + 6106D7C1994AD20E5452355DDAB741F4 /* JSCRuntime.cpp */, + 8B49029E03D426208D29C7C57BDAD776 /* JSCRuntime.h */, + 02970EAE51870E4C8410330442B68440 /* jsi */, + 03AF7AA4E4A82CB0B1DEB517DC221FD0 /* Pod */, + F80606E4C7495DE65000E7938EEFB063 /* Support Files */, ); - name = EXHaptics; - path = "../../node_modules/expo-haptics/ios"; + name = "React-jsi"; + path = "../../node_modules/react-native/ReactCommon/jsi"; sourceTree = ""; }; 5F2F3EF97DF155F3252675989B0B6940 /* Environment */ = { @@ -12347,6 +12407,14 @@ name = Environment; sourceTree = ""; }; + 5FC4E4E0E0603874E79EC94DEEFEAE58 /* Pod */ = { + isa = PBXGroup; + children = ( + 7BD98BE75223C0F154BBC845F1F936A2 /* React-RCTNetwork.podspec */, + ); + name = Pod; + sourceTree = ""; + }; 600EE23B1928A8162B2A0A2BA9A88655 /* GoogleAppMeasurement */ = { isa = PBXGroup; children = ( @@ -12357,362 +12425,349 @@ path = GoogleAppMeasurement; sourceTree = ""; }; - 60A9B3AC627C5E9D703DC70214162266 /* UMFaceDetectorInterface */ = { + 60D924A57B6D75BFC7603818A68A9B9C /* TextInput */ = { isa = PBXGroup; children = ( - AD8D144DD7C6C78299E910EA3D35394D /* UMFaceDetectorManager.h */, - 831999651C70369A14B36B756CDB1DF4 /* UMFaceDetectorManagerProvider.h */, - D18367236AC4A77D8B5DEA9B0E1FEA56 /* Pod */, - 052E3E35D9B314E37CC365A8B9079212 /* Support Files */, + 6019C343C84778B4FA07EF28A4C2F7F3 /* RCTBackedTextInputDelegate.h */, + 05D8A89AFB0E4913D4350C843480FB8B /* RCTBackedTextInputDelegateAdapter.h */, + 3D776BE09C723AE22C0969BB41D621A3 /* RCTBackedTextInputViewProtocol.h */, + 2605A02400E1642034EBC1AA76F1A945 /* RCTBaseTextInputShadowView.h */, + 53F23C7C1FB440EE722DE3F9A867204C /* RCTBaseTextInputView.h */, + 713E6D5E5D285A21E5A29AEFA2CA2566 /* RCTBaseTextInputViewManager.h */, + 9CE7F533680E4C4799B9233BBAB2301E /* RCTInputAccessoryShadowView.h */, + 34A5BE7E358A31EA4B8857F91CC1EE5B /* RCTInputAccessoryView.h */, + 13E2E0C047B47EB7A4680733F16D12ED /* RCTInputAccessoryViewContent.h */, + 7BC464D2B35ABB9FDB3FB5C07701C76F /* RCTInputAccessoryViewManager.h */, + 112B866ACEA58B6B97AE9CB87DC7CD08 /* RCTTextSelection.h */, + 76B5314E38D52C83CD46FBE370C862AB /* Multiline */, + 48757F58B0018F4996810CC34B7E30DA /* Singleline */, ); - name = UMFaceDetectorInterface; - path = "../../node_modules/unimodules-face-detector-interface/ios"; + name = TextInput; + path = Libraries/Text/TextInput; sourceTree = ""; }; - 6282EA83099DA2296D034FA6402D0A41 /* Protocols */ = { + 6261BC3C44464DB28B80418ACAF2B93E /* ios */ = { isa = PBXGroup; children = ( - 6C11B76031D69F7EBD8459372BAA8DCC /* UMAppLifecycleListener.h */, - 046876CB45E8677AA2A5F488330696D6 /* UMAppLifecycleService.h */, - 1039BBF6BD28A96EC30DD7CB8F7FA870 /* UMEventEmitter.h */, - E63199558C4A6FD2AC4B36A19B0751C6 /* UMEventEmitterService.h */, - 6049C82BC2C47603E9076739B55CF121 /* UMInternalModule.h */, - 7D48E0D6D11687E2ADD4E55BBDFE1495 /* UMJavaScriptContextProvider.h */, - 4D63AF2B14E3601110E5B672A7F1379D /* UMKernelService.h */, - 2C42F9714A09EB66DC4FEA36E14C86E5 /* UMLogHandler.h */, - 489381BD88BB462EA51AC3844735251C /* UMModuleRegistryConsumer.h */, - A88369EA1BA308AADC69E71FC52944A5 /* UMUIManager.h */, - 3CFD4E37FCB41DFC0E9A17BFA73CCD48 /* UMUtilitiesInterface.h */, + D27F7FEAC197A6C34B0DCF99A6CFA283 /* RCTTurboModule.h */, + C1D44AE70B75A13870DF66A153D7CD6B /* RCTTurboModule.mm */, + AD6394AE6A826BA7B35D3966725AA2CA /* RCTTurboModuleManager.h */, + 88528E3883FF492674D325E50694E07F /* RCTTurboModuleManager.mm */, ); - name = Protocols; - path = UMCore/Protocols; + name = ios; + path = ios; sourceTree = ""; }; - 659E9F351E7A9531188C24D200881546 /* event */ = { + 6261FA49342F1012ED98219D55DFB863 /* DevSupport */ = { isa = PBXGroup; children = ( - D5A5D66A3F340FAF357C3C23740B2CCA /* event.cpp */, - 5AC98D1BE9683B2CB2C454621F2280DD /* event.h */, + 2AADB825145AA6959A9527A360236918 /* DevSupport */, + BC685260823EC150F65EACDE71944FC8 /* Inspector */, ); - name = event; - path = yoga/event; + name = DevSupport; sourceTree = ""; }; - 666F9A3B886638B558127BEE29853B94 /* Pod */ = { + 627F7D28A929A46E3308C758DCC1664F /* Pod */ = { isa = PBXGroup; children = ( - 1EEE0770D07DC00B82039B5A2F97E499 /* React-RCTBlob.podspec */, + A1FD0EA09E15891DDD4ACE1E69F43381 /* UMAppLoader.podspec */, ); name = Pod; sourceTree = ""; }; - 668B7AEA7CA878FC7C3990DB38A2D2E7 /* RCTWebSocket */ = { + 632BF75FB0E972DF17703EC3878552C7 /* KeyCommands */ = { isa = PBXGroup; children = ( - DE7F6277315A36A1D833DE0C44B3E033 /* RCTReconnectingWebSocket.h */, - 08ACE5ED8E4F4E120D549B4619FE61BA /* RCTReconnectingWebSocket.m */, - CFC8E451D38E2E7D63F049CAB6CB0967 /* RCTSRWebSocket.h */, - 0D4C0D09B8BC735DD7F524E05248601A /* RCTSRWebSocket.m */, + 49A249D3AE6D13407A62273D21E34D82 /* RCTKeyCommandConstants.h */, + 284D2BBD607C0664FC7C9608BC791752 /* RCTKeyCommandConstants.m */, + 763C0A908BCF2279C3ED9035CD99E96F /* RCTKeyCommandsManager.h */, + 636EBE1DE0BA79E2D655D79CB735F05F /* RCTKeyCommandsManager.m */, + 54649C99080E4010A0F610906546CED1 /* Pod */, + 246BDFFEBA74718AFB14FDEF976E32FE /* Support Files */, ); - name = RCTWebSocket; + name = KeyCommands; + path = "../../node_modules/react-native-keycommands"; sourceTree = ""; }; - 66F9999BEB8F6D3516FECCDA04EF77F8 /* React-RCTBlob */ = { + 63435658478232427F65595E9D0291B2 /* EXImageLoader */ = { isa = PBXGroup; children = ( - 2BD6D05211FC0A993AD167FD7F658475 /* RCTBlobCollector.mm */, - E94FC1C094B87AA5B9F330ED67E9B2D0 /* RCTBlobManager.mm */, - 75FB45C7226ED96D42AC27B019D7C154 /* RCTBlobPlugins.mm */, - 672661EC0765FB80ED5E2083213F3A98 /* RCTFileReaderModule.mm */, - 666F9A3B886638B558127BEE29853B94 /* Pod */, - 329773985A834B34AF3BD1565758D7C3 /* Support Files */, + 56FB941582BED866CCE91B8D70707F87 /* EXImageLoader.h */, + E67DC662F60E63C9E493F499FA11A267 /* EXImageLoader.m */, + C8F9FC9DBD22956D6CAA412F4ED633FD /* Pod */, + 4AA6996B4BE5F69A92BAFBF6F882980D /* Support Files */, ); - name = "React-RCTBlob"; - path = "../../node_modules/react-native/Libraries/Blob"; + name = EXImageLoader; + path = "../../node_modules/expo-image-loader/ios"; sourceTree = ""; }; - 68E115FF35737531A179FD6EB66F09EB /* encode */ = { + 64A3234226ADD0F3C05B45C4A9DC605C /* KSCrash */ = { isa = PBXGroup; children = ( + 344EED8D4F91F71FC060F8E74282FAEF /* Recording */, + 59199BCEE7D34DDAF7D1A19C83E2C4FD /* Reporting */, ); - name = encode; + name = KSCrash; + path = KSCrash; sourceTree = ""; }; - 6971FF86BE33A4F936AC7A2A53EB6692 /* Support Files */ = { + 64FEE0E51BC07E0059F7E60495204A77 /* Support Files */ = { isa = PBXGroup; children = ( - B4C3E2B9A36416E0693F1F9CF4FDEE1E /* EXKeepAwake.xcconfig */, - 92621C4B5A088E6D97328052B9A3A2D4 /* EXKeepAwake-dummy.m */, - 4BFC1547F97DE6C894000BF8E995FD4B /* EXKeepAwake-prefix.pch */, + A2E0CC2B5B8F2A4D0940A946D22685E0 /* EXKeepAwake.xcconfig */, + B949C577C91CE50EDE4BE230FB6B0EA8 /* EXKeepAwake-dummy.m */, + D8288F5668BC50E9C7A67EEBBDDF61EE /* EXKeepAwake-prefix.pch */, ); name = "Support Files"; path = "../../../ios/Pods/Target Support Files/EXKeepAwake"; sourceTree = ""; }; - 6B87A0B7DE5325D44BEA9321D7FCEFC9 /* Pod */ = { + 65802E1BEB2E0B1AC95412F3A30FE632 /* Support Files */ = { isa = PBXGroup; children = ( - 5D758ADE968A990B4698132F5A18CE57 /* EXImageLoader.podspec */, + 7ED94019A38F38B84CE4B5051D7B73C4 /* UMReactNativeAdapter.xcconfig */, + FC817A03C9EEFDC24E3618A52250275D /* UMReactNativeAdapter-dummy.m */, + CBD1AB90136F68537C045E58EAAAF49B /* UMReactNativeAdapter-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; sourceTree = ""; }; - 6BF30F45E596F0D8A86648362950C157 /* Requesters */ = { + 65CE47ABA2305F271B8E1E1BC3B6A4AE /* Support Files */ = { isa = PBXGroup; children = ( - 147CD9F32702691595FC2FE11C3403BD /* RemoteNotification */, - DFE2569B13085FCC2A60F1AF5FA1EA10 /* UserNotification */, + B0F30F07515A758A483B860F3513C551 /* EXAV.xcconfig */, + 78FC559638FFDE5C5C63798C6C8F7376 /* EXAV-dummy.m */, + 0F6F10FE1A274533FC7F8545A46A1F32 /* EXAV-prefix.pch */, ); - name = Requesters; - path = EXPermissions/Requesters; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXAV"; sourceTree = ""; }; - 6C7B3AB16BF6774B79560227D8E3B994 /* Singleline */ = { + 668D1CE5707759E2CBA8713AE378282F /* Support Files */ = { isa = PBXGroup; children = ( - 9C8F1E1F6089D261272D8D03F1ED97CF /* RCTSinglelineTextInputView.h */, - 09E3011B17312B959A38467C0123FC4B /* RCTSinglelineTextInputViewManager.h */, - ECE95D51C92A8BC75C7F4108723F4AE4 /* RCTUITextField.h */, + 1FB44558A4716076A776890E5B9EEA0A /* EXFileSystem.xcconfig */, + BD9EE87E52C304844B9278F8E57A6145 /* EXFileSystem-dummy.m */, + 62A3C16D13320B0D87D2A85FC64106F2 /* EXFileSystem-prefix.pch */, ); - name = Singleline; - path = Singleline; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXFileSystem"; sourceTree = ""; }; - 6C87F72243F692A4DE76085CF6D789E6 /* Support Files */ = { + 68D2E3C3900E521D984D94AA1FA3491C /* Pod */ = { isa = PBXGroup; children = ( - 2ABADCE36F2A93255F0B6ED89C75174E /* React-jsiexecutor.xcconfig */, - 31E2C8455EA94AE9E641B248102206B8 /* React-jsiexecutor-dummy.m */, - 9488757637FFD5FC260B3C294D47ED72 /* React-jsiexecutor-prefix.pch */, + 5C2B7EFB53DE779D6F2136B70AFAB9D4 /* React-jsinspector.podspec */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; + name = Pod; sourceTree = ""; }; - 6D42942118CEDEEBEAA5DA0884AF2743 /* RNAudio */ = { + 68E115FF35737531A179FD6EB66F09EB /* encode */ = { isa = PBXGroup; children = ( - 324706CA72283709C6953C448166A9A9 /* AudioRecorderManager.h */, - BFB1789515B4B57A57BBA01180625822 /* AudioRecorderManager.m */, - CB8BC73A96760860712B5E192680A0AA /* Pod */, - BBF622B0872DD0A727D4286909932110 /* Support Files */, ); - name = RNAudio; - path = "../../node_modules/react-native-audio"; + name = encode; sourceTree = ""; }; - 6D97C4BCFCAB419AB40E9B79661B9288 /* react-native-cameraroll */ = { + 6BA2C68FADFAA91299CE1BC07B24F703 /* Support Files */ = { isa = PBXGroup; children = ( - 0A7ED7C867EFB1AADF601062F778482C /* RNCAssetsLibraryRequestHandler.h */, - 95D3073A483921704D78E97838E101D3 /* RNCAssetsLibraryRequestHandler.m */, - 391FA89E4A62EA22768FB6CA3B8C06A5 /* RNCCameraRollManager.h */, - 53735EFB9F05CB52643324CC9137DE1A /* RNCCameraRollManager.m */, - D331E02BC0F501E1449ADCE059FE68B9 /* Pod */, - 0AE6FD7D76F038C1A4F9B4A537117DA8 /* Support Files */, + 4F3112315AC8239958E8D6F5FC897437 /* React-CoreModules.xcconfig */, + E5A99D61BC32FDB3E180C15A49884227 /* React-CoreModules-dummy.m */, + B7E0C6037F6D01B189B37DBE68F9269E /* React-CoreModules-prefix.pch */, ); - name = "react-native-cameraroll"; - path = "../../node_modules/@react-native-community/cameraroll"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; sourceTree = ""; }; - 6DCDF5885F39E87899007D7E573BD9F3 /* RCTAnimationHeaders */ = { + 6C8655EE57A1D0369E93B5FA0EED541F /* Support Files */ = { isa = PBXGroup; children = ( - 2C910DEB0F6609AF005E02036652D748 /* RCTAnimationPlugins.h */, - C0F20F742C54B26F631F05038C9BA9BA /* RCTAnimationUtils.h */, - 9F4297F5B8A71095E993382EA72EB207 /* RCTNativeAnimatedModule.h */, - 594C6F33F1EC10518B8B4A0F2B753591 /* RCTNativeAnimatedNodesManager.h */, - 8DCD3D3B1FB5056A9167FB1EB3686EA5 /* Drivers */, - 29D65B96344FE111D335E84270A96303 /* Nodes */, + 3B5FFECD1A6CEB423DF95FD048E5BB70 /* React-Core.xcconfig */, + 3CC05D15E4FBC13017DC21AC3516AB05 /* React-Core-dummy.m */, + FEB5BB714408BE7E3E55256B8006E814 /* React-Core-prefix.pch */, ); - name = RCTAnimationHeaders; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React-Core"; sourceTree = ""; }; - 6DE2BC9787CFD9D8A1B4C677FD4C5FF6 /* Profiler */ = { + 6E122A577A17D199F753E6775420244F /* turbomodule */ = { isa = PBXGroup; children = ( - FC2DC5C86F5CECF620384916C4995D9B /* RCTMacros.h */, - 9C7D1B455671EA056C902123DDB90E26 /* RCTProfile.h */, - 0E0C1D43ADC74B4277BB727935011CD8 /* RCTProfile.m */, - 6A01959049459F6180CDF12E9BF2E794 /* RCTProfileTrampoline-arm.S */, - E138989E28E0CBEE52F963CE389779E8 /* RCTProfileTrampoline-arm64.S */, - 57EB8B51C0ACBDB44AFD9D3D36D858E1 /* RCTProfileTrampoline-i386.S */, - 02ADEF2EBE6BE74990926B31325535DE /* RCTProfileTrampoline-x86_64.S */, + 740D539E514816C27C34A3D7A5AD120A /* core */, ); - name = Profiler; - path = React/Profiler; + name = turbomodule; sourceTree = ""; }; - 6E0247C37146B20A9E4F1B8571B8ACE2 /* Pod */ = { + 6E5355AE6E191C4B9C0ED56EC0948F53 /* Frameworks */ = { isa = PBXGroup; children = ( - A229D9F50A2C098F0B13EEFFCFD153DB /* LICENSE */, - 12284038935A628DCA5F981E113F4927 /* README.md */, - DAE471F02C23B363E017C53DA3A781CF /* RNBootSplash.podspec */, + 635EEB1EA7D3D21225D4A9D0833916C4 /* GoogleAppMeasurement.framework */, ); - name = Pod; + name = Frameworks; sourceTree = ""; }; - 6E5355AE6E191C4B9C0ED56EC0948F53 /* Frameworks */ = { + 6F5CB36F8449C4AE859CC2C11F73A479 /* database */ = { isa = PBXGroup; children = ( - 635EEB1EA7D3D21225D4A9D0833916C4 /* GoogleAppMeasurement.framework */, + FB511DCBCB8C1E39F08170011B1EC53C /* RNFirebaseDatabase.h */, + FF5C4F23D4B873252D3A6AE0DF8097A2 /* RNFirebaseDatabase.m */, + C6CE7FD179C4AC1076A1490F1113E57F /* RNFirebaseDatabaseReference.h */, + 8CDCE1E47B7388E3909F728A49F23635 /* RNFirebaseDatabaseReference.m */, ); - name = Frameworks; + name = database; + path = RNFirebase/database; sourceTree = ""; }; - 6EC6ED43651444E71B6892389C47FB32 /* RCTNetworkHeaders */ = { + 6F6B156B193BC53BAA40E2587B097BFC /* Pod */ = { isa = PBXGroup; children = ( - 74F24B597314054D87C8C1F6195DB87D /* RCTDataRequestHandler.h */, - AB15DBA4D06B0F95D1DC5B7E7E59C822 /* RCTFileRequestHandler.h */, - BE6C7B879BFD452E4DCD69E7D8407DB1 /* RCTHTTPRequestHandler.h */, - 2A0F368092D9D7E5A6F338E6BFE5660E /* RCTNetworking.h */, - 5E9D3EBF1958D478F2E1A4516BF26487 /* RCTNetworkPlugins.h */, - AE2BA269FC8F7B708D9C56011444A49D /* RCTNetworkTask.h */, + AADB504F9C156B3D00120181B51F2801 /* UMConstantsInterface.podspec */, ); - name = RCTNetworkHeaders; + name = Pod; + sourceTree = ""; + }; + 70D27CC6A706FE3BEB1AC9F313149B27 /* RCTVibrationHeaders */ = { + isa = PBXGroup; + children = ( + A0ED982208918E631CC8CEFAE53C2933 /* RCTVibration.h */, + 792B55D7846CD54E6E0D9A6EB6267E65 /* RCTVibrationPlugins.h */, + ); + name = RCTVibrationHeaders; sourceTree = ""; }; - 6F15F43CF59EBD3FE36178D3FE19AF83 /* Text */ = { + 7164545B32BB9092F5466466E6EAFF35 /* Text */ = { isa = PBXGroup; children = ( - 096530808622CCBD0AE02939C955F3D6 /* NSTextStorage+FontScaling.h */, - C9238C9A7502CDE4EEA318937B3C2794 /* RCTTextShadowView.h */, - 7217E237D2A8F4C231EEE6DE8DD0B9CD /* RCTTextView.h */, - F235122697705D62E08B57C7B9483E66 /* RCTTextViewManager.h */, + 2446945A75F9ED8B563C794EE127EFF1 /* NSTextStorage+FontScaling.h */, + 73065DE1F8840A8ABC2876DF435633A6 /* RCTTextShadowView.h */, + 9E2F76B6E1E1EB19639E0B346D5E3604 /* RCTTextView.h */, + 3A6338FFA1BF9B037B6F0C6519132F1A /* RCTTextViewManager.h */, ); name = Text; path = Libraries/Text/Text; sourceTree = ""; }; - 6F2CDCE53142510F66BE590E7467CF2F /* React-RCTText */ = { + 7166D821B1826C3F62FAFEE11C4326D1 /* Support Files */ = { isa = PBXGroup; children = ( - 27CF5439AFE8FA90355B9679CB21494B /* RCTConvert+Text.m */, - A59A3367288ADAB08AA4A94015AEAA17 /* RCTTextAttributes.m */, - 4BFE82B23744D61178F2FF6252751820 /* BaseText */, - F96D175D19CB7059722D313EEDC47B40 /* Pod */, - C693D6EC6D4265D76D49991B452222E0 /* RawText */, - E7F10426804961AEAFC0BE414091D69F /* Support Files */, - C1035E1AC63F6D666DE9EA2BC26754FE /* Text */, - 6FCA6E3F3360F71D543AF2CC2593AEA8 /* TextInput */, - 78AF62CF83FAD3AC21D2F72DD7E06C3F /* VirtualText */, + 9D4CE3A71A5538DAAC51A80FB5C2E65D /* GoogleUtilities.xcconfig */, + 1E62C69369E251ACD8E2B0D16898898E /* GoogleUtilities-dummy.m */, + 5A1A5C915BDC8D51571EE0E49CE01324 /* GoogleUtilities-prefix.pch */, ); - name = "React-RCTText"; - path = "../../node_modules/react-native/Libraries/Text"; + name = "Support Files"; + path = "../Target Support Files/GoogleUtilities"; sourceTree = ""; }; - 6FBC050FE2676980FE6CA34EA231D0EA /* Pod */ = { + 7184CDA7D616CD03EA81360866210087 /* EXPermissions */ = { isa = PBXGroup; children = ( - B27AAEEE0353A88DBF876477948D4291 /* React-jsinspector.podspec */, + EE0B40365C5A9E83E019BDB1A385DC54 /* EXPermissions.h */, + 3823CA8454E02634998A9FF85092F39E /* EXPermissions.m */, + 49FA0CAA013304A6C10DF62971F3D60E /* EXReactNativeUserNotificationCenterProxy.h */, + 16FE72EAB6AEFE327C8261520F3A4A77 /* EXReactNativeUserNotificationCenterProxy.m */, + 4A08A04C0EE834E35680D3EC25AD5E48 /* Pod */, + 7F0FCF40167FEC2F1DC1D23D57755482 /* Requesters */, + A6AEB8C3043097D6219658D729BB9319 /* Support Files */, ); - name = Pod; + name = EXPermissions; + path = "../../node_modules/expo-permissions/ios"; sourceTree = ""; }; - 6FCA6E3F3360F71D543AF2CC2593AEA8 /* TextInput */ = { + 724E49F6988B03CBA90AD23C7230D6EF /* Frameworks */ = { isa = PBXGroup; children = ( - E7FEFC8BF31652AE75D2A6B5CCF97FE3 /* RCTBackedTextInputDelegateAdapter.m */, - FC76F239BF3B62D1ACCD0007933BDF72 /* RCTBaseTextInputShadowView.m */, - D4CB377774658A47456D1529B052C7EC /* RCTBaseTextInputView.m */, - 930C07D496B0306731EE1E12EB49EE36 /* RCTBaseTextInputViewManager.m */, - C7289159049E31701895AEDF256DE9BB /* RCTInputAccessoryShadowView.m */, - A41064C9FA8F1A7C29EFF9F8B583AF54 /* RCTInputAccessoryView.m */, - 064B454F7BC2B101368FF9057395ACE5 /* RCTInputAccessoryViewContent.m */, - F499C1B29AA068DB65988968E24DAE59 /* RCTInputAccessoryViewManager.m */, - E9365E0F3C70A00DFFB73C55CE208FA1 /* RCTTextSelection.m */, - E5ED64B800388D59246B271D45744FE9 /* Multiline */, - 1467D8E20A7865E67780EEB3DD700113 /* Singleline */, + 375C920EA998F832EAB1C920B324F461 /* JitsiMeet.framework */, + 8CCC6BE8FE8A9A3CB9EE54F7D16953CC /* WebRTC.framework */, ); - name = TextInput; - path = TextInput; + name = Frameworks; sourceTree = ""; }; - 70C575CCC2D61E4480E4B2E10476AC87 /* Modules */ = { - isa = PBXGroup; - children = ( - E6ACBAD632439F409068F8598984ACE9 /* RCTEventEmitter.h */, - E8D3B8F52EEE1AAD7AF95F4D98371347 /* RCTEventEmitter.m */, - E38FE81BDDD5BD672BD3F564F64D524C /* RCTI18nUtil.h */, - 36A5BF922FAFED826AF8644C774A3DBC /* RCTI18nUtil.m */, - 574D7400D4FA4995E1CA19A91291CB58 /* RCTLayoutAnimation.h */, - B7A5C8CB88C1D2EDD86B5D8FA276A452 /* RCTLayoutAnimation.m */, - CD6FB009D4E50D67DF92F21F8DAFE5BE /* RCTLayoutAnimationGroup.h */, - 86E4F8E331A1E8766EE7DFC72710CFFB /* RCTLayoutAnimationGroup.m */, - 21AFCC848706AC146667C33200C1CD2C /* RCTRedBoxExtraDataViewController.h */, - 2228D771F5EFF55AA041447138D04359 /* RCTRedBoxExtraDataViewController.m */, - CD6E14841088CB752B6312D567BFFFE9 /* RCTSurfacePresenterStub.h */, - 474A87575CEA38A9E52970DFF7AEAB43 /* RCTSurfacePresenterStub.m */, - 53C2EA867FAAF4242F4816A6E06D4685 /* RCTUIManager.h */, - 6B2BDC1075053600BB48E4327B127095 /* RCTUIManager.m */, - A89985B8D6B7454457C079CABB112119 /* RCTUIManagerObserverCoordinator.h */, - 34B9077B77809D6B9B552D2BFA10F8C3 /* RCTUIManagerObserverCoordinator.mm */, - B3262FD84C1E3BB00C4CF6EE49E677B5 /* RCTUIManagerUtils.h */, - 6CB305FB16C6980DFAEF89A3008ACF2E /* RCTUIManagerUtils.m */, + 726BBB1304EF42720D1D39259A727A11 /* VirtualText */ = { + isa = PBXGroup; + children = ( + 96C95F158780A207A3DF0187A6F45A94 /* RCTVirtualTextShadowView.m */, + 15BBF09FB8F56B02D95139D4A75E513A /* RCTVirtualTextViewManager.m */, ); - name = Modules; - path = React/Modules; + name = VirtualText; + path = VirtualText; sourceTree = ""; }; - 7166D821B1826C3F62FAFEE11C4326D1 /* Support Files */ = { + 7272D0EA413AA8DADC89B02D4D0FB518 /* VirtualText */ = { isa = PBXGroup; children = ( - 9D4CE3A71A5538DAAC51A80FB5C2E65D /* GoogleUtilities.xcconfig */, - 1E62C69369E251ACD8E2B0D16898898E /* GoogleUtilities-dummy.m */, - 5A1A5C915BDC8D51571EE0E49CE01324 /* GoogleUtilities-prefix.pch */, + F3C325EBFB4B2EA1E1153643601F409D /* RCTVirtualTextShadowView.h */, + 44FA2E2BDFD4492C7DD867AEE0A192F6 /* RCTVirtualTextViewManager.h */, ); - name = "Support Files"; - path = "../Target Support Files/GoogleUtilities"; + name = VirtualText; + path = Libraries/Text/VirtualText; sourceTree = ""; }; - 724E49F6988B03CBA90AD23C7230D6EF /* Frameworks */ = { + 72D0F1F2D113D2C5F1D14FA339EFEDA6 /* rn-fetch-blob */ = { isa = PBXGroup; children = ( - 375C920EA998F832EAB1C920B324F461 /* JitsiMeet.framework */, - 8CCC6BE8FE8A9A3CB9EE54F7D16953CC /* WebRTC.framework */, + 99F43DDAD9C6F4155504DF0EE3360570 /* IOS7Polyfill.h */, + AB677D9A194FB8B52ED29A89A28B780C /* RNFetchBlobConst.h */, + EF7301889EE1F37785C78A9971C00ED4 /* RNFetchBlobConst.m */, + 4F8BF425552C43041F07D5F815A12730 /* RNFetchBlobFS.h */, + D58700AA53D869B15626EEA39FC664A7 /* RNFetchBlobFS.m */, + 2DD8EAE35A82F325B9433D5269FB7B3F /* RNFetchBlobNetwork.h */, + 8D9B427C03288A0DB252985BBDFE5599 /* RNFetchBlobNetwork.m */, + CEB2AC17D76CB6BCB416C99E16094195 /* RNFetchBlobProgress.h */, + 2A5FDB191B2FCC68878DF1026B2F3823 /* RNFetchBlobProgress.m */, + 2811128BCAC24E68D241E515303FD488 /* RNFetchBlobReqBuilder.h */, + 54A64C1E29470902B13F576BCF2459AD /* RNFetchBlobReqBuilder.m */, + 24A113A448FC06620948268EAF67AF8E /* RNFetchBlobRequest.h */, + 17ADA862895BAB659A680E04957FF98D /* RNFetchBlobRequest.m */, + 8A6912D4BA46B10BD5FE806A6F1D0AF9 /* Pod */, + 2EBFB4F1BDE9623922EA9D3965ADE328 /* RNFetchBlob */, + D1455D463014A9A35D8DC0E8EDFD7AA4 /* Support Files */, ); - name = Frameworks; + name = "rn-fetch-blob"; + path = "../../node_modules/rn-fetch-blob"; sourceTree = ""; }; - 74146D9398475B1693B69D4B9FD9BBC4 /* storage */ = { + 738C5F7CC2DBFDEC07510942CB25AE43 /* Support Files */ = { isa = PBXGroup; children = ( - 22F87E7247324887C6502EDA25DED060 /* RNFirebaseStorage.h */, - 83B79C8BD3D16E22D3EF6179CA31D62F /* RNFirebaseStorage.m */, + C7767E56845E21A11C6CAD49A3455020 /* RNUserDefaults.xcconfig */, + 7A7DF56CDAD97FB6778931FC7EAAF8D9 /* RNUserDefaults-dummy.m */, + 983283598AF5C3B66E8E773C2676715B /* RNUserDefaults-prefix.pch */, ); - name = storage; - path = RNFirebase/storage; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNUserDefaults"; sourceTree = ""; }; - 7505E5DB8D9EFBE6FCD2951D962F1DFF /* Pod */ = { + 73988621B460A573BD46ECF868B37055 /* Drivers */ = { isa = PBXGroup; children = ( - 5D0933BD8EE387129928FBABEFA183BE /* UMImageLoaderInterface.podspec */, + 6F58A2DE39E8CBA92F7371D3C190D816 /* RCTAnimationDriver.h */, + 1A0C368CC1F3074A0E4DD8CF4F07B6C5 /* RCTDecayAnimation.h */, + 74A2A83FA393D8943E66E985ACE4F0BA /* RCTEventAnimation.h */, + C5E4029F0F04274F6FE1BE3AFDE192F0 /* RCTFrameAnimation.h */, + 3E706780438019BAC0624C99374DFAB0 /* RCTSpringAnimation.h */, ); - name = Pod; + name = Drivers; + path = Libraries/NativeAnimation/Drivers; sourceTree = ""; }; - 750974AD76AFC9A117C512C8FF99C99F /* TextInput */ = { + 740D539E514816C27C34A3D7A5AD120A /* core */ = { isa = PBXGroup; children = ( - 4B27C3CD814DEC5AFF14FD42FD880936 /* RCTBackedTextInputDelegate.h */, - 555F885B0D04FB0091104CA4361C6E81 /* RCTBackedTextInputDelegateAdapter.h */, - B6857FE0A012F6B7148319EFD9FF9451 /* RCTBackedTextInputViewProtocol.h */, - 77B189D27912E55B5B6BCFE03D2D42B4 /* RCTBaseTextInputShadowView.h */, - 00E27FAC0E4D4545A9C6EE57AE84854A /* RCTBaseTextInputView.h */, - F7AC4425EDE6BFB8E5072393B5AC89E5 /* RCTBaseTextInputViewManager.h */, - FCD5362D68B85E6601A2FED4F6E7500B /* RCTInputAccessoryShadowView.h */, - EC3D5D021E2F22216428F54B28857BF7 /* RCTInputAccessoryView.h */, - 78CFC35A3CC83CBFA7DCA5AFC6FB7185 /* RCTInputAccessoryViewContent.h */, - 50CDFFC3E0F987E0B010AF0F7B6A0C0D /* RCTInputAccessoryViewManager.h */, - 07BF3CB541F4C1BCC4ADFAF312581CB5 /* RCTTextSelection.h */, - D2CE725788413C62F26BE7F02819780B /* Multiline */, - 6C7B3AB16BF6774B79560227D8E3B994 /* Singleline */, + 48DB6C436B370FD869740FF72B025DF1 /* LongLivedObject.cpp */, + FD2FF00E8E1D5BA74687F5449EF45F68 /* LongLivedObject.h */, + C6D29CCF8C317AD3563755137F8E38D7 /* TurboCxxModule.cpp */, + DAE698D83C3018DA7D94A29BCA3C2F99 /* TurboCxxModule.h */, + 24E2A2315152475E8843250F3226DF23 /* TurboModule.cpp */, + 5CFF810079ED974101746B6406EEC2A3 /* TurboModule.h */, + 9C093D15DB44B6A039662E2B3127C1B1 /* TurboModuleBinding.cpp */, + 9F27146AEF64C6E7181C8D981C69E02A /* TurboModuleBinding.h */, + C70381B0803791E4B1968F07DB602CBE /* TurboModuleUtils.cpp */, + 0D2CA121B037274579E5BB4A1323ADDF /* TurboModuleUtils.h */, + 8C70AFCE27E262C1CA86CA753E870C92 /* platform */, ); - name = TextInput; - path = Libraries/Text/TextInput; + name = core; sourceTree = ""; }; 751233F250C4B85B7E4F0C1E4FFF35AF /* Folly */ = { @@ -12750,43 +12805,65 @@ path = FirebaseCoreDiagnosticsInterop; sourceTree = ""; }; - 773CD5572DD70CAEBFB454A9AF729AE2 /* Pod */ = { + 76B5314E38D52C83CD46FBE370C862AB /* Multiline */ = { isa = PBXGroup; children = ( - BCC9A9272B488D83A4EA09F1403BA079 /* LICENSE */, - 92F4E9C8C6FD85E1FB12AAF8976197E8 /* react-native-orientation-locker.podspec */, - 694C5135432E74476DD1273FCAA5C815 /* README.md */, + 0A8F042A10FEB0CAF97AD9D4B19791E2 /* RCTMultilineTextInputView.h */, + FFFD65F89899E7581B14E6D5591A908D /* RCTMultilineTextInputViewManager.h */, + 2F0D236CFE1440B409DF707C02A8010B /* RCTUITextView.h */, ); - name = Pod; + name = Multiline; + path = Multiline; sourceTree = ""; }; - 78A6CF5DE4A8CB07DF1D443B204A7483 /* Support Files */ = { + 77783664C02F1B49FA7C07CF84155212 /* Support Files */ = { isa = PBXGroup; children = ( - BB4E515183972964190DB1E137702400 /* RNScreens.xcconfig */, - 2536DDA97AD131C68C0518E3B194F4BC /* RNScreens-dummy.m */, - 17D8D67E8E01B607E176F601FFC20E09 /* RNScreens-prefix.pch */, + 8835C348AFCBB837C33237110E8F969F /* React-RCTAnimation.xcconfig */, + B3B80503ED2A3688559AABB1B838752E /* React-RCTAnimation-dummy.m */, + E9FAF826DC54D2EA58997BF0FD376821 /* React-RCTAnimation-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNScreens"; + path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; sourceTree = ""; }; - 78AF62CF83FAD3AC21D2F72DD7E06C3F /* VirtualText */ = { + 77FD712E147A7168473325DB61D4D712 /* Pod */ = { isa = PBXGroup; children = ( - 84CEA15C9F028188FC76B20548085682 /* RCTVirtualTextShadowView.m */, - 94923A18A7B065BEAF5EA283A6A12C58 /* RCTVirtualTextViewManager.m */, + 2D8D536D63ACC5FFBC999E9261019CC3 /* LICENSE */, + C84397767261FEA23CDA756B4B95F67B /* README.md */, + 00774184117AC245750248BA3D74C714 /* rn-extensions-share.podspec */, ); - name = VirtualText; - path = VirtualText; + name = Pod; + sourceTree = ""; + }; + 785DD6E89943386269D0C92C92A556B7 /* Pod */ = { + isa = PBXGroup; + children = ( + FE41DF668E120C3E28D229F5950CE2B1 /* LICENSE */, + 2694584CE37F0BAD4865C0BE05D6878D /* README.md */, + D81099672572D0577DA53A25CEEB67C8 /* RNUserDefaults.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 787746EED6852FC777FB60F0B44DC26D /* RCTNetworkHeaders */ = { + isa = PBXGroup; + children = ( + 521CF97A86252ACD0DA65DB914A16C34 /* RCTDataRequestHandler.h */, + 9FF53C6BFB492D84AFA525364B3D7749 /* RCTFileRequestHandler.h */, + F7869DEF8CF538E075D646BC5C2707BB /* RCTHTTPRequestHandler.h */, + 0662549B01092092E7A0143898E914CB /* RCTNetworking.h */, + 656E6AD003C36D755E4B2612CDB1E649 /* RCTNetworkPlugins.h */, + A42D2B3CF00BA2B3485C21C51CB84E49 /* RCTNetworkTask.h */, + ); + name = RCTNetworkHeaders; sourceTree = ""; }; - 78BAF8F24B2B9E7901298DBE7475BBB7 /* Pod */ = { + 798CC95A61F89644863A74733BCA63F6 /* Pod */ = { isa = PBXGroup; children = ( - 4A3E2AF7B71E6955C3306EC63508E8A1 /* LICENSE */, - 50D716E093D94B1B33877BCC9D547EB7 /* README.md */, - 96A8287B0D35FA463B068CC6FC72D2D9 /* RNScreens.podspec */, + 14A926FB822DFDC6BB7982259849F2E1 /* React-jsiexecutor.podspec */, ); name = Pod; sourceTree = ""; @@ -12832,6 +12909,19 @@ path = CocoaLibEvent; sourceTree = ""; }; + 7ABE9F7773098E2A210995D7C34281A9 /* RCTAnimationHeaders */ = { + isa = PBXGroup; + children = ( + 5BBE3368DB226DB877914F70A20906B2 /* RCTAnimationPlugins.h */, + D10AC064663A8621F9CA87C251D4360F /* RCTAnimationUtils.h */, + C185F8B998CB65285F15AA23AB9A16C2 /* RCTNativeAnimatedModule.h */, + 6629329DFF90AF7A98A4D0054535403C /* RCTNativeAnimatedNodesManager.h */, + 73988621B460A573BD46ECF868B37055 /* Drivers */, + 20E47EE1E745FD2B0C2CD40443745A24 /* Nodes */, + ); + name = RCTAnimationHeaders; + sourceTree = ""; + }; 7B87AFC317A4BD2321D48B16E729D6C9 /* Support Files */ = { isa = PBXGroup; children = ( @@ -12843,127 +12933,137 @@ path = "../Target Support Files/Folly"; sourceTree = ""; }; - 7BDBFC6A54E08FDCB7C1A31433724419 /* Support Files */ = { + 7BD8894801CE0C3C737D3723D657AF7C /* react-native-background-timer */ = { isa = PBXGroup; children = ( - AC68DDDC7441B628763DD9D36213E057 /* UMBarCodeScannerInterface.xcconfig */, + BF085CE00A228405C2C3D86EE49E8CEB /* RNBackgroundTimer.h */, + FDE5B9F0DB89F28D60E8BB63C7725CCC /* RNBackgroundTimer.m */, + 379C5A9097189B2D84A70FACF5C806C4 /* Pod */, + E6EDDA1FB127295D17BDFF407A40B29F /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; + name = "react-native-background-timer"; + path = "../../node_modules/react-native-background-timer"; sourceTree = ""; }; - 7CAA5C4B6FA05938AE46A49F0C30DE37 /* Pod */ = { + 7CA1A380778956CA329E3DD9756E7AB9 /* Support Files */ = { isa = PBXGroup; children = ( - B6B18E19B3AB3EAFDD77A00D6D9B310E /* React-cxxreact.podspec */, + 702D4587FC7CAF227427C89C7FAFD8C4 /* RNScreens.xcconfig */, + 0E61FE486B1C309A3C3A8EDD1DF1994A /* RNScreens-dummy.m */, + CFE96E2B7F1A54B5BB8BD48A34475937 /* RNScreens-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNScreens"; sourceTree = ""; }; - 7D863AC48C0C7D71312CF741ED412F53 /* Frameworks */ = { + 7CB716AB427DDBA8476D9B4D9BC55BB3 /* Pod */ = { isa = PBXGroup; children = ( - 897EBB23B4B312E08E041AE91BFF2D31 /* FIRAnalyticsConnector.framework */, - 9CDF1F3AEEC7567280369856FF0EFE34 /* FirebaseAnalytics.framework */, + 8BC2B04115B184A59B814954CE51B581 /* React-RCTAnimation.podspec */, ); - name = Frameworks; + name = Pod; sourceTree = ""; }; - 7DD96FBD9D07E8B4D7F0314BC0AE265F /* React-jsi */ = { + 7D5E215D014B45831937428B041C4D4F /* RNRootView */ = { isa = PBXGroup; children = ( - 121C2910524BBEFA9563EB74C2921F8F /* JSCRuntime.cpp */, - 8CBB8B36DA44725BA3658B8988038B04 /* JSCRuntime.h */, - ACDDDEAAB46330E719903EA3FA9FADCC /* jsi */, - 86BFC6B6CDB9FB950F311608F402663D /* Pod */, - 22314EB82BE621D6A0560322443E78F4 /* Support Files */, + 078040AB7535842DAD005C7F25CEBC74 /* RootView.h */, + 316F4799926A85CDE6CF0D3FDCB71582 /* RootView.m */, + 9ED7201D5B9CC352953CAE057E8D53DE /* Pod */, + 2E954155DD6426978F8F374F97AB1F34 /* Support Files */, ); - name = "React-jsi"; - path = "../../node_modules/react-native/ReactCommon/jsi"; + name = RNRootView; + path = "../../node_modules/rn-root-view"; sourceTree = ""; }; - 7E8C44961FBF3FEDE139B7EBED39395A /* Pod */ = { + 7D863AC48C0C7D71312CF741ED412F53 /* Frameworks */ = { isa = PBXGroup; children = ( - C2683D2F2E237858A50FC07DAACFCB7F /* EXKeepAwake.podspec */, + 897EBB23B4B312E08E041AE91BFF2D31 /* FIRAnalyticsConnector.framework */, + 9CDF1F3AEEC7567280369856FF0EFE34 /* FirebaseAnalytics.framework */, ); - name = Pod; + name = Frameworks; sourceTree = ""; }; - 7EE3544DA9E98A093DF27C96D4BA0D38 /* notifications */ = { + 7D93ED9D805287AB990EE837ECE81103 /* Support Files */ = { isa = PBXGroup; children = ( - C18F5EBFB911662933AB752A409FCB5B /* RNFirebaseNotifications.h */, - 3B3521A9FE101B163F2C9A187BD1E7E3 /* RNFirebaseNotifications.m */, + F7FC50AB3769D8B489703AF8B57EE592 /* UMSensorsInterface.xcconfig */, ); - name = notifications; - path = RNFirebase/notifications; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; sourceTree = ""; }; - 7F1872A0F8CAB49A4B206C243EDFE667 /* Support Files */ = { + 7DB9FF371EFAF8693012FE4555EFE5D0 /* Support Files */ = { isa = PBXGroup; children = ( - EAE32E30BFC9792E281139AEB50CBF12 /* rn-extensions-share.xcconfig */, - 3DC6A673372926D61D8997915CCE6D97 /* rn-extensions-share-dummy.m */, - 180E90B99FD16FD9D240CBA38531C2E9 /* rn-extensions-share-prefix.pch */, + 23918F66B61005385A067544979022B4 /* RNVectorIcons.xcconfig */, + 4BB89127F31A0E8631FEE39AAE27F683 /* RNVectorIcons-dummy.m */, + 4C965283A9774572146C8181722B2879 /* RNVectorIcons-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-extensions-share"; + path = "../../ios/Pods/Target Support Files/RNVectorIcons"; sourceTree = ""; }; - 801A72FC6E5DACBE5F69A3E624F1B98F /* react-native-document-picker */ = { + 7E14501D8581AB46DE5597C86129A43E /* Support Files */ = { isa = PBXGroup; children = ( - 5978EB2DC09C2C72478F6CEEE0A63978 /* RNDocumentPicker.h */, - DBA47DDEAD4D6754F88945C0073C0BBB /* RNDocumentPicker.m */, - DFD5E3275D09951E802D172CF97DE4E5 /* Pod */, - 433BC581F38245A7EF55F962BAAAF798 /* Support Files */, + 2A417F150D5E5377C589D3FADCF8F8F9 /* ReactNativeKeyboardInput.xcconfig */, + C8DBA11BE7155D3CA87FBB981D9E5DBC /* ReactNativeKeyboardInput-dummy.m */, + 8FF62140184E1BAD871E5B8FF3A33F2C /* ReactNativeKeyboardInput-prefix.pch */, ); - name = "react-native-document-picker"; - path = "../../node_modules/react-native-document-picker"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardInput"; sourceTree = ""; }; - 8082D353BB935CBA6F286A61F7B6D013 /* Pod */ = { + 7F0FCF40167FEC2F1DC1D23D57755482 /* Requesters */ = { isa = PBXGroup; children = ( - 1842644006872371281A046E2603365F /* RCTRequired.podspec */, + 1F648791837B8B2D69FE6020B19C285A /* RemoteNotification */, + DCD6ADAAC500A4F4B2DDBF86DFEA89DA /* UserNotification */, ); - name = Pod; + name = Requesters; + path = EXPermissions/Requesters; sourceTree = ""; }; - 80CFF7CAB8AAC775CABCE6B263904010 /* platform */ = { + 7FC26E1B104CCF3F00695D9C6178A24A /* auth */ = { isa = PBXGroup; children = ( - 1B2BEFA4AD79884F68B0733DDDE09EFF /* ios */, + DD8E85CE4F365EEAFE4AB0F7D8E742F2 /* RNFirebaseAuth.h */, + 6D4AA9721E39E7020252897C8EE9E9EF /* RNFirebaseAuth.m */, ); - name = platform; - path = turbomodule/core/platform; + name = auth; + path = RNFirebase/auth; sourceTree = ""; }; - 8181BBEAF7F7B5DEA838EE799397B204 /* UMBarCodeScannerInterface */ = { + 824DD3082F31A70B9D504CAD50762741 /* RNFastImage */ = { isa = PBXGroup; children = ( - B19328D30EFAEE6C7FD94F39C5D6FE50 /* UMBarCodeScannerInterface.h */, - CCEF9059AAE3C22B0EBD5BAAB618D1A4 /* UMBarCodeScannerProviderInterface.h */, - 0352856E1BF7B7187BD2BC8470781B6B /* Pod */, - 7BDBFC6A54E08FDCB7C1A31433724419 /* Support Files */, + AA1CEE6105502CBCFEDAB7DF17BDDD23 /* FFFastImageSource.h */, + 925033ABA65EC4A4A0569F0BB931F5F8 /* FFFastImageSource.m */, + EAACA436CF9DDA9300A82EFFF2F51DB4 /* FFFastImageView.h */, + 9034E359E2C9C4D864B55061A253F762 /* FFFastImageView.m */, + BBC3A224341DD39F8F17B9E8291D2F93 /* FFFastImageViewManager.h */, + CEEA2AB72524B44262F1239949CA36E0 /* FFFastImageViewManager.m */, + AD401082CD9FCC9240C43986DF8B0F9C /* RCTConvert+FFFastImage.h */, + 4B9352897284F5E24FFEDF9755CCB430 /* RCTConvert+FFFastImage.m */, + 2393A1F5598670D444E1E000EFE6E5DB /* Pod */, + F5286ACAFF5C4DB1C90F57270D8576A0 /* Support Files */, ); - name = UMBarCodeScannerInterface; - path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; + name = RNFastImage; + path = "../../node_modules/react-native-fast-image"; sourceTree = ""; }; - 81F8D6AEE55E9B8DB0945B9F3A62BBF2 /* UMPermissionsInterface */ = { + 8333CFFB492E9D1B2879C531B95DF339 /* UMFileSystemInterface */ = { isa = PBXGroup; children = ( - B97E97DB7AFAC13D5E6F157E5593C7D8 /* UMPermissionsInterface.h */, - 29B194002894F596571B50ECA498E7A4 /* UMPermissionsMethodsDelegate.h */, - DA23FA802004150814858F296B06E271 /* UMPermissionsMethodsDelegate.m */, - ABCF67441147F7505A4D4AE3861302A8 /* UMUserNotificationCenterProxyInterface.h */, - 15B62160302337FDC23F9FE70B942F88 /* Pod */, - 8FC1AD4B125CE195870FF370752E772F /* Support Files */, + C688A3592A3A127537C8D88ADA323A4A /* UMFilePermissionModuleInterface.h */, + C990D4E0C827BCA4FAB0D26F0F2EF99A /* UMFileSystemInterface.h */, + 338AEA5F913069326626CF5A3F294157 /* Pod */, + 50AC12D353F20A95C2F10C58713C9526 /* Support Files */, ); - name = UMPermissionsInterface; - path = "../../node_modules/unimodules-permissions-interface/ios"; + name = UMFileSystemInterface; + path = "../../node_modules/unimodules-file-system-interface/ios"; sourceTree = ""; }; 8340D7746CE4006DE21ACD2BECC9E5FE /* Core */ = { @@ -12993,25 +13093,57 @@ name = Core; sourceTree = ""; }; - 836F5890BB04FEC30653AB8F686F6888 /* CxxUtils */ = { + 834B670BCFC595224F83C4DCFD80D473 /* Support Files */ = { isa = PBXGroup; children = ( - 8141097306C15C605D00A0BDEA23135F /* RCTFollyConvert.h */, - 1FB7ECFA1E2EB82E596204EF9FF6C56B /* RCTFollyConvert.mm */, + DA70884E7FDA3795BFD5C16FFE565B79 /* React.xcconfig */, ); - name = CxxUtils; - path = React/CxxUtils; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React"; + sourceTree = ""; + }; + 83788B6EC989EC16561AD111BD6794A5 /* ReactNativeART */ = { + isa = PBXGroup; + children = ( + A46BA424F67F2C0AE8433FE86DF04D66 /* ARTCGFloatArray.h */, + 1C6CC2BF5F040FADD1CE554A0195E374 /* ARTContainer.h */, + 8C3D4B1C7E262B5BE03017489A5BE167 /* ARTGroup.h */, + A1B6E0DEAE050B7F6A8B40D80576E20D /* ARTGroup.m */, + 42844D184F4BC602A0E614A5974AC8B8 /* ARTNode.h */, + 7AD0336E926D7868080715D0484EE6CA /* ARTNode.m */, + 6BDD13808F0FD3CD6C8D5B5F059AE3BD /* ARTRenderable.h */, + 9189B7CFC60E657644EB3DDAC9210209 /* ARTRenderable.m */, + 012F641FBBA7737BE6C952B09555EC59 /* ARTShadow.h */, + 6FE0DCF2493614DF6C5C6C4EC539AE43 /* ARTShape.h */, + 91C1B02EC5CC1A22AFA2EABF24E6F8BC /* ARTShape.m */, + AF36392F1D7B314507E4BD61C3E5E701 /* ARTSurfaceView.h */, + 76420227D28412B923B6F8B25E130F86 /* ARTSurfaceView.m */, + 282EB84C2822C44597857D035DF0CA33 /* ARTText.h */, + DB5604C9ED19C28003800F8E65692022 /* ARTText.m */, + 55C3D530396EE6508E27971DB8496D54 /* ARTTextFrame.h */, + 1E651C3E90ED823F29D1D4723930B040 /* RCTConvert+ART.h */, + C4C79237B9A4679C2D556CF6AF1F1C6F /* RCTConvert+ART.m */, + 8BDA6B37F86F3CF0E7A1426C4ACE721A /* Brushes */, + 41A9C93B68AED2A3F015DDD1E4A44FD8 /* Pod */, + 5AB29CB3E433B4BF5D2517E11899BD54 /* Support Files */, + E62047C7CBD7A4BCF81FBB29868A4A05 /* ViewManagers */, + ); + name = ReactNativeART; + path = "../../node_modules/@react-native-community/art"; sourceTree = ""; }; - 83A4A18DC18B9995DB542CC1C225F53A /* Support Files */ = { + 83C155A488C1C8AC78731446A1C246DC /* SurfaceHostingView */ = { isa = PBXGroup; children = ( - 69E2FC04583B23D65644B8FAE8EB8CC9 /* EXFileSystem.xcconfig */, - 4A2E59220BA4CF3ADCCEBFCF7E012A28 /* EXFileSystem-dummy.m */, - EF230F501A71192A035DD44408668E12 /* EXFileSystem-prefix.pch */, + D75F03B31C32851A96675E67ED127367 /* RCTSurfaceHostingProxyRootView.h */, + F3D0A7E5A03304AB54873FD1FFD41B98 /* RCTSurfaceHostingProxyRootView.mm */, + EB82921F2E02FC1ECFB4492D20963B69 /* RCTSurfaceHostingView.h */, + 1A066974EBA7AFB766B72902B7FC79FB /* RCTSurfaceHostingView.mm */, + E9CD393B98F3A4EF6DD9042AB30187D8 /* RCTSurfaceSizeMeasureMode.h */, + D9BD6D3361B305856056293EB356277C /* RCTSurfaceSizeMeasureMode.mm */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXFileSystem"; + name = SurfaceHostingView; + path = SurfaceHostingView; sourceTree = ""; }; 83E4F84A80CF273B373608D3A5F9B940 /* Flipper-Folly */ = { @@ -13667,20 +13799,6 @@ path = GoogleDataTransportCCTSupport; sourceTree = ""; }; - 8452CB521ED3366C6AF69DBD07F99085 /* react-native-jitsi-meet */ = { - isa = PBXGroup; - children = ( - 8434817DF7DB6B629F1E9F0F61B96CBF /* RNJitsiMeetView.h */, - 0C9D1F46BBF12863547B9E44C7D331BD /* RNJitsiMeetView.m */, - 46726F35FDD4FA684D6C10085DD089D1 /* RNJitsiMeetViewManager.h */, - 4032C4C557F3A1F04712FAE17E9EAF26 /* RNJitsiMeetViewManager.m */, - BD01DD13B01455AB746709E25A49203B /* Pod */, - A76FAA5823800F3C7AA70AA67AAB84F2 /* Support Files */, - ); - name = "react-native-jitsi-meet"; - path = "../../node_modules/react-native-jitsi-meet"; - sourceTree = ""; - }; 85036FAFEB60A7A7F38257AB58E1EC8B /* Targets Support Files */ = { isa = PBXGroup; children = ( @@ -13690,196 +13808,177 @@ name = "Targets Support Files"; sourceTree = ""; }; - 86BFC6B6CDB9FB950F311608F402663D /* Pod */ = { + 851AC81A264D1ADB0D3ADD0D59DFF5B4 /* Interfaces */ = { isa = PBXGroup; children = ( - CADFC8278F2A60666A8ECF9734046582 /* React-jsi.podspec */, + 65D36AE50B01DBED906D179B931A46E3 /* UMAppLoaderInterface.h */, + 1D53514A3C384B54BD8665A811F7FFAE /* UMAppRecordInterface.h */, ); - name = Pod; + name = Interfaces; + path = UMAppLoader/Interfaces; sourceTree = ""; }; - 86C1DBC084A4CA78A39BE7B53F73F766 /* Support Files */ = { + 858D2F3D1FAF6890840B093189964A6F /* Support Files */ = { isa = PBXGroup; children = ( - D4E9A9FB4E7AAEAC8F74E51C8764B81C /* Crashlytics.xcconfig */, + 818E91D92E60A66D973E1B296FFEBD5C /* RNLocalize.xcconfig */, + 80A42418E28C748EC88A406FAC9D3FC5 /* RNLocalize-dummy.m */, + 6F1EE534B19AD2CE03002A8EC9DA87D7 /* RNLocalize-prefix.pch */, ); name = "Support Files"; - path = "../Target Support Files/Crashlytics"; + path = "../../ios/Pods/Target Support Files/RNLocalize"; sourceTree = ""; }; - 87C436A7B1AE8BB6C82E14004284BE3D /* Pod */ = { + 86016DD3E7D589F624940468E4C49891 /* Pod */ = { isa = PBXGroup; children = ( - 88FEC41D5E6E03C1B4D0EEC5D1433502 /* LICENSE.md */, - 0CA5DF24E24FDC22CD14E20AA0EDC11E /* README.md */, - A176CFF797D0340E3AF784BA6E4A8770 /* RNDateTimePicker.podspec */, + E4B84CE374E4791CE00F0495746EA555 /* advancedIos.md */, + AC02DFCAEE85510151707ED374945D10 /* installation.md */, + BB474430F474AC9AEC4D15CC0BB43E50 /* LICENSE */, + 112909597F5D6CCE4482A2BE6CEB32B6 /* localNotifications.md */, + 3B8976E67046A116016EDBC34911E96C /* notificationsEvents.md */, + DE2E9B96789DF180FE312CD37CA4454B /* react-native-notifications.podspec */, + F567FF72B4CD720A784248848C6D32F7 /* README.md */, + E339C7E6CECA9A2CCA9C293674EFC4E3 /* subscription.md */, ); name = Pod; sourceTree = ""; }; - 87E89A208777EC233543893119FBC0F3 /* Pod */ = { + 8620BB1664A0DF9F468248ED7A878359 /* Pod */ = { isa = PBXGroup; children = ( - B4393FAEC00309AEE6A2E659D8C2D635 /* LICENSE */, - E954433A769ECCCFBE05DCF2B3D7EA5B /* README.md */, - 79C87FDBC38CAC8DBAC3D2B40FC7405D /* rn-extensions-share.podspec */, + 518FC7B3EC98C8D251F015B78D2761DE /* UMCameraInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 883EEEE4487BD2DE98DCF3C4719CB113 /* Support Files */ = { + 866AB7D09B179A994F2D0855450B577D /* BaseText */ = { isa = PBXGroup; children = ( - 95F8B48CAD90F866E1861976E47A9C1D /* GoogleDataTransport.xcconfig */, - 16BF1CF862DC5ECF798A50360C0EE160 /* GoogleDataTransport-dummy.m */, + 14CDB6C90A2173FB61767133510DC0CF /* RCTBaseTextShadowView.m */, + 540A1F20D5A6249AA5AD6B23B89DFB6E /* RCTBaseTextViewManager.m */, ); - name = "Support Files"; - path = "../Target Support Files/GoogleDataTransport"; + name = BaseText; + path = BaseText; sourceTree = ""; }; - 8892B424047C7D0329AD9CFF3868572F /* Support Files */ = { + 86C1DBC084A4CA78A39BE7B53F73F766 /* Support Files */ = { isa = PBXGroup; children = ( - 0F11316B19D0832A1C6DFA868C245755 /* RCTRequired.xcconfig */, + D4E9A9FB4E7AAEAC8F74E51C8764B81C /* Crashlytics.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTRequired"; + path = "../Target Support Files/Crashlytics"; sourceTree = ""; }; - 889A8CCD4A727BF9B929360941AFBA56 /* Recording */ = { - isa = PBXGroup; - children = ( - F2C2DFAAE79C00DD3A4A99DCB8ECA3B7 /* BSG_KSCrash.h */, - 4D8A7791A3B0A0EEDC802FFFE8A8DA8F /* BSG_KSCrash.m */, - F526B81DD346CBF3318256EC6D0D00F0 /* BSG_KSCrashAdvanced.h */, - DE5CDE7B990E4422CA317D651285C02B /* BSG_KSCrashC.c */, - 71BD46623AC3B0A68515B1DFAF4ECABD /* BSG_KSCrashC.h */, - 1815B27D3154618D4A51C2618D82DAB7 /* BSG_KSCrashContext.h */, - 99FCA9864B72846B0670BFF06C050B38 /* BSG_KSCrashDoctor.h */, - 7B71C4EC02710E0C2AD933374DC2CBA5 /* BSG_KSCrashDoctor.m */, - 569B2202C973C9A08DF9A19D4DEDE4B9 /* BSG_KSCrashIdentifier.h */, - 6FE28F16D50478462D0AEE7BF714D884 /* BSG_KSCrashIdentifier.m */, - D7F2E42BCDF6367B224D7E349E95B1AD /* BSG_KSCrashReport.c */, - 04EE446FC64B653149F646C077D3D934 /* BSG_KSCrashReport.h */, - 53F09EABC9DB13F31C94C4D730AD53D8 /* BSG_KSCrashReportFields.h */, - B058920ABF87FB0263219FD9D0228A1C /* BSG_KSCrashReportStore.h */, - D8BC6D684FC93C5BBD851B095B4BCA6C /* BSG_KSCrashReportStore.m */, - A8D67A0C91A2C8F802E131D64416F0A3 /* BSG_KSCrashReportVersion.h */, - FEC14D37AD94DAECA2EAF070894A6381 /* BSG_KSCrashState.h */, - F5BE3635EEFB4A7DDF77DAF374D06EF6 /* BSG_KSCrashState.m */, - 7B67AFD966DA52D78F3F3FBEBDE7E78B /* BSG_KSCrashType.c */, - 5979A1FEA57DFC724A635015F53D1860 /* BSG_KSCrashType.h */, - 0D610CC92CA12331CC2CE9B30968B59E /* BSG_KSSystemCapabilities.h */, - C7735874BBB2AF5626E4052A4BD2B566 /* BSG_KSSystemInfo.h */, - 7806EFF9CCD6E7DF393105EA4EFE60C4 /* BSG_KSSystemInfo.m */, - 253DA86CD9850B20CA326647CF689F7E /* BSG_KSSystemInfoC.h */, - BBA405B2C07C8FD5AB3ED645168EEE5D /* Sentry */, - B091B68DE214CCD2CAFE61418F7103BD /* Tools */, + 883EEEE4487BD2DE98DCF3C4719CB113 /* Support Files */ = { + isa = PBXGroup; + children = ( + 95F8B48CAD90F866E1861976E47A9C1D /* GoogleDataTransport.xcconfig */, + 16BF1CF862DC5ECF798A50360C0EE160 /* GoogleDataTransport-dummy.m */, ); - name = Recording; - path = Recording; + name = "Support Files"; + path = "../Target Support Files/GoogleDataTransport"; sourceTree = ""; }; - 88B74E1BB49EED7D959E5A657D02E81B /* CxxModule */ = { + 887C789B66F1F32ADF803CDDD4F3B200 /* Support Files */ = { isa = PBXGroup; children = ( - 1FFB7D705B4A5244B8A90E9D3A4A6115 /* DispatchMessageQueueThread.h */, - 5AEF694E046418F4A639846BBCA2C17F /* RCTCxxMethod.h */, - 89C4B3B2CD1FDE56C69D142F03EE0104 /* RCTCxxMethod.mm */, - B6D86900F642AF3628250062901E3B6C /* RCTCxxModule.h */, - C9155BBDA5E01B68FF923EEB79990AF4 /* RCTCxxModule.mm */, - D1B3F6A2C254EF6FDD66D17C7F17F393 /* RCTCxxUtils.h */, - 3556FDCD6800754D6B7E16B921BD577D /* RCTCxxUtils.mm */, - C416507DDE2D7C53BF5DDF7DB76AD238 /* RCTNativeModule.h */, - BF99D3FA1B59D96BFE371B6BAC43F123 /* RCTNativeModule.mm */, + 8D3AE99B23D50E69F4FB054F6E5A1446 /* React-jsinspector.xcconfig */, + 78BA6DB6FB3AD099BC7F49916CE725D8 /* React-jsinspector-dummy.m */, + 75ABA25B0EEE227B086179C64F048B4C /* React-jsinspector-prefix.pch */, ); - name = CxxModule; - path = React/CxxModule; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; sourceTree = ""; }; - 8AB8D30C72246DC959F930A37B7B0B47 /* Pod */ = { + 896E8558BE86FBAA4473F45E12AF411E /* RNCMaskedView */ = { isa = PBXGroup; children = ( - 0D17C12C1EAC46D6BAAC64DBECF00650 /* LICENSE */, - E3BAB038B14C3C7D99E760D3B99ABE29 /* ReactNativeKeyboardTrackingView.podspec */, - 77D0503DAB112E0CD3AEB50ADD890083 /* README.md */, + 0E2372145C05D12A3CB32ADFF6505703 /* RNCMaskedView.h */, + BFA70CD3F240D73FAF1A8764AC631360 /* RNCMaskedView.m */, + 18B8F4B0EF9FC7F022CAAC681F57D833 /* RNCMaskedViewManager.h */, + CC23B91C02AAA9E443E23B245F2F5C89 /* RNCMaskedViewManager.m */, + D91AC9F954A07B7FC19329132508A59B /* Pod */, + A6C1D42884845BA2AC5D34DE6C1B75A0 /* Support Files */, ); - name = Pod; + name = RNCMaskedView; + path = "../../node_modules/@react-native-community/masked-view"; sourceTree = ""; }; - 8B898BCFEE3C304B5241350FFF655399 /* Pod */ = { + 8A4C45EF9268AF32C9E694497AFCE4BD /* UMTaskManagerInterface */ = { isa = PBXGroup; children = ( - 3DFD64EA055EB18942E3F17304F94DDE /* UMTaskManagerInterface.podspec */, + 9A55B1936B773977D30BC1489AE0ADC1 /* UMTaskConsumerInterface.h */, + 53CFF29DDED9BD457B2BE52D6C62F33E /* UMTaskInterface.h */, + BF3F04E963085A34C8973461402D2B0B /* UMTaskLaunchReason.h */, + D67172DC70E2E1E0EA48C8D941C08151 /* UMTaskManagerInterface.h */, + 5B402FDC73EC5523C99C0BC7B05A7B02 /* UMTaskServiceInterface.h */, + B61CB2F8490DDC2735A3D8F9D6E2CCDB /* Pod */, + EDF3A3EA4E4E667EE2A5BC6547B41DCF /* Support Files */, ); - name = Pod; + name = UMTaskManagerInterface; + path = "../../node_modules/unimodules-task-manager-interface/ios"; sourceTree = ""; }; - 8BB80A3AFC541A6587C0EB1DEC3EA261 /* Support Files */ = { + 8A6912D4BA46B10BD5FE806A6F1D0AF9 /* Pod */ = { isa = PBXGroup; children = ( - F5BC8B2FD5EB70416804537EE96B3C1A /* react-native-orientation-locker.xcconfig */, - C75BFFAF2381944841560A7E0DDC913F /* react-native-orientation-locker-dummy.m */, - 75DBF29989ADA8C7616AC7F105CE9D8C /* react-native-orientation-locker-prefix.pch */, + 0E60AE2F1EEC0296265E4A7B7556DC55 /* LICENSE */, + D719AE35D5D415EEE135E7E098E611D4 /* README.md */, + 64FA97FCFCA25E0FF4A15FB4E818FF3A /* rn-fetch-blob.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; + name = Pod; sourceTree = ""; }; - 8BCEEB3D6600C2FBB5F77F8EE638D5B1 /* UMSensorsInterface */ = { + 8B1915F76212427284726E587499C5A1 /* EXHaptics */ = { isa = PBXGroup; children = ( - B9E91D21A3AF86FBE679D402F9D847CA /* UMAccelerometerInterface.h */, - 849DF067A0553824027C84BC0C1A09FD /* UMBarometerInterface.h */, - 0CE293A4C586EECE672A67C9E0434A64 /* UMDeviceMotionInterface.h */, - 414461A82EA3444F6A5D1E74A7C041F8 /* UMGyroscopeInterface.h */, - 65F10B2813F3BB5491C67117D19BEB2D /* UMMagnetometerInterface.h */, - 1B54297A29176503CA4448A610338DFF /* UMMagnetometerUncalibratedInterface.h */, - B1B91E7236F20BF2FCEF54D6BA674FBD /* Pod */, - 3AFDD1353BD4156B528830379A890346 /* Support Files */, + ADE981F0A6C85EBD1DD1A9461C5D061F /* EXHapticsModule.h */, + 3277D934C5D6D06B2AD968387E738347 /* EXHapticsModule.m */, + B2103F9D8DC2E1D57A5266E883CCC14A /* Pod */, + ED40F39F3EA29FA2978B0CD965DFD3BD /* Support Files */, ); - name = UMSensorsInterface; - path = "../../node_modules/unimodules-sensors-interface/ios"; + name = EXHaptics; + path = "../../node_modules/expo-haptics/ios"; sourceTree = ""; }; - 8C37D369EDB736D2D9FF9A55F1A902DC /* Brushes */ = { + 8BDA6B37F86F3CF0E7A1426C4ACE721A /* Brushes */ = { isa = PBXGroup; children = ( - 33DDA7B76998A58E33B738D9F35141B1 /* ARTBrush.h */, - 5CDDDB2FC493FE58DBE223EE05AD05F4 /* ARTBrush.m */, - ADAE76A88219B5296DA02CDD4ECB2FBA /* ARTLinearGradient.h */, - D40FE7367A96160310E0FA038F585E92 /* ARTLinearGradient.m */, - A57EAC7845873FDBDBDF56091C146267 /* ARTPattern.h */, - 9EFDB3D608A8D5F202D496AC45456444 /* ARTPattern.m */, - FDD64D0F88E2C0BE02AC4EE251307A2A /* ARTRadialGradient.h */, - 2C4CD1EA00042DB134AE0FCB59D02089 /* ARTRadialGradient.m */, - B25E6C1397474967CB632772D4F63866 /* ARTSolidColor.h */, - D709AB9666286F00ED5D6D6A2F4A8D0B /* ARTSolidColor.m */, + D40F23121BF71F1CBE7CB359C34D80AC /* ARTBrush.h */, + F30F51FF6DE53B9A4689AB030BAEFBE3 /* ARTBrush.m */, + 7DA3557E7979A5896452ED048E1185BB /* ARTLinearGradient.h */, + EC6232DF4301737B27E7C7AECD9E0C44 /* ARTLinearGradient.m */, + 4B511A3333DA3E14973E9A07B3522120 /* ARTPattern.h */, + 6C5762DB28AE321A86A320CA2B254EB0 /* ARTPattern.m */, + 4618477813FDE649A3245EF154BD7355 /* ARTRadialGradient.h */, + 8C88428CB094A83923951DAB9491C13D /* ARTRadialGradient.m */, + A1933BBD02D38ACD2CDFDE37C780B203 /* ARTSolidColor.h */, + 3636FA4C4B3FCEB1E89A14123DCDA355 /* ARTSolidColor.m */, ); name = Brushes; path = ios/Brushes; sourceTree = ""; }; - 8CBAD4D2E9AB353B6CE65CFFD6FBB0B4 /* Support Files */ = { + 8C07A0C1C2C32AEBCE8F866BB7B3F801 /* Support Files */ = { isa = PBXGroup; children = ( - AD33857D528B2A4D54BBCFCFE7D00BC3 /* rn-fetch-blob.xcconfig */, - 27B47193B9A5F70C9FC551D403944866 /* rn-fetch-blob-dummy.m */, - 8CB45594DD06C32DF7399AF19B9E20E6 /* rn-fetch-blob-prefix.pch */, + D290732FB1A772D68C40D1DFC5859F7E /* react-native-document-picker.xcconfig */, + 0105A6B08D77A21E2BD1FFC22464AA51 /* react-native-document-picker-dummy.m */, + 7CA2848C3BD21C2ADC6C8E7C2F99159A /* react-native-document-picker-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; + path = "../../ios/Pods/Target Support Files/react-native-document-picker"; sourceTree = ""; }; - 8CF10FF34513FF509DBC48925E9D4F6D /* RCTRequired */ = { + 8C70AFCE27E262C1CA86CA753E870C92 /* platform */ = { isa = PBXGroup; children = ( - 4D044C0CFBC0C0821B5697ACDCF341F6 /* RCTRequired.h */, - 8082D353BB935CBA6F286A61F7B6D013 /* Pod */, - 8892B424047C7D0329AD9CFF3868572F /* Support Files */, + 6261BC3C44464DB28B80418ACAF2B93E /* ios */, ); - name = RCTRequired; - path = "../../node_modules/react-native/Libraries/RCTRequired"; + name = platform; + path = turbomodule/core/platform; sourceTree = ""; }; 8D4E83E8D422038BA6C1480061F6B510 /* Support Files */ = { @@ -13992,104 +14091,36 @@ name = Static; sourceTree = ""; }; - 8DAE3EA2B04E39CA44BE6583A2EA3F33 /* instanceid */ = { - isa = PBXGroup; - children = ( - CC56E34364676629C753DC57D2AA659A /* RNFirebaseInstanceId.h */, - D24747C3BEA18E87BA7491E443BE13F9 /* RNFirebaseInstanceId.m */, - ); - name = instanceid; - path = RNFirebase/instanceid; - sourceTree = ""; - }; - 8DCD3D3B1FB5056A9167FB1EB3686EA5 /* Drivers */ = { - isa = PBXGroup; - children = ( - D0CD50DECA479B51EAB670564F7B7B7F /* RCTAnimationDriver.h */, - CCDF36D5CBA4D1EAFBFFEB6356372FF6 /* RCTDecayAnimation.h */, - 2E816A440D4FBA6227C86874FABDCD19 /* RCTEventAnimation.h */, - A1302FD8C4F8F08CA345E43026D50654 /* RCTFrameAnimation.h */, - E843670879CA7CD7B3EDC89F66951D99 /* RCTSpringAnimation.h */, - ); - name = Drivers; - path = Libraries/NativeAnimation/Drivers; - sourceTree = ""; - }; - 8E5881FC3BEBB127BD0C286E3864D336 /* Transitioning */ = { - isa = PBXGroup; - children = ( - BE507034EC91D662EA23C3A4B8002D1D /* RCTConvert+REATransition.h */, - 8A966DDAE0BE49D85728B6C2FEA74EDD /* RCTConvert+REATransition.m */, - 51A6B5727D6DBC4C0896F3F90277D0E3 /* REAAllTransitions.h */, - 63105F52D965E142E96F80DC3CF4FC18 /* REAAllTransitions.m */, - D64AC27FE92DADF4D4A9DB08BDCF0F8B /* REATransition.h */, - 969F4338E2546A7304C7CDCDF06963A6 /* REATransition.m */, - 403F69E50B9F50E302A25797738D2E04 /* REATransitionAnimation.h */, - A8C28AB7DDB0812AAA3FD5A41BAFCD6D /* REATransitionAnimation.m */, - 3B31BEBB5858E81C44FEE36887BB30D4 /* REATransitionManager.h */, - D273679235B8B62AFE2DA61DF071BE70 /* REATransitionManager.m */, - CF6589B4CFEA7DB445518B81CCEA6184 /* REATransitionValues.h */, - D7F56A33A983244B08AECC4C4EEBDAAC /* REATransitionValues.m */, - ); - name = Transitioning; - path = ios/Transitioning; - sourceTree = ""; - }; - 8F4D25E33086BBCBB9C602AEABFA41DA /* Filters */ = { - isa = PBXGroup; - children = ( - 125B7D56D814DA4086EBBB0FEF39A12C /* BSG_KSCrashReportFilter.h */, - 405FF0F93527FF8267B2465C55E555BA /* BSG_KSCrashReportFilterCompletion.h */, - ); - name = Filters; - path = Filters; - sourceTree = ""; - }; - 8FC1AD4B125CE195870FF370752E772F /* Support Files */ = { - isa = PBXGroup; - children = ( - 1842B46FEF3AB5C0A25B40CFE3F0FCE2 /* UMPermissionsInterface.xcconfig */, - 8FB827D3E661A96BF92BFE5C69281BF0 /* UMPermissionsInterface-dummy.m */, - 45E52094466A02ABEAB86B29FE43D4F0 /* UMPermissionsInterface-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; - sourceTree = ""; - }; - 9003E6912F730E6E5B567DB34ECDDF76 /* RCTVibrationHeaders */ = { + 8EED69FDFC6CD52C7BBA4142E1E64027 /* Pod */ = { isa = PBXGroup; children = ( - 447B8DCBF522A8F84954BC51ACD0569E /* RCTVibration.h */, - B40930E9744DF8E998CB3411B59C0FF3 /* RCTVibrationPlugins.h */, - ); - name = RCTVibrationHeaders; - sourceTree = ""; - }; - 906A2B62F8F15AB2E4172B4607522D31 /* Pod */ = { - isa = PBXGroup; - children = ( - 7165422E905D316EE0E45C1A6C16A45A /* FBReactNativeSpec.podspec */, + 0815E3AA6C21786A7685137F0179EA2D /* LICENSE.md */, + 279EA955FE6F12CC11D1E759875F0932 /* README.md */, + BC1E2D88AA301AE5595F5A53D1D79146 /* RNDateTimePicker.podspec */, ); name = Pod; sourceTree = ""; }; - 92344FD2880D552CC774559E9A281B04 /* Reporting */ = { - isa = PBXGroup; - children = ( - 8F4D25E33086BBCBB9C602AEABFA41DA /* Filters */, - ); - name = Reporting; - path = Reporting; - sourceTree = ""; - }; - 9274FB8C8494DC72EE774AB0D85D7ACD /* Pod */ = { + 8F2D36566AD7AE4F0B8CD8F17B7906F3 /* React-Core */ = { isa = PBXGroup; children = ( - 7D8CAA90AA7C25E6506E2DD0193F8060 /* LICENSE */, - E316BF26AE4B9F5479B1EC5A92FAC816 /* README.md */, - 635C8A490489A52B4F3B315065E607AC /* RNReanimated.podspec */, + 05903C76D3E0A67D2752739C51ABF1B9 /* CoreModulesHeaders */, + E55EEE199E002BF55D1F7486C1E0E873 /* Default */, + 6261FA49342F1012ED98219D55DFB863 /* DevSupport */, + 96A0EE5166E6C1BDC58B9DE51D7E9775 /* Pod */, + 7ABE9F7773098E2A210995D7C34281A9 /* RCTAnimationHeaders */, + 936BCD52ADEF2C5932355C62D2A82419 /* RCTBlobHeaders */, + FEE56335EE3EEE7E8C7647B7B20B3BB1 /* RCTImageHeaders */, + 50FB56223B55FE3FD05E5DE7E13F7EF7 /* RCTLinkingHeaders */, + 787746EED6852FC777FB60F0B44DC26D /* RCTNetworkHeaders */, + A68324E74B282FF5F4D91772C6ECB2D0 /* RCTSettingsHeaders */, + 589576E6CA64BADB8F80EF3ABE36DCEC /* RCTTextHeaders */, + 70D27CC6A706FE3BEB1AC9F313149B27 /* RCTVibrationHeaders */, + 1F44EC1F9C0C70C9BA6BDD0B4F46AAC3 /* RCTWebSocket */, + 6C8655EE57A1D0369E93B5FA0EED541F /* Support Files */, ); - name = Pod; + name = "React-Core"; + path = "../../node_modules/react-native"; sourceTree = ""; }; 929ED180C7A32E0B082E6E3B267023F4 /* FirebaseCore */ = { @@ -14186,6 +14217,15 @@ path = FirebaseInstallations; sourceTree = ""; }; + 936BCD52ADEF2C5932355C62D2A82419 /* RCTBlobHeaders */ = { + isa = PBXGroup; + children = ( + 03BF740E86DFD366676F7BE357CB1CB9 /* RCTBlobManager.h */, + 3401555266DE1359368A0A813856817B /* RCTFileReaderModule.h */, + ); + name = RCTBlobHeaders; + sourceTree = ""; + }; 9382B253B9F5DA3E7F3AF0DC283A9D0F /* Flipper-RSocket */ = { isa = PBXGroup; children = ( @@ -14355,106 +14395,150 @@ path = "Flipper-RSocket"; sourceTree = ""; }; - 9520B0DBBFDC4748F38F679B65DB42FD /* RNCAsyncStorage */ = { + 94514E5B5EDFA4C6D7C612A9E0FCFC32 /* UMSensorsInterface */ = { isa = PBXGroup; children = ( - 71BA7B037466AF872EABED21FFCA4F3D /* RNCAsyncStorage.h */, - DEF4697C35F84407BB74729FC41F9B7B /* RNCAsyncStorage.m */, - 140F3C7FADB9625463231A741F09EDDA /* RNCAsyncStorageDelegate.h */, - BE577E764A59F5994C39273524AD5854 /* Pod */, - A59C364D559CA50E9E8C97C2BFDFC9CB /* Support Files */, + 784B9C3E6D809644FE1B974E734872E9 /* UMAccelerometerInterface.h */, + 6C28C7127DE56812B5E787E431EBD795 /* UMBarometerInterface.h */, + 9835E62FAC91524027FB1F208DB93D87 /* UMDeviceMotionInterface.h */, + 8D86DB1AD5485B0410A126FCC0C45948 /* UMGyroscopeInterface.h */, + BC55FE2B35A40A7CA127DE0E0719A159 /* UMMagnetometerInterface.h */, + 80D213C129C14FDDA2700C864E819FA1 /* UMMagnetometerUncalibratedInterface.h */, + F629AB4B738957919AD48525A721A649 /* Pod */, + 7D93ED9D805287AB990EE837ECE81103 /* Support Files */, ); - name = RNCAsyncStorage; - path = "../../node_modules/@react-native-community/async-storage"; + name = UMSensorsInterface; + path = "../../node_modules/unimodules-sensors-interface/ios"; sourceTree = ""; }; - 9531F5768A307B5B49530A3E3A8CD01E /* Support Files */ = { + 94CFA91120BE84EDD6CEAD81AE046C90 /* UMViewManagerAdapter */ = { isa = PBXGroup; children = ( - 343B4A0F29E595ED75877EE1453475D2 /* React-Core.xcconfig */, - CC60C4C23BBB6DFBB67F6C49C13440A5 /* React-Core-dummy.m */, - 201E31C2C549AC2848CC0559FB4F8371 /* React-Core-prefix.pch */, + 3680A8C019E3DD1E548F640AEE20FAE3 /* UMViewManagerAdapter.h */, + 8E09A1470F4B3283C05E781D8775627F /* UMViewManagerAdapter.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React-Core"; + name = UMViewManagerAdapter; + path = UMReactNativeAdapter/UMViewManagerAdapter; sourceTree = ""; }; - 9613802C46B079F4BF39D050F5CC18A3 /* mux */ = { + 94FCBF9E18E22DFA68150531C181F8D7 /* Multiline */ = { isa = PBXGroup; children = ( - CEB3C3DE564317AFAD5D00F480B050DC /* anim_encode.c */, - CFEE2BBDF9379116DDC81BC3AEDE175F /* animi.h */, - 69447CBD78985E97A5634DC4BEB3B679 /* mux.h */, - 23BE60BE79A13A031B7B515290AF3DEB /* muxedit.c */, - 57DCDD7BF6C1987F005B2362584030CA /* muxi.h */, - 25870310690272D6D92BFBD97E5A2BC8 /* muxinternal.c */, - 397DC933BD2F2B41EC3696740DDA1F75 /* muxread.c */, + 92CB1C452D3102ED2053B96D83B67867 /* RCTMultilineTextInputView.m */, + C6E13BB4A8778CC8B2EDADABF9D36D05 /* RCTMultilineTextInputViewManager.m */, + AA8A70A4EB1454F89801D58EC08BA7C1 /* RCTUITextView.m */, ); - name = mux; + name = Multiline; + path = Multiline; sourceTree = ""; }; - 96386F5ECE4964283EB5AAC739C9389F /* Pod */ = { + 9529D2BE61B681D850F3B097A96D980C /* Pod */ = { isa = PBXGroup; children = ( - 5B1951C1771CD2415AA7C45609EAD28E /* RNFirebase.podspec */, + AADA668C3E8ADDE75061470B168A4101 /* RNFirebase.podspec */, ); name = Pod; sourceTree = ""; }; - 9667D03AE211B034ED4BA1130F8CF72B /* RNBootSplash */ = { + 95E51304F16D99F105512B0A2F7EF6E6 /* storage */ = { isa = PBXGroup; children = ( - 83CDDE079106BB87DDEE8D61B3FBFD01 /* RNBootSplash.h */, - 4F4BB708C72F52907ACD07FE64B773D5 /* RNBootSplash.m */, - 6E0247C37146B20A9E4F1B8571B8ACE2 /* Pod */, - 341A499AADE3A8BFFD90E5EC3690C621 /* Support Files */, + 2B33742E83553D9A3FD50C58851C8469 /* RNFirebaseStorage.h */, + CC5612B0BE29E9893C75A8AAFA2D43AE /* RNFirebaseStorage.m */, ); - name = RNBootSplash; - path = "../../node_modules/react-native-bootsplash"; + name = storage; + path = RNFirebase/storage; sourceTree = ""; }; - 972B76EE04253E45D40FBCA8CA367118 /* RNCMaskedView */ = { + 9613802C46B079F4BF39D050F5CC18A3 /* mux */ = { isa = PBXGroup; children = ( - 1BFEA28EBCFB4C01668FFB09B9DEBDCF /* RNCMaskedView.h */, - 7FFF036081EEA50E6911CC3C72539F1C /* RNCMaskedView.m */, - 03318E53C1FAE6FEF2FE77CC95DBFECF /* RNCMaskedViewManager.h */, - 8126B9B4A24FA3479FB554D1A0C8D1CA /* RNCMaskedViewManager.m */, - 99B6F142A98382EDA8D050D42F53C91A /* Pod */, - 3DAFC0DFB604B76B028C5C20BAA6AD6D /* Support Files */, + CEB3C3DE564317AFAD5D00F480B050DC /* anim_encode.c */, + CFEE2BBDF9379116DDC81BC3AEDE175F /* animi.h */, + 69447CBD78985E97A5634DC4BEB3B679 /* mux.h */, + 23BE60BE79A13A031B7B515290AF3DEB /* muxedit.c */, + 57DCDD7BF6C1987F005B2362584030CA /* muxi.h */, + 25870310690272D6D92BFBD97E5A2BC8 /* muxinternal.c */, + 397DC933BD2F2B41EC3696740DDA1F75 /* muxread.c */, ); - name = RNCMaskedView; - path = "../../node_modules/@react-native-community/masked-view"; + name = mux; sourceTree = ""; }; - 9774FAB05080360E08FD24A680CE9B1D /* config */ = { + 96A0EE5166E6C1BDC58B9DE51D7E9775 /* Pod */ = { isa = PBXGroup; children = ( - DEB422D3B76E77B2B06F217E5FD64CCF /* RNFirebaseRemoteConfig.h */, - A6492D18FCBF482B6DBECD94BCFE3721 /* RNFirebaseRemoteConfig.m */, + 8AADBD833D999420B40A62D6A4790F04 /* React-Core.podspec */, ); - name = config; - path = RNFirebase/config; + name = Pod; sourceTree = ""; }; - 97AAF911130B9475DD3F2B13B97DC4C7 /* UMViewManagerAdapter */ = { - isa = PBXGroup; - children = ( - 59B84CA60CCBACB2094EC597E1D54171 /* UMViewManagerAdapter.h */, - A03BE085C2E0CAA3999ED8B435C119A8 /* UMViewManagerAdapter.m */, + 96F7D7BF4C00B281B5DF7FCCCC541324 /* Source */ = { + isa = PBXGroup; + children = ( + 802ED9C305FDA6D2B37979075D2C7B1D /* BSG_KSCrashReportWriter.h */, + 19A804EFDA0458954836968F44829B98 /* BSGConnectivity.h */, + E965D873B420C837AC529798128E532C /* BSGConnectivity.m */, + B14AE9678A9119B06DBDCC495D19AA66 /* BSGOutOfMemoryWatchdog.h */, + 9DA801A0D86CF44C48116E43AEDC8415 /* BSGOutOfMemoryWatchdog.m */, + B14C8F61F83144EA8425727CB545C9EC /* BSGSerialization.h */, + D1523E4D3D33FAF8B667ED1676211965 /* BSGSerialization.m */, + D717574A3A257D0004108AAB70A3A9D0 /* Bugsnag.h */, + AB6A4E2A4BD289D73D1653709C5E37E3 /* Bugsnag.m */, + 96A1B73A3452F7D8A584C4A04C826258 /* BugsnagApiClient.h */, + 3787ADD5B85BFCBF237271CE99BDF0B5 /* BugsnagApiClient.m */, + 52DAA1519B195D47CBAA5383B50E5A58 /* BugsnagBreadcrumb.h */, + 804670BF604F4C68C49F3DE1B096FBE3 /* BugsnagBreadcrumb.m */, + EA5A439F4076CE9EF35C6E8028D1DA2A /* BugsnagCollections.h */, + FA4ED891F92EF9DE3D0361FE7AB9E090 /* BugsnagCollections.m */, + 1CF3E09BEF307CDC9612272B538617CF /* BugsnagConfiguration.h */, + FDDFD02E5EBF885F87AB856DB146E86C /* BugsnagConfiguration.m */, + 07D9E251A9813D9669CA58FE32B2E789 /* BugsnagCrashReport.h */, + AB3A3D569BE058F125B8EA58C1632CD3 /* BugsnagCrashReport.m */, + 8B84C801B665E631DAA8EC05EFEF462C /* BugsnagCrashSentry.h */, + A293EC2DCDBF9361BF57D53D69463EAF /* BugsnagCrashSentry.m */, + 2880462EE7BDEB965A9165F40601AEE1 /* BugsnagErrorReportApiClient.h */, + BE63BD5535AFC1604A4AC9C10C03089A /* BugsnagErrorReportApiClient.m */, + 09B60B3F32E240F9BF59901C855E3D6A /* BugsnagFileStore.h */, + 24012F8C88185EFC677404541CA2CC3D /* BugsnagFileStore.m */, + CD13841A20E5E1B13FF9F3E02F7313EE /* BugsnagHandledState.h */, + F38418884820E6FC828755774B24358F /* BugsnagHandledState.m */, + 1FECD98746A377A88A2E728B87E71F42 /* BugsnagKeys.h */, + 63CEA449751789D314F90959BDE7A913 /* BugsnagKSCrashSysInfoParser.h */, + 9A57A7FE26B4B00118D3600D48D730F6 /* BugsnagKSCrashSysInfoParser.m */, + 554E6A74780C762E48B73EABD0C64CEE /* BugsnagLogger.h */, + 3B9E5948B94396533D5049CF381198E2 /* BugsnagMetaData.h */, + B5E2C6D6F9C6BB62D63CEA23FE408237 /* BugsnagMetaData.m */, + 93BCC47DF9FF77EA4C8D86B59E660960 /* BugsnagNotifier.h */, + 97299D7DF64C3A37AFAA626EFE383397 /* BugsnagNotifier.m */, + DC0870324320FE7D1BB55F1E46684821 /* BugsnagPlugin.h */, + 61C69A1827D81E16BA3FDA45AC4C1D7D /* BugsnagSession.h */, + B3F59C591C756A06B15DEC6C6A4D8972 /* BugsnagSession.m */, + 219157DA3F91DD505AB71D9D598F3952 /* BugsnagSessionFileStore.h */, + DA982766DD37C11DFF161F7A01D7AB07 /* BugsnagSessionFileStore.m */, + B8AC1F7295F1E50FFCC9984CEBB13EFE /* BugsnagSessionTracker.h */, + C695CCD9D4612C601D8975D21FE02C1E /* BugsnagSessionTracker.m */, + 2799F0DED9E9E8887839D8BC001108D2 /* BugsnagSessionTrackingApiClient.h */, + 522E690D4ABD7E5E39051161803A0237 /* BugsnagSessionTrackingApiClient.m */, + E96AFEE6871AD4086E800C2659CBA731 /* BugsnagSessionTrackingPayload.h */, + 57B883F45FD88207D49734A856377028 /* BugsnagSessionTrackingPayload.m */, + 6D268B1BF2F2FFB76E78692A5A53834C /* BugsnagSink.h */, + 666EF0C65CE9B1844BC8CF5A6A3DA640 /* BugsnagSink.m */, + 9C32BD94AF345C94380FEC5BC4682F4B /* BugsnagUser.h */, + 28EC16F240C2FFB42633DB0811DDAA9E /* BugsnagUser.m */, + 5D00CA81827A82C81E011860C4AF806B /* Private.h */, + 2D38E00C1EF56923C80D8DA2025990B9 /* KSCrash */, ); - name = UMViewManagerAdapter; - path = UMReactNativeAdapter/UMViewManagerAdapter; + name = Source; + path = Source; sourceTree = ""; }; - 97ED2B9EAB91405A7030E427358C76EE /* crashlytics */ = { + 98496E0DD22EDB0EFC6D29D0CB516C64 /* Support Files */ = { isa = PBXGroup; children = ( - 950FA3E66045AE57058D56A5E8E11B95 /* RNFirebaseCrashlytics.h */, - 9F91FBD8C02402B3464620BBA5223D9D /* RNFirebaseCrashlytics.m */, + A181A43245853FAC86236B435A587F7A /* React-RCTActionSheet.xcconfig */, ); - name = crashlytics; - path = crashlytics; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; sourceTree = ""; }; 989320F3C6C25EB52665992A2024CF1F /* Network */ = { @@ -14474,33 +14558,24 @@ name = Network; sourceTree = ""; }; - 98976E7BF64CB7D32E7E81981290FE8C /* Support Files */ = { + 9894A83BB155DC2660FB1BE02EFF2AF5 /* Support Files */ = { isa = PBXGroup; children = ( - 852533BA0F2452CEF71F8419FBC79BD0 /* CocoaLibEvent.xcconfig */, + 297458D850ED870E5DF325E40C3C1008 /* UMCore.xcconfig */, + FFEB65DE690608D57881E1435448C0E5 /* UMCore-dummy.m */, + 50C87FAE5DB6D1078ADD1D1EC9EA14A1 /* UMCore-prefix.pch */, ); name = "Support Files"; - path = "../Target Support Files/CocoaLibEvent"; + path = "../../../../ios/Pods/Target Support Files/UMCore"; sourceTree = ""; }; - 98A1BE927C4F65B168E5202DA19ACE90 /* EXFileSystem */ = { + 98976E7BF64CB7D32E7E81981290FE8C /* Support Files */ = { isa = PBXGroup; children = ( - 58351C11CCD5FF39C4071FB4205A6F18 /* EXDownloadDelegate.h */, - 3489CB37C9B3ACDD44CF38EA4DD561B0 /* EXDownloadDelegate.m */, - 30169015F3924A9D83E887FACFD06434 /* EXFilePermissionModule.h */, - 21885A4ADAD17766C17F964FF29C82FE /* EXFilePermissionModule.m */, - A803CD8A3F7CDDDA5937C6C863FFB920 /* EXFileSystem.h */, - 26F445F6D03A3A82E37268A22BAE1C95 /* EXFileSystem.m */, - 8CB519AF1317C224A0079038A6E765DC /* EXFileSystemAssetLibraryHandler.h */, - 0CCA1E68DD17EC16118BF6A816B65986 /* EXFileSystemAssetLibraryHandler.m */, - E8849E3901042473FCB415D574D15750 /* EXFileSystemLocalFileHandler.h */, - E0DFA6854FAB0AE1641D77286FC5DDE3 /* EXFileSystemLocalFileHandler.m */, - AA7701B2EFA213169AF63ADB928B6CAD /* Pod */, - 83A4A18DC18B9995DB542CC1C225F53A /* Support Files */, + 852533BA0F2452CEF71F8419FBC79BD0 /* CocoaLibEvent.xcconfig */, ); - name = EXFileSystem; - path = "../../node_modules/expo-file-system/ios"; + name = "Support Files"; + path = "../Target Support Files/CocoaLibEvent"; sourceTree = ""; }; 990F4BECCFFD230DA6A99C0345B9449F /* FlipperKitLayoutPlugin */ = { @@ -14551,15 +14626,6 @@ name = FlipperKitLayoutPlugin; sourceTree = ""; }; - 998B5490D353010997DC77BBCBD773F1 /* Support Files */ = { - isa = PBXGroup; - children = ( - D3AF5E808F514DDD9EC46E125ED9B249 /* UMCameraInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; - sourceTree = ""; - }; 99B24914623FDAF5E10DD8F10C175D91 /* SKIOSNetworkPlugin */ = { isa = PBXGroup; children = ( @@ -14577,63 +14643,120 @@ name = SKIOSNetworkPlugin; sourceTree = ""; }; - 99B6F142A98382EDA8D050D42F53C91A /* Pod */ = { + 9A7E57D7448662BDA5CD36050CCF0091 /* Pod */ = { isa = PBXGroup; children = ( - 08993EFE6B43F419C92CB656C14C9F84 /* README.md */, - 852FE7BB7610FE35CE2C1A24B3059BC2 /* RNCMaskedView.podspec */, + 386E08F1F975CD57708C88F7645893B0 /* RCTRequired.podspec */, ); name = Pod; sourceTree = ""; }; - 9B16CDD36FC0DC8908145BE02DB100C6 /* UMCore */ = { - isa = PBXGroup; - children = ( - F2F118877102B5F49DE30F73F4133164 /* UMAppDelegateWrapper.h */, - BD8751552E35893BDF83F6025B06D03C /* UMAppDelegateWrapper.m */, - A77464EF37DA5927C152BFF014210D1F /* UMDefines.h */, - 2767680CE41ED19D766E69468F280AFD /* UMErrorCodes.h */, - BA9D2FECCB6B5D2CFEF057A94D4FCE94 /* UMErrorCodes.m */, - E1C0FD671C82989A3D3C58576B986687 /* UMExportedModule.h */, - AF4B0DD7FBEC49BA7A3A041162A97120 /* UMExportedModule.m */, - 22F8EA0880333E9DA3ED04ABBA625281 /* UMSingletonModule.h */, - AD1C24B6F59776BBD97B229E9442BEC2 /* UMSingletonModule.m */, - D2EAAB1D38023ABD96763E62FA496CC3 /* UMUtilities.h */, - A581FCB78821DDAE95B2AE064BE4DC45 /* UMUtilities.m */, - F2CD6713AD3426DD32DF3BCAA79C2CFA /* UMViewManager.h */, - 94BD5EC2A42468D9F9E45F78B2A3BFAE /* UMViewManager.m */, - B962BB49E4E0F8E072980BAF394911A8 /* Pod */, - 6282EA83099DA2296D034FA6402D0A41 /* Protocols */, - A6821817905619D00A6E31207F8C06B5 /* Services */, - 5C180598BE03068B5075DC5B94B440FF /* Support Files */, - DEC8CA3B88E8770615410AEDB283CC7E /* UMModuleRegistry */, - B193094453D2E436B6A6DC61F359524E /* UMModuleRegistryProvider */, + 9AD3CE7CB06F10EE63376237E0F81BD7 /* Base */ = { + isa = PBXGroup; + children = ( + 4BBA4194377461A3293AF5CCD87AA06D /* RCTAssert.h */, + 035F8EFB4D7C92664B02AD20AAA7BCB1 /* RCTAssert.m */, + E28F5BE343EDDBC6960DE3A38B8AC576 /* RCTBridge.h */, + 5946B6702260C561B81B27169BF7B447 /* RCTBridge.m */, + 35B220BEB599AE465B0E206EF7C46BCD /* RCTBridge+Private.h */, + 7551B0B2226551F5D2489251DAA5E552 /* RCTBridgeDelegate.h */, + E723648F24B8CEE56B5BD178A2C40B0B /* RCTBridgeMethod.h */, + 742048A2F84240748D5250D8ADEEF10E /* RCTBridgeModule.h */, + C509DE986746D706E0B1ED337AD462CC /* RCTBundleURLProvider.h */, + ACA8142D7D50DEBD97F0FFAA8B39FFC6 /* RCTBundleURLProvider.m */, + 203868200F772E197AA8AEB48A4484E0 /* RCTComponentEvent.h */, + 4A419ED3AA53ADFDD318A1FD760DA2F9 /* RCTComponentEvent.m */, + E61A1C5653AD0EA4AF8BFDD95F9D03F9 /* RCTConstants.h */, + 776F984856C9327EF832DDD4A191BB60 /* RCTConstants.m */, + 138168BFFA885998B62730BAA91E5035 /* RCTConvert.h */, + 0E0A1B581249F274189E9B8F6BB3DAB5 /* RCTConvert.m */, + 348A822DF6D38054DCE41F06CA6513B5 /* RCTCxxConvert.h */, + 965E6D72E195FB1D0E95053C70D3D3B1 /* RCTCxxConvert.m */, + C3038BF806255782FB02991A8ADEC4D2 /* RCTDefines.h */, + 4B8717805EEDF11C0D8EB246D0AF1BCF /* RCTDisplayLink.h */, + 45D4F19D68EAD5B9FB0746230FBE5A03 /* RCTDisplayLink.m */, + 8F601F7F19B95F612BE5D94CB8FB5DDB /* RCTErrorCustomizer.h */, + 2E23F2BDB03D15F2F4E6950AEF753FA5 /* RCTErrorInfo.h */, + DB3ED2C7C0845409CA9E960C11096A52 /* RCTErrorInfo.m */, + 6D23851161C87C8AD8C65B50B2E0825F /* RCTEventDispatcher.h */, + 77F24755131B0F7358D3A57F63039575 /* RCTEventDispatcher.m */, + 700F23D8587F8D21AB993A63A604E9DC /* RCTFrameUpdate.h */, + 12F6BF576F39BBF07C412D2932C37709 /* RCTFrameUpdate.m */, + E87D4A792FAD154490E6F61C7EB69E9E /* RCTImageSource.h */, + 53F6A46C79BC3E6E6368FC1EB8FC0CBF /* RCTImageSource.m */, + 6C8468E28001EBE31A5E2FEE1AF3A0A9 /* RCTInvalidating.h */, + B096588386451650671EB5AD0236F260 /* RCTJavaScriptExecutor.h */, + C73A341574CDB13BF48F98C515AE8CF5 /* RCTJavaScriptLoader.h */, + C1E720AF8E7748216929A0D978916EAF /* RCTJavaScriptLoader.mm */, + E2DC3EE57D9478800D5F721D930B70B8 /* RCTJSStackFrame.h */, + 287BC39339CE9388194C0C6E634A8628 /* RCTJSStackFrame.m */, + 7F772C63314D0CC239B57900B3CAF055 /* RCTKeyCommands.h */, + A8E64CDD8F164EFE89E3495B5FF777A8 /* RCTKeyCommands.m */, + C8738D724EB5C0B73994234D19F32E94 /* RCTLog.h */, + 8E8A5018197A18920C5BE5FF9C041454 /* RCTLog.mm */, + 6361DF430A1099881EB561100EB44D33 /* RCTManagedPointer.h */, + 2877B8DEE578C404C945061D9A1DDC75 /* RCTManagedPointer.mm */, + A5A88B7A922E2D9C2F863A94F09E37E6 /* RCTModuleData.h */, + 597B3EE2E270E2438269536C4EF1A4EE /* RCTModuleData.mm */, + 16D2128A564B3293BA011CBCCF646721 /* RCTModuleMethod.h */, + 0A75323FE3476844582FC94DC4FF1D46 /* RCTModuleMethod.mm */, + 72F71C4E2871C6AE02ACB1D5118E4100 /* RCTMultipartDataTask.h */, + C61D243EB276F04767E5A555DC5ABD08 /* RCTMultipartDataTask.m */, + 67FADDD839A7E8577AEACE3D0B1FE5E2 /* RCTMultipartStreamReader.h */, + D052E7C8B38525A9FF57769BCE258C67 /* RCTMultipartStreamReader.m */, + BBC45DA271905DEF77EDEE6E3456B6C6 /* RCTNullability.h */, + 9D199A68196561A183C2C458273B89B3 /* RCTParserUtils.h */, + A0C2828F2B4FF05802F9848E410B8618 /* RCTParserUtils.m */, + 66255E1A445C31E9B8DEBF523E7B213C /* RCTPerformanceLogger.h */, + 95EE0C5F4E34F0CE329B296E516110B0 /* RCTPerformanceLogger.m */, + 63B04B3AD8A9E854F90EBA08B53C25F5 /* RCTRedBoxSetEnabled.h */, + 8CE21B72017F351B06D99418F3998EEE /* RCTRedBoxSetEnabled.m */, + 58FACB9EFB52B074361B88D23533E17C /* RCTReloadCommand.h */, + 0C5D9F9AC093F604362132BFBDFCBED4 /* RCTReloadCommand.m */, + AAABB15E265670BAEFAF10C03A14D140 /* RCTRootContentView.h */, + 14C6D660264A8CB7DA5BC37E90AEE322 /* RCTRootContentView.m */, + 9649698622E9DCAA00534EB0CA4CA0AB /* RCTRootView.h */, + 725C77C4B7C29C1ECCA2E63C3355EB3D /* RCTRootView.m */, + D2B9A44298FFAD0BC068594184B9EEBD /* RCTRootViewDelegate.h */, + 78495C40716C7F261C43C20F6A6020D2 /* RCTRootViewInternal.h */, + 31EC6B0BD5D9A627723E4231C736DAF9 /* RCTTouchEvent.h */, + 536D28DC70EB6ECB67D8BEF6081F12E7 /* RCTTouchEvent.m */, + D075950ACEC1CEB612EE725B66EDF1A4 /* RCTTouchHandler.h */, + 22928AA35601628141F5B47FCCDC85D1 /* RCTTouchHandler.m */, + F03D71A97A573DBB970AA100A7DDFA0B /* RCTURLRequestDelegate.h */, + CEF512E1556F1CA7C06B1CAF5E44A019 /* RCTURLRequestHandler.h */, + 733CC4552309CEF6291BDC64C72BBABD /* RCTUtils.h */, + 8929B2F8F07122B5DD0FB9B8EC31FCEA /* RCTUtils.m */, + 55E7F734212F1B8C723A64FA02A7D0B5 /* RCTUtilsUIOverride.h */, + F60065F7B272B34B1FA4EFCBA2C2B591 /* RCTUtilsUIOverride.m */, + 250942542A3D8F65322D0B4FA88A34F6 /* RCTVersion.h */, + D5E8E04EB4E91C0835046D12159EEFF8 /* RCTVersion.m */, + 571E674F3336AF09EB19B31663956F6C /* RCTWeakProxy.h */, + 1EB59FEC70A5E1B56C27548AF3371D44 /* RCTWeakProxy.m */, + C505D49B8663F8C07D9DAB04B0BF68EB /* Surface */, ); - name = UMCore; - path = "../../node_modules/@unimodules/core/ios"; + name = Base; + path = React/Base; sourceTree = ""; }; - 9C096D918B3C41A584D8DEB2F10A17F6 /* Support Files */ = { + 9C261E7F7BC3443F684F4A8121957597 /* Support Files */ = { isa = PBXGroup; children = ( - 9781C958ACDEA2F0867D3700ED83C082 /* Yoga.modulemap */, - 7B55C77BFF12D757C3EB6AB8DC7ED02B /* Yoga.xcconfig */, - D07EC03A0A4F60605B5636E6D82BDA69 /* Yoga-dummy.m */, - 0CA929BB715BCB547AF38F8F94645458 /* Yoga-prefix.pch */, - 84A91812CFCB70941FF3D33C6FA8F1D6 /* Yoga-umbrella.h */, + 8F4636C331CCE1E7390E1333A53B1F1B /* FirebaseCoreDiagnostics.xcconfig */, + C22D08B07DEC2D822A9AD9429629A308 /* FirebaseCoreDiagnostics-dummy.m */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/Yoga"; + path = "../Target Support Files/FirebaseCoreDiagnostics"; sourceTree = ""; }; - 9C261E7F7BC3443F684F4A8121957597 /* Support Files */ = { + 9C26AEEBF29A365EACFCEB445F9C1821 /* BaseText */ = { isa = PBXGroup; children = ( - 8F4636C331CCE1E7390E1333A53B1F1B /* FirebaseCoreDiagnostics.xcconfig */, - C22D08B07DEC2D822A9AD9429629A308 /* FirebaseCoreDiagnostics-dummy.m */, + CA603878C1DE3C10E2DDD81E789F53F6 /* RCTBaseTextShadowView.h */, + C97A0654B68840BC3AB9EBC96E9681D2 /* RCTBaseTextViewManager.h */, ); - name = "Support Files"; - path = "../Target Support Files/FirebaseCoreDiagnostics"; + name = BaseText; + path = Libraries/Text/BaseText; sourceTree = ""; }; 9C5F6E097292962D3825124AC6B862A0 /* libwebp */ = { @@ -14648,188 +14771,91 @@ path = libwebp; sourceTree = ""; }; - 9CAFE2274405B62D57C3AB6665CE817A /* React-RCTAnimation */ = { + 9D85F4E904983C18249A0DB5649E00BD /* RNUserDefaults */ = { isa = PBXGroup; children = ( - 69257681AA1662D7FD8A126E8B78350D /* RCTAnimationPlugins.mm */, - 87F5C92D04AA2E6A5BA2C09C2275A5C2 /* RCTAnimationUtils.m */, - 8B06148A16E66822E0D7B561CFC1EF7D /* RCTNativeAnimatedModule.mm */, - 85677DAD4E22AAA5382ED8E3BC3CAFC3 /* RCTNativeAnimatedNodesManager.m */, - E16B6D919C776A1E17F2890C104E7911 /* Drivers */, - 46FA891290231E98AD4C1324A1D9AB7C /* Nodes */, - 32FE41D4F8F3D32878FF954773B9BDA3 /* Pod */, - A794A50EF6BFC953EF54BBC06D1B2BEB /* Support Files */, + 932119F3EC1041CA5127AD199C49B9E4 /* RNUserDefaults.h */, + 59B317BE7B6E6992FBF1E2760D5FC1B6 /* RNUserDefaults.m */, + 785DD6E89943386269D0C92C92A556B7 /* Pod */, + 738C5F7CC2DBFDEC07510942CB25AE43 /* Support Files */, ); - name = "React-RCTAnimation"; - path = "../../node_modules/react-native/Libraries/NativeAnimation"; + name = RNUserDefaults; + path = "../../node_modules/rn-user-defaults"; sourceTree = ""; }; - 9CB57DDB312528BA5CBC06E723A62E03 /* Pod */ = { + 9E4B57EB405798E7F6F950ED64431D66 /* decode */ = { isa = PBXGroup; children = ( - F9522507026DB193E512A8E014D681B2 /* React-RCTLinking.podspec */, ); - name = Pod; + name = decode; sourceTree = ""; }; - 9CD2C11FDE2DF9B15C7996D7296B5456 /* Support Files */ = { + 9E712FFC9B86242AF2EA974844E29728 /* Support Files */ = { isa = PBXGroup; children = ( - 7199657A9DFF62F73AA45770EAEF4E9B /* UMAppLoader.xcconfig */, - 4F672DB4D92F66DE84FD03E7D200DE65 /* UMAppLoader-dummy.m */, - 5540E9A88E41B5FBCBD645E6BE4B9B72 /* UMAppLoader-prefix.pch */, + 8C8258725B6514D8F505C6041FA55690 /* React-RCTVibration.xcconfig */, + 917C9E160CBC14F1D772A19EDA8D134D /* React-RCTVibration-dummy.m */, + D948B71F7FC30E1FF122D7727C0EA51D /* React-RCTVibration-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMAppLoader"; + path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; sourceTree = ""; }; - 9DCC93BF7F53637CB68C43A583C73448 /* Support Files */ = { + 9ED7201D5B9CC352953CAE057E8D53DE /* Pod */ = { isa = PBXGroup; children = ( - 7BBC15FD8B590818292C04F01F196CA4 /* RNUserDefaults.xcconfig */, - D17C3735E61F4FB2ACCB176EC13A4190 /* RNUserDefaults-dummy.m */, - 7CD2EA199FD310DC921E66C50B51DC73 /* RNUserDefaults-prefix.pch */, + 3691716083B7244CAF480AAE485DAF4A /* README.md */, + D1B2F818A7D3616EC28FFC0D4FA74CB0 /* RNRootView.podspec */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNUserDefaults"; + name = Pod; sourceTree = ""; }; - 9E4B57EB405798E7F6F950ED64431D66 /* decode */ = { + 9F1DC577C47A5E4D93BD9FAEC76A222A /* RNLocalize */ = { isa = PBXGroup; children = ( + 77805B47D86EDBD0A364610ED6275A8A /* RNLocalize.h */, + 0B0C465A1EB8EE2860EFC8536264494D /* RNLocalize.m */, + ABB2E8C95CE7ED63D0E3B9ECA1CE7808 /* Pod */, + 858D2F3D1FAF6890840B093189964A6F /* Support Files */, ); - name = decode; + name = RNLocalize; + path = "../../node_modules/react-native-localize"; sourceTree = ""; }; - 9EB3A0469E2C86F327A033DBD1FD4F40 /* UMAppLoader */ = { + 9F57B8F406A9B892DBC384C760D6FC9D /* MethodSwizzler */ = { isa = PBXGroup; children = ( - 3807015D1473BCE97EBCD824F4768D95 /* UMAppLoaderProvider.h */, - D78966FD8B3B4035E81DC0546AA2E366 /* UMAppLoaderProvider.m */, - 0781F43E500DC52C1BF9264E02070D34 /* Interfaces */, - C617BBE7816A81E36CB3041070423444 /* Pod */, - 9CD2C11FDE2DF9B15C7996D7296B5456 /* Support Files */, + FCCFDB9DE0425A466516DDCBE25CD777 /* GULOriginalIMPConvenienceMacros.h */, + 20F40B1861D13D01526C617DBCA79546 /* GULSwizzler.h */, + 5C6CA8F62953BAEB0F8092434A7712E9 /* GULSwizzler.m */, ); - name = UMAppLoader; - path = "../../node_modules/unimodules-app-loader/ios"; + name = MethodSwizzler; sourceTree = ""; }; - 9EC51E4D0DE5067BE5A94F3989AD10BD /* messaging */ = { + 9FB098FEDB281BE02FE0491DDE9EA4C7 /* Resources */ = { isa = PBXGroup; children = ( - 6D89DE4A9E5689C45C23744162FF7B0D /* RNFirebaseMessaging.h */, - C68C178CF4D65216F2D9DACEAA476D1B /* RNFirebaseMessaging.m */, - ); - name = messaging; - path = RNFirebase/messaging; - sourceTree = ""; - }; - 9F17B9A85DBC2F03DD64744A9DFED441 /* Views */ = { - isa = PBXGroup; - children = ( - 22F9465904A9EF8D7F027216ADBAD985 /* RCTActivityIndicatorView.h */, - 4FFC168E8AAAFFC31E531B9F8EF58A2C /* RCTActivityIndicatorView.m */, - 6A53285CF74D6D28B879D3E7A6A7497A /* RCTActivityIndicatorViewManager.h */, - 4049EA977C8B11EC8AB6CE994017B186 /* RCTActivityIndicatorViewManager.m */, - D9107F10343A9D0842D5085B25F198F0 /* RCTAnimationType.h */, - 4442821F5922C2837AF490FF6733A42B /* RCTAutoInsetsProtocol.h */, - 0ABC7ED6892A1D14E1B7C12C170D4345 /* RCTBorderDrawing.h */, - 6C86C06DD06CDAB3A0E9C5D8B39F53D1 /* RCTBorderDrawing.m */, - 7F0E1885FF6218CDFE9982E05F1A5588 /* RCTBorderStyle.h */, - E6358156D78B68B00D4BE4D149283F3A /* RCTComponent.h */, - 014FD149D02644CEE876F548EC93DB43 /* RCTComponentData.h */, - 01DC61744399BD2FC81739D0D16C7640 /* RCTComponentData.m */, - 4A060F3AD7FF09042B53176DE4F6BE83 /* RCTConvert+CoreLocation.h */, - E749EFFD4D169830F385E39E74FEEAE2 /* RCTConvert+CoreLocation.m */, - 852DDB57329071FE7E417C84D72D8048 /* RCTConvert+Transform.h */, - 490FB0A3ECA38BAD6E8E1167DAD77439 /* RCTConvert+Transform.m */, - 92B46344955C5783FCE009877CFDE98E /* RCTDatePicker.h */, - E434EC2FB629FBB95FFA4D9637BFFBC6 /* RCTDatePicker.m */, - B35CFDE05E5FE5FAFAC03053278BEC26 /* RCTDatePickerManager.h */, - AC334934F62742F915EBBBECD557BA52 /* RCTDatePickerManager.m */, - 7AD27C318E641AEF3FEF91B013B97BEE /* RCTFont.h */, - 72E407D70F10CC8ADED44E16BD591EA9 /* RCTFont.mm */, - 07EC667309D8613638DAC8246AD6FAFD /* RCTLayout.h */, - 60635D6B0CBD0F7C59C17DF1470E9A88 /* RCTLayout.m */, - 4FD3C5F2BB3CAF7B49F02185D0568A7C /* RCTMaskedView.h */, - B7EFEB5088F345DB3CAA9406AFE2B53B /* RCTMaskedView.m */, - 47E8087BF3CD1AC8E9B10155B51E4636 /* RCTMaskedViewManager.h */, - E3F7D9AF8CA85FA31381F3C1E5A53EEB /* RCTMaskedViewManager.m */, - 62BC3E74BA827A2EEF3D1A1840C389C1 /* RCTModalHostView.h */, - 237F3148163949A0F39743C8DE76F8ED /* RCTModalHostView.m */, - ACD580006324A9490802733D59817A1D /* RCTModalHostViewController.h */, - 0556DB0C37E1FB6783E6ADB0D5A4AF0F /* RCTModalHostViewController.m */, - 24C36A97CAC32C557FFA180623410217 /* RCTModalHostViewManager.h */, - D5E964FC44F2AA7D4C3EF7A41690D224 /* RCTModalHostViewManager.m */, - 3A6D3E35BECB150CD5F980483BC52243 /* RCTModalManager.h */, - 858D05B7E99279A54826542B1B5D68B2 /* RCTModalManager.m */, - 01AE0B052526B55F3E3B0A632AC1A9AD /* RCTPicker.h */, - FB4644FF07D75BA088A2DC60B5CF79B5 /* RCTPicker.m */, - D8B10E7B4093EA180B50CC5E3CED277E /* RCTPickerManager.h */, - 8C8A5F2C9FFF91B5BC14FCABE9FBD6CA /* RCTPickerManager.m */, - A27F1F03F7BC60CAAAFB4C8FF1386CAA /* RCTPointerEvents.h */, - 9AE9D6D7F0077A5B4EDED9DB57BCFD8A /* RCTProgressViewManager.h */, - CC4B27BF8CC6D6FBCA5B4FB3FF957EA7 /* RCTProgressViewManager.m */, - 16F0331910FDB15B21D137B5FFB94526 /* RCTRootShadowView.h */, - 7892AF4AD3191D445D336955F63664EB /* RCTRootShadowView.m */, - A462A2E1387C3E05B13E454FD9C7C5C3 /* RCTSegmentedControl.h */, - 99E92B76B0F8521D83C293ABF6FEC47F /* RCTSegmentedControl.m */, - FF265AB52B23A7E06EB3545394C853D7 /* RCTSegmentedControlManager.h */, - BBE416D50F6F76A7D7A8C9AF48F18D14 /* RCTSegmentedControlManager.m */, - CA0E451936088034A8C77715E4FCCF7B /* RCTShadowView.h */, - C5EF509288FDF5231D590D463F153A7E /* RCTShadowView.m */, - 2E426055F0DD1A897CF3CCD3618F3143 /* RCTShadowView+Internal.h */, - 7B0F1967BFB375D4506E99B8131B2519 /* RCTShadowView+Internal.m */, - 770471FC3A474BFDD86AE79038B839A3 /* RCTShadowView+Layout.h */, - 72D80AB440DC034942A6E7653C1A9787 /* RCTShadowView+Layout.m */, - 7190B98479467AC89F1225BBA3158917 /* RCTSlider.h */, - FF15DF6D8710A1D72E233A78C4A9D239 /* RCTSlider.m */, - 7CD860EB0F92142ED856AA5822697739 /* RCTSliderManager.h */, - 2F975ABCF1DDACF01397576F14A4E751 /* RCTSliderManager.m */, - BFA1EF4D9A7595A080E824D231F1C702 /* RCTSwitch.h */, - 69057191801F0C641AB39F2B2D45F311 /* RCTSwitch.m */, - 9CAADB612BE02D149D127DC9EDBD247F /* RCTSwitchManager.h */, - 99410C58C15B024D3AE97571C8B66664 /* RCTSwitchManager.m */, - 69C9C6813386AF2B515E56A11F952C21 /* RCTTextDecorationLineType.h */, - 419D7F99EC80B8052540CD50BC3163FA /* RCTView.h */, - 169B70DFB43463F4A423B7467E996A60 /* RCTView.m */, - 55285077E38ED492DD98E9A9AFB8EB33 /* RCTViewManager.h */, - EB8E7291BDC9D10EED12CC97D6CD1827 /* RCTViewManager.m */, - CC8CE58616903C09E8A1A7FE375264C4 /* RCTWrapperViewController.h */, - EA9D90BC42F1BB4D0B77A103B9C3E35B /* RCTWrapperViewController.m */, - 915FFD88627EF3D1AA7B5CCC61FD9B82 /* UIView+Private.h */, - 106537DDCF13EBC231A968E46FEADCC8 /* UIView+React.h */, - 598C6FCDFC1133042CCDACFFF06EBC6B /* UIView+React.m */, - E2CB1D44D83256CB8E1922DE170EA20D /* RefreshControl */, - 3E947B14F34A43B7B8AA16F72842375C /* SafeAreaView */, - 1371DD7D731AFEFDA3832D1BB954050A /* ScrollView */, + 5CE336F5285669687BB841433D842282 /* AntDesign.ttf */, + AB11F3BB5215A50E51B6DC941235A7E5 /* Entypo.ttf */, + C1E92117617ED4C7776D766E0647B816 /* EvilIcons.ttf */, + 715CCFC4B6A92EDC9C8675DE5C7BF8C9 /* Feather.ttf */, + 444786A2DCE9229A34D093CF3FD83827 /* FontAwesome.ttf */, + 609DF8EF20C57D7BE928EABAE2F18E1C /* FontAwesome5_Brands.ttf */, + CF4DB50F4BB2F0C4F3A7B6B724171315 /* FontAwesome5_Regular.ttf */, + 2CE9D676303867F81508898BEB587FA6 /* FontAwesome5_Solid.ttf */, + 3B4084267BA475FDDEB44C39D4B8A9F2 /* Fontisto.ttf */, + A1F450DEB047BC3ED02DD9E68AEA8289 /* Foundation.ttf */, + D0CC7E2F8CC2A4524FA8E0B016307EDC /* Ionicons.ttf */, + 2442933A475048CB1700F24B896BEB7A /* MaterialCommunityIcons.ttf */, + C3657BDF1321BF897D84F0EE1094BEE9 /* MaterialIcons.ttf */, + A24F0651001D095FEC18B9B782680C46 /* Octicons.ttf */, + 9C7883852A1AC50FDD1C402090D6BE54 /* SimpleLineIcons.ttf */, + 47305AF8A60819F79AFAC0FF82EEF17A /* Zocial.ttf */, ); - name = Views; - path = React/Views; + name = Resources; sourceTree = ""; }; - 9F57B8F406A9B892DBC384C760D6FC9D /* MethodSwizzler */ = { - isa = PBXGroup; - children = ( - FCCFDB9DE0425A466516DDCBE25CD777 /* GULOriginalIMPConvenienceMacros.h */, - 20F40B1861D13D01526C617DBCA79546 /* GULSwizzler.h */, - 5C6CA8F62953BAEB0F8092434A7712E9 /* GULSwizzler.m */, - ); - name = MethodSwizzler; - sourceTree = ""; - }; - 9F78B3429D4F86ED2AF0E4190BBE1379 /* Support Files */ = { - isa = PBXGroup; - children = ( - 2CCADECA416C36233EDB1367D6148C60 /* RNRootView.xcconfig */, - 2BCA7D25953AD7B71A4DDEF46B0CFA17 /* RNRootView-dummy.m */, - B3C7C8627F248FF71686F8F15C3F7609 /* RNRootView-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNRootView"; - sourceTree = ""; - }; - 9FC7A13AF2880819D9834D74985F03CC /* Flipper-DoubleConversion */ = { + 9FC7A13AF2880819D9834D74985F03CC /* Flipper-DoubleConversion */ = { isa = PBXGroup; children = ( CCC12E666629CBA68F8FA63EDA522C82 /* bignum.cc */, @@ -14856,64 +14882,50 @@ path = "Flipper-DoubleConversion"; sourceTree = ""; }; - A0658E2834376E3368980A1D16C8DED2 /* React-Core */ = { + 9FD59ABC52A11284C0D38CB87B7EFA3B /* Support Files */ = { isa = PBXGroup; children = ( - C8DFAEF4A90ADEF17C27829CB82C9254 /* CoreModulesHeaders */, - F7F29CA3955DD6A9E7580B2AE49F58B0 /* Default */, - 382ACA6805D7C3F9D9D3CA567E473EFF /* DevSupport */, - F912E8ED5AFD7666BCE2AA6A1AC09007 /* Pod */, - 6DCDF5885F39E87899007D7E573BD9F3 /* RCTAnimationHeaders */, - 48153B400849E5B644FCCB7A294624BC /* RCTBlobHeaders */, - 5727CC7C56F6EF1765CCAC3649378E02 /* RCTImageHeaders */, - ABEDAF71AC3EB113DF01806FB85B8953 /* RCTLinkingHeaders */, - 6EC6ED43651444E71B6892389C47FB32 /* RCTNetworkHeaders */, - 20A93AD6805BACDE104F15F9F7D4FF14 /* RCTSettingsHeaders */, - BE77DE8335B20A606E4200851DA790A9 /* RCTTextHeaders */, - 9003E6912F730E6E5B567DB34ECDDF76 /* RCTVibrationHeaders */, - 668B7AEA7CA878FC7C3990DB38A2D2E7 /* RCTWebSocket */, - 9531F5768A307B5B49530A3E3A8CD01E /* Support Files */, + 86BB660AAFBDF90D48690893B2289C0E /* UMFaceDetectorInterface.xcconfig */, ); - name = "React-Core"; - path = "../../node_modules/react-native"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; sourceTree = ""; }; - A0D9B248FFE56CD990303E25C6C2D7C5 /* RCTTypeSafety */ = { + 9FDDAE1CE077E54DE0A2ABE43312C61E /* functions */ = { isa = PBXGroup; children = ( - 710B3241F8E7A3841B4E7BFC4FE094BB /* RCTConvertHelpers.h */, - 3B47F771593D230817BD77F43EE081FC /* RCTConvertHelpers.mm */, - 8813047D84809D331325E58DD5EC4EB6 /* RCTTypedModuleConstants.h */, - C90FC567524FA661866C611EA3773C32 /* RCTTypedModuleConstants.mm */, - CE48D817A8B89392554ABCE002A6C2B0 /* Pod */, - 1C7BEFEF7EE832B9363224727E1DE8FD /* Support Files */, + 4138EDFF1D6B8CB144423BF576B3E152 /* RNFirebaseFunctions.h */, + B27494E5DCDCDE81B6D20D1A273AF99D /* RNFirebaseFunctions.m */, ); - name = RCTTypeSafety; - path = "../../node_modules/react-native/Libraries/TypeSafety"; + name = functions; + path = RNFirebase/functions; sourceTree = ""; }; - A1604653D63D02B350460457540D8A9D /* Handlers */ = { + 9FEBAECB6ECB042A9CA7909E843DE97F /* react-native-appearance */ = { isa = PBXGroup; children = ( - 63A1581D25708EBDFC5772BEF67E7B5B /* RNFlingHandler.h */, - DF0598EC4E96419F8C605A212DF295D8 /* RNFlingHandler.m */, - 546950BF37FA3C1CC3E6F29E4B25EB69 /* RNForceTouchHandler.h */, - 0FD9D4DA6F7E2E53B3677395C1BA2F28 /* RNForceTouchHandler.m */, - F688B0918BF24C5CD7FA3EAC9AEDA883 /* RNLongPressHandler.h */, - 44AF5B74897837122FCB1F6C88514382 /* RNLongPressHandler.m */, - 0094CAE67569F4423CDD1130F0BDA500 /* RNNativeViewHandler.h */, - 8C108E508B53EF36687AA3DDC919D9B0 /* RNNativeViewHandler.m */, - 7F4B7D09C49BFC8FA482BFC030DC70EA /* RNPanHandler.h */, - 93C833509B4E07D36E97B0CAA0070E83 /* RNPanHandler.m */, - 11B241AA9D04AEF43CDC2F805CE7DCE3 /* RNPinchHandler.h */, - 3E43154BEEBFE6BDFF52BFF59F2F5CA1 /* RNPinchHandler.m */, - CD9F04093EDD60E5467A82D034D381C9 /* RNRotationHandler.h */, - 74E14DD5FD83AE8B00EBE307C8DB6C94 /* RNRotationHandler.m */, - CEB6982058473F3EB5B8DA8791154910 /* RNTapHandler.h */, - 85A6112AD0D87A2AE6595A4C3628D59D /* RNTapHandler.m */, + CF8C9936AA62CBAF5CB03F867530BBA4 /* RNCAppearance.h */, + 2445B3AEA2EB41FE786A830866206CC5 /* RNCAppearance.m */, + F6DBF78FB912B6DC5B49B915E348554B /* RNCAppearanceProvider.h */, + 8B393081F65EE0184A857AA62CE4161F /* RNCAppearanceProvider.m */, + 37388F09D65D14D696B8377C74230141 /* RNCAppearanceProviderManager.h */, + 98B13B0717FC104AF9C47A2C0CB600EA /* RNCAppearanceProviderManager.m */, + 04A033DDB902761F189A24E9CB2DCCD8 /* Pod */, + 3F56A50D720557D8A615A6118CA93730 /* Support Files */, ); - name = Handlers; - path = ios/Handlers; + name = "react-native-appearance"; + path = "../../node_modules/react-native-appearance"; + sourceTree = ""; + }; + A101AFA711928A563A4BD7779B1DC5F4 /* Support Files */ = { + isa = PBXGroup; + children = ( + E5A6370B7C73A043A8FF32CF2159663E /* RNCAsyncStorage.xcconfig */, + 3064F751F46145C00A3F1D8588634343 /* RNCAsyncStorage-dummy.m */, + 7FE72B7EEF6A27940358C8BF5B5AABBE /* RNCAsyncStorage-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNCAsyncStorage"; sourceTree = ""; }; A186D62CD75B4C2386BF882528028363 /* Frameworks */ = { @@ -14924,6 +14936,14 @@ name = Frameworks; sourceTree = ""; }; + A27455B4F063EF3E3DB072A54391D9E4 /* Pod */ = { + isa = PBXGroup; + children = ( + 5592AF6F09FDC47EEB44BAE0FFD8FF56 /* UMFontInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; A2907C13BCD5C9CCF01CBB54E748272C /* glog */ = { isa = PBXGroup; children = ( @@ -14945,58 +14965,26 @@ path = glog; sourceTree = ""; }; - A3271E912B468BAE0AB8F61165F6F7C8 /* Pod */ = { - isa = PBXGroup; - children = ( - B0C916D794C3FE779C110E14F1BA1A61 /* React-RCTImage.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - A35095311AF5DBAB81EC57FA2E743FB5 /* UMFontInterface */ = { - isa = PBXGroup; - children = ( - 67AE65B8CE4FC27E0BC463F86E0F5521 /* UMFontManagerInterface.h */, - E3B80F371ADCB8A43C619930E4C88649 /* UMFontProcessorInterface.h */, - ABB47D5BD2CA888AF3BD370CF1BD2E2B /* UMFontScalerInterface.h */, - DA2317BAB68F0AA88BEBBD1092C9C171 /* UMFontScalersManagerInterface.h */, - 26C9B498EF4A2B893A6E333055FC80F7 /* Pod */, - F9889497D7C30B996D5B89D7D01F5109 /* Support Files */, - ); - name = UMFontInterface; - path = "../../node_modules/unimodules-font-interface/ios"; - sourceTree = ""; - }; - A36DFC13B58A860E716ECB6AAF977EAF /* Pod */ = { - isa = PBXGroup; - children = ( - D9B37A15E0FA6CD3DB37864804AD63AD /* LICENSE */, - 37B4ECBC815DD0545E6E71B8A58F910B /* README.md */, - A07458186537F860067BEEAE8BBAE3F4 /* RNImageCropPicker.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - A3B05376FDB6A26061C1294D424047E9 /* Support Files */ = { + A3B06470F11A9CCAA678CFD0262D9D13 /* Drivers */ = { isa = PBXGroup; children = ( - EA19326E85E449FBF80D9050EE2053EB /* EXHaptics.xcconfig */, - 6FBEC66F0A4DAC6123D0B270954B7004 /* EXHaptics-dummy.m */, - 9E4ACD2D1BB805CB1FE0BC1C0930A8E6 /* EXHaptics-prefix.pch */, + 07CC19B2B7D439A8A98293E8B628F2F8 /* RCTDecayAnimation.m */, + 783EDDF0185FFBC2EC4E9CB6FE9E3CF6 /* RCTEventAnimation.m */, + C4A918DB1835AD192E2CE23A6F8131D8 /* RCTFrameAnimation.m */, + 0D6B8E4ED96634DD01FF6EB51F1E1D79 /* RCTSpringAnimation.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXHaptics"; + name = Drivers; + path = Drivers; sourceTree = ""; }; - A3E5AFB8194CA5023FD4BDCEAA48BE12 /* Support Files */ = { + A3F6B411ED658EFFD65753B968142896 /* UMModuleRegistryProvider */ = { isa = PBXGroup; children = ( - 564108603663D6E8FD3C576E9C82E0FE /* React-cxxreact.xcconfig */, - 33C501A1A12B23A1737140EC045E0289 /* React-cxxreact-dummy.m */, - 2256E6BC3F5D843D3102CE2D02C1C321 /* React-cxxreact-prefix.pch */, + 9B5F0CF2A5F87D7A3DF9A005B8B7BE6F /* UMModuleRegistryProvider.h */, + 179E8C13443706026087C8C90E6ED7D0 /* UMModuleRegistryProvider.m */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; + name = UMModuleRegistryProvider; + path = UMCore/UMModuleRegistryProvider; sourceTree = ""; }; A4CC2200E01FC18969857656BE433289 /* Support Files */ = { @@ -15008,14 +14996,15 @@ path = "../Target Support Files/JitsiMeetSDK"; sourceTree = ""; }; - A506EA6E3846229A18CA5F2908FD8312 /* UIUtils */ = { + A519543D0F6EF39F6AA4381DEDE20EF0 /* Support Files */ = { isa = PBXGroup; children = ( - 8604E2095003058E3A036F99D16F0F0E /* RCTUIUtils.h */, - 468376E377086F72089C0879AD2F764F /* RCTUIUtils.m */, + 265C1CB4595B827AAB73D50EF2E67CC0 /* RNFirebase.xcconfig */, + B499C9A9B19CB0B1CC863F5BCF6AA978 /* RNFirebase-dummy.m */, + E2016F217CC3D2A21FAE96516375C928 /* RNFirebase-prefix.pch */, ); - name = UIUtils; - path = React/UIUtils; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNFirebase"; sourceTree = ""; }; A580EE318508D231BD609293533E7D94 /* Flipper-PeerTalk */ = { @@ -15035,17 +15024,6 @@ path = "Flipper-PeerTalk"; sourceTree = ""; }; - A59C364D559CA50E9E8C97C2BFDFC9CB /* Support Files */ = { - isa = PBXGroup; - children = ( - 2145A175E8A39B3546220D281803BA6B /* RNCAsyncStorage.xcconfig */, - A7FF20675CB7892F4FB555C651D6B8E5 /* RNCAsyncStorage-dummy.m */, - 487E52295EA3E526B90F88CD0BCEB60E /* RNCAsyncStorage-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNCAsyncStorage"; - sourceTree = ""; - }; A5DFD8F3CE79E687745562BF632A87FB /* FlipperKitReactPlugin */ = { isa = PBXGroup; children = ( @@ -15055,59 +15033,35 @@ name = FlipperKitReactPlugin; sourceTree = ""; }; - A6821817905619D00A6E31207F8C06B5 /* Services */ = { - isa = PBXGroup; - children = ( - 53827A1BAA34745F5753731158F1E88D /* UMLogManager.h */, - 8DF6BA5C53B6AD87C2C553B17AC43728 /* UMLogManager.m */, - ); - name = Services; - path = UMCore/Services; - sourceTree = ""; - }; - A6E1F4EB28B3E74FF1696389AFBBF959 /* rn-extensions-share */ = { - isa = PBXGroup; - children = ( - 45E343BF066A1B734C22DAC9C8A99AFF /* ReactNativeShareExtension.h */, - F10EED5C802D21F194A7C2B7067A4348 /* ReactNativeShareExtension.m */, - 87E89A208777EC233543893119FBC0F3 /* Pod */, - 7F1872A0F8CAB49A4B206C243EDFE667 /* Support Files */, - ); - name = "rn-extensions-share"; - path = "../../node_modules/rn-extensions-share"; - sourceTree = ""; - }; - A76FAA5823800F3C7AA70AA67AAB84F2 /* Support Files */ = { + A68324E74B282FF5F4D91772C6ECB2D0 /* RCTSettingsHeaders */ = { isa = PBXGroup; children = ( - 0D058555FF1C043FD328AC579E635FA4 /* react-native-jitsi-meet.xcconfig */, - D826E60BC234B9FF7AD9EE10C96EE99B /* react-native-jitsi-meet-dummy.m */, - 4BDA53501828E67B064CE59174B180E7 /* react-native-jitsi-meet-prefix.pch */, + 49F4B383D4E6610142893012462D0553 /* RCTSettingsManager.h */, + 7D36240A0190F2D89BCCB3B263C40756 /* RCTSettingsPlugins.h */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; + name = RCTSettingsHeaders; sourceTree = ""; }; - A77C70875B263AD408C51340B324E14C /* Support Files */ = { + A6AEB8C3043097D6219658D729BB9319 /* Support Files */ = { isa = PBXGroup; children = ( - CAF57B687DBABF5583B844CE17FE9AE7 /* ReactCommon.xcconfig */, - 7D362AD8B48052F1E3700D074E0C392D /* ReactCommon-dummy.m */, - FB45350C9346A722E8E74112BC52B443 /* ReactCommon-prefix.pch */, + 7F3BB4CE0AD0B8C7B54FB7F37505224F /* EXPermissions.xcconfig */, + 0378FA167F5EA4581FEF06DDD52E2799 /* EXPermissions-dummy.m */, + 8F7A33E47E27920831CF56E3211BC555 /* EXPermissions-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactCommon"; + path = "../../../ios/Pods/Target Support Files/EXPermissions"; sourceTree = ""; }; - A794A50EF6BFC953EF54BBC06D1B2BEB /* Support Files */ = { + A6C1D42884845BA2AC5D34DE6C1B75A0 /* Support Files */ = { isa = PBXGroup; children = ( - BB35C8B34CE65D263DD4FF787E10D778 /* React-RCTAnimation.xcconfig */, - 71BDCF30F98EA76B27C11322BBFACB3F /* React-RCTAnimation-dummy.m */, - F04DF803FCB058655E2F5A9DF0317A24 /* React-RCTAnimation-prefix.pch */, + 83C6051B5BB74E0C061731744EC94DC0 /* RNCMaskedView.xcconfig */, + 38AEF6ACC52C9691E3BB584B952EB817 /* RNCMaskedView-dummy.m */, + A6BAA1941CE4A983F886D0036CB4A042 /* RNCMaskedView-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; + path = "../../../ios/Pods/Target Support Files/RNCMaskedView"; sourceTree = ""; }; A83DA6DA2378B2318F380658C99E3BB6 /* OpenSSL-Universal */ = { @@ -15120,25 +15074,49 @@ path = "OpenSSL-Universal"; sourceTree = ""; }; - A851C3BE2903E1B060152E7E347B1778 /* Pod */ = { - isa = PBXGroup; - children = ( - CBAAE47D598AD40CA21FEA1FD17438C2 /* LICENSE */, - 15AF66B81DCB43247B4AF0E6E1F095FF /* README.md */, - E7201C8B292DF82622394CC050A937B9 /* RNGestureHandler.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - A8B83696E0E7CD4FB94BC72281F8A6F5 /* Support Files */ = { - isa = PBXGroup; - children = ( - 988A4F90E6C77B510C4E26F1FFFF78FC /* react-native-notifications.xcconfig */, - 7E6E3D47CFDBFB8BA79AA8C7A1BDD36C /* react-native-notifications-dummy.m */, - 954BA722E978DF07D5EA4D46C7C691A5 /* react-native-notifications-prefix.pch */, + AA061302CB9A08F17D89A44294756729 /* Tools */ = { + isa = PBXGroup; + children = ( + A065F6A32D5B68FA00622A733E69E4F0 /* BSG_KSArchSpecific.h */, + 3F89E7C766676876642A532B7A7C4292 /* BSG_KSBacktrace.c */, + 4CB3B65484B2C7F08B1E373BC74DB759 /* BSG_KSBacktrace.h */, + F3E85B5EBB79416CEC3F2E3E940D421A /* BSG_KSBacktrace_Private.h */, + E7255553FE2730EF3470DA939C286372 /* BSG_KSCrashCallCompletion.h */, + EF823F172E902D70ED144ED081652D6B /* BSG_KSCrashCallCompletion.m */, + 7BC75D3BC751DD5FF51D3C6DA359C679 /* BSG_KSDynamicLinker.c */, + B4D7F59DF30AE2E34AF88FC6E318B63A /* BSG_KSDynamicLinker.h */, + 19538F70BF6F89C938158F0B4CB5FBA2 /* BSG_KSFileUtils.c */, + A3C8CED532EE69042B4BD85F324EDBB9 /* BSG_KSFileUtils.h */, + C60F74245BE1FE5A03730E7CE28A60D5 /* BSG_KSJSONCodec.c */, + 25B5BF316F09B07498DADC07B47A7B19 /* BSG_KSJSONCodec.h */, + EFBEAA96B5822FEA611A8805634AFA2E /* BSG_KSJSONCodecObjC.h */, + A82A1A37003121FFF1FC59A5D04B5D1A /* BSG_KSJSONCodecObjC.m */, + CD4C105DDB1EEFE5A97E40378DC888AF /* BSG_KSLogger.h */, + 90DF0674E08860B569352D20BD836B67 /* BSG_KSLogger.m */, + 94C7297C0105DD72124B500255D687C0 /* BSG_KSMach.c */, + 7EA5E489506D500C8A30068E8E3A85F8 /* BSG_KSMach.h */, + 30450DE09FEEB6C27389510E3E2E3C11 /* BSG_KSMach_Arm.c */, + CBAF7AE2FF13513D93C2F5EDFB8F8EDF /* BSG_KSMach_Arm64.c */, + 1CE361FE0D4BD192E996ADA0397B17B7 /* BSG_KSMach_x86_32.c */, + B36102AD4F40C2FB149D0B74592E2CFC /* BSG_KSMach_x86_64.c */, + F29737B13216CC9485CADAE76E3434F5 /* BSG_KSMachApple.h */, + D7CBE2E576A6F7D3D91B521B10F2EF4D /* BSG_KSObjC.c */, + BD026ED98E8135E15F5B4ECB528A1494 /* BSG_KSObjC.h */, + A4EC7AA9C7BC50D70AB5A7FA0AA3C6FA /* BSG_KSObjCApple.h */, + B1F6E01FF687CF5E64CC893B49A16197 /* BSG_KSSignalInfo.c */, + 83593BEA3DCCF128AC0E8AB6F21E289D /* BSG_KSSignalInfo.h */, + 7933DA9B2C70364FC3AAF0FD27FCD1AC /* BSG_KSSingleton.h */, + 4E713CE66EE8934531EA0EAE2871757A /* BSG_KSString.c */, + 92847C60F1DF3FC7F44A8640A6238EF2 /* BSG_KSString.h */, + 67E712F6D12B287DB7D25638D492FF32 /* BSG_KSSysCtl.c */, + 4839D1232C584CB3BF2D190E1849BFD6 /* BSG_KSSysCtl.h */, + 8F2E1790724C4D9691892F63791306A2 /* BSG_RFC3339DateTool.h */, + 2AEAA9E544E4CBE4B52DB3985B29502C /* BSG_RFC3339DateTool.m */, + 162BA155359FD7E626C5AB94D17FDCCF /* NSError+BSG_SimpleConstructor.h */, + 6A005ADE34BC29BEF08AEA92B786773D /* NSError+BSG_SimpleConstructor.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-notifications"; + name = Tools; + path = Tools; sourceTree = ""; }; AA263D406301E7A33D7DB976123A6EE5 /* Support Files */ = { @@ -15152,31 +15130,33 @@ path = "../Target Support Files/CocoaAsyncSocket"; sourceTree = ""; }; - AA7701B2EFA213169AF63ADB928B6CAD /* Pod */ = { + AAFBFF81D798CFFEFD32153BF418DD6B /* Support Files */ = { isa = PBXGroup; children = ( - 9C98121B84B233D079C9A3CE83E8708C /* EXFileSystem.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - AADFED7DA59B6D90F68793A8CF646CED /* Support Files */ = { - isa = PBXGroup; - children = ( - BCC39FF80147AFD7516495702A33FD10 /* UMImageLoaderInterface.xcconfig */, + 9CB28BF7526B26E288643470FB2F06C3 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, + 29BBF567B242DB371110C704D4FF5E64 /* RNImageCropPicker.xcconfig */, + B3878F5EA9C5FEAE41256E0F054135FD /* RNImageCropPicker-dummy.m */, + 915D92C368A58EA26D28A6A3CAECD987 /* RNImageCropPicker-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; + path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; sourceTree = ""; }; - AAE19ABFC8C24890883C42A5C0419BF9 /* Pod */ = { + AB37BF55DA004B83ECB07E374B47A3C2 /* RNImageCropPicker */ = { isa = PBXGroup; children = ( - 1EAA8503571E0E242647CBE65A879EB2 /* BugsnagReactNative.podspec */, - 214943770AA62639A6B229CCD7B6B50D /* LICENSE.txt */, - 33717BADD5994F7219D8F0E327A52F29 /* README.md */, + 3AB1F71D319813D2CCEF3F7688B599E8 /* Compression.h */, + 895BE465EC3EE2A360286B0A0E693612 /* Compression.m */, + FBB08FBD72D5720D04F8E9214A1CD560 /* ImageCropPicker.h */, + 7ABF27AEEA3801A53BD643449C4C7BFF /* ImageCropPicker.m */, + AD9CD05E58DED57FC500427F319A0AEC /* UIImage+Resize.h */, + 94B0CBD545862A7EBE11792F1A99E79E /* UIImage+Resize.m */, + 0AC365AD9E330C708E18789B63C867B5 /* Pod */, + 314980B6905F26E5AA5D1B8ED4956305 /* QBImagePickerController */, + AAFBFF81D798CFFEFD32153BF418DD6B /* Support Files */, ); - name = Pod; + name = RNImageCropPicker; + path = "../../node_modules/react-native-image-crop-picker"; sourceTree = ""; }; AB3EBDE4519C9E4109B9BDD8104C2307 /* Support Files */ = { @@ -15190,167 +15170,88 @@ path = "../Target Support Files/nanopb"; sourceTree = ""; }; - ABEDAF71AC3EB113DF01806FB85B8953 /* RCTLinkingHeaders */ = { - isa = PBXGroup; - children = ( - 7A2332A624FF39009F67CC3A477687DB /* RCTLinkingManager.h */, - 25A6614C17B736AC115629DC8B42E299 /* RCTLinkingPlugins.h */, - ); - name = RCTLinkingHeaders; - sourceTree = ""; - }; - ACDDDEAAB46330E719903EA3FA9FADCC /* jsi */ = { + AB91F8217DACF507D61C2730A1A4CE37 /* Pod */ = { isa = PBXGroup; children = ( - 67BD8F0F05A2995677B644E6C936AA2D /* decorator.h */, - FE3950213BA5881CF4D302913A641927 /* instrumentation.h */, - A73FCFE546A7888540B3404F38F752AC /* jsi.cpp */, - 50E502CB2B7A1EB5FBF82EFA8C9B927F /* jsi.h */, - E947376F560B801ED9ED40D457FF7E09 /* jsi-inl.h */, - 264B852CD3B4070CAAE523CA5FFBEC83 /* JSIDynamic.cpp */, - 7C8EBCA61DFAD0D306BADBEE83374B50 /* JSIDynamic.h */, - F2A2A89B3C14D61E41B4004651846E25 /* jsilib.h */, - AF316CBE0CA5A9ADFD961E4ED274B55D /* jsilib-posix.cpp */, - F982B0E52AB2E4E1B81DDAB4B8F60CC1 /* jsilib-windows.cpp */, - B48188F0A471F30821CE698FBF7E9133 /* threadsafe.h */, + B33E59935879E441D5B4C66045EEF7EE /* UMBarCodeScannerInterface.podspec */, ); - name = jsi; - path = jsi; + name = Pod; sourceTree = ""; }; - AF3F289D9904231702C2FF5D5FC55B11 /* Pod */ = { + ABB2E8C95CE7ED63D0E3B9ECA1CE7808 /* Pod */ = { isa = PBXGroup; children = ( - DDF9A745239F49B68E9F0B8533915281 /* react-native-slider.podspec */, + 568105EBF52E3FD8054E3CFF600452B6 /* LICENSE */, + D0BD3B93B9E0680BCBD567C66C4CCA7C /* README.md */, + 7A3099B5F3E7FB32418271805263034F /* RNLocalize.podspec */, ); name = Pod; sourceTree = ""; }; - AFC655D94C7B80D79646B7EF072A66F0 /* Support Files */ = { + AD9074ED08BAC5FB9BBA15513F80F23C /* internal */ = { isa = PBXGroup; children = ( - 7B40AAA6D6A331E10CC9C6C8CEF0DC55 /* glog.xcconfig */, - 8B4A4767E25C7E05A7D2CAD7CD5270CE /* glog-dummy.m */, - DE86D9C3EA27126489E3A87E9686CAA9 /* glog-prefix.pch */, + 6E3C879B99E3089F3C34AF2D70352518 /* experiments.cpp */, + C8C1E13BDC9B9DFCD9AC3FE13D22B9B2 /* experiments.h */, + A14E0D87C342ACA2A7F7E27AF1B68617 /* experiments-inl.h */, ); - name = "Support Files"; - path = "../Target Support Files/glog"; - sourceTree = ""; - }; - B091B68DE214CCD2CAFE61418F7103BD /* Tools */ = { - isa = PBXGroup; - children = ( - 4CBCF12FDA5C1595B8125D84D561102E /* BSG_KSArchSpecific.h */, - 257204B30240739B7940D1A0D164DF58 /* BSG_KSBacktrace.c */, - E12ABAFF3171D02F51399E7A8490FC79 /* BSG_KSBacktrace.h */, - 696B1C6494D9F35BC815B814521219DF /* BSG_KSBacktrace_Private.h */, - 7F5B93B33A7BFFBA1E32BDBAB88A5605 /* BSG_KSCrashCallCompletion.h */, - CED37D403F851EC64D48C2E6D7D32431 /* BSG_KSCrashCallCompletion.m */, - CDD786035D3470DAC419646B3A0A7E2F /* BSG_KSDynamicLinker.c */, - EBCD948AC4674100418902BD3A89E2E3 /* BSG_KSDynamicLinker.h */, - 7D5815080B2F35050BC245DC143DE4B1 /* BSG_KSFileUtils.c */, - 988BA3376729A3D79C86FB6308A2522D /* BSG_KSFileUtils.h */, - 86882A8B995EB53F1E9734757EBF13B7 /* BSG_KSJSONCodec.c */, - EEEF1FEF57923E087FF4D9233211B421 /* BSG_KSJSONCodec.h */, - 65512EE3A272FEA187D7F68BB2CBF52A /* BSG_KSJSONCodecObjC.h */, - 086D2E21CD2C375481D131006EE2FA13 /* BSG_KSJSONCodecObjC.m */, - 7122B0301CE97FCD1569C75445060E4F /* BSG_KSLogger.h */, - 393719E8E07E42AA1712335F0D76BD52 /* BSG_KSLogger.m */, - 80123E4CE5856A3193DD48852416B8D4 /* BSG_KSMach.c */, - 4861260C10C20CC6A6F44A2E9425059B /* BSG_KSMach.h */, - 2E8C1DBF25BB49301681AE4675992A9A /* BSG_KSMach_Arm.c */, - C1B8302E6144ACBFD42B7B1CC9BE1127 /* BSG_KSMach_Arm64.c */, - ED01C7BBEE2469668C100E6C64B6B39F /* BSG_KSMach_x86_32.c */, - AB19C2DA349B77375CF0B72E4B2AB3EB /* BSG_KSMach_x86_64.c */, - AD9C7858F5095094776156A4627310E3 /* BSG_KSMachApple.h */, - 880C494587018B97FA8145B269186028 /* BSG_KSObjC.c */, - 6FC0D0166FB2595C25A22DF7B58C4BA4 /* BSG_KSObjC.h */, - 0F47718EF009AF92BE248AED9D69506D /* BSG_KSObjCApple.h */, - 9A2B89C600999072980916EFDBA63AEA /* BSG_KSSignalInfo.c */, - 6D45484A1A289F44F405566817D9650B /* BSG_KSSignalInfo.h */, - 598B021AE50CDB012A9AFF42DF032658 /* BSG_KSSingleton.h */, - 005FE8CEE0A32FC4A24106623708ACF3 /* BSG_KSString.c */, - 18B25B2B339EA2F0D269DA97D6979384 /* BSG_KSString.h */, - 3E739FFFAF59E0686A65318682F53F97 /* BSG_KSSysCtl.c */, - 8B3FA3257FB94308CDE8DD831FA9ACF1 /* BSG_KSSysCtl.h */, - 228CEFF2E2C187172950B2CE3A62B9A8 /* BSG_RFC3339DateTool.h */, - A4E651B07840425D4D95B5723F1449AE /* BSG_RFC3339DateTool.m */, - 5D2D1A48C5247A0B54FA16DBF05D106B /* NSError+BSG_SimpleConstructor.h */, - 745626DAF8E2FDC51B4CEC6A916584FB /* NSError+BSG_SimpleConstructor.m */, - ); - name = Tools; - path = Tools; + name = internal; + path = yoga/internal; sourceTree = ""; }; - B1276E2C97F91445784BC454EF91560D /* Support Files */ = { + ADB8B142D3211E44FEA4A10592814655 /* Support Files */ = { isa = PBXGroup; children = ( - 66469A4EB01266E9CD0043A424930945 /* react-native-background-timer.xcconfig */, - 564FA813A54C5B41E4AA514B0CE1DB19 /* react-native-background-timer-dummy.m */, - C7FC31A9FFCC4A9ABDDD38B97CF17C38 /* react-native-background-timer-prefix.pch */, + C202C8EC08324AF5B06841DD9921B48A /* UMAppLoader.xcconfig */, + 2EAB83F894DE5160611EE37DFDABACCE /* UMAppLoader-dummy.m */, + 82C41FC21DFE31E2B6765D74DE2842D4 /* UMAppLoader-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-background-timer"; - sourceTree = ""; - }; - B158B4AE90EA12A4C7218C90AA928024 /* ReactNativeART */ = { - isa = PBXGroup; - children = ( - 47CD048DB4EE75F4B79A8E53249E3012 /* ARTCGFloatArray.h */, - A1D6AF6DB4FEDD98B983F99933FB44AF /* ARTContainer.h */, - 56008A9DB03796D3639D33CDA5BD9263 /* ARTGroup.h */, - CBF1B2A24DF85F35EA84548F4AB66F11 /* ARTGroup.m */, - 6DD091C6F83EE0CD038105910C0ADDFD /* ARTNode.h */, - 1BA71CFB5BE743092D975B4EF33ABE86 /* ARTNode.m */, - 56EFD8A78E58DE590D240B9A06419AED /* ARTRenderable.h */, - 755629860A319CC7A0CAC31018519309 /* ARTRenderable.m */, - 0EA859D080F5B72CD9E8BD9639211BF7 /* ARTShadow.h */, - C68D2008F965DB8E53784194B227ACE7 /* ARTShape.h */, - 334755F233628245C1D01956028DA931 /* ARTShape.m */, - 2185D5433F48B8B084131511CFF6F88A /* ARTSurfaceView.h */, - 492536DC8DE6C57B7A06571A85F557EA /* ARTSurfaceView.m */, - E265D20CED969AF5718CC2576B0D2FCC /* ARTText.h */, - BB595745BB33ED2B6577CE4E3F7ED950 /* ARTText.m */, - C8B49794982FBDADB0177CBE38BCD190 /* ARTTextFrame.h */, - 5E79C9C256AF6B3FA26D8859642FD8E2 /* RCTConvert+ART.h */, - 9675F13CB46425163B7D8B264DAB751A /* RCTConvert+ART.m */, - 8C37D369EDB736D2D9FF9A55F1A902DC /* Brushes */, - BDAECD2C367AAC449C56E51AD6DC9C0F /* Pod */, - 3B889B9D29E83886500CAAE90738CE5B /* Support Files */, - 5D8DBD031C93AE6D46EAC75B0765F98F /* ViewManagers */, - ); - name = ReactNativeART; - path = "../../node_modules/@react-native-community/art"; + path = "../../../ios/Pods/Target Support Files/UMAppLoader"; sourceTree = ""; }; - B16515C2C4EEF83313727B33CC0AF6C5 /* firestore */ = { + AFC655D94C7B80D79646B7EF072A66F0 /* Support Files */ = { isa = PBXGroup; children = ( - 3481A38292488F28E5A6CF01D5EA7CCE /* RNFirebaseFirestore.h */, - A22165C603CF86BBA62AFC8C08B2D7EB /* RNFirebaseFirestore.m */, - B33E2DA487D6E6682DCF63E4E5299C0A /* RNFirebaseFirestoreCollectionReference.h */, - A49BFFF090944480DC816615C37D8111 /* RNFirebaseFirestoreCollectionReference.m */, - 4FF2675301A1914717195CB49B661D97 /* RNFirebaseFirestoreDocumentReference.h */, - A4D47E197DC0F3E2DBF3C4445BF0A1AC /* RNFirebaseFirestoreDocumentReference.m */, + 7B40AAA6D6A331E10CC9C6C8CEF0DC55 /* glog.xcconfig */, + 8B4A4767E25C7E05A7D2CAD7CD5270CE /* glog-dummy.m */, + DE86D9C3EA27126489E3A87E9686CAA9 /* glog-prefix.pch */, ); - name = firestore; - path = RNFirebase/firestore; + name = "Support Files"; + path = "../Target Support Files/glog"; sourceTree = ""; }; - B193094453D2E436B6A6DC61F359524E /* UMModuleRegistryProvider */ = { + B13A38025ED169D7E9A1630A15367B99 /* React-RCTImage */ = { isa = PBXGroup; children = ( - EAE2BFF0F123F1A27CF0D9AC2F84DA1A /* UMModuleRegistryProvider.h */, - 0D33A934B640D0010EFD4513CA46B01A /* UMModuleRegistryProvider.m */, + A79C1A4DBFDA57CFC27127DBB2A11675 /* RCTAnimatedImage.m */, + BEFBFB07F80F1D7A438F709015151D87 /* RCTGIFImageDecoder.mm */, + 848BD8BF055C6649D351A1A402184EE9 /* RCTImageBlurUtils.m */, + 2580E080502BBFFA0A4EDA6C491F0276 /* RCTImageCache.m */, + 86EB2B49100A566446F58F5AF84AEE1D /* RCTImageEditingManager.mm */, + FC63028A8DDA27DFBC8BBBFE1036F6D1 /* RCTImageLoader.mm */, + 1221EFC2F3735F558EBD5D919D9C02C0 /* RCTImagePlugins.mm */, + 840CC2A7C24222B9BF0911C1D2204BE8 /* RCTImageShadowView.m */, + 407C8C770C9C21DFCF80F3534305E497 /* RCTImageStoreManager.mm */, + C9CD2287E9245C164B8AB5D2C23A44DD /* RCTImageUtils.m */, + 2EF72D08C11EAEC6D06F11EDA261C43C /* RCTImageView.mm */, + ABFF0EAB8FEBF013FDD823EEB2ADA203 /* RCTImageViewManager.mm */, + AB695411AF55B0DA52CE3E4F9F2D96D2 /* RCTLocalAssetImageLoader.mm */, + 9B2A7899B8715B32B74DD5C3B946D864 /* RCTResizeMode.m */, + F9A8B20448B23252F18508B27F43AA01 /* RCTUIImageViewAnimated.m */, + 12383953F9A37BB86D4B77CFFD3E4A48 /* Pod */, + D2FDCDD6E594FEC2B215892B662A3C2E /* Support Files */, ); - name = UMModuleRegistryProvider; - path = UMCore/UMModuleRegistryProvider; + name = "React-RCTImage"; + path = "../../node_modules/react-native/Libraries/Image"; sourceTree = ""; }; - B1B91E7236F20BF2FCEF54D6BA674FBD /* Pod */ = { + B1E411DBDA459D1E0C1B0CD8BCDFBED5 /* Pod */ = { isa = PBXGroup; children = ( - 671E06E02DB17731102E25AA92C08C8D /* UMSensorsInterface.podspec */, + 4008584EA14A19429B1CE83D152BEBCD /* LICENSE */, + 0D6A8C43D8493AE8CA4CAC47C5A0F2EB /* react-native-webview.podspec */, + C77BF8879C7703ED174D858B986369FD /* README.md */, ); name = Pod; sourceTree = ""; @@ -15366,24 +15267,42 @@ path = "../Target Support Files/Flipper-PeerTalk"; sourceTree = ""; }; - B21622C79F6C89777264A45D79B1FA2F /* Pod */ = { + B2103F9D8DC2E1D57A5266E883CCC14A /* Pod */ = { isa = PBXGroup; children = ( - 76F37DAA3A95559FFCCCFFF85F3DAF6B /* KeyCommands.podspec */, - 46CDFD5D6F50620F9E7601E85A37F8BE /* README.md */, + 5F8C663E5EDC2F553C2ED18EBC7DF4A5 /* EXHaptics.podspec */, ); name = Pod; sourceTree = ""; }; - B2E0801108999F3761F4C729D3A56735 /* Support Files */ = { + B29349962AA62E15867F3F9A54CF3790 /* react-native-cameraroll */ = { isa = PBXGroup; children = ( - FB1CA6C03E7D44A0EACA8FC328819F99 /* EXWebBrowser.xcconfig */, - 3F74F63D4500638E176854142E804CF0 /* EXWebBrowser-dummy.m */, - 3BD7115DD0B67CF8A67D86E8BC7DA72E /* EXWebBrowser-prefix.pch */, + 052395D38A52B075BFC4AF3A27C3D0C5 /* RNCAssetsLibraryRequestHandler.h */, + 36F050A574CB74D41B5E61D2016343A7 /* RNCAssetsLibraryRequestHandler.m */, + CBA835202D56745E2204C472A586EF2A /* RNCCameraRollManager.h */, + 3F4BD87F0484A8760DAAEC616E85E0FD /* RNCCameraRollManager.m */, + 29EF9A7041985C74D61689EEBDE1FE5C /* Pod */, + B5F13104E77CC56B94C6F1003CC06038 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + name = "react-native-cameraroll"; + path = "../../node_modules/@react-native-community/cameraroll"; + sourceTree = ""; + }; + B2D26D937E97178A8707AC020037D3A2 /* Services */ = { + isa = PBXGroup; + children = ( + ADA589FE173707FA8149C6561C74CE09 /* UMReactFontManager.h */, + A3C9F7CFD71D9EC434C4884589E690A1 /* UMReactFontManager.m */, + C7BEF1633847DC3583DF0FE67E8B86BA /* UMReactLogHandler.h */, + BA20595CD5B1A6DF6915499505DD46FF /* UMReactLogHandler.m */, + 2E70AA0D505488567C4D017F3E4247C6 /* UMReactNativeAdapter.h */, + E43A7C55554F6A25B0C051FBEADE2759 /* UMReactNativeAdapter.m */, + 18501B0BD0549B5BD1BA3E9EFA8D236D /* UMReactNativeEventEmitter.h */, + FF0120FDCDDCD45476ACF42E53B0E683 /* UMReactNativeEventEmitter.m */, + ); + name = Services; + path = UMReactNativeAdapter/Services; sourceTree = ""; }; B339121AFB1DAA8FF0BD501266DE4AC6 /* Pods */ = { @@ -15427,465 +15346,470 @@ name = Pods; sourceTree = ""; }; - B3E7BE49317D58756C4018E5F36FEB20 /* Support Files */ = { + B358EE1E3107C83D7FDAB5F76402E019 /* Support Files */ = { isa = PBXGroup; children = ( - 6129E1B1B4AFCC8CC28309986C0952DA /* RSKImageCropper.xcconfig */, - 8ECA2F21A68ECC4CF80F79A32789911A /* RSKImageCropper-dummy.m */, - B5F9AD0C7C17113CB205CC5FF7BE7339 /* RSKImageCropper-prefix.pch */, + FBB97382066662CAFEB8D86DDEF39AC5 /* React-RCTNetwork.xcconfig */, + 2CF99954ABA0F0E1C81EF170CF757AF1 /* React-RCTNetwork-dummy.m */, + 40290ECDB21D4E2C29524C89382485AB /* React-RCTNetwork-prefix.pch */, ); name = "Support Files"; - path = "../Target Support Files/RSKImageCropper"; - sourceTree = ""; - }; - B5E11CB613A779916E7F21DEB93AE85E /* Pod */ = { - isa = PBXGroup; - children = ( - D1C4E2EE1DD85B0A8D9625A1B772A0E7 /* React-CoreModules.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - B5F9093B727DD693B4CC0DFC7E060F79 /* Pod */ = { - isa = PBXGroup; - children = ( - 6EB58EEC2B6F73BEA176EED8631D3D8B /* Yoga.podspec */, - ); - name = Pod; + path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; sourceTree = ""; }; - B73E7CFDC5C98804E383184483AC74CE /* React-RCTImage */ = { + B3ADAF1CDA57B21BF30789670576DF34 /* React-jsiexecutor */ = { isa = PBXGroup; children = ( - 52FA14C797DD21BCB477C6135376D908 /* RCTAnimatedImage.m */, - 0390D837DA5045FC965D96C06FEA2E00 /* RCTGIFImageDecoder.mm */, - 0AD76653381D66158768E50C092B7044 /* RCTImageBlurUtils.m */, - 6602B30C16434EE37FC3C9EF28A5CFC4 /* RCTImageCache.m */, - D6318E5B6B7DC173B03E2ADAA68800A5 /* RCTImageEditingManager.mm */, - 0E9EB4975C32273C8AEBFDF1B620302B /* RCTImageLoader.mm */, - 8FFCAD5827966A8DE8809D1414255B0E /* RCTImagePlugins.mm */, - 42D90568CF9B3800373795CB9CAD8F84 /* RCTImageShadowView.m */, - A61C638B1EA38EE4558EF4004C289962 /* RCTImageStoreManager.mm */, - 71B79A38172EF9EE71FB0A05E099512E /* RCTImageUtils.m */, - E0FB7A2BCB26E6FA7FAF1995311D73E2 /* RCTImageView.mm */, - D406B162AD1A9BB2D5ED8E49D2583638 /* RCTImageViewManager.mm */, - C3F72457D7FEF7EA647F6E8C29B3C62B /* RCTLocalAssetImageLoader.mm */, - A8134D4E8FEF2248A87CFF788DE69B83 /* RCTResizeMode.m */, - 3F08A534E16C64957338A0CE5064E4C0 /* RCTUIImageViewAnimated.m */, - A3271E912B468BAE0AB8F61165F6F7C8 /* Pod */, - E119E86D0D9F2598206AE74C0CEA3961 /* Support Files */, + F6FAB81FD9028155BC5269B58962DF4F /* JSIExecutor.cpp */, + 8490DE5D7810B423327A7A23C99F990A /* JSIExecutor.h */, + 8211CC783A953C15807F8A106728E35C /* JSINativeModules.cpp */, + D0C4C8842E9CCCB9CFFD4099A00A4D46 /* JSINativeModules.h */, + 798CC95A61F89644863A74733BCA63F6 /* Pod */, + B57BDD31AA9EEC10EA9E5EF25ECDB20C /* Support Files */, ); - name = "React-RCTImage"; - path = "../../node_modules/react-native/Libraries/Image"; + name = "React-jsiexecutor"; + path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; sourceTree = ""; }; - B77022EF9FCD3553CDC99FBE6A7BD67F /* Support Files */ = { + B3E7BE49317D58756C4018E5F36FEB20 /* Support Files */ = { isa = PBXGroup; children = ( - 5B3F7558270DE7DD2D98E22DE3FDD57E /* UMReactNativeAdapter.xcconfig */, - 64D2B610AE30090AFFD9BBDEDEF1E802 /* UMReactNativeAdapter-dummy.m */, - E6C0E11D8A8B1FD548645D7202DE152B /* UMReactNativeAdapter-prefix.pch */, + 6129E1B1B4AFCC8CC28309986C0952DA /* RSKImageCropper.xcconfig */, + 8ECA2F21A68ECC4CF80F79A32789911A /* RSKImageCropper-dummy.m */, + B5F9AD0C7C17113CB205CC5FF7BE7339 /* RSKImageCropper-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; - sourceTree = ""; - }; - B78B1DBF453E454509BFB3D0897999F8 /* RNFirebase */ = { - isa = PBXGroup; - children = ( - 0021C6A7A997A06C2776B974C7821251 /* RNFirebase.h */, - F9AB58141DE09EF4AC8B4F0FDA2A9CD1 /* RNFirebase.m */, - AC58807FCD479A6F2650B746BB4FBFFD /* RNFirebaseEvents.h */, - 3A958F3EA31FFEE89B58963F03BF74DF /* RNFirebaseUtil.h */, - CB92A840388D3EF7251E8F98F6D2AAB3 /* RNFirebaseUtil.m */, - 2FA0C6D639432EE8DFAC57838149B797 /* admob */, - 2D72F126EFB0E398EAA00DFDD5FA3D53 /* analytics */, - C4560E7CEC82A107517324995480A5EB /* auth */, - 9774FAB05080360E08FD24A680CE9B1D /* config */, - 31BD69B02DD95AE19BDEF00CBF3B2110 /* converters */, - FE3321F275BD510255767253D40784E4 /* database */, - 02D77A59F48F6CF6CE6E56CC8773D443 /* fabric */, - B16515C2C4EEF83313727B33CC0AF6C5 /* firestore */, - 49BD3AF8011731CAB5B74BC47B217734 /* functions */, - 8DAE3EA2B04E39CA44BE6583A2EA3F33 /* instanceid */, - 1DDFA0F74E6D017333791440D900A927 /* links */, - 9EC51E4D0DE5067BE5A94F3989AD10BD /* messaging */, - 7EE3544DA9E98A093DF27C96D4BA0D38 /* notifications */, - 398373FEDD58B0002DF4A8922B961C5A /* perf */, - 96386F5ECE4964283EB5AAC739C9389F /* Pod */, - 74146D9398475B1693B69D4B9FD9BBC4 /* storage */, - 27969F211D2B111C527161B1D1A8B553 /* Support Files */, - ); - name = RNFirebase; - path = "../../node_modules/react-native-firebase/ios"; + path = "../Target Support Files/RSKImageCropper"; sourceTree = ""; }; - B8F57D72DC04B41E16473C12A8D9F4E3 /* UMImageLoaderInterface */ = { + B57BDD31AA9EEC10EA9E5EF25ECDB20C /* Support Files */ = { isa = PBXGroup; children = ( - DFBED849C843D4DF967E45C83D99233F /* UMImageLoaderInterface.h */, - 7505E5DB8D9EFBE6FCD2951D962F1DFF /* Pod */, - AADFED7DA59B6D90F68793A8CF646CED /* Support Files */, + F63D8A44AE3171808A0B84AAE84799C4 /* React-jsiexecutor.xcconfig */, + 4B1F0EDFA1EEF54165909FDB5258B45E /* React-jsiexecutor-dummy.m */, + 09E787496E66BBF3E2021626BC4EBBBF /* React-jsiexecutor-prefix.pch */, ); - name = UMImageLoaderInterface; - path = "../../node_modules/unimodules-image-loader-interface/ios"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; sourceTree = ""; }; - B920091D48FC8098669E55B8AC1CFE99 /* Logger */ = { + B592ED218B74AC396E43632FA172CE18 /* Support Files */ = { isa = PBXGroup; children = ( - 169CF9C407F24C79419DCA9222CB9318 /* GULLogger.h */, - 0311B13879609FE9DF91F2242EF8880B /* GULLogger.m */, - 399409442F56DEC163C87052645635DC /* GULLoggerLevel.h */, + D6C8B6125EDED348D3F287B2AAEE8233 /* RNBootSplash.xcconfig */, + E8A4EADCDDEA4A9244BA30B3A970CB58 /* RNBootSplash-dummy.m */, + 956D36FEA0A3CBF16210B8CA56A4D3C9 /* RNBootSplash-prefix.pch */, ); - name = Logger; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNBootSplash"; sourceTree = ""; }; - B962BB49E4E0F8E072980BAF394911A8 /* Pod */ = { + B5C416E0A3BBECD6A78C1429A376D881 /* CxxModule */ = { isa = PBXGroup; children = ( - 81EB6C170B6F2790F1A5CDC47B7D2621 /* UMCore.podspec */, + 66E240E6C80FFA95EE8133B0739BAF24 /* DispatchMessageQueueThread.h */, + DEA63D349F8046FF0925A466C59026F1 /* RCTCxxMethod.h */, + 5DCE17359F10A64A92CE82BA118A6C63 /* RCTCxxMethod.mm */, + 9B77400B33B27A0D4F413B65DAD70170 /* RCTCxxModule.h */, + 085AA56D2492CA1A3C9A0DC8DE31B50D /* RCTCxxModule.mm */, + 13C78D07CED5C6C72AD2394D42139B02 /* RCTCxxUtils.h */, + 2259EB0CD35B0B0C3E4A378009A14BEF /* RCTCxxUtils.mm */, + F63E5457439C6AE5E37CF6C2EC8180E5 /* RCTNativeModule.h */, + A9D551E4309D8EA2825168768234E581 /* RCTNativeModule.mm */, ); - name = Pod; + name = CxxModule; + path = React/CxxModule; sourceTree = ""; }; - B98D042EF0D09C77B29011D5E50F7528 /* Support Files */ = { - isa = PBXGroup; - children = ( - 214A517403EFC2E68CBE2E2426122C2C /* Flipper.xcconfig */, - 75543B5F65557EF58DF3162759B936C6 /* Flipper-dummy.m */, - 8F99BD71342DF86B56CE25635997EA29 /* Flipper-prefix.pch */, + B5D0DFD086304DA65E0FFDF520DFC819 /* RNGestureHandler */ = { + isa = PBXGroup; + children = ( + 7CB5A2CEB39ACDED198DE00257F3B307 /* RNGestureHandler.h */, + 4E6023936F6F9DBE9F2C12ABD20BC269 /* RNGestureHandler.m */, + AEAFF8B3B86A75352E5CA5A9E1D4C722 /* RNGestureHandlerButton.h */, + 958B3176F6D956FE1FAD81868DF72378 /* RNGestureHandlerButton.m */, + 0B6314BDE215CD2AB5D0E5DF9377C33E /* RNGestureHandlerDirection.h */, + 933C1DE48BB01D7907EDDD826631B00E /* RNGestureHandlerEvents.h */, + 669B13A11D2D35219F6A985F9EA1D116 /* RNGestureHandlerEvents.m */, + D636A3760924F31F2E4AF8DC7FDF1457 /* RNGestureHandlerManager.h */, + B970A1D21CBA9FD07FAF69CB26244BEA /* RNGestureHandlerManager.m */, + 6FE975E8BCD76AD2AAD0FF69DD966703 /* RNGestureHandlerModule.h */, + 12FFB1CBAFA64B76F01F3573019176D1 /* RNGestureHandlerModule.m */, + A5288D0138C700F37D5F9544FDCE7EC9 /* RNGestureHandlerRegistry.h */, + 4E785381130F293A905F3147E42EA834 /* RNGestureHandlerRegistry.m */, + 311FCD6AA12E2F521B9AECB5B0844B0C /* RNGestureHandlerState.h */, + 6B0DD253747A7C88F28DB074CA283287 /* RNRootViewGestureRecognizer.h */, + F6C8B2787D703916336434677904960E /* RNRootViewGestureRecognizer.m */, + 1C37484845ABB37D57243159C886C968 /* Handlers */, + FB61AD11170500BC81583EC5E435B1A5 /* Pod */, + 2FB27108B534604316B538A6C12C55F8 /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/Flipper"; + name = RNGestureHandler; + path = "../../node_modules/react-native-gesture-handler"; sourceTree = ""; }; - BB278DC67451484CB26D3BB9DA9FF098 /* Support Files */ = { + B5F13104E77CC56B94C6F1003CC06038 /* Support Files */ = { isa = PBXGroup; children = ( - DF85DEADCDCE3CC0A2717889EF77DA40 /* react-native-webview.xcconfig */, - C7D5215B0BDA835A65F4F5C7BB27358B /* react-native-webview-dummy.m */, - FC1EDE67008215F51101F35C2C193913 /* react-native-webview-prefix.pch */, + BD19107D43C4639B74AB628460123D65 /* react-native-cameraroll.xcconfig */, + 27B1E0BF6617F882B11E76578E7B841B /* react-native-cameraroll-dummy.m */, + ADA42EFCA93F392F7E6C3722E6D826AC /* react-native-cameraroll-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-webview"; - sourceTree = ""; - }; - BB3E784A18938CCD06E24D8E7F25C2AF /* FlipperKitUserDefaultsPlugin */ = { - isa = PBXGroup; - children = ( - 0DB084C6DEBA0DC96061D8A514AC4DBA /* FKUserDefaultsPlugin.h */, - 86ACE019DD91832EF8BFFDBD6F4AA667 /* FKUserDefaultsPlugin.m */, - AE56093E9078A473770ECE86FFE0A77D /* FKUserDefaultsSwizzleUtility.h */, - 55B1C20B517E629D985B3B18258990B0 /* FKUserDefaultsSwizzleUtility.m */, - ); - name = FlipperKitUserDefaultsPlugin; + path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; sourceTree = ""; }; - BB416D09935503139FB6AE6415BBD8BB /* React */ = { + B61CB2F8490DDC2735A3D8F9D6E2CCDB /* Pod */ = { isa = PBXGroup; children = ( - EAEE84EB9B060156B96B3351EE413571 /* Pod */, - 2D4B7CB9373E72892986C0D392C3826E /* Support Files */, + FE9D5BD20DFC81A7B2BFF0817A601A82 /* UMTaskManagerInterface.podspec */, ); - name = React; - path = "../../node_modules/react-native"; + name = Pod; sourceTree = ""; }; - BBA405B2C07C8FD5AB3ED645168EEE5D /* Sentry */ = { + B67D622D2042194BA25FFDDB18D677BA /* LNInterpolation */ = { isa = PBXGroup; children = ( - 3D4D955BD35DCD869F66D0B9054109D3 /* BSG_KSCrashSentry.c */, - 3334E27A81D92C38902F3EF06E65C508 /* BSG_KSCrashSentry.h */, - 29C61B48928ACB47767C42DC8802C61C /* BSG_KSCrashSentry_CPPException.h */, - 97C7F766B25433997B07B1C978B966FC /* BSG_KSCrashSentry_CPPException.mm */, - A055F23165266D3F07A6EDFF9AB5D5C8 /* BSG_KSCrashSentry_MachException.c */, - E264446847198B24564078FFE2989119 /* BSG_KSCrashSentry_MachException.h */, - A4434D42050CE6D5CA8C346DB7F50E9B /* BSG_KSCrashSentry_NSException.h */, - 865498C402B4E5F0DD79725D4441BC07 /* BSG_KSCrashSentry_NSException.m */, - FB5A0CD79F1E53BE13EB6F4C591D9B13 /* BSG_KSCrashSentry_Private.h */, - E3ED780732B909991C8A1D797B113375 /* BSG_KSCrashSentry_Signal.c */, - FD80D3557B7F95C1F231BFF7DD19C97F /* BSG_KSCrashSentry_Signal.h */, - 8DF9F18D426A2953F9EBA4E425050B81 /* BSG_KSCrashSentry_User.c */, - EF588114EB45D0C58E840F95E882905C /* BSG_KSCrashSentry_User.h */, + 871B2733B1B4A1BC0B68434E4EBF8C4A /* Color+Interpolation.h */, + 7E6891CF027EC21C81236309DBFBD638 /* Color+Interpolation.m */, + AF9DD0AD96DBE1ABE4849BA155EA6D3A /* LNAnimator.h */, + CC526FF976F836ADF07E332D8977CA46 /* LNAnimator.m */, + A94D69AEA667E8006F0C1D8968940527 /* LNInterpolable.h */, + C7B94C3DDDFC4546093A9F4C1BFA3665 /* LNInterpolable.m */, + C00252FEAAC476E15DC46FA4A1E15A0F /* LNInterpolation.h */, + 9292869F1C5E1E48FECCDACD25352C47 /* NSValue+Interpolation.h */, ); - name = Sentry; - path = Sentry; + name = LNInterpolation; + path = lib/ios/LNInterpolation; sourceTree = ""; }; - BBF622B0872DD0A727D4286909932110 /* Support Files */ = { + B77D361A04451FDDBD215737BEE50011 /* EXLocalAuthentication */ = { isa = PBXGroup; children = ( - 4F1CEAE90D73118B2A6DEB48D6E4B301 /* RNAudio.xcconfig */, - 00E07C03A34E87743AE4F9B6459A323F /* RNAudio-dummy.m */, - C82F14F48778D57E2106F1FC0F8D0326 /* RNAudio-prefix.pch */, + 2F89DE840B04B07EA0173FE9B0251B3E /* EXLocalAuthentication.h */, + F3EBF7D167ECB7E6EBFB913E7674A261 /* EXLocalAuthentication.m */, + BE4380202FE0F35FE8E0D7817457C57F /* Pod */, + 52FE0CB054A166801BCCB0887CDEA0F3 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNAudio"; + name = EXLocalAuthentication; + path = "../../node_modules/expo-local-authentication/ios"; sourceTree = ""; }; - BD01DD13B01455AB746709E25A49203B /* Pod */ = { + B79D97D81BB3ECBD020C5135791D4334 /* Products */ = { isa = PBXGroup; children = ( - 1570FACE560EB764A1AFB2E1F37E5A60 /* LICENSE */, - FA45D31E77F2ADC94723D36D93225EB8 /* react-native-jitsi-meet.podspec */, - E214B9CEE51A727C5AE4AC727593DE85 /* README.md */, - ); - name = Pod; + 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */, + 6CBEFE4F9E22AFDC6347A739BB35FF8C /* libCocoaAsyncSocket.a */, + 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */, + AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */, + 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */, + ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */, + 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */, + 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */, + 09B5856105EF7C6447B9EC57E7E36B34 /* libEXKeepAwake.a */, + 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */, + 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */, + 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */, + ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */, + E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */, + 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */, + 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */, + E93F701CA8EB196D77AE99E094D873E4 /* libFlipper.a */, + AC12C7E29555A7CFDDEF1EDB5BC2F3DA /* libFlipper-DoubleConversion.a */, + 99D5CD245388DC76AAEF6E1E351A90ED /* libFlipper-Folly.a */, + E00BE2A3146698E81A8F9D00E8F93A6C /* libFlipper-Glog.a */, + ACBB7F62B267CC7C9BBBAE41DE94743B /* libFlipper-PeerTalk.a */, + FFDC7746794AB17CFB7150820479DF40 /* libFlipper-RSocket.a */, + 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */, + 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */, + 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */, + 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */, + 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */, + B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */, + 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */, + 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */, + 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */, + 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */, + ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */, + 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */, + F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */, + BD71E2539823621820F84384064C253A /* libReact-Core.a */, + 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */, + 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */, + D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */, + F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */, + 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */, + 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */, + B75A261FE3CE62D5A559B997074E70FC /* libreact-native-background-timer.a */, + 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */, + 08D1FFC2980C1ED72AE9A4C44A0544C3 /* libreact-native-document-picker.a */, + 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */, + 012242E4480B29DF1D5791EC61C27FEE /* libreact-native-notifications.a */, + 48425DA2F01D82A20786D5E55E264A29 /* libreact-native-orientation-locker.a */, + 52FCF98CEFF94C742080B6965D537AD0 /* libreact-native-safe-area-context.a */, + 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */, + 8DF63376066E2275FF26820B3A512A9B /* libreact-native-webview.a */, + FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */, + F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */, + EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */, + 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */, + A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */, + 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */, + E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */, + C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */, + D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */, + 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */, + 16E9F31EC059F2E6FADBF7D544CCCA1D /* libReactNativeKeyboardInput.a */, + 17772905A5DCAAE05D22C2CC78ABB63D /* libReactNativeKeyboardTrackingView.a */, + 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */, + 4FDA96879D96070EB1983E98E655CBDC /* librn-fetch-blob.a */, + 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */, + 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */, + B8CD4B9B578CE9FA38114B638C9CAA78 /* libRNCMaskedView.a */, + 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */, + E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */, + E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */, + 4EAF7225D8D498E7D232AE1520E6CBD3 /* libRNFirebase.a */, + 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */, + 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */, + 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */, + C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */, + E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */, + 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */, + BFCE4058442BFB8DEB89BA3F261A76BA /* libRNUserDefaults.a */, + 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */, + 580712ADE0DDE9601ED35B000EC802D6 /* libRSKImageCropper.a */, + B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */, + FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */, + 2D86D213801ABEF7CD86291D4F3FDD34 /* libUMAppLoader.a */, + AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */, + BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */, + 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */, + 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */, + 5B3357A1CE67C0BF4AE31936A1BE6888 /* libYogaKit.a */, + 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */, + ); + name = Products; sourceTree = ""; }; - BDAECD2C367AAC449C56E51AD6DC9C0F /* Pod */ = { + B920091D48FC8098669E55B8AC1CFE99 /* Logger */ = { isa = PBXGroup; children = ( - 41A197D6922541ADF732712A52AEC561 /* api.md */, - D2424BAC76F59F7526912D76CB7E6E11 /* LICENSE */, - F5C25C555092FBD964CC1EE884307AF4 /* ReactNativeART.podspec */, - E72085AB6706EBC6398EC9DE1C48257A /* README.md */, + 169CF9C407F24C79419DCA9222CB9318 /* GULLogger.h */, + 0311B13879609FE9DF91F2242EF8880B /* GULLogger.m */, + 399409442F56DEC163C87052645635DC /* GULLoggerLevel.h */, ); - name = Pod; + name = Logger; sourceTree = ""; }; - BDDAE384541621DBCA3E2A0C0F5741C7 /* react-native-notifications */ = { - isa = PBXGroup; - children = ( - 7181B076C72B5D8B4BAB9CA9A56A536E /* RCTConvert+RNNotifications.h */, - 97C30C1EC16E4D7BF1E3192F02285C77 /* RCTConvert+RNNotifications.m */, - 139C71A179C549AB4501ED4EBB6C2E10 /* RNBridgeModule.h */, - 0221AC15766186E7DCF679FB4AD3B495 /* RNBridgeModule.m */, - F264626D6307524A77063BDB881ED581 /* RNCommandsHandler.h */, - 3123946DEF3421A12E9BAE834F1E3C63 /* RNCommandsHandler.m */, - 6F6BDE235AC6D6B65B136696A1278875 /* RNEventEmitter.h */, - BB9E5B3EFEA74F851055B14191C29B87 /* RNEventEmitter.m */, - 32D6692C58A15CAE118365DE54D97957 /* RNNotificationCenter.h */, - 06B2203029C3C3AFCDD5DD5318FFCC4F /* RNNotificationCenter.m */, - 2B3EB9B2850535DAE8A7F3F6AFD80475 /* RNNotificationCenterListener.h */, - 027A4BDF040FB5089179212613E3B3A1 /* RNNotificationCenterListener.m */, - F24DF451B924756AB9891D0AE05E825D /* RNNotificationCenterMulticast.h */, - 755098AE1D1B51F73FA9D687E6F48A81 /* RNNotificationCenterMulticast.m */, - 6109228AD003D537CE60FBA075433CAB /* RNNotificationEventHandler.h */, - 6DAA73BB8821C72D48536DF5F9AF61C2 /* RNNotificationEventHandler.m */, - C0597431E55F8169E3324DC6051A3CD1 /* RNNotificationParser.h */, - 076DABD1E77AED8A0B388AFE75D74F9D /* RNNotificationParser.m */, - E1551C8062D1ED0104DBC41541A65C2F /* RNNotifications.h */, - 1F65ADC86C3EEA501595787CC5B00FF0 /* RNNotifications.m */, - 556767749DE24538CB02EBA61C2DAA2F /* RNNotificationsStore.h */, - 80A2AE040566CF877A70391D5194AF89 /* RNNotificationsStore.m */, - EF474563AFA5D4DE1AE9D6DEAFC3ED60 /* RNNotificationUtils.h */, - F2B2FB1E278B24DF0352FFF93299CD9B /* RNNotificationUtils.m */, - 425948E172F368C6A68D1CED6CBE3686 /* RNPushKit.h */, - 207A93E311A2B2567CB197FE30D9BFD6 /* RNPushKit.m */, - 505C5615C155C91CD06C7CF8DEF8CD78 /* RNPushKitEventHandler.h */, - 1168C19E7D2E04FB41C7C7B44D739771 /* RNPushKitEventHandler.m */, - B50440F83C769FB72C446E4454AFE6D2 /* RNPushKitEventListener.h */, - BFFC411F07683C9450E4200CA2760991 /* RNPushKitEventListener.m */, - 12A0ED8E743693028028E41630057E01 /* Pod */, - A8B83696E0E7CD4FB94BC72281F8A6F5 /* Support Files */, + B96E396D639A6F9319D5B77308C036FD /* Source */ = { + isa = PBXGroup; + children = ( + 64A3234226ADD0F3C05B45C4A9DC605C /* KSCrash */, ); - name = "react-native-notifications"; - path = "../../node_modules/react-native-notifications"; + name = Source; + path = Source; sourceTree = ""; }; - BE42C93098C250F9D4E032275E565041 /* KSCrash */ = { + B98D042EF0D09C77B29011D5E50F7528 /* Support Files */ = { isa = PBXGroup; children = ( - 889A8CCD4A727BF9B929360941AFBA56 /* Recording */, - 92344FD2880D552CC774559E9A281B04 /* Reporting */, + 214A517403EFC2E68CBE2E2426122C2C /* Flipper.xcconfig */, + 75543B5F65557EF58DF3162759B936C6 /* Flipper-dummy.m */, + 8F99BD71342DF86B56CE25635997EA29 /* Flipper-prefix.pch */, ); - name = KSCrash; - path = KSCrash; + name = "Support Files"; + path = "../Target Support Files/Flipper"; sourceTree = ""; }; - BE577E764A59F5994C39273524AD5854 /* Pod */ = { + B995DFF9FE559238ED009EB284CDEFBB /* instanceid */ = { isa = PBXGroup; children = ( - 41222C666A8F46E06A91673973BAA9B5 /* LICENSE */, - 05682E662630AA75EC110F8237BDF8A1 /* README.md */, - 461A9A49911068228783AD7F9A834FE9 /* RNCAsyncStorage.podspec */, + 8302E0659CED48BA9B0493F906D280EF /* RNFirebaseInstanceId.h */, + 0F572F6EA40A72FC30E52A3BFCBC80BA /* RNFirebaseInstanceId.m */, ); - name = Pod; + name = instanceid; + path = RNFirebase/instanceid; sourceTree = ""; }; - BE77DE8335B20A606E4200851DA790A9 /* RCTTextHeaders */ = { + BA4926AF269FDA42BE68595D4BCAE560 /* Support Files */ = { isa = PBXGroup; children = ( - 7E64F90A137DF0B04425A383CF795D9C /* RCTConvert+Text.h */, - 79FB308682ED8F39C509C6FA263119A7 /* RCTTextAttributes.h */, - 3AE71AD5EB998140818D614EAAB05D84 /* RCTTextTransform.h */, - 20676D7B672826C1AA5B9A6C4309BC23 /* BaseText */, - C6F3752733D79FEC9812F69FA82D43CF /* RawText */, - 6F15F43CF59EBD3FE36178D3FE19AF83 /* Text */, - 750974AD76AFC9A117C512C8FF99C99F /* TextInput */, - F27F1439852F8F9954EDEF8830B926F3 /* VirtualText */, + F19D2DC6B50D3626B771B0A36634D8DF /* UMFontInterface.xcconfig */, ); - name = RCTTextHeaders; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFontInterface"; sourceTree = ""; }; - BE85ABB6AF9EFE96E4A3DC4C454718C9 /* AppDelegateSwizzler */ = { + BA5039E2F761FC172B5C3BD0F07F48FE /* Nodes */ = { isa = PBXGroup; children = ( - 2AA4E2E650FB2F10CD6B28690D080A14 /* GULAppDelegateSwizzler.h */, - 674B6F2710F83FD4E8D65327654F702A /* GULAppDelegateSwizzler.m */, - FE46758639181FC6497B58527D37A4A1 /* GULAppDelegateSwizzler_Private.h */, - 3C3954DD83E601BA4029D3440FDD3365 /* GULApplication.h */, - E2516D63BEA2B740D3E80F31D007E2E6 /* GULLoggerCodes.h */, - 4899AB8F9FDD2B76CEB7644F2948E5F7 /* GULSceneDelegateSwizzler.h */, - D017CF786AC96A572897D8DBCEE96977 /* GULSceneDelegateSwizzler.m */, - 4A9B05892173B8527974566E9A4CCE60 /* GULSceneDelegateSwizzler_Private.h */, + A38739075BE8C49655328CA01FDB4211 /* RCTAdditionAnimatedNode.m */, + BDC92CDF8B9FFC7427A79BFE9977090D /* RCTAnimatedNode.m */, + ED483243F1A4C81114D244DE05E13457 /* RCTDiffClampAnimatedNode.m */, + 9274BF6ACA6BA16D0FFA807EAFEF2E99 /* RCTDivisionAnimatedNode.m */, + F60F336DC55778EA0711B81C90113C75 /* RCTInterpolationAnimatedNode.m */, + 4B06E08B8212F6FB80D7BE496DF65C45 /* RCTModuloAnimatedNode.m */, + C321DE3390CD49D23F73F0DE5F74C5EA /* RCTMultiplicationAnimatedNode.m */, + 3A05D390D1B6AD818301B94AC2A41B07 /* RCTPropsAnimatedNode.m */, + 510CA58580B4D9AED440EDDFD03F5E09 /* RCTStyleAnimatedNode.m */, + FB6041E6D3567F30A0394A7CCD1779B1 /* RCTSubtractionAnimatedNode.m */, + D62A483C99C907BD9DB3A5EDA32B5119 /* RCTTrackingAnimatedNode.m */, + F0FFD207A76094B2057D8F3DA4C763FC /* RCTTransformAnimatedNode.m */, + 999F8AF489FF8C4BAC572DC4F3BC0F59 /* RCTValueAnimatedNode.m */, ); - name = AppDelegateSwizzler; + name = Nodes; + path = Nodes; sourceTree = ""; }; - BF55D5514E5A01C1AFA1892515FCF31B /* Firebase */ = { + BA7BF4749906F914CF11930D70889BCF /* Support Files */ = { isa = PBXGroup; children = ( - 37084289FDC898852CA0D7BFBE23FE3F /* CoreOnly */, - 3C67BF9F74CA97E4EF6EFBED4E4A4D02 /* Support Files */, + D01599CF77DFB0489A47E18D11DDB3B7 /* react-native-safe-area-context.xcconfig */, + B66D2E18D1890CB55261D46591E30D3E /* react-native-safe-area-context-dummy.m */, + B502B390566993FDB562FFD286D4CFC2 /* react-native-safe-area-context-prefix.pch */, ); - name = Firebase; - path = Firebase; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-safe-area-context"; sourceTree = ""; }; - BF94B8329559E0061A13D6AFB05B5ADA /* callinvoker */ = { + BB3E784A18938CCD06E24D8E7F25C2AF /* FlipperKitUserDefaultsPlugin */ = { isa = PBXGroup; children = ( - 07B3A957AE8A7C65C2F2CCA813376074 /* BridgeJSCallInvoker.cpp */, - 92A866209B909FF7DE356B121586DBA3 /* BridgeJSCallInvoker.h */, - 5BE507CE36D4C90FBA38F2E85F6EAAA3 /* CallInvoker.h */, - 04EC9F608FFDDB8D66E233F17B837EDC /* MessageQueueThreadCallInvoker.cpp */, - 7675103AA92A4E8D188145E91E92730B /* MessageQueueThreadCallInvoker.h */, + 0DB084C6DEBA0DC96061D8A514AC4DBA /* FKUserDefaultsPlugin.h */, + 86ACE019DD91832EF8BFFDBD6F4AA667 /* FKUserDefaultsPlugin.m */, + AE56093E9078A473770ECE86FFE0A77D /* FKUserDefaultsSwizzleUtility.h */, + 55B1C20B517E629D985B3B18258990B0 /* FKUserDefaultsSwizzleUtility.m */, ); - name = callinvoker; + name = FlipperKitUserDefaultsPlugin; sourceTree = ""; }; - C076B18B99D55846D0A83D7EEE683197 /* Core */ = { + BBC1984FAE43BEC1EBEFE5FFBEC1AD45 /* UMBarCodeScannerInterface */ = { isa = PBXGroup; children = ( + FDAC10A8D4E08670787E03272AB43528 /* UMBarCodeScannerInterface.h */, + 4BCAECBB2660E8B8E619101F8EAE543A /* UMBarCodeScannerProviderInterface.h */, + AB91F8217DACF507D61C2730A1A4CE37 /* Pod */, + 18644B443F4671F0B6411C3D37E85352 /* Support Files */, ); - name = Core; + name = UMBarCodeScannerInterface; + path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; sourceTree = ""; }; - C0F281592EB296CFCE74AEDBE0C5C710 /* Base */ = { - isa = PBXGroup; - children = ( - 167D5828800E44CC2451087243F40F39 /* RCTAssert.h */, - 89F39CC71B68E39ED4ADE43058483368 /* RCTAssert.m */, - A4392652ED21B6B19AF66D94D815A783 /* RCTBridge.h */, - F5E4192AE7921B806BBB7C8B4A0FCB3C /* RCTBridge.m */, - 2C3DD063E32E5E8662D6A1C1443DB935 /* RCTBridge+Private.h */, - 55DC61064D7A4D14AA291832CD233B1F /* RCTBridgeDelegate.h */, - E427264B56A7CEB31CA0BF7DDE13B5BB /* RCTBridgeMethod.h */, - 153B693BA836AD28207153834B3D3DC0 /* RCTBridgeModule.h */, - 78D642BD074ECBCE98D84E1D1F747F5C /* RCTBundleURLProvider.h */, - 81BDB57F53D39DBC0E0DE2D840B68111 /* RCTBundleURLProvider.m */, - 7CD7A183075FACE684460A00E3C0C0FF /* RCTComponentEvent.h */, - BC2F7696C4C7E09B59D4C3ADB56340D2 /* RCTComponentEvent.m */, - 2428F07E26FB454DF0A967A4F6AE3FA0 /* RCTConstants.h */, - 483B294389BFC1A333B174C9EE7424D3 /* RCTConstants.m */, - A38575B3B8EA9243005150A893EA2112 /* RCTConvert.h */, - 93F4EB0ABAEF7024B00B36EB5E3A629B /* RCTConvert.m */, - E2C653BA98A073B45B33E340C973D86D /* RCTCxxConvert.h */, - C02BFBD577016E09BB0A9A67D08B7290 /* RCTCxxConvert.m */, - 77BD6C3E902223EC8E562A2F277B8BD5 /* RCTDefines.h */, - 6B89925743BFA191F4C929424A14E0F0 /* RCTDisplayLink.h */, - F61E79DC7918C604DB071008644B48B7 /* RCTDisplayLink.m */, - 9B38541B457DEF769B21EBCD7B0AEA4B /* RCTErrorCustomizer.h */, - 6EAFFD70428079BCAC361B34C85BE3B6 /* RCTErrorInfo.h */, - E1DE80D90C565FAD31CC5F26AECDF252 /* RCTErrorInfo.m */, - 53053026D8C22321912DFDD101F6F9F3 /* RCTEventDispatcher.h */, - 0FF0ADF5DC6D3FF308AECA808C0C7E30 /* RCTEventDispatcher.m */, - 79FEFB251B624E2112058C5823DFFBCA /* RCTFrameUpdate.h */, - 8184F44209E35FCFB3882EFAB43FF84C /* RCTFrameUpdate.m */, - 459E720AF3048001A28D86AB1813580C /* RCTImageSource.h */, - 50E59B9EDF6B2622F3A594660EB04AF5 /* RCTImageSource.m */, - 2CA5D52946D5146220F0C1D6E7DA0956 /* RCTInvalidating.h */, - EDD44CAE1181AC6836BA7E115466AF2C /* RCTJavaScriptExecutor.h */, - 0C821B113E261AE5237AE0BEC3E208B7 /* RCTJavaScriptLoader.h */, - C204583E3149ED5B14004D44F70870B6 /* RCTJavaScriptLoader.mm */, - BAA23C1CF418176CF23145E87404A612 /* RCTJSStackFrame.h */, - 19C43E2021D34953E63B6DF7BD3DCB2B /* RCTJSStackFrame.m */, - 3C2FCFF1B74797ED46F81119F1ACFE14 /* RCTKeyCommands.h */, - 0230A9B1EF23B78768AEC32DC03858BC /* RCTKeyCommands.m */, - 0981862D8B4B0A9BF6D227952C1B5AB8 /* RCTLog.h */, - 63A4E654F582CBCE2393A56FB247C076 /* RCTLog.mm */, - C894BDC9326638A226C65B45A7437B07 /* RCTManagedPointer.h */, - D882CD265BAAC8C8EB8DBD2BE886AF69 /* RCTManagedPointer.mm */, - 13073D43FC4026FEFC9288215CA8B051 /* RCTModuleData.h */, - 5925DB433330BD08AA33FABBF4FCA52E /* RCTModuleData.mm */, - BF23D26AA25EEC70A3E23E9191AEF7C8 /* RCTModuleMethod.h */, - 2684476A26F9AA36378CCD73BB417EC2 /* RCTModuleMethod.mm */, - 378045A1235160477787871E19B23164 /* RCTMultipartDataTask.h */, - F6D896DF889FC496FE599DB11FA9E0D3 /* RCTMultipartDataTask.m */, - FEDCC95D19CBA4FE7AA7D755C04571E0 /* RCTMultipartStreamReader.h */, - 7007E718875B8F5572CFEFC35B2EFF4B /* RCTMultipartStreamReader.m */, - E6B5011534201E3763AB22784CE8E753 /* RCTNullability.h */, - 87F05A51C7F86B2D2B14B62F6F1248FC /* RCTParserUtils.h */, - F0F8ECDEFFE4E135FB39B000FF214874 /* RCTParserUtils.m */, - AE94C387DBEC7942C7E5AAA1ACC5C13D /* RCTPerformanceLogger.h */, - D5427FE4E48FF6C6F79AD17B6DE1C649 /* RCTPerformanceLogger.m */, - 51441DAC4CCB0A6CE1CA2B3A3DFE8FFC /* RCTRedBoxSetEnabled.h */, - D0B19BB1EEF8E5AA0124189F290A8861 /* RCTRedBoxSetEnabled.m */, - 3866A25D361D738C3C4146B8EEECEC71 /* RCTReloadCommand.h */, - 87FD3BC45223DF4888204BDA75328D7B /* RCTReloadCommand.m */, - D4CEC3C8952503C4CA46E9C7A1C49047 /* RCTRootContentView.h */, - 7BB5B16C7B70B759347FE367321DD04A /* RCTRootContentView.m */, - F8D317B01532D8171FD0933F1D90EDB1 /* RCTRootView.h */, - 1A3C56EA8B1A865CCBEBA9138B63E16E /* RCTRootView.m */, - 70C1D1FB6C7ABB76EFBA9EA6555779B9 /* RCTRootViewDelegate.h */, - 437E9354DA6C66E56A1165795756265E /* RCTRootViewInternal.h */, - 0053F156D7C435536B98212B3917B386 /* RCTTouchEvent.h */, - 807D0468E3C3AA6AE839A3E3EB4A86AA /* RCTTouchEvent.m */, - FE57B27FCD352BE6A537713A07C9CE57 /* RCTTouchHandler.h */, - 6F35E6510C4EDF9E7C2CC215DC47AD10 /* RCTTouchHandler.m */, - 23E8E6412A8B80FB18F58A48DCB7C15C /* RCTURLRequestDelegate.h */, - D8835DFC24DE1B46F747338F9C259C6B /* RCTURLRequestHandler.h */, - 9945AD5713750C36E0A34FAAA28D97AE /* RCTUtils.h */, - 436A2C1CF5C436FE19DEA09C716D9B49 /* RCTUtils.m */, - 5DAF4B359C47429B3B0D698854CA7E83 /* RCTUtilsUIOverride.h */, - A6AE3A16051DF5AC6EA9519C91C6D99A /* RCTUtilsUIOverride.m */, - 1AC3A335A71373D11D159DC48AD1B476 /* RCTVersion.h */, - 6B7EFA3C553FFA3C0E411FD9481118B5 /* RCTVersion.m */, - 6A43995AA71DF326C4A3EB8629602CCD /* RCTWeakProxy.h */, - B7932D0F1549FAE90D2EA9D758631E48 /* RCTWeakProxy.m */, - EC324E72843E374033D976F6247E9D25 /* Surface */, + BC372CC6C78C3CE6B70DD84E993EE0A9 /* Support Files */ = { + isa = PBXGroup; + children = ( + 7867172B082DEC058AEB7E73800D54B4 /* React-cxxreact.xcconfig */, + FECA065D211ECD58DC4A33E8E4F13BA2 /* React-cxxreact-dummy.m */, + 7648FAD6D2E1564592C1A4AA4707443E /* React-cxxreact-prefix.pch */, ); - name = Base; - path = React/Base; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; sourceTree = ""; }; - C1035E1AC63F6D666DE9EA2BC26754FE /* Text */ = { + BC685260823EC150F65EACDE71944FC8 /* Inspector */ = { isa = PBXGroup; children = ( - C8B9C11862042751C14615E6498444B8 /* NSTextStorage+FontScaling.m */, - EA44ACEDEE1F1FF7B1994EF60272F3CA /* RCTTextShadowView.m */, - 76BBD1CCC87BF6DB2FE482B80D841F12 /* RCTTextView.m */, - 67925FC22407721697D6FED16443727F /* RCTTextViewManager.m */, + A1F302D34A31CE72D0DD9A4D7BB5FBCF /* RCTInspector.h */, + C0997D9A668A59B0FC36DB784D90DE80 /* RCTInspector.mm */, + A618B8630154703739DBD50828EA56B5 /* RCTInspectorPackagerConnection.h */, + 4883947AD6457823408432CF2F2A9855 /* RCTInspectorPackagerConnection.m */, ); - name = Text; - path = Text; + name = Inspector; + path = React/Inspector; sourceTree = ""; }; - C119D52E8EC99A5AC98F09198183977B /* FlipperKitLayoutTextSearchable */ = { + BD9926960699A518E8F2A6FEEEF0167B /* react-native-orientation-locker */ = { isa = PBXGroup; children = ( - 95ECD0DE5D568B252D0B716DB0CC1872 /* FKTextSearchable.h */, + 8BF5BADD9451A740C33F8E78B648F132 /* Orientation.h */, + C0DDAFD4DA5593CA0C4A0BE516FDD389 /* Orientation.m */, + D7F5AA1C88AC4EBC17BE65836511596F /* Pod */, + 2BE503C8F6E1FA387970D5C4C08D7B76 /* Support Files */, ); - name = FlipperKitLayoutTextSearchable; + name = "react-native-orientation-locker"; + path = "../../node_modules/react-native-orientation-locker"; sourceTree = ""; }; - C1AF4CE1627007CE3A3D0544749498E9 /* react-native-appearance */ = { + BDA2E883E3A941E4C01AE81C57D3CC6D /* Protocols */ = { isa = PBXGroup; children = ( - 2290F20C2B8587B16AAAA9195860246E /* RNCAppearance.h */, - 2ABB5695E72294DF01503F46F8958E57 /* RNCAppearance.m */, - F4C8D38F7CD6C7A1F5D3C85CE2F0D181 /* RNCAppearanceProvider.h */, - 1D50A0B9839ED6D059771A56CDAC5160 /* RNCAppearanceProvider.m */, - B3C7E4123287CD6897A3CA379BE17A43 /* RNCAppearanceProviderManager.h */, - 98873A3FDAB5470E663EE8F658A77ABC /* RNCAppearanceProviderManager.m */, - 415E79C7762D42558D18A3E0893F75D5 /* Pod */, - 31164C3A0492A78A33EBC23F1EDCD567 /* Support Files */, + 56A6667B68AB72AE11F59C206EBC2909 /* UMAppLifecycleListener.h */, + F766BBBD23EF3617D4DF64707FC54C28 /* UMAppLifecycleService.h */, + C1F71DCB5E48D4EEF4564414654247FA /* UMEventEmitter.h */, + 7A84171034776C9AE6062B4A66C2ECE7 /* UMEventEmitterService.h */, + 478E386D30A14CBBB022251D54498E83 /* UMInternalModule.h */, + E1D4D993C8965906F4AC01EDF9794E04 /* UMJavaScriptContextProvider.h */, + DA93844539F9B41A65CC73F109587D1D /* UMKernelService.h */, + F2B0D41B7054DF4FE418A0DF86C8D74F /* UMLogHandler.h */, + 3A391F94EF7B73025F56FE30F4ABF580 /* UMModuleRegistryConsumer.h */, + DDA553F0C0F23533F39A1CB4DC9E5036 /* UMUIManager.h */, + B79B7BD72A8038B9D770EE572F3927F2 /* UMUtilitiesInterface.h */, ); - name = "react-native-appearance"; - path = "../../node_modules/react-native-appearance"; + name = Protocols; + path = UMCore/Protocols; + sourceTree = ""; + }; + BE4380202FE0F35FE8E0D7817457C57F /* Pod */ = { + isa = PBXGroup; + children = ( + B6FDFE41DC562331AEE368D37006C640 /* EXLocalAuthentication.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + BE85ABB6AF9EFE96E4A3DC4C454718C9 /* AppDelegateSwizzler */ = { + isa = PBXGroup; + children = ( + 2AA4E2E650FB2F10CD6B28690D080A14 /* GULAppDelegateSwizzler.h */, + 674B6F2710F83FD4E8D65327654F702A /* GULAppDelegateSwizzler.m */, + FE46758639181FC6497B58527D37A4A1 /* GULAppDelegateSwizzler_Private.h */, + 3C3954DD83E601BA4029D3440FDD3365 /* GULApplication.h */, + E2516D63BEA2B740D3E80F31D007E2E6 /* GULLoggerCodes.h */, + 4899AB8F9FDD2B76CEB7644F2948E5F7 /* GULSceneDelegateSwizzler.h */, + D017CF786AC96A572897D8DBCEE96977 /* GULSceneDelegateSwizzler.m */, + 4A9B05892173B8527974566E9A4CCE60 /* GULSceneDelegateSwizzler_Private.h */, + ); + name = AppDelegateSwizzler; + sourceTree = ""; + }; + BF55D5514E5A01C1AFA1892515FCF31B /* Firebase */ = { + isa = PBXGroup; + children = ( + 37084289FDC898852CA0D7BFBE23FE3F /* CoreOnly */, + 3C67BF9F74CA97E4EF6EFBED4E4A4D02 /* Support Files */, + ); + name = Firebase; + path = Firebase; + sourceTree = ""; + }; + C0FE2908707AF4E952CC86BBF70C9A18 /* ScrollView */ = { + isa = PBXGroup; + children = ( + E9519BBD99C3479A582869773DEAFC32 /* RCTScrollableProtocol.h */, + B02BAC2241E1E2A9886B5F0E1CDE816F /* RCTScrollContentShadowView.h */, + CDA0866B9897FAC421362ECD9C0F37DC /* RCTScrollContentShadowView.m */, + D6D8EF074200FD4A7477713FFFD6EA87 /* RCTScrollContentView.h */, + 778BA0DE82DD975541FEA91DEB4E1A69 /* RCTScrollContentView.m */, + 097304B85CEFD59E754BFDB02493670C /* RCTScrollContentViewManager.h */, + A1094A00A5F3A0C873FB4ED9B61090D6 /* RCTScrollContentViewManager.m */, + 21BD06F85417A2FC19AEF1446F9BCF05 /* RCTScrollEvent.h */, + AE4005C1801D24F2D215728F03673F41 /* RCTScrollEvent.m */, + 5D76FEAA5F7428F3090F1F0705793F83 /* RCTScrollView.h */, + 6B9B3D22E193441427526B68B9AE4EAF /* RCTScrollView.m */, + 88FFB189967011DA8DF9F85079C0852A /* RCTScrollViewManager.h */, + 0FCC622146FC2ECADAC234499016226E /* RCTScrollViewManager.m */, + ); + name = ScrollView; + path = ScrollView; + sourceTree = ""; + }; + C119D52E8EC99A5AC98F09198183977B /* FlipperKitLayoutTextSearchable */ = { + isa = PBXGroup; + children = ( + 95ECD0DE5D568B252D0B716DB0CC1872 /* FKTextSearchable.h */, + ); + name = FlipperKitLayoutTextSearchable; sourceTree = ""; }; C37A9A8DAE8189549B04D577D3B8DC1D /* FKPortForwarding */ = { @@ -15898,14 +15822,15 @@ name = FKPortForwarding; sourceTree = ""; }; - C4560E7CEC82A107517324995480A5EB /* auth */ = { + C3A7D58F1C1943F2A7D4AD77B43A1499 /* UMConstantsInterface */ = { isa = PBXGroup; children = ( - 72E71855F5E7A8418726894F59E554B8 /* RNFirebaseAuth.h */, - 8D4945E36B5CAC10D6AAB064790C2915 /* RNFirebaseAuth.m */, + 324AD3C65B5EF26DAD04544CB9153446 /* UMConstantsInterface.h */, + 6F6B156B193BC53BAA40E2587B097BFC /* Pod */, + D211898101C516017572A71C5030C365 /* Support Files */, ); - name = auth; - path = RNFirebase/auth; + name = UMConstantsInterface; + path = "../../node_modules/unimodules-constants-interface/ios"; sourceTree = ""; }; C4668C47E756944DFA3E35A0C08AE1BA /* Support Files */ = { @@ -15926,56 +15851,91 @@ name = FBDefines; sourceTree = ""; }; - C5AC6B708CB022009FD7B7E6FF5A1B05 /* Support Files */ = { + C4DB59991F0192497B339E6AC245DB81 /* Pod */ = { isa = PBXGroup; children = ( - AA7D691E6F6853403B602F10AE7EA828 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, - CB36FE94E7064BDF21B7063705C2585A /* RNImageCropPicker.xcconfig */, - 833088975D18E2C0CDDAFC698D9B6EE1 /* RNImageCropPicker-dummy.m */, - F22234F81976884632464C9774982352 /* RNImageCropPicker-prefix.pch */, + 07E55A6878FC62C3E0BA0FA6F3918FE8 /* LICENSE */, + F40002D41A5200DC2460CD8B27DEFB04 /* react-native-safe-area-context.podspec */, + 38C6AAE40AF35792D982A16172D5C4BD /* README.md */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; + name = Pod; sourceTree = ""; }; - C617BBE7816A81E36CB3041070423444 /* Pod */ = { + C505D49B8663F8C07D9DAB04B0BF68EB /* Surface */ = { isa = PBXGroup; children = ( - 760A7D61D49FCE79E0D382110003A073 /* UMAppLoader.podspec */, + 2487B40D4653C7815E2A19E55CE966A5 /* RCTSurface.h */, + 9AE1E2D41BCF3547C5D6E9285A7A0044 /* RCTSurface.mm */, + 2302012F151549C70835D721652E9CA6 /* RCTSurfaceDelegate.h */, + 8B57915A482CF88D5E2A8D63B6036B11 /* RCTSurfaceRootShadowView.h */, + 1CF445EB7E9E674D1AE77B68EB6FF169 /* RCTSurfaceRootShadowView.m */, + F9D723C11951EE73400111FF975738CF /* RCTSurfaceRootShadowViewDelegate.h */, + F3828857C44F267E0CE7E41BDDCCE8B3 /* RCTSurfaceRootView.h */, + 796BEFDC67F8C6DEF513F28C7BF7B185 /* RCTSurfaceRootView.mm */, + 2A50525B28CFF268937B02699BB443D2 /* RCTSurfaceStage.h */, + 174FCF0707F8C202D77654685238A1D3 /* RCTSurfaceStage.m */, + 4319E28705732D3B24EC2FA2C675FC59 /* RCTSurfaceView.h */, + 6FCCCC1ABBD785F5600AE1A93D645290 /* RCTSurfaceView.mm */, + 8F65DEA5CF1CEBED1414DEEE84F27C5D /* RCTSurfaceView+Internal.h */, + 83C155A488C1C8AC78731446A1C246DC /* SurfaceHostingView */, ); - name = Pod; + name = Surface; + path = Surface; sourceTree = ""; }; - C693D6EC6D4265D76D49991B452222E0 /* RawText */ = { + C53B2B8FDADEC37CE2E6D9B157A5E7BE /* Core */ = { isa = PBXGroup; children = ( - C4A41718993E223E88F65EF3AF1ED7FD /* RCTRawTextShadowView.m */, - 7C55A44A457F10A97820FAB548C8F44A /* RCTRawTextViewManager.m */, ); - name = RawText; - path = RawText; + name = Core; sourceTree = ""; }; - C6F3752733D79FEC9812F69FA82D43CF /* RawText */ = { + C53D7A77EA2BA0172BF7FC8DAFAA75B4 /* config */ = { isa = PBXGroup; children = ( - DF03482AC925EB58BCD8FEE81E27C735 /* RCTRawTextShadowView.h */, - 1FE95B0AD41CD2DC937FCB63FB377516 /* RCTRawTextViewManager.h */, + 16A90F1D00A6A9FE05A53BB7E056F287 /* RNFirebaseRemoteConfig.h */, + EA7E8D48F7DDFA1913B46F6F9EC23D43 /* RNFirebaseRemoteConfig.m */, ); - name = RawText; - path = Libraries/Text/RawText; + name = config; + path = RNFirebase/config; sourceTree = ""; }; - C777A79262866125047453BCD14FFB04 /* React-RCTSettings */ = { + C5645910EBD5064CDE56CA250505252C /* Transitioning */ = { isa = PBXGroup; children = ( - E7C2406EB26E7373D603678D269F1956 /* RCTSettingsManager.mm */, - 55D0A10204E528F27BA1071BD8E43D9C /* RCTSettingsPlugins.mm */, - 59D56E212D35F13C04A478945DFDB112 /* Pod */, - 1609EB5F050C78DDBA9B0764B53FFFED /* Support Files */, + A52CEA1075CFB48559DE962C61E9A405 /* RCTConvert+REATransition.h */, + C9421AE41A48645182153049F4EB2BA1 /* RCTConvert+REATransition.m */, + 7B9821A8D396FA2AC342565F28DFACD5 /* REAAllTransitions.h */, + 97EBACB78C56FB5EFA5B90D781EAF785 /* REAAllTransitions.m */, + E8706E1DA14B12D2BF99066A1CFBE2F5 /* REATransition.h */, + 71C2FECAAE7D706609452121D6EF6ACD /* REATransition.m */, + B0EDF3C69E161A7C793F6DF64F355104 /* REATransitionAnimation.h */, + 67BA0AB05198D276D8103C33A8103FBC /* REATransitionAnimation.m */, + 15DAC0F73CC1B742024A6DF5FCF9F1E2 /* REATransitionManager.h */, + 07AC649517922DB0149873C06CBD1FEA /* REATransitionManager.m */, + 8A96A7DA87E7EB88363BBC8FA7C0225F /* REATransitionValues.h */, + 30622B80CC406091F7C76C7D3BE5316E /* REATransitionValues.m */, ); - name = "React-RCTSettings"; - path = "../../node_modules/react-native/Libraries/Settings"; + name = Transitioning; + path = ios/Transitioning; + sourceTree = ""; + }; + C589A9D85D071A244897341337418C6C /* analytics */ = { + isa = PBXGroup; + children = ( + 897A1D4B1BF35C4A5A25B3A1E935CFC7 /* RNFirebaseAnalytics.h */, + 103566A64AAC7FC27B9144EB8DF2C9F7 /* RNFirebaseAnalytics.m */, + ); + name = analytics; + path = RNFirebase/analytics; + sourceTree = ""; + }; + C5D2C2E71951044822B11A2A3C014411 /* Pod */ = { + isa = PBXGroup; + children = ( + FEC84F3D1098EC37193C3028759F50A5 /* React-RCTBlob.podspec */, + ); + name = Pod; sourceTree = ""; }; C786669D042FE0DAA53EB9D2C976623D /* Crashlytics */ = { @@ -15995,6 +15955,14 @@ path = Crashlytics; sourceTree = ""; }; + C831EE4FF8E55AEB8DB7912C3AFA000F /* Pod */ = { + isa = PBXGroup; + children = ( + 7E9F76C0924C48374B7C37028E9F2D46 /* React-CoreModules.podspec */, + ); + name = Pod; + sourceTree = ""; + }; C86F5C46F6322C99338DA462F3D77D23 /* SDWebImage */ = { isa = PBXGroup; children = ( @@ -16022,110 +15990,39 @@ path = GoogleUtilities; sourceTree = ""; }; - C891E94FBE9705A583BEBE0A7091D86E /* react-native-safe-area-context */ = { - isa = PBXGroup; - children = ( - 3FD2C5A75B26AE120DA1A0C22A771FF4 /* RCTView+SafeAreaCompat.h */, - 3FA335B90F2FA11F4F3680BECA99C737 /* RCTView+SafeAreaCompat.m */, - 268E537109136434EE2FF5DFF465541C /* RNCSafeAreaProvider.h */, - 08794FC33FD652DF519C9411038FB5A3 /* RNCSafeAreaProvider.m */, - 8A2D38415C9BDA898602EC4847A794FC /* RNCSafeAreaProviderManager.h */, - 08B854B9FB03F126D377C8BD3083158C /* RNCSafeAreaProviderManager.m */, - 7B0639111348B07A51454B418635743A /* RNCSafeAreaShadowView.h */, - C048DC61E2D9E4D99D1D739E53B64635 /* RNCSafeAreaShadowView.m */, - E496A1597D2C8132C654D45BB3F241D6 /* RNCSafeAreaView.h */, - A0127FEFFEA4DAB715DA8E9814B88B22 /* RNCSafeAreaView.m */, - 97FC6BD7C0618EAA750D1B4108648ECF /* RNCSafeAreaViewEdges.h */, - B798C6C06396008B406AB7FCBAD216BB /* RNCSafeAreaViewEdges.m */, - 7D7561A1F3D2AEBED36E92BC3042E4BF /* RNCSafeAreaViewLocalData.h */, - 26BFB0467BB9E53213E8BCEDE7E73CD1 /* RNCSafeAreaViewLocalData.m */, - 0C68CF456F99D500678CCA5E50593E0D /* RNCSafeAreaViewManager.h */, - 0DA3592506DCD6118EF12506F070EE5E /* RNCSafeAreaViewManager.m */, - 6CCE025922FB4CA88EB49C8B913D1801 /* RNCSafeAreaViewMode.h */, - 7736E765A07A194B46126DE3DA84CACE /* RNCSafeAreaViewMode.m */, - 1D3D928A5F0A2C90D16DBE9E7AE0CB99 /* Pod */, - 01B83819926FC18242C3BCF6E947D9C4 /* Support Files */, - ); - name = "react-native-safe-area-context"; - path = "../../node_modules/react-native-safe-area-context"; - sourceTree = ""; - }; - C8DFAEF4A90ADEF17C27829CB82C9254 /* CoreModulesHeaders */ = { - isa = PBXGroup; - children = ( - 3A8479C700A99D42A45C19893F8A5857 /* CoreModulesPlugins.h */, - 419ED541E249724B97BD0D0933226484 /* RCTAccessibilityManager.h */, - 27CE5F38E7E2C21F4A1C2ADC04919A91 /* RCTActionSheetManager.h */, - D69C09EADAE5AB9F3A5B910990EAC6AB /* RCTAlertManager.h */, - 6FFB52B3033BBB7AE6287ED693E36B0A /* RCTAppearance.h */, - 617B59A4E91152675FA15196E979E7D4 /* RCTAppState.h */, - 62AA18061B5817E5FE1A408600036362 /* RCTAsyncLocalStorage.h */, - C3B12190FAA3292458A918B4AFC24225 /* RCTClipboard.h */, - 469DD77831E65227AA6C84B6C2B2AC01 /* RCTDeviceInfo.h */, - 827552D6A3A46085C0AF955B74724589 /* RCTDevMenu.h */, - 7D48981D86849DBE434AA8B89B6DE997 /* RCTDevSettings.h */, - E7846734562A86F0F18D518A1A103385 /* RCTExceptionsManager.h */, - 2C315F99CBFABCC17238E3253EA2F661 /* RCTFPSGraph.h */, - 2598E2C79750DFB023DA23A9AFB1C983 /* RCTI18nManager.h */, - 05FD565D63FF14AEE82757A428C2A6B2 /* RCTKeyboardObserver.h */, - 4E4B781294FCC5535E344853261D102B /* RCTLogBox.h */, - 9FF3DD9B9C1335E737870C0ECA10AD76 /* RCTPlatform.h */, - 6EF267CDF7C5FA740D80DCCE1093F7B7 /* RCTRedBox.h */, - E76D46F06A84B4B9286B578A69AD010D /* RCTSourceCode.h */, - A0AE1F909E2334BA4F0E4BDCC7D9C45C /* RCTStatusBarManager.h */, - 9540A2D9667B50079020C6B62A09F05B /* RCTTiming.h */, - 8F5F09B295F2D3446244328E54525852 /* RCTTVNavigationEventEmitter.h */, - FC62EE3D482E365E56024FE8B612D7CA /* RCTWebSocketExecutor.h */, - 740A733248063787C4E6381A9A9E6388 /* RCTWebSocketModule.h */, - ); - name = CoreModulesHeaders; - sourceTree = ""; - }; - C9C7AFAF3C20900E7E2BF04BC0E51D19 /* react-native-webview */ = { + C8F9FC9DBD22956D6CAA412F4ED633FD /* Pod */ = { isa = PBXGroup; children = ( - B3143AC7D783B32CE3A0370B189EAE04 /* RNCWebView.h */, - 42A510FC5C085CC40B04B6AB76649708 /* RNCWebView.m */, - BE27740D59217F5C5C5DBE3AC02D64A0 /* RNCWebViewManager.h */, - A040E75C09052596DFD08A69E7D684A3 /* RNCWebViewManager.m */, - 3DFBAF76F2517CC481FBA77F96333C94 /* RNCWKProcessPoolManager.h */, - 8AAB56A3E9F02762A877ADADABED82F3 /* RNCWKProcessPoolManager.m */, - 0283F8E5059CB7628E599316EBD9C880 /* Pod */, - BB278DC67451484CB26D3BB9DA9FF098 /* Support Files */, + 650DAFAF3D4D11C18CEC31E0114EAD60 /* EXImageLoader.podspec */, ); - name = "react-native-webview"; - path = "../../node_modules/react-native-webview"; + name = Pod; sourceTree = ""; }; - CA600A053218B684BD85DB28B26CA5A6 /* RNDeviceInfo */ = { + CAC9DFF567E13D5B028CD575754D9C70 /* UMNativeModulesProxy */ = { isa = PBXGroup; children = ( - 5AB135E598AEE7B5B14E3597613A98A4 /* DeviceUID.h */, - 1A944B362F74B5E301A83ECDA64AEE10 /* DeviceUID.m */, - DDD9A8FF0995E1241DCED980BF3FAA61 /* RNDeviceInfo.h */, - 91B36F266B9D8615A7218FF77A6F09CA /* RNDeviceInfo.m */, - 378AA1E05E8AEA45E7D3057D0F0A92BB /* Pod */, - 4A2F677C508DBC4CFA621CCC2D1ECB60 /* Support Files */, + AC1753BDF4B58DC930F9E4A08756DDEA /* UMNativeModulesProxy.h */, + 405584AD39F2101E0DB76A9CFCEB13A8 /* UMNativeModulesProxy.m */, ); - name = RNDeviceInfo; - path = "../../node_modules/react-native-device-info"; + name = UMNativeModulesProxy; + path = UMReactNativeAdapter/UMNativeModulesProxy; sourceTree = ""; }; - CB8131471207A879CA18F07F285243C6 /* CppBridge */ = { + CB6F4642CBAA67D3B41E15A076B857E0 /* perf */ = { isa = PBXGroup; children = ( + 3487E67E5F20B774B21BD81418EA878A /* RNFirebasePerformance.h */, + DE25AB36DF1683FB80CBFF80590FB05D /* RNFirebasePerformance.m */, ); - name = CppBridge; + name = perf; + path = RNFirebase/perf; sourceTree = ""; }; - CB8BC73A96760860712B5E192680A0AA /* Pod */ = { + CB8131471207A879CA18F07F285243C6 /* CppBridge */ = { isa = PBXGroup; children = ( - 0A2744498D0149896FD5A91ED396F100 /* LICENSE */, - 401979E8E4C19911C6E4F9B3742ED49A /* README.md */, - CB89C0E53E4B81628E581462D440B938 /* RNAudio.podspec */, ); - name = Pod; + name = CppBridge; sourceTree = ""; }; CC1D66F0EC6F37FE0B871B0F7AF85A20 /* FlipperKit */ = { @@ -16144,116 +16041,51 @@ BB3E784A18938CCD06E24D8E7F25C2AF /* FlipperKitUserDefaultsPlugin */, 99B24914623FDAF5E10DD8F10C175D91 /* SKIOSNetworkPlugin */, EBAC6C2B46A988EE65CA88FA8F449D83 /* Support Files */, - ); - name = FlipperKit; - path = FlipperKit; - sourceTree = ""; - }; - CE052E0B091BF051B42A8EFFFCEF6A55 /* Nodes */ = { - isa = PBXGroup; - children = ( - 69735FAF2EE9D19F875455375BED5E67 /* REAAlwaysNode.h */, - 8379467A8B0AAD43D48CACAB090CD6B5 /* REAAlwaysNode.m */, - CA934B616778A58F79F91943D21AD163 /* REABezierNode.h */, - 184BA109B3E3ED82B00E700254AF3AD7 /* REABezierNode.m */, - A904A75FC50154E2FBAF567CB3737BE2 /* REABlockNode.h */, - B8CB036643D44984F995A2F1DF3C18AA /* REABlockNode.m */, - 6C56F7C925156EE85B46657168DA3106 /* REACallFuncNode.h */, - 200A3530239A107CD98D893C9A4DAA61 /* REACallFuncNode.m */, - BB1BF29072A4F7C70FC2C39711F7FDF4 /* REAClockNodes.h */, - EA02EC2BFDF7958CBC02B8993CBB85D4 /* REAClockNodes.m */, - 2C3ACBCD984A4A11C1B429B020F1B81C /* REAConcatNode.h */, - C4E01BA3026E41228999D2A42ABB1876 /* REAConcatNode.m */, - 429EC9BDA101E3155E8BA23E62D9E72D /* REACondNode.h */, - E851E6CD968E6A6AE221C1053E27E8F7 /* REACondNode.m */, - F0E0C101451EA03BB79D6AAFC9A07CBB /* READebugNode.h */, - 50F4F2490052CAE69DE71527843602A5 /* READebugNode.m */, - 012BB9E56B33EBF4790164443F9F9352 /* REAEventNode.h */, - A1534F22DB54903C6CC1A9A16D27592C /* REAEventNode.m */, - 47BB49A7A88CDA666966A40A60D0472B /* REAFunctionNode.h */, - FEE12A9E98B8D825BBCE044BB9BDD0FD /* REAFunctionNode.m */, - F8248CD3ADC3F5F6091D2CFEEDCBC10E /* REAJSCallNode.h */, - B90463474E1454D60D3BDA3C4699CB69 /* REAJSCallNode.m */, - 6D6FD24549CFD1B0EDFFEDBE798C54C9 /* REANode.h */, - 08F1F3E5061E92E19B7F12E323613901 /* REANode.m */, - FC1169799DC69BE14CE10CA9F70E27B4 /* REAOperatorNode.h */, - 847F0DE87D9F5EA07C384415DA780F83 /* REAOperatorNode.m */, - 562584E82F2BA44F023797AC4AEF56C4 /* REAParamNode.h */, - B524BF132646DAB58666BAEE74F53B86 /* REAParamNode.m */, - C40CA3B5B9D97DCF31953A8A61A49CF5 /* REAPropsNode.h */, - 26F21C4F043E602684FCF1300BDFC8F7 /* REAPropsNode.m */, - 3448FC55C8E82FA0CDC44861D2A94718 /* REASetNode.h */, - 13839A8281BCFDFAEAECA7819DD04C4D /* REASetNode.m */, - 44273F4E9B42941C20D465C19E4081EB /* REAStyleNode.h */, - 447D548BC3C3A6985F7B1265A736866A /* REAStyleNode.m */, - F15223809380E9E04498D8B990A790A9 /* REATransformNode.h */, - F3C3E84FE030DC137DCA3DE564F34749 /* REATransformNode.m */, - C78AED4A45BF8EBFEB1300A407736A56 /* REAValueNode.h */, - DCCD4B155D3FF26274DC1610F26D297A /* REAValueNode.m */, - ); - name = Nodes; - path = ios/Nodes; - sourceTree = ""; - }; - CE48D817A8B89392554ABCE002A6C2B0 /* Pod */ = { - isa = PBXGroup; - children = ( - 7E8AB43A0D19CAB66371A64DD8718435 /* RCTTypeSafety.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - CE56FBD54CFE3382936D395F3D6CC57C /* Support Files */ = { - isa = PBXGroup; - children = ( - D9FFC6C7BE0A6E54794B106414DB1B9F /* boost-for-react-native.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/boost-for-react-native"; + ); + name = FlipperKit; + path = FlipperKit; sourceTree = ""; }; - CE85A364C9CC8A2E9BC1E75A357714F1 /* ReactNativeKeyboardTrackingView */ = { + CE03D5F8ACA18BF7A68BA6086BBC65AD /* Support Files */ = { isa = PBXGroup; children = ( - 61A59992915560BF800EF136C199BE56 /* KeyboardTrackingViewManager.h */, - 7EE8986FCA597D38BB69720F4708A824 /* KeyboardTrackingViewManager.m */, - CF9E4ED8267D8374BA9BFC9B190F5982 /* ObservingInputAccessoryView.h */, - CE890AED702E2B7D65D9C57CA1C84A4C /* ObservingInputAccessoryView.m */, - 116FD789F72BCE8CECF811A67F7E8458 /* UIResponder+FirstResponder.h */, - A5B407CB7FB98FE235ED25666DD2A4A7 /* UIResponder+FirstResponder.m */, - 8AB8D30C72246DC959F930A37B7B0B47 /* Pod */, - 1AFB6AFCE41371CBE9B1057E5FA11DA5 /* Support Files */, + 17E87B00A92EE15EC1C9E2F5467933B6 /* react-native-jitsi-meet.xcconfig */, + 012E2487C335188A68E118F6209D8FD9 /* react-native-jitsi-meet-dummy.m */, + 4A332FA115349E45CC106357BD131397 /* react-native-jitsi-meet-prefix.pch */, ); - name = ReactNativeKeyboardTrackingView; - path = "../../node_modules/react-native-keyboard-tracking-view"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; sourceTree = ""; }; - CE8E3C4A204BD8658E8239FF66F7E3A2 /* Pod */ = { + CE56FBD54CFE3382936D395F3D6CC57C /* Support Files */ = { isa = PBXGroup; children = ( - BF0A58843EA221CB4FB1CA0B8A1BD1D9 /* LICENSE */, - FCDC9F5D6C960EF2306EBEDC5BE43AB9 /* README.md */, - 2F4763AE51946C33BE24C00FDAF0EA71 /* rn-fetch-blob.podspec */, + D9FFC6C7BE0A6E54794B106414DB1B9F /* boost-for-react-native.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../Target Support Files/boost-for-react-native"; sourceTree = ""; }; - CEF7B960F2F07CB31CC57B6B60A56BFF /* Pod */ = { + CE7AF16A6B8B46E51486A94761F844C7 /* react-native-document-picker */ = { isa = PBXGroup; children = ( - 24EFAE732626F70AF40D14252040F976 /* EXPermissions.podspec */, + 715D61D98A8D1FB9A6A4B6316308C106 /* RNDocumentPicker.h */, + 18BCE9A3CCBCBCC0ECC654C2D00E0318 /* RNDocumentPicker.m */, + 559C49B5488C5C654BB7B6AB97FA1C85 /* Pod */, + 8C07A0C1C2C32AEBCE8F866BB7B3F801 /* Support Files */, ); - name = Pod; + name = "react-native-document-picker"; + path = "../../node_modules/react-native-document-picker"; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - F87A5B50954C5E7128EC05D520E6DD4B /* Development Pods */, + F2E363A60C311C8320A22EA2664A18E3 /* Development Pods */, D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, B339121AFB1DAA8FF0BD501266DE4AC6 /* Pods */, - E31346C0B67ACF2249F832AF0EB5F565 /* Products */, + B79D97D81BB3ECBD020C5135791D4334 /* Products */, 85036FAFEB60A7A7F38257AB58E1EC8B /* Targets Support Files */, ); sourceTree = ""; @@ -16269,70 +16101,139 @@ path = "../Target Support Files/SDWebImageWebPCoder"; sourceTree = ""; }; - CFE8113FBC62FFEFB1E0865269337590 /* turbomodule */ = { + D10560E4D47F42F90E45688216A60113 /* UserDefaults */ = { isa = PBXGroup; children = ( - 285D0D72E18EC4C84478990CAEDCB68F /* core */, + 38398CBE1093B9B3DBD3232473146B9C /* GULUserDefaults.h */, + 4F754BA97D31F81C0D2C840E3F713C40 /* GULUserDefaults.m */, ); - name = turbomodule; + name = UserDefaults; sourceTree = ""; }; - D10560E4D47F42F90E45688216A60113 /* UserDefaults */ = { + D1455D463014A9A35D8DC0E8EDFD7AA4 /* Support Files */ = { isa = PBXGroup; children = ( - 38398CBE1093B9B3DBD3232473146B9C /* GULUserDefaults.h */, - 4F754BA97D31F81C0D2C840E3F713C40 /* GULUserDefaults.m */, + 5D84B5B0AED6D6EC1970C7EAFF91AF57 /* rn-fetch-blob.xcconfig */, + 0D062DBF9D19AE40D0DC6BB5D4AACB42 /* rn-fetch-blob-dummy.m */, + DAB4DB32EF33AA894F1809353C136158 /* rn-fetch-blob-prefix.pch */, ); - name = UserDefaults; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; sourceTree = ""; }; - D18367236AC4A77D8B5DEA9B0E1FEA56 /* Pod */ = { + D1BFA282A92A2743BCD5C0676FEC5145 /* crashlytics */ = { isa = PBXGroup; children = ( - A348072444435A6F99F3323DB6778CA3 /* UMFaceDetectorInterface.podspec */, + D722A405FA19C6CC7008096B753DC674 /* RNFirebaseCrashlytics.h */, + 58CD11CB1197BEEEDAAC9286996D6D5A /* RNFirebaseCrashlytics.m */, ); - name = Pod; + name = crashlytics; + path = crashlytics; sourceTree = ""; }; - D2CE725788413C62F26BE7F02819780B /* Multiline */ = { + D211898101C516017572A71C5030C365 /* Support Files */ = { isa = PBXGroup; children = ( - 2751DEFB13CE7F313B750145F8315914 /* RCTMultilineTextInputView.h */, - 2A405C5DEF0838E19B8C9F5D7D7F5631 /* RCTMultilineTextInputViewManager.h */, - 64F31E78BE2527B46F88180861AE8CF9 /* RCTUITextView.h */, + 10514393CB6D7409E4DA1184CD175882 /* UMConstantsInterface.xcconfig */, ); - name = Multiline; - path = Multiline; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; sourceTree = ""; }; - D331E02BC0F501E1449ADCE059FE68B9 /* Pod */ = { + D2EA4FACA27BF376E0E8301E69CE8083 /* ReactNativeKeyboardInput */ = { isa = PBXGroup; children = ( - A48F2BC58B4B65559CFF40E6AF5D31D8 /* LICENCE */, - F2BCB20CE87AD5A692F09AA4B712F2DC /* react-native-cameraroll.podspec */, - 425595E475601471A5020B4C92A26954 /* README.md */, + B67D622D2042194BA25FFDDB18D677BA /* LNInterpolation */, + 475A996BFA27295783C6D44BCB8695EF /* Pod */, + 2D75F82F2EDA1C3C23B5F6CE65B79AF3 /* RCTCustomInputController */, + 7E14501D8581AB46DE5597C86129A43E /* Support Files */, ); - name = Pod; + name = ReactNativeKeyboardInput; + path = "../../node_modules/react-native-keyboard-input"; sourceTree = ""; }; - D3F0A476A68FEE435021BFF21486BFB2 /* Support Files */ = { + D2FDCDD6E594FEC2B215892B662A3C2E /* Support Files */ = { isa = PBXGroup; children = ( - 2B227BB4081A0127E3F5F504F8BECC8E /* EXPermissions.xcconfig */, - 994A71C4449C02301B04DA85D8A982B1 /* EXPermissions-dummy.m */, - BB11F78682F5F4581E3FDA9EDCA66206 /* EXPermissions-prefix.pch */, + AB2494725646DF282ADC3AB4F37FE632 /* React-RCTImage.xcconfig */, + 7CCD890902568B57C6130014DE182ABF /* React-RCTImage-dummy.m */, + F9D43CC243B4B32C89C1EDDB43553770 /* React-RCTImage-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXPermissions"; + path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; + sourceTree = ""; + }; + D357DB90AABB8802AB787BC9711D9ED8 /* Nodes */ = { + isa = PBXGroup; + children = ( + 49D6583A05D6F61B465A7E3328A8A728 /* REAAlwaysNode.h */, + 7B7FF2D266FE9A9EB5110887705DA321 /* REAAlwaysNode.m */, + 43F95AD8EB203A4BF4297B8F95FA894A /* REABezierNode.h */, + 120C9FC1E18B6D9F7594AF5D1B391E8C /* REABezierNode.m */, + 803F54955BFC53F9F770F85B17C5A931 /* REABlockNode.h */, + 3C0CD453EF11076459D3E53CB02983A2 /* REABlockNode.m */, + 6F56A119ED26BCF09B22BDF0B75B593E /* REACallFuncNode.h */, + 3426C360D3C4577EEE2921BB9B5D80D9 /* REACallFuncNode.m */, + 5B66A87BE01399931A4DB29AB2E47E88 /* REAClockNodes.h */, + 600E1DB9613D8158F92F6907BAB3D8AF /* REAClockNodes.m */, + 132B36BD3CA6361522B25BE2CC599617 /* REAConcatNode.h */, + 89CFED324866656C4F7098D418D484E4 /* REAConcatNode.m */, + 9C9C6204F679A278A71A7D39DB493997 /* REACondNode.h */, + 7AC0B0AA52C26AC27B0F644ED1999263 /* REACondNode.m */, + 8BA739E4BBE97866B42767451A9A1745 /* READebugNode.h */, + 32B49D35E505BA8C3BE0CEA015D67415 /* READebugNode.m */, + D016CFA396AC7E48D28D0DF25DC64874 /* REAEventNode.h */, + B6611906E0BECBF166DBD1C43808A24B /* REAEventNode.m */, + 547F3064DCFDF7833EBE18E14AA873EF /* REAFunctionNode.h */, + 42AA672DF68A359D83BC2DA365764DBB /* REAFunctionNode.m */, + 4A03476F89471FF9FB363B50C696B367 /* REAJSCallNode.h */, + BB5F770E5DB4AB216E5E2BBDDF0AD67D /* REAJSCallNode.m */, + 606053613276185A680CD0D43DD70AAA /* REANode.h */, + 9AEE5D2A36E70EE7613ABFA94AA0963F /* REANode.m */, + 9A3F61FD9CE62EC5A7611996C05EDA43 /* REAOperatorNode.h */, + 46D1F7CE56719D6DFEDCFB327CB81F39 /* REAOperatorNode.m */, + C55A25EE2EAB2329BB93738686416BA7 /* REAParamNode.h */, + BBC0B2BE955E924540B8D8A2D4A59001 /* REAParamNode.m */, + B71DE3727ABE7459AB930F0D24F89C12 /* REAPropsNode.h */, + 7D528A1AF7A4D024C74AE09DBEB4C5EC /* REAPropsNode.m */, + 12FF562F1E14A2A6E6D05ECDBC87737B /* REASetNode.h */, + 58C717B100AAD10D99A0B2368DF058EA /* REASetNode.m */, + 4994B85608AC3DB0BA8A8A09FE5DF3B1 /* REAStyleNode.h */, + FC2BD8D5D87362CE3750BEC01FA67F01 /* REAStyleNode.m */, + FD835E3716F81D566E4681ED75AB1C75 /* REATransformNode.h */, + 34FCABCB381FAB48F9745EF9062FCBB6 /* REATransformNode.m */, + F2038D105A456660E49DCF35A1ADC3D8 /* REAValueNode.h */, + DE30B4F86E8465B83ABD00A3B78E1063 /* REAValueNode.m */, + ); + name = Nodes; + path = ios/Nodes; sourceTree = ""; }; - D44353245C20E32C6A83E090B12CC8BE /* Pod */ = { + D35EABB1DEEFAFBD228C630A8833D0D5 /* FBReactNativeSpec */ = { isa = PBXGroup; children = ( - D54DA433BF592F5AB15189D1F3CB1DD5 /* README.md */, - 20186ADFF4E69C5D1FC63266686DEC52 /* RNRootView.podspec */, + CD71779C8AF26267D2D4FFF7FED8D385 /* FBReactNativeSpec.h */, + C28015EBA60ACDD15E1763FA95DE2209 /* FBReactNativeSpec-generated.mm */, + 2FCD3EC4BC30484158F9B94AEEA6779D /* Pod */, + F98200676619DA1A31F2577AF2E80962 /* Support Files */, ); - name = Pod; + name = FBReactNativeSpec; + path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; + sourceTree = ""; + }; + D4D73A1E640143629480885D5211021F /* Resources */ = { + isa = PBXGroup; + children = ( + B6D8350560E1A7302D0F874FE3FB728F /* de.lproj */, + 797D9702416A12F6F03B62ABBDFFB6A2 /* en.lproj */, + 1B9C82498C63431AFB222A79E6E16D1C /* es.lproj */, + 84CC40494C048234C57F30FE2C1BEDBF /* fr.lproj */, + 560412BB4BF1373CF752367FAA1A6790 /* ja.lproj */, + 7FF674B00525A7455BA0FE93983F36BC /* pl.lproj */, + 79603FB6D84DA9CA26C3216A1619C242 /* QBImagePicker.storyboard */, + EBD14064E01CD80FBAE87F3B405F2595 /* zh-Hans.lproj */, + ); + name = Resources; sourceTree = ""; }; D53C95D5E768AACE420754B2B028A5AE /* RSKImageCropper */ = { @@ -16361,6 +16262,16 @@ path = RSKImageCropper; sourceTree = ""; }; + D58433E50E7171EDF88FA119A730A1F4 /* React */ = { + isa = PBXGroup; + children = ( + 34D5A3A87DF1BE5040E7A34C392DB605 /* Pod */, + 834B670BCFC595224F83C4DCFD80D473 /* Support Files */, + ); + name = React; + path = "../../node_modules/react-native"; + sourceTree = ""; + }; D5CC9EBB816CEBD73BD54C2992C2819B /* Reachability */ = { isa = PBXGroup; children = ( @@ -16383,23 +16294,147 @@ name = Frameworks; sourceTree = ""; }; - D7AE5B1FF606197028A74A02A761B3EA /* bugsnag-cocoa */ = { + D78B2CAE6F90D40E5A929281AB02C8DB /* Views */ = { + isa = PBXGroup; + children = ( + 51BC2C70407FE660DA8DCC9C94623F65 /* RCTActivityIndicatorView.h */, + D3965A3B816AEA1194A311D04EAFCCD3 /* RCTActivityIndicatorView.m */, + 4E30F1C4217918056ADF25E6F7F6D9CA /* RCTActivityIndicatorViewManager.h */, + 2A826AE008128B6E8E8CA026B6F74C55 /* RCTActivityIndicatorViewManager.m */, + 2D763DDE6D775B54514BD1AC9020ED53 /* RCTAnimationType.h */, + 91BF4AF0A71BD3E3D6F415C2E1844FC1 /* RCTAutoInsetsProtocol.h */, + D654A042E466E53EFB2D56A8F7112B37 /* RCTBorderDrawing.h */, + 16B483EE1F7F6BC3070E263688917615 /* RCTBorderDrawing.m */, + AC97D7F4A9B089BF348F5D6495EEEF47 /* RCTBorderStyle.h */, + EB24BF5ED945CA8EAED2266D71BB0232 /* RCTComponent.h */, + DAC3E4DBB5DAD38F84C500E85D18E30C /* RCTComponentData.h */, + 32583468EEEEA527EC40E6B89D202629 /* RCTComponentData.m */, + BBDFE894843235B6191FDDF4E11065A8 /* RCTConvert+CoreLocation.h */, + ECC5CC63163AE9C0F9CEE7EB00527FBE /* RCTConvert+CoreLocation.m */, + D375FF4A5C3CCECD3FF8C390972806C4 /* RCTConvert+Transform.h */, + 94A12F2CDE548BCEA4F3443158FDB407 /* RCTConvert+Transform.m */, + 3768DB93A674CEB594084955234EB379 /* RCTDatePicker.h */, + 84371A6E9BD45B7442008194D249C0C7 /* RCTDatePicker.m */, + 185F95700BC1BB25CEB4FBA13CA93FD0 /* RCTDatePickerManager.h */, + 7D20FD0EDBF8575B53E078E4EEE4972D /* RCTDatePickerManager.m */, + 5884F439D63328671168CB50B24A2B0F /* RCTFont.h */, + 1D251FEF5103B07DC87F45C4C6E9435B /* RCTFont.mm */, + D6D3C2E16B0602C74178760CCFD36F05 /* RCTLayout.h */, + FE58ED4E5902F18A8C8827EB5F4252F2 /* RCTLayout.m */, + 07A757D98F14B53083B25965F4E3E2BC /* RCTMaskedView.h */, + 2A30482EEE93A686B919A3624181BF11 /* RCTMaskedView.m */, + F7B1E58A1FB227B2DABFD7D25000B59D /* RCTMaskedViewManager.h */, + 4159D63DA40AB47FC3FA88C36B339089 /* RCTMaskedViewManager.m */, + A357C1C79D11A5E4B03E38EBCD13B1EE /* RCTModalHostView.h */, + 6A8933134A5B3135248092BE692301EC /* RCTModalHostView.m */, + B5037CEDD30D0F53E3D072E7F82C93FC /* RCTModalHostViewController.h */, + FB2588E4AD9B0F14A4204399375CBA98 /* RCTModalHostViewController.m */, + DF6F3496F8688A1C552A282A65030625 /* RCTModalHostViewManager.h */, + 865C0286C7A7DD463DBC414E87BA43F8 /* RCTModalHostViewManager.m */, + A9F8AFE6BE212D3CE74C864B4630BFC4 /* RCTModalManager.h */, + C175B05619803671EBE3017CC20F955D /* RCTModalManager.m */, + 88BA844E17073A067E79E8E63448BC76 /* RCTPicker.h */, + E404649237AF8D3405C5E7A49F44AA22 /* RCTPicker.m */, + 210AF6D0BB0B919F971CFAEE89D4FD44 /* RCTPickerManager.h */, + 2D3853B3ED3C88E5AEBA60EBA787BCD6 /* RCTPickerManager.m */, + 339B6078FABA3A8B20C8358C15B05E32 /* RCTPointerEvents.h */, + 95D0801481BF92F86FC8EF6B5AA1C38E /* RCTProgressViewManager.h */, + 8C7F8DC61947AAE6F131988A83E78144 /* RCTProgressViewManager.m */, + 461C2A4C9BE1D8C155274B9CBE0CF413 /* RCTRootShadowView.h */, + 1CA5EB000FAB712A0E1C018282F6F7B3 /* RCTRootShadowView.m */, + 80A517C9E8DB3F15A722A352A29BBAA0 /* RCTSegmentedControl.h */, + 195EDDD4EAE52DAA85438274E906F9B1 /* RCTSegmentedControl.m */, + E67B82F37619263BFACB3D924ADE23F2 /* RCTSegmentedControlManager.h */, + 88DF7BC5C402A147DB57A28066D6313F /* RCTSegmentedControlManager.m */, + 62599D7EAB6F281DFC84A316E703B7FE /* RCTShadowView.h */, + 2013508AD70F33F744F72E9CE70A398D /* RCTShadowView.m */, + 5DEC3C1161906854769837FE3143B6EC /* RCTShadowView+Internal.h */, + 3F79F850B7497FD46240FFEC17889F85 /* RCTShadowView+Internal.m */, + CA4A822BFC68A5B56F534E93D4A98414 /* RCTShadowView+Layout.h */, + 36C58925EA5D16FB43CCBF7252CB3CB1 /* RCTShadowView+Layout.m */, + 5936349F1BDF4B05BADDE3A2EDF5C793 /* RCTSlider.h */, + DF132D8E04244DFF406C105C77F67000 /* RCTSlider.m */, + 193F1BF61A56BA5DA8D05FFB9356D4CB /* RCTSliderManager.h */, + E5F739963806C8A554836D765A67FF88 /* RCTSliderManager.m */, + E93D126B448F75F301364547ED319491 /* RCTSwitch.h */, + F2A62AFA72CEBD136ABD03D41C420A49 /* RCTSwitch.m */, + AD306CFEF5A52CE74956BC49EA506172 /* RCTSwitchManager.h */, + 66286C5F8DB2CF11DFF305B325446B19 /* RCTSwitchManager.m */, + EC1A175023CE8618E61DF3CC94DBDA01 /* RCTTextDecorationLineType.h */, + 0E6E722EDD2DE1454C5DBBE8F56E3F7D /* RCTView.h */, + 9DFAADFF4BFEA5270DB56B0FC1A13236 /* RCTView.m */, + F6D24F11DDC1032DCF9B4E391613A676 /* RCTViewManager.h */, + 1DA25B86ADBA7605BE69071CB46D7286 /* RCTViewManager.m */, + B74E4AAD40CBD1BF91CDA0ADD5C17560 /* RCTWrapperViewController.h */, + 03C1C434573C40C2233BE5AFE0DE43FD /* RCTWrapperViewController.m */, + 497C408C0EA4A09EA737CA3E0118FD14 /* UIView+Private.h */, + 7E63F7141C969087C35F64F57DDA59F4 /* UIView+React.h */, + B3B57B0DFC5265868A1243CFB40056BC /* UIView+React.m */, + EB60EAB030DE16258243947781A602D2 /* RefreshControl */, + 34DEB3A5B8477414B14C2E1A1A99481B /* SafeAreaView */, + C0FE2908707AF4E952CC86BBF70C9A18 /* ScrollView */, + ); + name = Views; + path = React/Views; + sourceTree = ""; + }; + D7B656670AA83B1CFC5639623C1DF409 /* React-RCTActionSheet */ = { isa = PBXGroup; children = ( - 1632967B47D1DE19EBEFF374D7049024 /* Source */, + 5ECF0EFAA7CB465D1F6FDAF5C2E6BAEB /* Pod */, + 98496E0DD22EDB0EFC6D29D0CB516C64 /* Support Files */, ); - name = "bugsnag-cocoa"; - path = "bugsnag-cocoa"; + name = "React-RCTActionSheet"; + path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; + sourceTree = ""; + }; + D7F5AA1C88AC4EBC17BE65836511596F /* Pod */ = { + isa = PBXGroup; + children = ( + 6DBA8765372DB6E171642C82A499500D /* LICENSE */, + 517F51778C47CDEB5931937E16D3072C /* react-native-orientation-locker.podspec */, + AC7C4E268F090629D7215D51DC34FE8C /* README.md */, + ); + name = Pod; sourceTree = ""; }; - D7D63AAB97F184EEC62D34A2807FA7A9 /* Pod */ = { + D7F770D64AD5E4273996CC7305BDB153 /* Pod */ = { isa = PBXGroup; children = ( - 1C6DF07F4BCAEE95AE18C1A6FF7A1E16 /* UMFileSystemInterface.podspec */, + 0BBCACBD5C562DF53F2545D2CE7496C3 /* react-native-slider.podspec */, ); name = Pod; sourceTree = ""; }; + D812A85C15C9130F0727A7A46899B61D /* Support Files */ = { + isa = PBXGroup; + children = ( + 15A32BF114F112D49D59D4C01A9A9E69 /* RNReanimated.xcconfig */, + E79FDE1EF9E842BE4E0E95A77B70CEBE /* RNReanimated-dummy.m */, + D000153CC971A1821CA9A2AC1F5472AE /* RNReanimated-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNReanimated"; + sourceTree = ""; + }; + D82B7B72A6C354BC48BE9E9B9E815F72 /* CxxBridge */ = { + isa = PBXGroup; + children = ( + 0E5AF1BA72A31472E4AF05AD7CA1808D /* JSCExecutorFactory.h */, + 703E267F3DC3D5BA002C0B8532D35662 /* JSCExecutorFactory.mm */, + 061DA8A0624494E770452449B77FF5E9 /* NSDataBigString.h */, + B437F16764983919DA87773F3DA36059 /* NSDataBigString.mm */, + ACC49D210A52FB0039AE7951BEA5A57D /* RCTCxxBridge.mm */, + D24DC138C1453017E887875FEA11B809 /* RCTCxxBridgeDelegate.h */, + 11E4D75B7F44C410E0AEE4C9DF1F694B /* RCTMessageThread.h */, + 77BE894F7585FB6A710E89AB23CBF4F9 /* RCTMessageThread.mm */, + 81B007D8765AE2BC1EB467D42206A309 /* RCTObjcExecutor.h */, + A930CBD0FD05B3ABF9A65B2593FE0A9C /* RCTObjcExecutor.mm */, + ); + name = CxxBridge; + path = React/CxxBridge; + sourceTree = ""; + }; D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -16407,91 +16442,60 @@ name = Frameworks; sourceTree = ""; }; - D9ACA25F46506ACFF95BC67B763E853A /* React-cxxreact */ = { - isa = PBXGroup; - children = ( - B5CCD8A80C54F72D40316EBB155801CF /* CxxModule.h */, - FA2060F52377558351C43D46F0379845 /* CxxNativeModule.cpp */, - 32D62F9FE254D779D1AF7414AED6EF81 /* CxxNativeModule.h */, - 9872589A0210618DBDA33C90F6F9EAED /* Instance.cpp */, - 6C5624E0E20A589ECAA03A7C6C028BDF /* Instance.h */, - 850919EAE9825E1550B656DF21466B86 /* JsArgumentHelpers.h */, - 6BC1449B2CD4362D1CA4046B1D8AA71C /* JsArgumentHelpers-inl.h */, - 7C4B351F8FB06F9DB07A3372945F2B68 /* JSBigString.cpp */, - 9DE6FE2B0EAF64393EAAF37AE268A59D /* JSBigString.h */, - 474B6F3D8B930EFEBD3F53CEF5115FDE /* JSBundleType.cpp */, - 056FEC49181BE5653FB8F593FF0BB55B /* JSBundleType.h */, - 3F26AD8F4F3D371230E2B519E3A584B8 /* JSDeltaBundleClient.cpp */, - E57CB5393938F05134054752FF3A5ACC /* JSDeltaBundleClient.h */, - E8DB84CAA9FFF35B26830F2F6B2E1093 /* JSExecutor.cpp */, - 201506DCFFE14B340C726A0F0563D72C /* JSExecutor.h */, - EAA20CCB46DCC333665BD15C89A69BB2 /* JSIndexedRAMBundle.cpp */, - FC429F00E2DBFC7193540F246B0E6365 /* JSIndexedRAMBundle.h */, - D9F1014F239236BC5F2F41AB81D21B01 /* JSModulesUnbundle.h */, - 850ED263FA09AEE617847B2309FD3D09 /* MessageQueueThread.h */, - 2395C55DF2741069950E865FC9E46A8F /* MethodCall.cpp */, - BE8B80ACCF53BCA41AC1082A7BFA65EF /* MethodCall.h */, - AD313F7671D7B76D259DAD10C0545981 /* ModuleRegistry.cpp */, - 25CF7B2E403EAF3907627D3B8AC8CA0A /* ModuleRegistry.h */, - 0DA5774B039E5920A5520A367E0DDF2F /* NativeModule.h */, - 5B4692F054A0876E2EE22CB02FCF1D54 /* NativeToJsBridge.cpp */, - E533079A5A60ED45D2840B8F31B01B66 /* NativeToJsBridge.h */, - AE5A2D2336BDACC59D1DDE28C598F1FB /* RAMBundleRegistry.cpp */, - B44FCB6AA07EFF8149CAA00C18C413A0 /* RAMBundleRegistry.h */, - 81A3F3B67C53BA4E6624587FB504709E /* ReactMarker.cpp */, - 7E99D2AE48FA6673B685C713DACBAD36 /* ReactMarker.h */, - CBE9F092E3CA7E0A323FBF3F4350A49A /* RecoverableError.h */, - 9A86B606D84FC5918002098DE6846840 /* SharedProxyCxxModule.h */, - 77A9C0F349533D8942E9CE893B5B7308 /* SystraceSection.h */, - 7CAA5C4B6FA05938AE46A49F0C30DE37 /* Pod */, - A3E5AFB8194CA5023FD4BDCEAA48BE12 /* Support Files */, + D91AC9F954A07B7FC19329132508A59B /* Pod */ = { + isa = PBXGroup; + children = ( + FCC696F61846039C31A49E94D0894997 /* README.md */, + 63B765F41ACD23242058ED9F171363CD /* RNCMaskedView.podspec */, ); - name = "React-cxxreact"; - path = "../../node_modules/react-native/ReactCommon/cxxreact"; + name = Pod; sourceTree = ""; }; - DA69CFB8DD578BB441FC8193ABE45DDC /* RNScreens */ = { + D92978074AC1B2FBF89EF2CD64537900 /* Pod */ = { isa = PBXGroup; children = ( - D33C61C8004717F147894A4F457C4CB5 /* RNSScreen.h */, - 07C5BA84758EAE136D02C19BC92E32A7 /* RNSScreen.m */, - E0416A48BB81A3B7DCD63873C246F10D /* RNSScreenContainer.h */, - 441F02D10BB61823144938EE3580E748 /* RNSScreenContainer.m */, - EDD126C6D0351882C6B39C1B0A2B3210 /* RNSScreenStack.h */, - 25515E093BB5827043AB4142E1B445A0 /* RNSScreenStack.m */, - E88F78294801819BD69BE99ED540E704 /* RNSScreenStackHeaderConfig.h */, - C72E95A79577DA868BD39B4664B30CA5 /* RNSScreenStackHeaderConfig.m */, - 78BAF8F24B2B9E7901298DBE7475BBB7 /* Pod */, - 78A6CF5DE4A8CB07DF1D443B204A7483 /* Support Files */, + 65BC66228D54391BA80D988941FC759E /* UMPermissionsInterface.podspec */, ); - name = RNScreens; - path = "../../node_modules/react-native-screens"; + name = Pod; sourceTree = ""; }; - DC51473D82ADE91D2682DEDAD92AEFBC /* QBImagePickerController */ = { - isa = PBXGroup; - children = ( - 50B45D92C822BE77215EC7547CFF15C6 /* QBAlbumCell.h */, - 524B0B734499A06C5A775B80572E1787 /* QBAlbumCell.m */, - 06BB9BF3EDD857DAF1AE0CAA54A507FD /* QBAlbumsViewController.h */, - CB71456404F9CED77678659966DC7E12 /* QBAlbumsViewController.m */, - 487E3FEF367BF978805E546FCE64BCB2 /* QBAssetCell.h */, - DB30904BAAE60FADA3C166321E867CFA /* QBAssetCell.m */, - 205328114E4BF15CC8CF7906A5B8671D /* QBAssetsViewController.h */, - F08AB5F4C1F34510E8E82AA7FD7A56AA /* QBAssetsViewController.m */, - 51F0795B53F3F7136750F1F4752176FD /* QBCheckmarkView.h */, - 670F0EBAC9E68A6388175F2D2C39F1E9 /* QBCheckmarkView.m */, - C24EE1A964E34FECB1A87A875FAEE2BF /* QBImagePickerController.h */, - 9678206A159276B63BD2EB7EF1B3C227 /* QBImagePickerController.m */, - D7D5330BA7F406E82D2A64AD902CE53B /* QBSlomoIconView.h */, - 6ED941F53DF92721599437932A10C44C /* QBSlomoIconView.m */, - DAC74069D9D5F477EAEF1DD93F60EAD1 /* QBVideoIconView.h */, - BFD4AB29C51CF8BDA8D6DC0DFFFC923D /* QBVideoIconView.m */, - DC27A0095FF48D6786C3E980C983CEE5 /* QBVideoIndicatorView.h */, - AF023C883F422DA6A47D2C7FABB249A0 /* QBVideoIndicatorView.m */, - FB0A6050612302C48F3B3458FBAD23EF /* Resources */, + D9B3E1A851724272D71333C32C90D910 /* firestore */ = { + isa = PBXGroup; + children = ( + 04A4858962E3693181010CCE66F5B5C7 /* RNFirebaseFirestore.h */, + 7B5EBF120794817293BA6F5FB77BBF83 /* RNFirebaseFirestore.m */, + 4EEA1C3C779C1DCCD15C28A45646777F /* RNFirebaseFirestoreCollectionReference.h */, + 0B2D19FE209E1A4918E70FF508FF8AF0 /* RNFirebaseFirestoreCollectionReference.m */, + 70AE121D75646634EC15F5B528784892 /* RNFirebaseFirestoreDocumentReference.h */, + 165453765AFE9E6B014C1C4E028136B9 /* RNFirebaseFirestoreDocumentReference.m */, ); - name = QBImagePickerController; + name = firestore; + path = RNFirebase/firestore; + sourceTree = ""; + }; + DBE64838342C47578F335CFB6770190F /* Video */ = { + isa = PBXGroup; + children = ( + 293C789E193A86C35F96B5D434CE3FD5 /* EXVideoManager.h */, + 24370042F20A0F4C7E9F6D80F56C50B5 /* EXVideoManager.m */, + 1EB48EE38EA29DB25BA2B973755744C1 /* EXVideoPlayerViewController.h */, + FCCF9C52E1B50FD667CB699359B97528 /* EXVideoPlayerViewController.m */, + EBC8F18223A97621CA35B62BA4B6F2C4 /* EXVideoPlayerViewControllerDelegate.h */, + 403B97CA3C282DFD03D871C0B93C94C3 /* EXVideoView.h */, + 07FF9E94293D06D5C27742E949DFD48F /* EXVideoView.m */, + ); + name = Video; + path = EXAV/Video; + sourceTree = ""; + }; + DCD6ADAAC500A4F4B2DDBF86DFEA89DA /* UserNotification */ = { + isa = PBXGroup; + children = ( + 58C3A125BF985FF63EE682904ADF9755 /* EXUserNotificationPermissionRequester.h */, + 0092F410401125F086E544C457666685 /* EXUserNotificationPermissionRequester.m */, + ); + name = UserNotification; + path = UserNotification; sourceTree = ""; }; DCEBC47582BA5AF6BA8EFBC43A5ECF06 /* Support Files */ = { @@ -16505,15 +16509,14 @@ path = "../Target Support Files/DoubleConversion"; sourceTree = ""; }; - DCFC2C96F6CD71C07EF6C03356065EB4 /* ReactCommon */ = { + DD3CF46D7E52A2D14BCE166254594823 /* Pod */ = { isa = PBXGroup; children = ( - BF94B8329559E0061A13D6AFB05B5ADA /* callinvoker */, - A77C70875B263AD408C51340B324E14C /* Support Files */, - CFE8113FBC62FFEFB1E0865269337590 /* turbomodule */, + 5828C940F5FEEBA9FBFC12E7CD70EFF5 /* LICENSE */, + 57E918A3B078DADAA04365A6EB5EA9D9 /* README.md */, + 760916529838F62C8ADD9CDEDA7E43BC /* RNBootSplash.podspec */, ); - name = ReactCommon; - path = "../../node_modules/react-native/ReactCommon"; + name = Pod; sourceTree = ""; }; DD8BE39581B027039CA45CB5DB5F5DEB /* Pods-ShareRocketChatRN */ = { @@ -16532,37 +16535,6 @@ path = "Target Support Files/Pods-ShareRocketChatRN"; sourceTree = ""; }; - DEC8CA3B88E8770615410AEDB283CC7E /* UMModuleRegistry */ = { - isa = PBXGroup; - children = ( - 84D77D248D8B76E924E4417A4D9800DC /* UMModuleRegistry.h */, - 7D947ED0FFEF4F648CED33D72400571E /* UMModuleRegistry.m */, - 21C8C861B96FF98541E71324A1572405 /* UMModuleRegistryDelegate.h */, - ); - name = UMModuleRegistry; - path = UMCore/UMModuleRegistry; - sourceTree = ""; - }; - DFD5E3275D09951E802D172CF97DE4E5 /* Pod */ = { - isa = PBXGroup; - children = ( - 971EE41F6B621CBCB9749076D4A5A465 /* LICENSE.md */, - 579AB1CB9E07D1EC28F83A7FE86F2DD6 /* react-native-document-picker.podspec */, - 503EA93552579AE3F0C775B13E3732AB /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - DFE2569B13085FCC2A60F1AF5FA1EA10 /* UserNotification */ = { - isa = PBXGroup; - children = ( - 9C48F897B5BA1914E197F527232FA527 /* EXUserNotificationPermissionRequester.h */, - ECD7DBDB498A909518124AA224354D4D /* EXUserNotificationPermissionRequester.m */, - ); - name = UserNotification; - path = UserNotification; - sourceTree = ""; - }; E000EB2B52AF91A09A49502795EB3694 /* Support Files */ = { isa = PBXGroup; children = ( @@ -16621,158 +16593,68 @@ path = PromisesObjC; sourceTree = ""; }; - E119E86D0D9F2598206AE74C0CEA3961 /* Support Files */ = { - isa = PBXGroup; - children = ( - 01D3B1A561D7B0CBAE1AF721EB04E89D /* React-RCTImage.xcconfig */, - 3FF7D4167A48ECE14628804DB78D760E /* React-RCTImage-dummy.m */, - FA10995DDDECEA08F51CFF426D956258 /* React-RCTImage-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; - sourceTree = ""; - }; - E16B6D919C776A1E17F2890C104E7911 /* Drivers */ = { - isa = PBXGroup; - children = ( - 70FDFC2CE9916A1C39912D2D86454292 /* RCTDecayAnimation.m */, - B77E80DAEB31320DB5131AA2DF21943B /* RCTEventAnimation.m */, - 9C22F7E35FDC62277F9BC5267264D97D /* RCTFrameAnimation.m */, - E32701A5312FF5486D49E353569C4571 /* RCTSpringAnimation.m */, - ); - name = Drivers; - path = Drivers; - sourceTree = ""; - }; - E1E3DC83464E8AF0FCE5B92016341051 /* Pod */ = { - isa = PBXGroup; - children = ( - 3F580CE60F927001A6863759BDA2500C /* LICENSE */, - CB0EB5237252D01EE79321BB308DC801 /* README.md */, - 8F84156C094F7B42F9CC22A4446ACB15 /* RNUserDefaults.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - E2CB1D44D83256CB8E1922DE170EA20D /* RefreshControl */ = { - isa = PBXGroup; - children = ( - B33F8494FFD6A13CFAEAD5298CB749D7 /* RCTRefreshableProtocol.h */, - 65F2F83421140FB0FBCE7718EEB0CFE1 /* RCTRefreshControl.h */, - 658414AB81E9A68B93362D1497A8B2E4 /* RCTRefreshControl.m */, - 2A4CD029A18F4685FFEA2386D5576A90 /* RCTRefreshControlManager.h */, - 416154B7E09202C63484462EEC3E15F2 /* RCTRefreshControlManager.m */, - ); - name = RefreshControl; - path = RefreshControl; - sourceTree = ""; - }; - E31346C0B67ACF2249F832AF0EB5F565 /* Products */ = { + E1958E05B6BD813BBF33FB92AB52C907 /* Pod */ = { isa = PBXGroup; - children = ( - 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */, - 6CBEFE4F9E22AFDC6347A739BB35FF8C /* libCocoaAsyncSocket.a */, - 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */, - AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */, - 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */, - ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */, - 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */, - 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */, - 09B5856105EF7C6447B9EC57E7E36B34 /* libEXKeepAwake.a */, - 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */, - 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */, - 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */, - ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */, - E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */, - 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */, - 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */, - E93F701CA8EB196D77AE99E094D873E4 /* libFlipper.a */, - AC12C7E29555A7CFDDEF1EDB5BC2F3DA /* libFlipper-DoubleConversion.a */, - 99D5CD245388DC76AAEF6E1E351A90ED /* libFlipper-Folly.a */, - E00BE2A3146698E81A8F9D00E8F93A6C /* libFlipper-Glog.a */, - ACBB7F62B267CC7C9BBBAE41DE94743B /* libFlipper-PeerTalk.a */, - FFDC7746794AB17CFB7150820479DF40 /* libFlipper-RSocket.a */, - 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */, - 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */, - 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */, - 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */, - 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */, - B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */, - 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */, - 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */, - 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */, - 586602EDE69E2D273945D156ECB89853 /* libPods-RocketChatRN.a */, - ABCA9F4CD6EE0D4686EBA505F526A436 /* libPods-ShareRocketChatRN.a */, - 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */, - F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */, - BD71E2539823621820F84384064C253A /* libReact-Core.a */, - 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */, - 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */, - D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */, - F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */, - 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */, - 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */, - B75A261FE3CE62D5A559B997074E70FC /* libreact-native-background-timer.a */, - 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */, - 08D1FFC2980C1ED72AE9A4C44A0544C3 /* libreact-native-document-picker.a */, - 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */, - 012242E4480B29DF1D5791EC61C27FEE /* libreact-native-notifications.a */, - 48425DA2F01D82A20786D5E55E264A29 /* libreact-native-orientation-locker.a */, - 52FCF98CEFF94C742080B6965D537AD0 /* libreact-native-safe-area-context.a */, - 2B17A71888AA28CEFEC37B72F2A68A91 /* libreact-native-slider.a */, - 8DF63376066E2275FF26820B3A512A9B /* libreact-native-webview.a */, - FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */, - F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */, - EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */, - 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */, - A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */, - 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */, - E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */, - C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */, - D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */, - 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */, - 16E9F31EC059F2E6FADBF7D544CCCA1D /* libReactNativeKeyboardInput.a */, - 17772905A5DCAAE05D22C2CC78ABB63D /* libReactNativeKeyboardTrackingView.a */, - 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */, - 4FDA96879D96070EB1983E98E655CBDC /* librn-fetch-blob.a */, - 3B65CB9B6DCD893501BDCF1DE7BA926C /* libRNAudio.a */, - 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */, - 5737DDB4BC95AD399B3206838AB97095 /* libRNCAsyncStorage.a */, - B8CD4B9B578CE9FA38114B638C9CAA78 /* libRNCMaskedView.a */, - 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */, - E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */, - E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */, - 4EAF7225D8D498E7D232AE1520E6CBD3 /* libRNFirebase.a */, - 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */, - 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */, - 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */, - C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */, - E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */, - 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */, - BFCE4058442BFB8DEB89BA3F261A76BA /* libRNUserDefaults.a */, - 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */, - 580712ADE0DDE9601ED35B000EC802D6 /* libRSKImageCropper.a */, - B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */, - FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */, - 2D86D213801ABEF7CD86291D4F3FDD34 /* libUMAppLoader.a */, - AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */, - BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */, - 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */, - 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */, - 5B3357A1CE67C0BF4AE31936A1BE6888 /* libYogaKit.a */, - 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */, + children = ( + 0D8A67E4F295C37EC9C9DCBF5F94574E /* EXKeepAwake.podspec */, ); - name = Products; + name = Pod; sourceTree = ""; }; - E3E1592FA3A8234FC29B443D7ED258E8 /* React-RCTActionSheet */ = { + E19EE904CE11E3C92EDCFF2032AD6D7C /* Pod */ = { isa = PBXGroup; children = ( - 4BA1240FB7FF8EF81340069ADB8CE4F5 /* Pod */, - 2EEAC6FA5E7A833ADCA9C6F96B3E01B4 /* Support Files */, + B0677374922C26BAC58D1A175D7812AC /* UMImageLoaderInterface.podspec */, ); - name = "React-RCTActionSheet"; - path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; + name = Pod; + sourceTree = ""; + }; + E20737A8B17BF68A8E0C1DABE391678B /* Support Files */ = { + isa = PBXGroup; + children = ( + F370366D214C24AEC8016C7F3376858F /* ReactNativeKeyboardTrackingView.xcconfig */, + 224712917F5A91D72C71DECA90A7A617 /* ReactNativeKeyboardTrackingView-dummy.m */, + 2BC26216824EF183864BAF1E1A30C1BC /* ReactNativeKeyboardTrackingView-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/ReactNativeKeyboardTrackingView"; + sourceTree = ""; + }; + E20FFE4E534EEE9DE3E8857C07D84370 /* converters */ = { + isa = PBXGroup; + children = ( + ACA9A34F4631EA4574360FABA26E283F /* RCTConvert+UIBackgroundFetchResult.h */, + AAFA04A6AA5D6D51ACDF9A5D0D2A6E9C /* RCTConvert+UIBackgroundFetchResult.m */, + ); + name = converters; + path = RNFirebase/converters; + sourceTree = ""; + }; + E2AC338976F64AA46C0CDB6DEA2B5DBE /* UMCore */ = { + isa = PBXGroup; + children = ( + 883A23708095CEF8199A01E06146D47F /* UMAppDelegateWrapper.h */, + 866DE4C15962611AB03C0CE1DC4649E8 /* UMAppDelegateWrapper.m */, + 06D9777B3F196B033B0B7843A294398C /* UMDefines.h */, + 8D4FBB5B861B2C912EAE982A1D1CF0BC /* UMErrorCodes.h */, + B9072AD49A640B04370FD838CBB9280E /* UMErrorCodes.m */, + FE6B350E840F2144EAD90E076BD88311 /* UMExportedModule.h */, + 1EF46D893D5EF3C63BA34A09AE98E2BF /* UMExportedModule.m */, + 65490AB6AFA883A433BCB46B9EBEC8AC /* UMSingletonModule.h */, + 6CBF7E307870D11E0DF366FFEAAA3568 /* UMSingletonModule.m */, + 448E1CB7CAB9758499499DF95F4C1734 /* UMUtilities.h */, + B264BE404B72DF4FCDC15B68DE155082 /* UMUtilities.m */, + E740EAA285AC1FD55E56719C1EE72F93 /* UMViewManager.h */, + A3886BA996379E627EC6F3B2F37D0000 /* UMViewManager.m */, + 52C4A8FEA0B955EDA978EB4953294B3F /* Pod */, + BDA2E883E3A941E4C01AE81C57D3CC6D /* Protocols */, + FACE195220A73F5B18077E22463EAD83 /* Services */, + 9894A83BB155DC2660FB1BE02EFF2AF5 /* Support Files */, + 3549719E4A8871C1D0FEEC30EEC1816B /* UMModuleRegistry */, + A3F6B411ED658EFFD65753B968142896 /* UMModuleRegistryProvider */, + ); + name = UMCore; + path = "../../node_modules/@unimodules/core/ios"; sourceTree = ""; }; E4267046E48AE3F3AF49A526F3A9F2A8 /* FBCxxFollyDynamicConvert */ = { @@ -16784,39 +16666,49 @@ name = FBCxxFollyDynamicConvert; sourceTree = ""; }; - E4824D2D8CEE7600728BBFDCE25B69DA /* React-RCTLinking */ = { + E55EEE199E002BF55D1F7486C1E0E873 /* Default */ = { isa = PBXGroup; children = ( - E700032730765E8D6A7310102C555CB4 /* RCTLinkingManager.mm */, - 669FFDF2DE29C85E089E798B671D17B3 /* RCTLinkingPlugins.mm */, - 9CB57DDB312528BA5CBC06E723A62E03 /* Pod */, - 1E405E1B544584101E824D3DBB8FCBCB /* Support Files */, + 9AD3CE7CB06F10EE63376237E0F81BD7 /* Base */, + D82B7B72A6C354BC48BE9E9B9E815F72 /* CxxBridge */, + B5C416E0A3BBECD6A78C1429A376D881 /* CxxModule */, + 45935F7615FEEE32DC36545950902F83 /* CxxUtils */, + 1BE8F60795CFF4C4F6636C0A2A506E2E /* Modules */, + 4143E198B7EDF2444AC135745C73D315 /* Profiler */, + 2ACFA4860EE018543E0B12294151583F /* UIUtils */, + D78B2CAE6F90D40E5A929281AB02C8DB /* Views */, ); - name = "React-RCTLinking"; - path = "../../node_modules/react-native/Libraries/LinkingIOS"; + name = Default; sourceTree = ""; }; - E4C5A43DCC0963141499B4753E60E4D5 /* React-RCTVibration */ = { + E5CC68FDA0B63AAB29F3C7807629DD54 /* Pod */ = { isa = PBXGroup; children = ( - 75834989E18D8E87AC3EE1830D7DCDFB /* RCTVibration.mm */, - E242EDC375AF5831097F51B852EB51A6 /* RCTVibrationPlugins.mm */, - 197A56B58475CBFFF08ECAD8DAA96D96 /* Pod */, - FD2B1CF1202AAB20E2DE638A102B2EF6 /* Support Files */, + 3D001260DEACA52463C7126A622A8C1E /* LICENSE */, + 3B2FE81DE54705108E3EB6DE232E2703 /* README.md */, + 475388A84E3E6B31BD582C504D03B150 /* RNScreens.podspec */, ); - name = "React-RCTVibration"; - path = "../../node_modules/react-native/Libraries/Vibration"; + name = Pod; sourceTree = ""; }; - E5ED64B800388D59246B271D45744FE9 /* Multiline */ = { + E62047C7CBD7A4BCF81FBB29868A4A05 /* ViewManagers */ = { isa = PBXGroup; children = ( - 02CFB7E4EAB9656948616C6F37F150D1 /* RCTMultilineTextInputView.m */, - 4201BE87D92B9946897F0B9935126CF7 /* RCTMultilineTextInputViewManager.m */, - 144F317E09F4B5D8DFB7D8D6606A1DB8 /* RCTUITextView.m */, + 5EA1AA7CEE6953D24970BB2C5DC96EF4 /* ARTGroupManager.h */, + C8FD457D5B45029B94B994FBA0B61D1F /* ARTGroupManager.m */, + A5451290C001BACA059F4CCADF8962F5 /* ARTNodeManager.h */, + FA994E068490DFA29215F156920F1C2D /* ARTNodeManager.m */, + ADB2D7F646A5AB21F1B0F692154A9A14 /* ARTRenderableManager.h */, + EB34A51173DDEA6E14DD142D7E627F39 /* ARTRenderableManager.m */, + 923CE589C446C840C1F25F0EB6BAA31C /* ARTShapeManager.h */, + C979B5F3D2A5D6F24CA190FCED3C4A1F /* ARTShapeManager.m */, + 1CF1BAAC7BA0B7A6BF70522697AC7932 /* ARTSurfaceViewManager.h */, + 18564B357678162BE828C8FF2FAF3A1B /* ARTSurfaceViewManager.m */, + F0F0D78F6A791AE9AF2F87D811C570D6 /* ARTTextManager.h */, + 9CA0138AC2409FC352A70AA456101A64 /* ARTTextManager.m */, ); - name = Multiline; - path = Multiline; + name = ViewManagers; + path = ios/ViewManagers; sourceTree = ""; }; E69B6F81A11DED4EA80A2CFC0F563B59 /* Support Files */ = { @@ -16830,44 +16722,59 @@ path = "../Target Support Files/libwebp"; sourceTree = ""; }; - E6E20B9EBE4FE1CB239A92563C0A4DED /* CxxBridge */ = { + E6EDDA1FB127295D17BDFF407A40B29F /* Support Files */ = { isa = PBXGroup; children = ( - 739785CACCCA66F5001FDDF9D2E43501 /* JSCExecutorFactory.h */, - 2D78B8E80FC6143DC5CEAD2D643B2920 /* JSCExecutorFactory.mm */, - 26FA8683647426F62DBA9EF6375C2573 /* NSDataBigString.h */, - 77B3A3647D8A9C0E25E04391CF75E9FA /* NSDataBigString.mm */, - 5550464D5561100A4BAB8AE0084BF335 /* RCTCxxBridge.mm */, - 9DBF4D24AFC5285B24DF28C06AA633AB /* RCTCxxBridgeDelegate.h */, - B776AC9D8D0E04A5414B78438D7776EC /* RCTMessageThread.h */, - 93E5D3FA51D92B2EE1178BCAABA6F671 /* RCTMessageThread.mm */, - BE1ADD1FF39C1129F4E5A8E2C8C8ECA5 /* RCTObjcExecutor.h */, - 7F9683149B139470B2049608CBB1D7B7 /* RCTObjcExecutor.mm */, + 666FA01BCFB570B1D8873A710A164C6E /* react-native-background-timer.xcconfig */, + 45E6804A62ABB5756238C59901F264E6 /* react-native-background-timer-dummy.m */, + 2F2DEF5EE9819C37C42F8124085ADDD0 /* react-native-background-timer-prefix.pch */, ); - name = CxxBridge; - path = React/CxxBridge; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-background-timer"; sourceTree = ""; }; - E7F10426804961AEAFC0BE414091D69F /* Support Files */ = { + E6EF278232CB58AF5D7AAE1131DFDC3D /* Support Files */ = { isa = PBXGroup; children = ( - F557C5AEE9C0BAD4A29F3B44DF064AE0 /* React-RCTText.xcconfig */, - 007F599147497FC96A4178C305AEABCD /* React-RCTText-dummy.m */, - 2C3382E851B93FEE126ED1E2823BE675 /* React-RCTText-prefix.pch */, + 4FFCA561BAB6718919054DE61A4CD6DE /* react-native-webview.xcconfig */, + D070D2CBA945B841360C64E75B7531C9 /* react-native-webview-dummy.m */, + 2CDB4E62BF5B21321609BDC49DAC8401 /* react-native-webview-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTText"; + path = "../../ios/Pods/Target Support Files/react-native-webview"; sourceTree = ""; }; - E81FA8B1651697AA6ACAE276D8379554 /* Support Files */ = { + E72E958DF3BB7D7C1E6E98333BEA5282 /* Support Files */ = { isa = PBXGroup; children = ( - B871C0AFEEB5141B6031084C327FDD25 /* react-native-slider.xcconfig */, - BA0B40E78FBC5BEADCE390C45C701B1A /* react-native-slider-dummy.m */, - 8E3ACDC7504306FD88446A594EF21ECD /* react-native-slider-prefix.pch */, + A59EA16D7394CDC58C728B1031735568 /* react-native-notifications.xcconfig */, + 67CBBF1CF1083F83626E0E358313F7EA /* react-native-notifications-dummy.m */, + AF9735825DD918C1E3EEF5A123848A26 /* react-native-notifications-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-slider"; + path = "../../ios/Pods/Target Support Files/react-native-notifications"; + sourceTree = ""; + }; + E84E00D73AD5659E4234124063450412 /* admob */ = { + isa = PBXGroup; + children = ( + E1267B87B5E59D656061CB97B29CA63D /* BannerComponent.h */, + 09C17593FD6EFC409D89860A3FE97E23 /* BannerComponent.m */, + 114CA4B0EE10EFCB1E55FB09D09C1858 /* NativeExpressComponent.h */, + 684101CF47FD67B33709D6511989C36E /* NativeExpressComponent.m */, + FFDB8495C0C08F1FAF4B8DE29E4F9273 /* RNFirebaseAdMob.h */, + 904690DC9DFF884531DBE890DBC3E7EC /* RNFirebaseAdMob.m */, + A5CDF8E8EF110508885D8EE58C50B06C /* RNFirebaseAdMobBannerManager.h */, + E6D7C9681AD4FC32C1A296370A50A91D /* RNFirebaseAdMobBannerManager.m */, + 0F1B2E665521EB210396CDC6D09B8B4F /* RNFirebaseAdMobInterstitial.h */, + AE1A3E8C67EF2A0702E44F9564A4F4ED /* RNFirebaseAdMobInterstitial.m */, + 81455D6D48979B05461A51E085D91314 /* RNFirebaseAdMobNativeExpressManager.h */, + 051D3EFA180F4DE7E2E542A834B224C7 /* RNFirebaseAdMobNativeExpressManager.m */, + BAF5AD0C7B79779A4259EEFB6286E588 /* RNFirebaseAdMobRewardedVideo.h */, + 21107566C9B487B9F483D54263AB391D /* RNFirebaseAdMobRewardedVideo.m */, + ); + name = admob; + path = RNFirebase/admob; sourceTree = ""; }; EA3C3B12443163FF8D54C35EF3E08811 /* Flipper */ = { @@ -16916,14 +16823,29 @@ path = "../Target Support Files/SDWebImage"; sourceTree = ""; }; - EAEE84EB9B060156B96B3351EE413571 /* Pod */ = { + EAF6A9739FB5D4147F5F82B69550AAA4 /* Pod */ = { isa = PBXGroup; children = ( - A79CE02B4FF34545D6C0A5F45038CD6E /* React.podspec */, + C390BAF22AF8E88F3BF7544A3FCA2C50 /* LICENSE */, + F2C77F127954BFAB999C2BD86DC97890 /* README.md */, + 70175666254C3E2D857177545AE6F54A /* RNCAsyncStorage.podspec */, ); name = Pod; sourceTree = ""; }; + EB60EAB030DE16258243947781A602D2 /* RefreshControl */ = { + isa = PBXGroup; + children = ( + E22229ACA846827ABCD00F9EE7319B95 /* RCTRefreshableProtocol.h */, + E4197BA19A99AFF099E7B1F96C2BF98A /* RCTRefreshControl.h */, + 0950B776E15F25B2D09AD750F66D9B46 /* RCTRefreshControl.m */, + BCC255329C1F5DA77E1310CDA1F16BE0 /* RCTRefreshControlManager.h */, + FD35075FC3768FFEAAA32C2B085634A2 /* RCTRefreshControlManager.m */, + ); + name = RefreshControl; + path = RefreshControl; + sourceTree = ""; + }; EBAC6C2B46A988EE65CA88FA8F449D83 /* Support Files */ = { isa = PBXGroup; children = ( @@ -16937,84 +16859,68 @@ path = "../Target Support Files/FlipperKit"; sourceTree = ""; }; - EBF184C04FDFDFBD35E0BEE290CE0E31 /* EXWebBrowser */ = { + ED1EDF408F48B1D45C12AB3C10ECA96C /* EXFileSystem */ = { isa = PBXGroup; children = ( - 57533F6BD93D2DE4244B0735402B9DA4 /* EXWebBrowser.h */, - 966C8893779B8233236017371E619B1F /* EXWebBrowser.m */, - 44DE1329A49A4CF3811C1FE5179954FF /* Pod */, - B2E0801108999F3761F4C729D3A56735 /* Support Files */, + 7AC76AE772DB09D38355994F8629937C /* EXDownloadDelegate.h */, + 2AADF5C03B492AD37F5BE2BEE9AAB9FF /* EXDownloadDelegate.m */, + 0AD9DEA6D9F73FCF1374754325582293 /* EXFilePermissionModule.h */, + FF8557D82213FDE6BE722E56176F5686 /* EXFilePermissionModule.m */, + 00109D4376D4411B9CED1D4935F7F659 /* EXFileSystem.h */, + 3C74601AD5B32835B04C195C2071CA08 /* EXFileSystem.m */, + 55CD13CF5E879E6A37D171DCBA4823CF /* EXFileSystemAssetLibraryHandler.h */, + C950075A6754CB0B42D2A710DD039049 /* EXFileSystemAssetLibraryHandler.m */, + A32323E2A9D4274BEA35FD58720BBE89 /* EXFileSystemLocalFileHandler.h */, + 2DFB1CAD034D1624F51C2B27B1F1CBE7 /* EXFileSystemLocalFileHandler.m */, + 0ABD599FC6EAED821B87A97C39E9DC0F /* Pod */, + 668D1CE5707759E2CBA8713AE378282F /* Support Files */, ); - name = EXWebBrowser; - path = "../../node_modules/expo-web-browser/ios"; + name = EXFileSystem; + path = "../../node_modules/expo-file-system/ios"; sourceTree = ""; }; - EC324E72843E374033D976F6247E9D25 /* Surface */ = { + ED40F39F3EA29FA2978B0CD965DFD3BD /* Support Files */ = { isa = PBXGroup; children = ( - 35C7E2D98FA30BBB9A085F507411C7CA /* RCTSurface.h */, - F12B3E9A08BDB290145E3B2BD5B66667 /* RCTSurface.mm */, - 50FD58598508C4D9DEF6F64BFFDE308E /* RCTSurfaceDelegate.h */, - D5038AAD663414FC2313263B1DE2E738 /* RCTSurfaceRootShadowView.h */, - 147C05DCAC196FCD8EC2E6CE26B3102E /* RCTSurfaceRootShadowView.m */, - 2B14C4E56BD11C9AD9E7D7CC67D321A4 /* RCTSurfaceRootShadowViewDelegate.h */, - A23D607E7B3F516107A22AC845C14446 /* RCTSurfaceRootView.h */, - B4E23666F6328BE78029301BD16FA1E3 /* RCTSurfaceRootView.mm */, - D0D2807855DB1F9BEE53DE18F1E705AD /* RCTSurfaceStage.h */, - ECF522805480D2064AB9453B7FE101B3 /* RCTSurfaceStage.m */, - 8717F287702A9C6C38AA55E7AB95B0DF /* RCTSurfaceView.h */, - C0F2679A5E0931013FA662954ED431F9 /* RCTSurfaceView.mm */, - EB0F2E6BE8BDE409BE62FE776AAE5C15 /* RCTSurfaceView+Internal.h */, - 55F79EAC12A427EB3D127E2395EC91DE /* SurfaceHostingView */, + 7B36BE1CB72067A3C7D3AEF8F878B0E3 /* EXHaptics.xcconfig */, + 0B5B02C086BC48A81B5F652D79BA0FA9 /* EXHaptics-dummy.m */, + 11A05A400E39126371C1DBDC994C1309 /* EXHaptics-prefix.pch */, ); - name = Surface; - path = Surface; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXHaptics"; sourceTree = ""; }; - EC6BA54FAE2652A1488E38035CC6776B /* EXImageLoader */ = { + EDF3A3EA4E4E667EE2A5BC6547B41DCF /* Support Files */ = { isa = PBXGroup; children = ( - ECB82060F47068594888AF3BDE08E50C /* EXImageLoader.h */, - 21FC3F7AD7A415BCEC9E446692D850B0 /* EXImageLoader.m */, - 6B87A0B7DE5325D44BEA9321D7FCEFC9 /* Pod */, - 02B1E09C9F76CBE9237DD3B3976E92D0 /* Support Files */, + 8E1BC7ED511773804406EF08BED63AA5 /* UMTaskManagerInterface.xcconfig */, ); - name = EXImageLoader; - path = "../../node_modules/expo-image-loader/ios"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; sourceTree = ""; }; - EC795E55837F8729282A6B8A684162AB /* BugsnagReactNative */ = { + EEE4448B3B24EB809A32CD8EF69D9725 /* RCTRequired */ = { isa = PBXGroup; children = ( - 11E31942837740BFD1F989749590B93B /* BugsnagReactNative.h */, - 1E9181469A87B74FBE318400C549AAFA /* BugsnagReactNative.m */, - C076B18B99D55846D0A83D7EEE683197 /* Core */, - AAE19ABFC8C24890883C42A5C0419BF9 /* Pod */, - 1BB693B9296587624B879FD0BFDB1F01 /* Support Files */, - 18C49B13A8EEEA8FD0865EB7448001CB /* vendor */, + B07888EAA4A0CFED7E31922A4E332369 /* RCTRequired.h */, + 9A7E57D7448662BDA5CD36050CCF0091 /* Pod */, + F41E05AF9F316015B6B1CEBDF1C03752 /* Support Files */, ); - name = BugsnagReactNative; - path = "../../node_modules/bugsnag-react-native"; + name = RCTRequired; + path = "../../node_modules/react-native/Libraries/RCTRequired"; sourceTree = ""; }; - ED7C154D3F610FC89026EF07C945F0A2 /* EXAV */ = { + EF8F66035229E87C1F5FBD04C46E2C23 /* Support Files */ = { isa = PBXGroup; children = ( - 274F0C5E12F8002678AC0075BEC38942 /* EXAudioRecordingPermissionRequester.h */, - 529C3029FA0D10D8FA86294F3CBAB092 /* EXAudioRecordingPermissionRequester.m */, - 7AF4F688033FC594C5312350D5A4196F /* EXAudioSessionManager.h */, - 0D751A822A49D4F471406EE2D233255E /* EXAudioSessionManager.m */, - 750F7E062D511B9213745A1ED368C68E /* EXAV.h */, - 2DF7C10E2CA08CA750381E0305B01342 /* EXAV.m */, - C1E4A437404DFDC3AF95DECB10C31E21 /* EXAVObject.h */, - 4B43B1EA24ED075AF55FCD69F05A2398 /* EXAVPlayerData.h */, - F774838772BFA084164BBD15EB276FCC /* EXAVPlayerData.m */, - F3BE44D695A5B17EB341D97D0F56CAF0 /* Pod */, - 2D48D59DCC2B5AFF40B6BDF35013EDFB /* Support Files */, - FA78146E6FCFBF26C95D7711A1EBABB9 /* Video */, + AA81419FB3BD3B05F8B550FD9BF70F24 /* Yoga.modulemap */, + D0B4B699CF178C3B0664F745D8AD6313 /* Yoga.xcconfig */, + 4372903EAE44EC1A1A49438432FF68AB /* Yoga-dummy.m */, + 96B0274B985B1F863AC531E18FA0C104 /* Yoga-prefix.pch */, + BCB74053C197AB2AAD04A00E8D816C8A /* Yoga-umbrella.h */, ); - name = EXAV; - path = "../../node_modules/expo-av/ios"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/Yoga"; sourceTree = ""; }; EFD6536848577268D6A78BCAB61D482B /* FlipperKitNetworkPlugin */ = { @@ -17036,67 +16942,184 @@ name = FlipperKitNetworkPlugin; sourceTree = ""; }; - F151609BD4C16CE097816F689A45C8AA /* Pod */ = { + F164031E4EA7B2FA823852AC406C752B /* React-jsinspector */ = { isa = PBXGroup; children = ( - 0F18338E992B568C10D0F98489507DED /* FBLazyVector.podspec */, + A8CEDA1CC0E35E88DDA65F4DC4C0EC84 /* InspectorInterfaces.cpp */, + B70A343169830D92F44D1C1E063279C2 /* InspectorInterfaces.h */, + 68D2E3C3900E521D984D94AA1FA3491C /* Pod */, + 887C789B66F1F32ADF803CDDD4F3B200 /* Support Files */, ); - name = Pod; + name = "React-jsinspector"; + path = "../../node_modules/react-native/ReactCommon/jsinspector"; sourceTree = ""; }; - F196FF764872D3615DCF4856E42E4D2C /* EXConstants */ = { + F217EE5C98BCC56A91B26340F989EE2F /* react-native-slider */ = { isa = PBXGroup; children = ( - 8AE6BB988C37FE97D1678C6BC28C1501 /* EXConstants.h */, - 11CD4C8274BF810063EAE4979126E31F /* EXConstants.m */, - A58D33408D0EB2921512E467A46DDDF7 /* EXConstantsService.h */, - D19AEAB77CA49609892379D559CF1C5A /* EXConstantsService.m */, - 04DD37C5BF852F9C84FF47AE4D322B43 /* Pod */, - 36E3519A1410052ACA0736A427B724D9 /* Support Files */, + 22E32B91CF4D5CB550CAB64B98B0D2B2 /* RNCSlider.h */, + 2CF905EB15C5C55862330B14BA92EBFE /* RNCSlider.m */, + DEADEAD6C7CCD67A1AE3FC7EE30B7B02 /* RNCSliderManager.h */, + F6A9FCEB121028CCA01C3DAF503EA454 /* RNCSliderManager.m */, + D7F770D64AD5E4273996CC7305BDB153 /* Pod */, + 2640709F36CD653BB12883C720226F9D /* Support Files */, ); - name = EXConstants; - path = "../../node_modules/expo-constants/ios"; + name = "react-native-slider"; + path = "../../node_modules/@react-native-community/slider"; + sourceTree = ""; + }; + F2E363A60C311C8320A22EA2664A18E3 /* Development Pods */ = { + isa = PBXGroup; + children = ( + 2C90162C456ADC7B91C535861AD2059B /* BugsnagReactNative */, + 287A08FE9CB84CF37F001990E0ACC6E8 /* EXAV */, + 376C2421B844FA1AD8D64D12F5A83CBA /* EXConstants */, + ED1EDF408F48B1D45C12AB3C10ECA96C /* EXFileSystem */, + 8B1915F76212427284726E587499C5A1 /* EXHaptics */, + 63435658478232427F65595E9D0291B2 /* EXImageLoader */, + 4B51395E09A70C3FDA2DB2BBAD44F1C3 /* EXKeepAwake */, + B77D361A04451FDDBD215737BEE50011 /* EXLocalAuthentication */, + 7184CDA7D616CD03EA81360866210087 /* EXPermissions */, + 2E75024CFFBE40E959EB83327BCBDD70 /* EXWebBrowser */, + 0B2AE45351C5CFC327A09636239980A4 /* FBLazyVector */, + D35EABB1DEEFAFBD228C630A8833D0D5 /* FBReactNativeSpec */, + 632BF75FB0E972DF17703EC3878552C7 /* KeyCommands */, + EEE4448B3B24EB809A32CD8EF69D9725 /* RCTRequired */, + 36521019C5168D1D404D2854F016B08C /* RCTTypeSafety */, + D58433E50E7171EDF88FA119A730A1F4 /* React */, + 8F2D36566AD7AE4F0B8CD8F17B7906F3 /* React-Core */, + 59523F32B7D8501CE1451B560584C3F0 /* React-CoreModules */, + 0388F9F1E890256C158463DAF211F820 /* React-cxxreact */, + 5F2ED04E8F86F7F48F66CCDB013526A3 /* React-jsi */, + B3ADAF1CDA57B21BF30789670576DF34 /* React-jsiexecutor */, + F164031E4EA7B2FA823852AC406C752B /* React-jsinspector */, + 9FEBAECB6ECB042A9CA7909E843DE97F /* react-native-appearance */, + 7BD8894801CE0C3C737D3723D657AF7C /* react-native-background-timer */, + B29349962AA62E15867F3F9A54CF3790 /* react-native-cameraroll */, + CE7AF16A6B8B46E51486A94761F844C7 /* react-native-document-picker */, + 5840949A48B14929CDBC4D9102953D2C /* react-native-jitsi-meet */, + 1A853E48A9468F0A81AEFCD6C20A8A72 /* react-native-notifications */, + BD9926960699A518E8F2A6FEEEF0167B /* react-native-orientation-locker */, + F39228465C73D1C8757BE4D219D081CA /* react-native-safe-area-context */, + F217EE5C98BCC56A91B26340F989EE2F /* react-native-slider */, + 357DC58CA49630C11F0E5902B6BFFDB8 /* react-native-webview */, + D7B656670AA83B1CFC5639623C1DF409 /* React-RCTActionSheet */, + F51937433BCE08670D7F57FC014FF733 /* React-RCTAnimation */, + 018754076F2EAFC9BFE0EED518CC75A8 /* React-RCTBlob */, + B13A38025ED169D7E9A1630A15367B99 /* React-RCTImage */, + 018E555A19C140BC4B43482F0B1CB258 /* React-RCTLinking */, + 172343BC4DBE582DCE8BB7F7C9DA5E28 /* React-RCTNetwork */, + 17AAE83A838DC9E3722268F52D072517 /* React-RCTSettings */, + 2AF9C4CACF40EB1A64B8A62115A7DBAC /* React-RCTText */, + 4B064E32DE4C8A2FA5506BF6606706A4 /* React-RCTVibration */, + 26067628151C17BB0DD62E5D6308E605 /* ReactCommon */, + 83788B6EC989EC16561AD111BD6794A5 /* ReactNativeART */, + D2EA4FACA27BF376E0E8301E69CE8083 /* ReactNativeKeyboardInput */, + 37DD90D59052E95254FE8D9ADD256AE8 /* ReactNativeKeyboardTrackingView */, + F4343CD26B84B43C41091C00CA254D13 /* rn-extensions-share */, + 72D0F1F2D113D2C5F1D14FA339EFEDA6 /* rn-fetch-blob */, + 21C82C314C2C1A92F9ABE56B60E73C93 /* RNBootSplash */, + 1C1BB4344EE308E2E1D151183329DB9A /* RNCAsyncStorage */, + 896E8558BE86FBAA4473F45E12AF411E /* RNCMaskedView */, + 419057DA609A9DFB0D5268E8EF9749B7 /* RNDateTimePicker */, + 5ED8E8D5D13A6EDAAFBB999A99C42CD5 /* RNDeviceInfo */, + 824DD3082F31A70B9D504CAD50762741 /* RNFastImage */, + FF4E20CED9CE40CE75D8A549BD82586D /* RNFirebase */, + B5D0DFD086304DA65E0FFDF520DFC819 /* RNGestureHandler */, + AB37BF55DA004B83ECB07E374B47A3C2 /* RNImageCropPicker */, + 9F1DC577C47A5E4D93BD9FAEC76A222A /* RNLocalize */, + 1B155F37AC8526FDD6868727B81B2EFF /* RNReanimated */, + 7D5E215D014B45831937428B041C4D4F /* RNRootView */, + 3EDCA2AD2771EF344107B546D8863C31 /* RNScreens */, + 9D85F4E904983C18249A0DB5649E00BD /* RNUserDefaults */, + 379659CFE8E7781D289B258B7A0FFA2B /* RNVectorIcons */, + F92AE5267C81C2B1449089AAA7B0E378 /* UMAppLoader */, + BBC1984FAE43BEC1EBEFE5FFBEC1AD45 /* UMBarCodeScannerInterface */, + 1CDA384C38F8F351A0C2BFCB56A61537 /* UMCameraInterface */, + C3A7D58F1C1943F2A7D4AD77B43A1499 /* UMConstantsInterface */, + E2AC338976F64AA46C0CDB6DEA2B5DBE /* UMCore */, + 26BBBACC169934D2B1E6CB4F73121AC1 /* UMFaceDetectorInterface */, + 8333CFFB492E9D1B2879C531B95DF339 /* UMFileSystemInterface */, + 26DECA541D0B01C750C1192D02562926 /* UMFontInterface */, + 30B554291D1CB18F6D2CD8524F62740D /* UMImageLoaderInterface */, + 2FD8ABE1E8FC03B4988E232ED5831464 /* UMPermissionsInterface */, + 34F48CE1C7A6227353A6815A386598F1 /* UMReactNativeAdapter */, + 94514E5B5EDFA4C6D7C612A9E0FCFC32 /* UMSensorsInterface */, + 8A4C45EF9268AF32C9E694497AFCE4BD /* UMTaskManagerInterface */, + 3E02B4303FF962564442B56085EEAEFA /* Yoga */, + ); + name = "Development Pods"; sourceTree = ""; }; - F27232DFC97019E3760386F660C150ED /* React-jsinspector */ = { + F2E7107A2E2DCC50637DA4905483D897 /* Support Files */ = { isa = PBXGroup; children = ( - 6D91F1C7FC160F085A0887B9A504B834 /* InspectorInterfaces.cpp */, - 9934CD4A1C48A1C1391DA60625F6E769 /* InspectorInterfaces.h */, - 6FBC050FE2676980FE6CA34EA231D0EA /* Pod */, - F473B8B6F2554EF35E6245743ACF09C7 /* Support Files */, + C19DF073BDDF25E492E8456257A7F78F /* EXWebBrowser.xcconfig */, + C30B923B64B40ABD4B468A3ABCACF1C0 /* EXWebBrowser-dummy.m */, + 0B76A587AA0185430C7F364A12C6C6B8 /* EXWebBrowser-prefix.pch */, ); - name = "React-jsinspector"; - path = "../../node_modules/react-native/ReactCommon/jsinspector"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + sourceTree = ""; + }; + F39228465C73D1C8757BE4D219D081CA /* react-native-safe-area-context */ = { + isa = PBXGroup; + children = ( + C5A2F7764279182700E1E604994C4043 /* RCTView+SafeAreaCompat.h */, + B6366FF89EFD59303E103AA0DBFDD250 /* RCTView+SafeAreaCompat.m */, + 67C55D020967BFE486ECE43CC032E886 /* RNCSafeAreaProvider.h */, + 7B6641E807257CB45283C25B7E62B293 /* RNCSafeAreaProvider.m */, + 8209E54DE962763409BF359C1BE2E546 /* RNCSafeAreaProviderManager.h */, + 1B0DF15F8869A312D206396C99779577 /* RNCSafeAreaProviderManager.m */, + 6F1C88F236D315946B52D1E56E73F344 /* RNCSafeAreaShadowView.h */, + 47800D3AF599458DC4ECF66DCCB1C520 /* RNCSafeAreaShadowView.m */, + BE830A908B06CF2B0AF559629ECA48C4 /* RNCSafeAreaView.h */, + B3434BCB53404E1A7DBD7A6ACCECCEEB /* RNCSafeAreaView.m */, + 1D5FAF06DEF3F2C27DE379E9BA2F4B00 /* RNCSafeAreaViewEdges.h */, + BD34B7401168EAAD4269A2F4AB9FC7C4 /* RNCSafeAreaViewEdges.m */, + 4A23350B887B3391EDC956A74EB776B1 /* RNCSafeAreaViewLocalData.h */, + D23193DBE12D3018997C78E9BDC18837 /* RNCSafeAreaViewLocalData.m */, + 9D38E6FDD4A61F1F05EA4D9DA4A2853A /* RNCSafeAreaViewManager.h */, + 3E4ABDEC2C13ED3F5E92A40AEF18AB0C /* RNCSafeAreaViewManager.m */, + 808FE3CC4D8A4029B70902E3007DF3C7 /* RNCSafeAreaViewMode.h */, + FAEF5F18CE1A860CC5F59E7DA8FDC706 /* RNCSafeAreaViewMode.m */, + C4DB59991F0192497B339E6AC245DB81 /* Pod */, + BA7BF4749906F914CF11930D70889BCF /* Support Files */, + ); + name = "react-native-safe-area-context"; + path = "../../node_modules/react-native-safe-area-context"; sourceTree = ""; }; - F27F1439852F8F9954EDEF8830B926F3 /* VirtualText */ = { + F3A7CC99604C78ED2946EEE26F75B09F /* Support Files */ = { isa = PBXGroup; children = ( - 62ADE56762E9C113E092F71C61884D10 /* RCTVirtualTextShadowView.h */, - CFCD3BFA6695639F4EDEBCDBC689BF95 /* RCTVirtualTextViewManager.h */, + 8CD07C9B316C154FECFD4FF963C0B423 /* rn-extensions-share.xcconfig */, + 3B64F65DFD30A54EA94C0DFA2040729E /* rn-extensions-share-dummy.m */, + E64A3F11EF0C961806EEEFF73C903EAD /* rn-extensions-share-prefix.pch */, ); - name = VirtualText; - path = Libraries/Text/VirtualText; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/rn-extensions-share"; sourceTree = ""; }; - F3212ABD255CCDD7B82EDCF22D36496B /* Support Files */ = { + F41E05AF9F316015B6B1CEBDF1C03752 /* Support Files */ = { isa = PBXGroup; children = ( - 46138D88D9089B325DB537848E0BD935 /* EXLocalAuthentication.xcconfig */, - 8962A3AB1972A134062050FD168AEDE5 /* EXLocalAuthentication-dummy.m */, - 07EB509006AD0255ADE173C78DE5CB34 /* EXLocalAuthentication-prefix.pch */, + 7D83DAB6C4D288B6CA941729F379368C /* RCTRequired.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXLocalAuthentication"; + path = "../../../../ios/Pods/Target Support Files/RCTRequired"; sourceTree = ""; }; - F3BE44D695A5B17EB341D97D0F56CAF0 /* Pod */ = { + F4343CD26B84B43C41091C00CA254D13 /* rn-extensions-share */ = { isa = PBXGroup; children = ( - C4DB01C621BE511DA047046598329D5B /* EXAV.podspec */, + 139B202B58505FC6F38C0182D1BF7807 /* ReactNativeShareExtension.h */, + 0D2CC5174636CE5B3F0AA3B213D99D09 /* ReactNativeShareExtension.m */, + 77FD712E147A7168473325DB61D4D712 /* Pod */, + F3A7CC99604C78ED2946EEE26F75B09F /* Support Files */, ); - name = Pod; + name = "rn-extensions-share"; + path = "../../node_modules/rn-extensions-share"; sourceTree = ""; }; F43853B93E762B91E75A2F0BB5DB3502 /* Support Files */ = { @@ -17110,295 +17133,152 @@ path = "../Target Support Files/Flipper-Glog"; sourceTree = ""; }; - F473B8B6F2554EF35E6245743ACF09C7 /* Support Files */ = { + F51937433BCE08670D7F57FC014FF733 /* React-RCTAnimation */ = { isa = PBXGroup; children = ( - 4ABD0D258526EBB5C3877A4E12802162 /* React-jsinspector.xcconfig */, - C23A2F489E66C0BBE98BDB2082178AC6 /* React-jsinspector-dummy.m */, - CAFB63F1B8EA2E9B7472E844151C95A2 /* React-jsinspector-prefix.pch */, + C073DF562B22E808041D0CF63D4109DD /* RCTAnimationPlugins.mm */, + 8AAA61F995A9B04DA57EC50A762FC18F /* RCTAnimationUtils.m */, + A6BC86E3BEA741E29A8DEEABC27592D7 /* RCTNativeAnimatedModule.mm */, + 3715501AADC5E79F4B31BF1A441E7E86 /* RCTNativeAnimatedNodesManager.m */, + A3B06470F11A9CCAA678CFD0262D9D13 /* Drivers */, + BA5039E2F761FC172B5C3BD0F07F48FE /* Nodes */, + 7CB716AB427DDBA8476D9B4D9BC55BB3 /* Pod */, + 77783664C02F1B49FA7C07CF84155212 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; + name = "React-RCTAnimation"; + path = "../../node_modules/react-native/Libraries/NativeAnimation"; sourceTree = ""; }; - F4927BBFDFF1A689D82F68F7536765C0 /* Support Files */ = { + F5286ACAFF5C4DB1C90F57270D8576A0 /* Support Files */ = { isa = PBXGroup; children = ( - D3B484652A54786BFEE5700397369185 /* RNReanimated.xcconfig */, - 3C26224BFC9F7CAF1BAA53D76D222B62 /* RNReanimated-dummy.m */, - 0BEFE09AEC5742EBA25538E8C6678AB8 /* RNReanimated-prefix.pch */, + 505053A2D26FE3E5F176EF91C7408E22 /* RNFastImage.xcconfig */, + 01A2F80513EC5CD2FF3D15100993F0EA /* RNFastImage-dummy.m */, + 9E83CC859073893957AD662AEFB9EFC7 /* RNFastImage-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNReanimated"; + path = "../../ios/Pods/Target Support Files/RNFastImage"; sourceTree = ""; }; - F50C862ED951AB380DB388469A2A0B79 /* React-RCTNetwork */ = { + F534B7D4DEA904B7907F60B833C4A5B6 /* Pod */ = { isa = PBXGroup; children = ( - F0D5EB0C0AF1B46416A6E4E7E3D33DA5 /* RCTDataRequestHandler.mm */, - F88FEF53D9ACBC842772E7378CDD10A7 /* RCTFileRequestHandler.mm */, - 6C8750C9EFE82EDFF67C7A02C297E56F /* RCTHTTPRequestHandler.mm */, - 248119582169AE2E14B8DB9AC79E8664 /* RCTNetworking.mm */, - 09E1EB493AC7120B1A44A4A8DB7DB263 /* RCTNetworkPlugins.mm */, - B8A8F62CD1B59B1B4A915981F0934129 /* RCTNetworkTask.mm */, - 3B11B0D697F1834D1E564F74DF54916A /* Pod */, - 2265F1EC2DB7F5B03AD12E77CEB5040C /* Support Files */, + 72B669DD828E165D6DB9061E3C0C3A05 /* LICENSE */, + 7F151C07CBFD0ED04421E7F8D6B224B9 /* react-native-jitsi-meet.podspec */, + 355E8200E12BA361C536E2A803C8B61C /* README.md */, ); - name = "React-RCTNetwork"; - path = "../../node_modules/react-native/Libraries/Network"; + name = Pod; sourceTree = ""; }; - F644312F2E6A2502C611572745AB99DF /* FirebaseAnalytics */ = { + F54E8781846C1D88A554DCCB595B0212 /* Text */ = { isa = PBXGroup; children = ( - 7D863AC48C0C7D71312CF741ED412F53 /* Frameworks */, - E000EB2B52AF91A09A49502795EB3694 /* Support Files */, + E3D3F1F51A9701774A4230C7CADB7BA9 /* NSTextStorage+FontScaling.m */, + 9653EA4AC521C28DAB9C8200F2FCA8A8 /* RCTTextShadowView.m */, + 0F8B91C07680D10D32506D8BA5EA9600 /* RCTTextView.m */, + 87443023EC793DABBDE9179A8B0B053F /* RCTTextViewManager.m */, ); - name = FirebaseAnalytics; - path = FirebaseAnalytics; + name = Text; + path = Text; sourceTree = ""; }; - F65AB1F9E6225F0473D457DD3CC4DB0A /* rn-fetch-blob */ = { + F629AB4B738957919AD48525A721A649 /* Pod */ = { isa = PBXGroup; children = ( - 1E81EC930DD4B3E8A08B14D713C62A96 /* IOS7Polyfill.h */, - 5D1098524967543792A0E135B7C05633 /* RNFetchBlobConst.h */, - 4D1ED5503A25804AC17F6D80724CA290 /* RNFetchBlobConst.m */, - 3F37C3569D69F6D9FE0DF0B78ABC8991 /* RNFetchBlobFS.h */, - 787FE71387CF1F85BA4E9DF6D97CE264 /* RNFetchBlobFS.m */, - BA63F857FA550BBB06710A27D5F76B84 /* RNFetchBlobNetwork.h */, - BC7275CE001F4FCC4605B05417942BB7 /* RNFetchBlobNetwork.m */, - 3938FC31FF56249B4E10A15443534921 /* RNFetchBlobProgress.h */, - 4D20256C34296B182165D221419D1583 /* RNFetchBlobProgress.m */, - 94D018CAF5AFA03EE3483AF9FE1B9AAE /* RNFetchBlobReqBuilder.h */, - 6AF8B876AEED4AC249E46457AF985862 /* RNFetchBlobReqBuilder.m */, - CD1FD42F2DDF1DE25C6108AC6123ABD8 /* RNFetchBlobRequest.h */, - 16BC366877988251F04BB8A901CA5FCE /* RNFetchBlobRequest.m */, - CE8E3C4A204BD8658E8239FF66F7E3A2 /* Pod */, - 0E6454C95D3C8FD02B69246E4F2296F3 /* RNFetchBlob */, - 8CBAD4D2E9AB353B6CE65CFFD6FBB0B4 /* Support Files */, + 0F674AB263BBDC9E2C2A7DFE061A8575 /* UMSensorsInterface.podspec */, ); - name = "rn-fetch-blob"; - path = "../../node_modules/rn-fetch-blob"; + name = Pod; sourceTree = ""; }; - F733254350CCF8A9CCA88E7FC3FE55B2 /* Pod */ = { + F644312F2E6A2502C611572745AB99DF /* FirebaseAnalytics */ = { isa = PBXGroup; children = ( - 9249B01F0C6DC3F1AEC3175EB9D2BB75 /* UMReactNativeAdapter.podspec */, + 7D863AC48C0C7D71312CF741ED412F53 /* Frameworks */, + E000EB2B52AF91A09A49502795EB3694 /* Support Files */, ); - name = Pod; + name = FirebaseAnalytics; + path = FirebaseAnalytics; sourceTree = ""; }; - F7F29CA3955DD6A9E7580B2AE49F58B0 /* Default */ = { + F80606E4C7495DE65000E7938EEFB063 /* Support Files */ = { isa = PBXGroup; children = ( - C0F281592EB296CFCE74AEDBE0C5C710 /* Base */, - E6E20B9EBE4FE1CB239A92563C0A4DED /* CxxBridge */, - 88B74E1BB49EED7D959E5A657D02E81B /* CxxModule */, - 836F5890BB04FEC30653AB8F686F6888 /* CxxUtils */, - 70C575CCC2D61E4480E4B2E10476AC87 /* Modules */, - 6DE2BC9787CFD9D8A1B4C677FD4C5FF6 /* Profiler */, - A506EA6E3846229A18CA5F2908FD8312 /* UIUtils */, - 9F17B9A85DBC2F03DD64744A9DFED441 /* Views */, - ); - name = Default; - sourceTree = ""; - }; - F87A5B50954C5E7128EC05D520E6DD4B /* Development Pods */ = { - isa = PBXGroup; - children = ( - EC795E55837F8729282A6B8A684162AB /* BugsnagReactNative */, - ED7C154D3F610FC89026EF07C945F0A2 /* EXAV */, - F196FF764872D3615DCF4856E42E4D2C /* EXConstants */, - 98A1BE927C4F65B168E5202DA19ACE90 /* EXFileSystem */, - 5F2584076E044899708AF10A3E606285 /* EXHaptics */, - EC6BA54FAE2652A1488E38035CC6776B /* EXImageLoader */, - 3600A6665F640C5CAE3E2DF5119F9F90 /* EXKeepAwake */, - 1DEE9BE6EC8E5499D31EFA70F360C4AC /* EXLocalAuthentication */, - 0313269D82DB594D3F30A282D3E07A5E /* EXPermissions */, - EBF184C04FDFDFBD35E0BEE290CE0E31 /* EXWebBrowser */, - 1355EE9090BE64A91AED075B6ACF00DE /* FBLazyVector */, - 309B82EB73FA8CFCD44734B27D387B19 /* FBReactNativeSpec */, - 0ADC05D66D8870FAB46A080BCD2E018A /* KeyCommands */, - 8CF10FF34513FF509DBC48925E9D4F6D /* RCTRequired */, - A0D9B248FFE56CD990303E25C6C2D7C5 /* RCTTypeSafety */, - BB416D09935503139FB6AE6415BBD8BB /* React */, - A0658E2834376E3368980A1D16C8DED2 /* React-Core */, - 1B51F2FA84D17DCE9E370287B01EE0FF /* React-CoreModules */, - D9ACA25F46506ACFF95BC67B763E853A /* React-cxxreact */, - 7DD96FBD9D07E8B4D7F0314BC0AE265F /* React-jsi */, - 03DBB74D426625F3B653E838CDA966AD /* React-jsiexecutor */, - F27232DFC97019E3760386F660C150ED /* React-jsinspector */, - C1AF4CE1627007CE3A3D0544749498E9 /* react-native-appearance */, - 28ECFA63F581207D15118128A10AD38A /* react-native-background-timer */, - 6D97C4BCFCAB419AB40E9B79661B9288 /* react-native-cameraroll */, - 801A72FC6E5DACBE5F69A3E624F1B98F /* react-native-document-picker */, - 8452CB521ED3366C6AF69DBD07F99085 /* react-native-jitsi-meet */, - BDDAE384541621DBCA3E2A0C0F5741C7 /* react-native-notifications */, - 37A94581832CEEB5F2786A63636F4FE1 /* react-native-orientation-locker */, - C891E94FBE9705A583BEBE0A7091D86E /* react-native-safe-area-context */, - 0CC1A52E1277DC7D986393C45CEC131C /* react-native-slider */, - C9C7AFAF3C20900E7E2BF04BC0E51D19 /* react-native-webview */, - E3E1592FA3A8234FC29B443D7ED258E8 /* React-RCTActionSheet */, - 9CAFE2274405B62D57C3AB6665CE817A /* React-RCTAnimation */, - 66F9999BEB8F6D3516FECCDA04EF77F8 /* React-RCTBlob */, - B73E7CFDC5C98804E383184483AC74CE /* React-RCTImage */, - E4824D2D8CEE7600728BBFDCE25B69DA /* React-RCTLinking */, - F50C862ED951AB380DB388469A2A0B79 /* React-RCTNetwork */, - C777A79262866125047453BCD14FFB04 /* React-RCTSettings */, - 6F2CDCE53142510F66BE590E7467CF2F /* React-RCTText */, - E4C5A43DCC0963141499B4753E60E4D5 /* React-RCTVibration */, - DCFC2C96F6CD71C07EF6C03356065EB4 /* ReactCommon */, - B158B4AE90EA12A4C7218C90AA928024 /* ReactNativeART */, - 1505B62DE4AC138FBC06155E6B362A90 /* ReactNativeKeyboardInput */, - CE85A364C9CC8A2E9BC1E75A357714F1 /* ReactNativeKeyboardTrackingView */, - A6E1F4EB28B3E74FF1696389AFBBF959 /* rn-extensions-share */, - F65AB1F9E6225F0473D457DD3CC4DB0A /* rn-fetch-blob */, - 6D42942118CEDEEBEAA5DA0884AF2743 /* RNAudio */, - 9667D03AE211B034ED4BA1130F8CF72B /* RNBootSplash */, - 9520B0DBBFDC4748F38F679B65DB42FD /* RNCAsyncStorage */, - 972B76EE04253E45D40FBCA8CA367118 /* RNCMaskedView */, - 5D8A195208F5F9D1AD40BBD67BEF0862 /* RNDateTimePicker */, - CA600A053218B684BD85DB28B26CA5A6 /* RNDeviceInfo */, - 2B30A260514DC94443003EB21801ECB7 /* RNFastImage */, - B78B1DBF453E454509BFB3D0897999F8 /* RNFirebase */, - 48551461CB2993EAE44AA46329D81251 /* RNGestureHandler */, - 12E89D545F98C9845F284C64EA251DED /* RNImageCropPicker */, - F8829C7776A56BAC90CD0AA1994542BD /* RNLocalize */, - F8EE4EBE715E5F4C744EC7AAA79D721A /* RNReanimated */, - 361BCACE7E3A9F20E9778EF32CA85F5A /* RNRootView */, - DA69CFB8DD578BB441FC8193ABE45DDC /* RNScreens */, - 15BDBE06651BFBF8EC637F76A1DB472E /* RNUserDefaults */, - 5525A85551AE85D1ED3034A1D9FDBC79 /* RNVectorIcons */, - 9EB3A0469E2C86F327A033DBD1FD4F40 /* UMAppLoader */, - 8181BBEAF7F7B5DEA838EE799397B204 /* UMBarCodeScannerInterface */, - 2CC3E63A927121AA4374F37A3A629EBE /* UMCameraInterface */, - 36E83F542B1A8A57CF96293D1A670CC3 /* UMConstantsInterface */, - 9B16CDD36FC0DC8908145BE02DB100C6 /* UMCore */, - 60A9B3AC627C5E9D703DC70214162266 /* UMFaceDetectorInterface */, - 3C912B52CABE53D2FD22A1005697134D /* UMFileSystemInterface */, - A35095311AF5DBAB81EC57FA2E743FB5 /* UMFontInterface */, - B8F57D72DC04B41E16473C12A8D9F4E3 /* UMImageLoaderInterface */, - 81F8D6AEE55E9B8DB0945B9F3A62BBF2 /* UMPermissionsInterface */, - 5BCC56AD542BBDA9A8FD2FD15ED103FA /* UMReactNativeAdapter */, - 8BCEEB3D6600C2FBB5F77F8EE638D5B1 /* UMSensorsInterface */, - 58210328A9659CF3262373BD75D45E8E /* UMTaskManagerInterface */, - 429DBE0204A1CCCC852AFD06ED814E70 /* Yoga */, + 0F60E2D30A6E55A7CBF4A75E705C5AD8 /* React-jsi.xcconfig */, + 146B5E77E2464DE26AD8CDD7DE35BCF6 /* React-jsi-dummy.m */, + 5446D0A551E2B8148645C8C62A527ADC /* React-jsi-prefix.pch */, ); - name = "Development Pods"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsi"; sourceTree = ""; }; - F8829C7776A56BAC90CD0AA1994542BD /* RNLocalize */ = { + F92AE5267C81C2B1449089AAA7B0E378 /* UMAppLoader */ = { isa = PBXGroup; children = ( - 3B4A3049C0EB886C67137CBFFD354348 /* RNLocalize.h */, - 3FEC4E9A82D86777153BD8C0B53B45AF /* RNLocalize.m */, - 3B85E8A0293ED4C0ADE3D65D0635F5A6 /* Pod */, - 10AA064574CB8EF033A937230FE032D3 /* Support Files */, + B2F33DE9A04545AF996611650EDF1C36 /* UMAppLoaderProvider.h */, + 1E570402A50ED7C68E0E7373C90CE0A4 /* UMAppLoaderProvider.m */, + 851AC81A264D1ADB0D3ADD0D59DFF5B4 /* Interfaces */, + 627F7D28A929A46E3308C758DCC1664F /* Pod */, + ADB8B142D3211E44FEA4A10592814655 /* Support Files */, ); - name = RNLocalize; - path = "../../node_modules/react-native-localize"; + name = UMAppLoader; + path = "../../node_modules/unimodules-app-loader/ios"; sourceTree = ""; }; - F8B6BB50879B0153948AC66049F7633B /* Support Files */ = { + F98200676619DA1A31F2577AF2E80962 /* Support Files */ = { isa = PBXGroup; children = ( - DE6A50A3C93D966F1701A784B02E764B /* FBReactNativeSpec.xcconfig */, - D225587E371647E1EF158B7E94B98E54 /* FBReactNativeSpec-dummy.m */, - 95380A36C8E53465430D28FD7B86DE4F /* FBReactNativeSpec-prefix.pch */, + 8CF11B6072C8C126008ACDD5215CD003 /* FBReactNativeSpec.xcconfig */, + 6B29FAAA029FC1E4157B341D6A624A13 /* FBReactNativeSpec-dummy.m */, + A90A43495ED577A8637E88E7EACD22A8 /* FBReactNativeSpec-prefix.pch */, ); name = "Support Files"; path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; sourceTree = ""; }; - F8EE4EBE715E5F4C744EC7AAA79D721A /* RNReanimated */ = { + FACE195220A73F5B18077E22463EAD83 /* Services */ = { isa = PBXGroup; children = ( - 191CEB22E13262B0BFBCBB1ADF351C22 /* REAModule.h */, - 9C1107DC0C92960D72614B9190759FC3 /* REAModule.m */, - 60452327D46CD26998CD827F6F8E7B21 /* REANodesManager.h */, - 9C1F97993C8D8F56705CB4CAEDDEAC3C /* REANodesManager.m */, - CE04235EC62DB7D7F29A3F37AECFE8D2 /* REAUtils.h */, - CE052E0B091BF051B42A8EFFFCEF6A55 /* Nodes */, - 9274FB8C8494DC72EE774AB0D85D7ACD /* Pod */, - F4927BBFDFF1A689D82F68F7536765C0 /* Support Files */, - 8E5881FC3BEBB127BD0C286E3864D336 /* Transitioning */, + DB848A3694B2A20115E6215C34CBC043 /* UMLogManager.h */, + 0D680E0D869CE4873BD807007905089E /* UMLogManager.m */, ); - name = RNReanimated; - path = "../../node_modules/react-native-reanimated"; + name = Services; + path = UMCore/Services; sourceTree = ""; }; - F912E8ED5AFD7666BCE2AA6A1AC09007 /* Pod */ = { + FB61AD11170500BC81583EC5E435B1A5 /* Pod */ = { isa = PBXGroup; children = ( - 23210B88C177CF8F2F8AB6FD1FF0BD89 /* React-Core.podspec */, + 9AAD79F5A42BCF7E3589B455DA13DA42 /* LICENSE */, + 558C1BEF634D5456734E9049778CF45A /* README.md */, + 4B7E41733E3388B466DE1038FC8144EB /* RNGestureHandler.podspec */, ); name = Pod; sourceTree = ""; }; - F96D175D19CB7059722D313EEDC47B40 /* Pod */ = { + FBCB239CD70A884205685E13069B23B4 /* Pod */ = { isa = PBXGroup; children = ( - 209773EB2859EE02FAA4C3152B2861E7 /* React-RCTText.podspec */, + D9A8909DE5336730A4353A7246904F49 /* EXConstants.podspec */, ); name = Pod; sourceTree = ""; }; - F9889497D7C30B996D5B89D7D01F5109 /* Support Files */ = { - isa = PBXGroup; - children = ( - A5006732F65587CD1537CE06DC7E867B /* UMFontInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFontInterface"; - sourceTree = ""; - }; - FA3BC48DB57690DF8D87F0BB3932161D /* KSCrash */ = { - isa = PBXGroup; - children = ( - 00F964082C84394EFE9453B8C3AD69E0 /* Source */, - ); - name = KSCrash; - path = KSCrash; - sourceTree = ""; - }; - FA78146E6FCFBF26C95D7711A1EBABB9 /* Video */ = { - isa = PBXGroup; - children = ( - AF64CC66CF7F5FF11173BDC12E514A54 /* EXVideoManager.h */, - CDA9DB3C10EE2461F7D5386A7349FF11 /* EXVideoManager.m */, - FD3FAF17769AA4C5BD3A3A08446A8239 /* EXVideoPlayerViewController.h */, - DF7DFF3A414B0E7D5C751B535DB89338 /* EXVideoPlayerViewController.m */, - CF1BE94E9EB48F52834BF5C9CD2CC1AD /* EXVideoPlayerViewControllerDelegate.h */, - DC92F37702AA404B9EEFC33B82445BC7 /* EXVideoView.h */, - E04944B846FE8EC84AA406381ADE1C0A /* EXVideoView.m */, - ); - name = Video; - path = EXAV/Video; - sourceTree = ""; - }; - FB0A6050612302C48F3B3458FBAD23EF /* Resources */ = { + FC13D9D833BBD2E32BCF45BC6B22E689 /* Frameworks */ = { isa = PBXGroup; children = ( - 8F9F12C986912FA2B49124546F609219 /* de.lproj */, - 36B1EA524695A5235642D338CFACE993 /* en.lproj */, - 9AFEC1A12795E05C8A3BB3055E52B65A /* es.lproj */, - 2B8F0CB7B18252642B5D4A076198B56E /* fr.lproj */, - 958E52FEE245E3C364A04B23B5C26A34 /* ja.lproj */, - A3AB6894CE98026540443F3ECFFD15A2 /* pl.lproj */, - 7800D7967E2F4B8C81BBB95A0BADF9B0 /* QBImagePicker.storyboard */, - 0DCCBD85E6089FDD00DB6B0FC02A2A35 /* zh-Hans.lproj */, + 71BF86901E1FB0422F9D11070AE00357 /* Crashlytics.framework */, ); - name = Resources; + name = Frameworks; sourceTree = ""; }; - FC13D9D833BBD2E32BCF45BC6B22E689 /* Frameworks */ = { + FC4153CB15D7A86ADDEF44C6A1A05F34 /* RawText */ = { isa = PBXGroup; children = ( - 71BF86901E1FB0422F9D11070AE00357 /* Crashlytics.framework */, + DC9674D5C03ED251F517E10F4E2BB6E1 /* RCTRawTextShadowView.m */, + 740034F52B2C9C06CACF931F5389A374 /* RCTRawTextViewManager.m */, ); - name = Frameworks; + name = RawText; + path = RawText; sourceTree = ""; }; FC4BD46444E9BDDFBEE2B60ECC10BCC2 /* NSData+zlib */ = { @@ -17410,27 +17290,72 @@ name = "NSData+zlib"; sourceTree = ""; }; - FD2B1CF1202AAB20E2DE638A102B2EF6 /* Support Files */ = { + FEE56335EE3EEE7E8C7647B7B20B3BB1 /* RCTImageHeaders */ = { + isa = PBXGroup; + children = ( + 93EA10E9544F94CE3D7CF12CB2323E41 /* RCTAnimatedImage.h */, + 0D5F99BBC99BD67D8F8550C6EE870E0B /* RCTGIFImageDecoder.h */, + 43080157BF6D81FCC098241CD1FAFCD9 /* RCTImageBlurUtils.h */, + 50C1E4FECD032821D51F31AA95167B25 /* RCTImageCache.h */, + B783F8FC0E87A8D40872ADF5E4EDED31 /* RCTImageDataDecoder.h */, + 3131204640275CEFD8903EE8F9F962BE /* RCTImageEditingManager.h */, + 4CBD05527E67FFE2EF6D8830D363818A /* RCTImageLoader.h */, + CCDC5E18C1BFEA5E8CD4876AEE52C961 /* RCTImageLoaderProtocol.h */, + 463F245DA6911B939013A87A485C003E /* RCTImageLoaderWithAttributionProtocol.h */, + 3275CB2BAFADCA7BEE8D21CF409ABA30 /* RCTImagePlugins.h */, + 1726CAA6CD6FA459EAAE84311D966173 /* RCTImageShadowView.h */, + 2281173A99F5FA150A3994DA6BEAAD19 /* RCTImageStoreManager.h */, + 873BE1042A7120FDD0D647CC3B4B5D6D /* RCTImageURLLoader.h */, + 14B0D68B2DA30553100958FBD3462504 /* RCTImageURLLoaderWithAttribution.h */, + F9315A5C855D9B9CD1B0B17F99FF0A24 /* RCTImageUtils.h */, + C86CC306A7B0BF9921F54B59B50CDD54 /* RCTImageView.h */, + 0EBF839F5B8DF93BF4FEC1E59D5AA016 /* RCTImageViewManager.h */, + A3AFE9E5C2A22F3A7BA9283481692588 /* RCTLocalAssetImageLoader.h */, + 3AF5CF3DD0E1703391C4049B4A016680 /* RCTResizeMode.h */, + 8CB31498551D90CC3E83F90E8A0DDABA /* RCTUIImageViewAnimated.h */, + ); + name = RCTImageHeaders; + sourceTree = ""; + }; + FF45E9CB760F34F05C2F4CFAF08A2256 /* Support Files */ = { isa = PBXGroup; children = ( - 93F3F4E733620B7659DF3CB246FC200C /* React-RCTVibration.xcconfig */, - E45A58CC7E74042249B75831FE86A803 /* React-RCTVibration-dummy.m */, - B526D300BB2FC69340103E1D370645E0 /* React-RCTVibration-prefix.pch */, + 2D653138FC87559632D13F0E506B8939 /* EXConstants.xcconfig */, + 0509E06DD39558504F162E1AC72CB4FA /* EXConstants-dummy.m */, + 072BE33B09FCA42B05FC8D20FBFF28E2 /* EXConstants-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; + path = "../../../ios/Pods/Target Support Files/EXConstants"; sourceTree = ""; }; - FE3321F275BD510255767253D40784E4 /* database */ = { - isa = PBXGroup; - children = ( - 547E4D6E09F65BE8DEB5595A5D04DB00 /* RNFirebaseDatabase.h */, - 23ADA4CFA5E72A90563F77FFD7F8D2CE /* RNFirebaseDatabase.m */, - 85C972F667E84E4CEA53674B8077942E /* RNFirebaseDatabaseReference.h */, - 92007FF67C73E7C4B6A81B82D3A7810E /* RNFirebaseDatabaseReference.m */, + FF4E20CED9CE40CE75D8A549BD82586D /* RNFirebase */ = { + isa = PBXGroup; + children = ( + 88B3F4C17F48F0EF8648F4E3608237EA /* RNFirebase.h */, + 081C56CE4BFD93DB7E0C290CBAA30FAC /* RNFirebase.m */, + F9CF41B54E333B76EC739A081A224523 /* RNFirebaseEvents.h */, + 70094C1F0EBBD4C09B6B8BF8E0286FF5 /* RNFirebaseUtil.h */, + EB31A99910B6FCD1EB13EDCB189A82E7 /* RNFirebaseUtil.m */, + E84E00D73AD5659E4234124063450412 /* admob */, + C589A9D85D071A244897341337418C6C /* analytics */, + 7FC26E1B104CCF3F00695D9C6178A24A /* auth */, + C53D7A77EA2BA0172BF7FC8DAFAA75B4 /* config */, + E20FFE4E534EEE9DE3E8857C07D84370 /* converters */, + 6F5CB36F8449C4AE859CC2C11F73A479 /* database */, + 41705B7DEAD815B5168B49917C726E01 /* fabric */, + D9B3E1A851724272D71333C32C90D910 /* firestore */, + 9FDDAE1CE077E54DE0A2ABE43312C61E /* functions */, + B995DFF9FE559238ED009EB284CDEFBB /* instanceid */, + 4E0BB34CC2D8AC85816AF81147757D53 /* links */, + 4AE1CE3EA586082F3EB759C5FB9AA4F1 /* messaging */, + 047B13C7989A14DDE9006C63B9F1C874 /* notifications */, + CB6F4642CBAA67D3B41E15A076B857E0 /* perf */, + 9529D2BE61B681D850F3B097A96D980C /* Pod */, + 95E51304F16D99F105512B0A2F7EF6E6 /* storage */, + A519543D0F6EF39F6AA4381DEDE20EF0 /* Support Files */, ); - name = database; - path = RNFirebase/database; + name = RNFirebase; + path = "../../node_modules/react-native-firebase/ios"; sourceTree = ""; }; /* End PBXGroup section */ @@ -17515,14 +17440,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 0FC290065ECAE8419350D61A12B2F291 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 4EF7FEE09B24A016FD7489025596D713 /* AudioRecorderManager.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 114C8959AEF52394AB98EEE9599DA7B4 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -17655,14 +17572,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 267FDCC8E7CB14AFEA6BAD546E714F87 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 8D8BC44C654639CB1C472DD066EE1323 /* Pods-RocketChatRN-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 286BE82085ED99B13E875581E8ABBE87 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -17710,6 +17619,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 342E2230CD167CF0EE4D26059F8632A7 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 84468A447DF9F2C9C2812C3BDD91BB64 /* Pods-ShareRocketChatRN-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 36168A2800FD84E5F74BB4FA5AA4000D /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -18049,6 +17966,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 875AE2802FC88F2E84EBBC4730F3DD75 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + EC39C670961A4D854F480A78B6BF6C17 /* Pods-RocketChatRN-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 8B2AD61CE63EE076B1FDD616E66343A6 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -18979,14 +18904,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - BF95812F7EB0EA71A06491BEC4A89D21 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 78443FF8F8DBD8F1B0297274AEDCF8CF /* Pods-ShareRocketChatRN-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; C0588877575513E8081F4B91F3982E7A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -20108,24 +20025,6 @@ productReference = E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */; productType = "com.apple.product-type.library.static"; }; - 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */ = { - isa = PBXNativeTarget; - buildConfigurationList = BAD9CE9FDF5CCD5375CD542095538171 /* Build configuration list for PBXNativeTarget "RNAudio" */; - buildPhases = ( - 0FC290065ECAE8419350D61A12B2F291 /* Headers */, - C8617D8BE10774C434401452F5C531D6 /* Sources */, - C3B6ABE03A03E391ACC53041A408218D /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - F13EA7DAE7A846C572332EFD93580166 /* PBXTargetDependency */, - ); - name = RNAudio; - productName = RNAudio; - productReference = 3B65CB9B6DCD893501BDCF1DE7BA926C /* libRNAudio.a */; - productType = "com.apple.product-type.library.static"; - }; 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */ = { isa = PBXNativeTarget; buildConfigurationList = CDE33BE98D57C7F321E4FCBBBAD79D50 /* Build configuration list for PBXNativeTarget "React-cxxreact" */; @@ -20767,126 +20666,125 @@ }; 9C801345ED2C78BD1674053E7BE5D6ED /* Pods-ShareRocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = 64DB932A72AC27314419FE6861FADD3F /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; + buildConfigurationList = A2A758EA5128F2F9EA827AE0B3FE26BB /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; buildPhases = ( - BF95812F7EB0EA71A06491BEC4A89D21 /* Headers */, - CDA0623D42187422171BEC6C48BBBEE8 /* Sources */, - F0BC5C95B86DEDD201856C422C8E4B0A /* Frameworks */, + 342E2230CD167CF0EE4D26059F8632A7 /* Headers */, + FF93FA580F40065D0DCA23082400CDA9 /* Sources */, + CFE367DB77AFB4D3328A56FF6C08D060 /* Frameworks */, ); buildRules = ( ); dependencies = ( - E3DA365DC72A8D15542B99D77666CB33 /* PBXTargetDependency */, - E4707C76224CAD03E5213F0AC1A2DAEC /* PBXTargetDependency */, - D52BFC35D0680021013F4A02ED03F08D /* PBXTargetDependency */, - B71A9C867136ED65344E13874C7838A0 /* PBXTargetDependency */, - D9D82703E2CDB72000C3EEFCBFD05C55 /* PBXTargetDependency */, - A918A0E49B5A4B7C3F696309AEEF970B /* PBXTargetDependency */, - 27B99C753AA01B55FA4B2ECDF5175607 /* PBXTargetDependency */, - 525D54EAB1308E4F2B0DCB638C5E6098 /* PBXTargetDependency */, - B0D4B3A3ADD03810DF451533B6EE3FCA /* PBXTargetDependency */, - BF6D0677D14F9EFAC68E1A35F4723619 /* PBXTargetDependency */, - F1ED53FE905606823A5CF28B2D7BA967 /* PBXTargetDependency */, - 71AE9F32C9F242FA18914121899A0934 /* PBXTargetDependency */, - 4930CE43E4A8FD633A3FBBEE83D5075B /* PBXTargetDependency */, - B8E3E0021E497E9F7033E4C78DA6D006 /* PBXTargetDependency */, - 40E82F903B3591E3944E48BB47492D3B /* PBXTargetDependency */, - 9D35D0DD0AB8F08BA4102FEB7890D70F /* PBXTargetDependency */, - F3B46CB82BCF80E679262C1B9F21BB37 /* PBXTargetDependency */, - 2A23B5D4A478FA61F50FACDCF5DD6245 /* PBXTargetDependency */, - 03F29B056F728C0CF30034C00E198D07 /* PBXTargetDependency */, - BE1B7250F0D5F94F1CDD8145D5273AB3 /* PBXTargetDependency */, - 9975E8EB69D0E3D6775539B2FC3E0AB7 /* PBXTargetDependency */, - 768A3F864614D7AD4F13E710C5BB6AAE /* PBXTargetDependency */, - A8EC3A54AC05F8B42C17B35EE147BF92 /* PBXTargetDependency */, - C85FB30891762E676295B172267E6F6F /* PBXTargetDependency */, - 5F7D1D33AF06B0AB57D9A82921413A97 /* PBXTargetDependency */, - 5BB2657AF85CE68C7A23FF14EFB2A99A /* PBXTargetDependency */, - 6CCCBB8CD21984D6F2864E83416C1AC6 /* PBXTargetDependency */, - 842319D04AFA092803B83FAE65603E5A /* PBXTargetDependency */, - 26892CDA0E8A3E862D89CD1B8CC505F7 /* PBXTargetDependency */, - E7616635E878C54FD579D9D3CA550466 /* PBXTargetDependency */, - 6F5A4A3131069A973E8438D53B18B0A2 /* PBXTargetDependency */, - 5F728FE463B42A417904E99B4B6BD3DE /* PBXTargetDependency */, - 2495E19E71AD431C6D6A7406BD519772 /* PBXTargetDependency */, - E7CE2C7650D7F7A137AB8263674FF1D9 /* PBXTargetDependency */, - 7926087FCBB060DE439A27DE8132AC2C /* PBXTargetDependency */, - 3C8F4FBDD55CA093B158475D9C037317 /* PBXTargetDependency */, - CDCD6B35CF12F6B89E330C3EFF1EDE5B /* PBXTargetDependency */, - 54F044FCE552049B561517309D00B729 /* PBXTargetDependency */, - 3C7549ED94DFEB8133B352FC7C69A9AC /* PBXTargetDependency */, - 735109AEA79348BF23E13D0C78E70A17 /* PBXTargetDependency */, - 518792C2E63BB97915D6B4DB7403B1C4 /* PBXTargetDependency */, - 320675A0BC320406F4A222365B3553A3 /* PBXTargetDependency */, - 967464678DFCEC1C59CC4180164576A9 /* PBXTargetDependency */, - 49E0EF84E9DA70960BCF7BD27AB6F679 /* PBXTargetDependency */, - 0F6562A3E8EA059D32C2E260C613D05C /* PBXTargetDependency */, - E4E53A5228158B3C6F6B5CB73D08472C /* PBXTargetDependency */, - 1E8526572D3A1DB262CB13E3BBDA9266 /* PBXTargetDependency */, - EF1AFB7B3ECE73E93EF0DE14B0451AD4 /* PBXTargetDependency */, - BB81E4E4CE787266F80353CE3317DD96 /* PBXTargetDependency */, - 5069B82DB07E8B7E1270D95B291C92CD /* PBXTargetDependency */, - EDF96C662FBA7762CD5536F4C6FA5BBC /* PBXTargetDependency */, - A9A60F4545DA9243E50AFE52F161870D /* PBXTargetDependency */, - CFD8247B5ACBEB146A21C46C4A3B7354 /* PBXTargetDependency */, - 483DFA135410BE255DDDCF0012247A93 /* PBXTargetDependency */, - 73EBF48372D9432E6F5F441DE385F3C6 /* PBXTargetDependency */, - F1A4654A251B1AB1394452E8BA4D4655 /* PBXTargetDependency */, - 13F99B20D85C230DB4F20AF9749A74BC /* PBXTargetDependency */, - E2831A9D336E0C4AA90FF3BD09E4CED3 /* PBXTargetDependency */, - CEE39A2161F9BF533BA048C8D47412EF /* PBXTargetDependency */, - 03F79D6FE58DD3B0773E439C801ED83E /* PBXTargetDependency */, - 6B3C0C3F59B0AE65CF177BE1F9AF9C52 /* PBXTargetDependency */, - C629A7CD44828BE4F4F6A9A1FF53B7F0 /* PBXTargetDependency */, - C2906BD0E330E6D43979718AA7BEE0E2 /* PBXTargetDependency */, - 397071BA6514A7CD48CCDDA877FB07F4 /* PBXTargetDependency */, - 1065FA6A1736A17ACB9A2628C30FD91B /* PBXTargetDependency */, - 18B64FEADA8BCD76BFC7B11AB8CA8DC3 /* PBXTargetDependency */, - 5571DE7ABC350C535A922F4BFA7A9EFA /* PBXTargetDependency */, - 88CC29D6D45039A1C6AC563762D69393 /* PBXTargetDependency */, - DFF9C253547BA4F3C23304E86EB89262 /* PBXTargetDependency */, - C88AA674C93645A3BA122FC47665C8B9 /* PBXTargetDependency */, - 7F6B42B46257B4D23403DB945B90CC60 /* PBXTargetDependency */, - 1DA9B856C82A0C292A5181C74F02CBF3 /* PBXTargetDependency */, - 38390BDAEE3FE9DC30AD97E2E88927EE /* PBXTargetDependency */, - F6820920416058B65F2F986D60232DD1 /* PBXTargetDependency */, - AE79F97CF85223D0A2435F1F6CBA32AF /* PBXTargetDependency */, - 92A431F0B6EF8625A7638352232C502D /* PBXTargetDependency */, - 9449EF77CC6FB39E0BE307FF2DD1FB86 /* PBXTargetDependency */, - 85A04A9630C52FED4292624CFE63C347 /* PBXTargetDependency */, - 55EFFEB45B2919A33FBEF4D4EDD60B21 /* PBXTargetDependency */, - 33142750F2828C0A066D79FCC14B8406 /* PBXTargetDependency */, - 42595CA16F59B66578B3C66B255B556A /* PBXTargetDependency */, - 27F4759EE12E02E87B6E75A63BBA13CC /* PBXTargetDependency */, - 64B6717E3167311CB462AD731F264DBE /* PBXTargetDependency */, - 847D01C123FB011E25BD45C42B73FEFF /* PBXTargetDependency */, - AF1E3E519BE45B20D12E62083372C18E /* PBXTargetDependency */, - 519068D8A02FB0DAA9F01CFC2125A274 /* PBXTargetDependency */, - 234022E135394B7FCF6E6298EC490F6B /* PBXTargetDependency */, - F5AE83EAB25B7FD0615165ACD306EAD7 /* PBXTargetDependency */, - 819E8683E2F3D43FDEA889B448A21031 /* PBXTargetDependency */, - DFE8F5BB255DC241D57751C288A586CA /* PBXTargetDependency */, - CB4108A98392A30DDF0C1B8121FA6F2C /* PBXTargetDependency */, - DA2291420886BDF8CAEFEF2D5DA5067C /* PBXTargetDependency */, - 17677DCD05E1AEB88D18451AF9B0DB8F /* PBXTargetDependency */, - FE733362EB8B0CDA3D086D800738A750 /* PBXTargetDependency */, - 9E0812DD65227D77ABBB5CE3B5558D66 /* PBXTargetDependency */, - 0191C6433074D2D92D5AC844B6456C0C /* PBXTargetDependency */, - 1657E8D662438B92461B051DD9EBC8AF /* PBXTargetDependency */, - 52FC53E3A66C2EADAF62CDE9438EA18B /* PBXTargetDependency */, - C419BBDD967B27E9D7F2C019BF800192 /* PBXTargetDependency */, - 1CF0C9F1A1AC63D7D64B9D2AC7F36F58 /* PBXTargetDependency */, - D091FE2EDEB9D2BFC7A7B31E3AF0DBB1 /* PBXTargetDependency */, - B620FC5461BFA6FA8685FE1527A8AC87 /* PBXTargetDependency */, - 71886C7581D00EAEE8ECD4832F5A5219 /* PBXTargetDependency */, - B1E7A1FD1500EDB81D6846514D73140D /* PBXTargetDependency */, - D158BE6489688BC444E6E3D739E0CDB8 /* PBXTargetDependency */, - 81B8ED507A06D43304E2C6E070880466 /* PBXTargetDependency */, - 46E0EEB8B76A0842E5A957A7F4828804 /* PBXTargetDependency */, - 5BF7C0803307D305610C95274B48149A /* PBXTargetDependency */, - 0D28D8C83C3E0F396E1B8919B43290A6 /* PBXTargetDependency */, - F21C2C601334E2996C6B415C19C6FF69 /* PBXTargetDependency */, - 95013C8EF7D7F54D51DFD2EBA324E6BA /* PBXTargetDependency */, + 71400CEF13D5590F685BDAEB582FE331 /* PBXTargetDependency */, + DE985EFC37FE4C420079103DA7D6882B /* PBXTargetDependency */, + EA977E8B010D3123447695ACE20DEA65 /* PBXTargetDependency */, + E1BF648960EC4A99DB81DC25CE86F7D3 /* PBXTargetDependency */, + 0F580AD86C91B431660834519A0FFB58 /* PBXTargetDependency */, + 052A3272E95951029E721AB674A12598 /* PBXTargetDependency */, + CBF30D9909B06ACF1370C16F53AAB4CB /* PBXTargetDependency */, + 7BE7322D313549722D5F63B55DC510C9 /* PBXTargetDependency */, + 957674870A5F9D10B0FDF556A7C0806B /* PBXTargetDependency */, + 4747EF2FA050D6C00F50DECBE8ECAE68 /* PBXTargetDependency */, + 6B8CFB46FC35E3504388B23D0ED98E0B /* PBXTargetDependency */, + 5949A77C1D9D4B8629190D4341C4FD25 /* PBXTargetDependency */, + 3BC07D2F2FC01F9FC9255E284AF2EB85 /* PBXTargetDependency */, + 243BCC2172EACF4D93BD84AE1BE058B4 /* PBXTargetDependency */, + 5502F1DB22BB510A2BAADC0DD92CD627 /* PBXTargetDependency */, + 2EC4893F8C84EAD0D53615FC1A7AE21C /* PBXTargetDependency */, + C492A45E995898FEBF7950CA1EE6A9C4 /* PBXTargetDependency */, + F9B95AA15EC76D1C432D82DC9C2DEFF3 /* PBXTargetDependency */, + 117DA71B6F929BCD9C48CDB447E976AE /* PBXTargetDependency */, + 1CA17D54A05A31E8897AA24BD58213FC /* PBXTargetDependency */, + 41017D024E5B9F8B1E342B2E5F91522E /* PBXTargetDependency */, + 986B0941FF01156DC429309AC1FD5781 /* PBXTargetDependency */, + 356783A7DE0738D9070EB45EE8631BD4 /* PBXTargetDependency */, + 1076580E108857C18570E1D94FA7CB70 /* PBXTargetDependency */, + 27C6B9F823E69C42FF118BE1D336965F /* PBXTargetDependency */, + 61AC384D9CDC163479F549007478072D /* PBXTargetDependency */, + 2DF2163F70500900539C00E8BA5887F8 /* PBXTargetDependency */, + A040B2D07090F56C38AFEFA759EBC4E4 /* PBXTargetDependency */, + E8D966AE948AE7D241CD8CC518CF6270 /* PBXTargetDependency */, + 53AF20394D1B76CC742E391A07E0FA91 /* PBXTargetDependency */, + 7D5C4018B62CF839E1DD0ABA00772DAD /* PBXTargetDependency */, + 7A4F321E6A3F063844B34BF003209E48 /* PBXTargetDependency */, + BC027893692FADB19CB04066080F0593 /* PBXTargetDependency */, + A65F9D5D298D67DD5788512184311DA6 /* PBXTargetDependency */, + AA550A21E8D78E27132D09E576FD35A2 /* PBXTargetDependency */, + 8F0C80D2DB0255285D1FA8D7835599FB /* PBXTargetDependency */, + F37622B70DDDB61175150B3067B291C7 /* PBXTargetDependency */, + CE218F3EB89311F87D62B266EB13271A /* PBXTargetDependency */, + 22465B1BFEA40FCCF23C11694186A1E4 /* PBXTargetDependency */, + 548A853EAA66CC4F1E50ED3180E79C3A /* PBXTargetDependency */, + 793D2DCA768E7397DD52C5ECE7AE2786 /* PBXTargetDependency */, + BFEB81C9F070066BDAA412708C276B29 /* PBXTargetDependency */, + 18AFE0F008B7FCD47DE12AFA15548D44 /* PBXTargetDependency */, + 2A201BFD18E3EB12F2CD1ECD7C570B7D /* PBXTargetDependency */, + 5B21DC12A841B191C6D4646E48E903E6 /* PBXTargetDependency */, + 06C9FB1002CE8F2FB0AE12F3D95D4417 /* PBXTargetDependency */, + D932D2356A3B0B880E4873D2FB3AFE75 /* PBXTargetDependency */, + 47EA6E912DBC63EFEB6D3016A177A745 /* PBXTargetDependency */, + 9ADC41D70269487D442416B0926C9148 /* PBXTargetDependency */, + C9426C51C13100420E96AE99576D4101 /* PBXTargetDependency */, + 5B4B2A200EA782E7A466ECDEA925E0C1 /* PBXTargetDependency */, + 57C99AF43E89AE0F99C57DEEEE13FE40 /* PBXTargetDependency */, + 77230814D3478BF41A5DF18BC9F9FD2A /* PBXTargetDependency */, + 40E4113849241146126C21AA6CBD28C2 /* PBXTargetDependency */, + CABF88C9B745690D2303532012F0A80C /* PBXTargetDependency */, + AEBAD156A12659334B7A31EEC6994E76 /* PBXTargetDependency */, + 69C348B6C341A905B110F33E39F0E348 /* PBXTargetDependency */, + A661755701DEA2970AB4208CABD7F8ED /* PBXTargetDependency */, + E3F5E04E66F6261F627BC775FC81CB65 /* PBXTargetDependency */, + 15D1C78E6A6EA88B9513D5A8E2B2F127 /* PBXTargetDependency */, + 0406A614C3BC6FA5A80845B070D2EE82 /* PBXTargetDependency */, + 7FE798CAFB90637325F600DE98C58101 /* PBXTargetDependency */, + C9FBD448B92EF469A058C857876FC849 /* PBXTargetDependency */, + 7AB3A9EF88C81F186E120E06068A5113 /* PBXTargetDependency */, + 5A5A921EE7B2C7097C980D79905ABB2F /* PBXTargetDependency */, + 62A1B54E30ADE087FBA98DD2472F559B /* PBXTargetDependency */, + 50095666DF0D6B71936BD9191DBA9CDC /* PBXTargetDependency */, + F59C19CED21EC039472B35A2FF6CF63B /* PBXTargetDependency */, + E49ADA24F3946D450DE1F68B755EFE22 /* PBXTargetDependency */, + 40E453C27467A8FCBDAFDF8A2D2B21B2 /* PBXTargetDependency */, + 5A458BD8F95AE868894AA67EEB85E4AF /* PBXTargetDependency */, + 68885BB0309F943B5784E8307AF73692 /* PBXTargetDependency */, + AAB009B5162F903CF583B793590CB850 /* PBXTargetDependency */, + EA6B490B07D1826AB6F8FBA80AF5A4C5 /* PBXTargetDependency */, + CD689BE0B2CFC21CFDAF48F5A03BA11E /* PBXTargetDependency */, + 2DC024633A673DABFFD99EDDCA4E91A2 /* PBXTargetDependency */, + BBAF64ED1A67E41CF3C8D8900CD071BB /* PBXTargetDependency */, + 4D869BD3647193DE51BF7CDEF0990FBE /* PBXTargetDependency */, + EC5184CC509B207A4835DC7A19830290 /* PBXTargetDependency */, + 2F381C15596A063B61CFD861C24D3525 /* PBXTargetDependency */, + 110C01337EC799713219E4E92D1CB83F /* PBXTargetDependency */, + 500C76064682DFAA49E728C8D36933D7 /* PBXTargetDependency */, + 3B59187EE3D81397C5FC2B1306827049 /* PBXTargetDependency */, + E31292FD69015900929B1AF199640D14 /* PBXTargetDependency */, + 5885AB798957849A47D3751BFDD24056 /* PBXTargetDependency */, + FAC1766EC2BD58B91EE3ADF2818D8B89 /* PBXTargetDependency */, + C0729F2F9C49872C07123077018B9680 /* PBXTargetDependency */, + DF8EE4DB14C41DD26ECF525C6265124C /* PBXTargetDependency */, + 11AAC62DCA02622989E8E3EA025BD8F4 /* PBXTargetDependency */, + 109D28A2941A7F623515025A7DE7B2F4 /* PBXTargetDependency */, + 6F2F194E1634E6E83F3B14B2552BD8BE /* PBXTargetDependency */, + F971A373E27FBED6DA4D964ACA5E7200 /* PBXTargetDependency */, + B7CB7E107C13B009CFFF21233286C49C /* PBXTargetDependency */, + C20D59FCF2A3EC8107CF67CCB1EC4449 /* PBXTargetDependency */, + 23FA680CF155F2C058D19A919B398B6D /* PBXTargetDependency */, + A9D926728B0C9F0728B3673AC5AAB30B /* PBXTargetDependency */, + E8BA92853F5135DE2EE52F8D05320259 /* PBXTargetDependency */, + 4498397DB6DAD023DA46CFD20315ACB6 /* PBXTargetDependency */, + E34926148A71B07D3AF6910D28183183 /* PBXTargetDependency */, + B5A00AE59141F9BA59D3E7610784B1FC /* PBXTargetDependency */, + 8CC2B6C2F26A86E0A5DC080BB1C99BF5 /* PBXTargetDependency */, + 30390DDFB5C828BF558D09FA32DB460A /* PBXTargetDependency */, + 57A0D1BE5EDB82FF8A5E6E219DA67F04 /* PBXTargetDependency */, + 87058C503A6FFC0E467635C84BBB85D9 /* PBXTargetDependency */, + 7E9CABE86CABD0E704F3FABF417F55C4 /* PBXTargetDependency */, + 1B2C12243D44E281BD5075924CD8849F /* PBXTargetDependency */, + FE86A812CCE285C60316B682CC9C7091 /* PBXTargetDependency */, + D7628DC1EF0F664E78A6BBC1F251E62E /* PBXTargetDependency */, + 43CA9F2BB6DC13775F3B69F4203FD01B /* PBXTargetDependency */, + 1D8DFACA8845473F4E03DEC9E9F8480B /* PBXTargetDependency */, ); name = "Pods-ShareRocketChatRN"; productName = "Pods-ShareRocketChatRN"; @@ -21007,126 +20905,125 @@ }; B37ECF22F1589E28F59BC9990B4DC476 /* Pods-RocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = 90263AB0A28855EB2C91CD34783542CD /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; + buildConfigurationList = CC51CEF38932AE45ED0685090821B669 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; buildPhases = ( - 267FDCC8E7CB14AFEA6BAD546E714F87 /* Headers */, - C644FA2A2259D1F4C1D0B90D1688E653 /* Sources */, - B025459747091C59F3470B1E7E53F397 /* Frameworks */, + 875AE2802FC88F2E84EBBC4730F3DD75 /* Headers */, + A9D3ECF8A336241293F1B2555CB011A1 /* Sources */, + 7F28D50592389035FEFF5B4498B656B1 /* Frameworks */, ); buildRules = ( ); dependencies = ( - A0C32F1F71671CA390653E17A539E067 /* PBXTargetDependency */, - 51405A95713D4690E84685C10829267F /* PBXTargetDependency */, - 47D510C0F7AF24736928849D37BF1816 /* PBXTargetDependency */, - 89AB65282C82B231A17065E2A755BC86 /* PBXTargetDependency */, - 11479B34F53D4335B07CDBA6A276CDED /* PBXTargetDependency */, - D8455EFE6A2904EF5AA739452E19BF21 /* PBXTargetDependency */, - 11E03DC29CCF3A6E1570BB48B558A8D2 /* PBXTargetDependency */, - E266503DE84D1EFA18BAB3E30AE021BF /* PBXTargetDependency */, - 330760ABF1FF003750D5C1F387F87E58 /* PBXTargetDependency */, - 4F0FA856B08570E445FFD430E94EECB8 /* PBXTargetDependency */, - CBB06B8B03B2346919C999F0887CDF3F /* PBXTargetDependency */, - 52AE874F5F477E2B2CB0AB3B794D7A69 /* PBXTargetDependency */, - 329CF45A699037A17BC01FC9E8C506FF /* PBXTargetDependency */, - B2FA949FC020CB4B2CE8219765C76610 /* PBXTargetDependency */, - AA67CD6F8F920B7C25CE65C3FC3FE8DD /* PBXTargetDependency */, - 82ECBA7749774BDDB0C838B907DEE96B /* PBXTargetDependency */, - 0FA2D8C5763528912FFC9AA618B20106 /* PBXTargetDependency */, - 127FBC8665696CAF9A4546526B6B0DDA /* PBXTargetDependency */, - C45EF051DED3A7ADE32A6FB8C02BEC40 /* PBXTargetDependency */, - 6A31CDDFB5860F565319A6AFCEB4EBDE /* PBXTargetDependency */, - 45C3D06E0566EC98EC6635E85AD5616C /* PBXTargetDependency */, - 15D67197F0C00710D6DE9C60DD2EA0F3 /* PBXTargetDependency */, - F3502842BFDCB088B64C588FB75679FD /* PBXTargetDependency */, - 1FF7E39645381C9968C5357D47649543 /* PBXTargetDependency */, - 8F09117FAF8B091EC2568F33870A306C /* PBXTargetDependency */, - 79FF7872A3B23C9047E5B5BE547BCB95 /* PBXTargetDependency */, - FD73855D8E7DA6867B869552BEC837CF /* PBXTargetDependency */, - 72F5C1350AEEA8284BC93C2DDDB0B589 /* PBXTargetDependency */, - 07C61FE0436E70B37BE1A57AB1693832 /* PBXTargetDependency */, - AC28828332ABCB82180B888B79776D8B /* PBXTargetDependency */, - 4990A38856112896F4574A8B84BE6864 /* PBXTargetDependency */, - 86CB57084F4471E868260DE32116F916 /* PBXTargetDependency */, - 1147AFA34344FA2CFF2382EFC3CB601E /* PBXTargetDependency */, - 0B65F37E5C0CC4101087214A1C117A4C /* PBXTargetDependency */, - 2464E1F41141314B407C8D7CB5EA73A2 /* PBXTargetDependency */, - 4E3BF7DADEA7AC81D27643FCCE2B8613 /* PBXTargetDependency */, - 34DF935B2296AFACAF0A2493B61A39C1 /* PBXTargetDependency */, - F2FA313DFCFE64F3F81CCBD994D2F7AB /* PBXTargetDependency */, - 9C78D37FE6E872A02DA34BED2DD298E0 /* PBXTargetDependency */, - 41098DF369169B1BE7D66C994839FB03 /* PBXTargetDependency */, - ADB3480B3F60DF128E71AC6C6AEAB74A /* PBXTargetDependency */, - 272D59F6FB5CBDFBD154E32B82D9DCBE /* PBXTargetDependency */, - 16DF80CB8FADDE6F0276DA13F242643A /* PBXTargetDependency */, - BAC79B8607A771D50691F800F25C223B /* PBXTargetDependency */, - 661CAD3F25DC2CA9EFD14C684924E1EA /* PBXTargetDependency */, - B4F19A4298A8F6AEAFC0726C15887C9E /* PBXTargetDependency */, - B263DFBD8D4ECDB2B189B5296F204548 /* PBXTargetDependency */, - 7F5A6007F31AF81CFD73CA5035A0BBFB /* PBXTargetDependency */, - B1B77E132A721D4D52688B79C2E05FB6 /* PBXTargetDependency */, - 4AF7FAE8B9CCA84773CA059D010560C8 /* PBXTargetDependency */, - 83B8950F268925F9D242A9E4D927FE11 /* PBXTargetDependency */, - 2EB9B72457A4CC9287633CC0B1D7864F /* PBXTargetDependency */, - 649F18470A7C878AB0BDFA575A005950 /* PBXTargetDependency */, - BE9B1D7B36F058DD2E5D491290E2E6AB /* PBXTargetDependency */, - 121A74151918CB7449220FE670917F46 /* PBXTargetDependency */, - 3FB867C7ACE403BCB9BE1D69DDE8FF46 /* PBXTargetDependency */, - 1D808741F89D99577DE455C3A703774A /* PBXTargetDependency */, - 164D3C2FC166FB4D760514EDA0F12923 /* PBXTargetDependency */, - 05B4A0C68D9A3503EA483C250D4B2D71 /* PBXTargetDependency */, - EACB9F214C49780987916DFB93EE15DF /* PBXTargetDependency */, - B5792CFAB46B7EB277C756AAE448FE6F /* PBXTargetDependency */, - 88CC1562464E37A572260F3F5B854209 /* PBXTargetDependency */, - 833A092EE2B9A35ABB9B8A9915F1643A /* PBXTargetDependency */, - 732A0A42B0730E2C60B9956F9ABA1599 /* PBXTargetDependency */, - 1E4E14FB42789553798BE7BB31687C73 /* PBXTargetDependency */, - 2BE71C554BD1E77A0E4A9672F6278A73 /* PBXTargetDependency */, - 819F73185EEB6671557857BC0E1C20FB /* PBXTargetDependency */, - BBA8FD06D1D363D8117CBDEDC0FFC0EE /* PBXTargetDependency */, - D84A65525741945B43380B859ED8FDAA /* PBXTargetDependency */, - ADB4596B6D25EF1FD02E5585C4F45394 /* PBXTargetDependency */, - 4DFF612BF024BC7E5EDE7088A4FCACFE /* PBXTargetDependency */, - 6230B0983C4C18DDB67BEA949F8311B1 /* PBXTargetDependency */, - 1E7E417DEE0745A76EF13814A9D61FB6 /* PBXTargetDependency */, - 0DF0FFFFED8362E2C5A09AADEA936A08 /* PBXTargetDependency */, - 39F001A92EE94E235A3B498555D0DD8D /* PBXTargetDependency */, - B52C55B27C4E6D716F2CC9F5972C5EBB /* PBXTargetDependency */, - ED4E6582F6D84F97495C7B9687150841 /* PBXTargetDependency */, - 58D1B0168039D97F1EB2BC4727712339 /* PBXTargetDependency */, - 3C2D490B5C0EDC95185C0D781BAB5700 /* PBXTargetDependency */, - EAA117EA6F7964497C328EA9F860739C /* PBXTargetDependency */, - D2597BB4726D1EF880E7498B869C3816 /* PBXTargetDependency */, - 62FD7BCCFF8C5117F53472A87638369E /* PBXTargetDependency */, - E356572A62F11E13A05964A12E49DCD5 /* PBXTargetDependency */, - F6E449B40871C4630423F010277FCF5F /* PBXTargetDependency */, - 4CE61830D6DD438881DF56A3BC095D90 /* PBXTargetDependency */, - D893243090E5BE53E70E318A421F3184 /* PBXTargetDependency */, - 49017C29D99310C025F9A400C964F43B /* PBXTargetDependency */, - 50BF44DAB73C9ACF2501FE226A8EEC69 /* PBXTargetDependency */, - F7B36088753BAAAF086EE98671FB39EE /* PBXTargetDependency */, - 741BFC8D27BFB8D6F0F6EC626832BF47 /* PBXTargetDependency */, - A3E2F29848DB6D0404FDB7E548F6BD6C /* PBXTargetDependency */, - 10864F134D666F9FC7FCA9F319EA531B /* PBXTargetDependency */, - 6DD98A9F9A6FBCE28A8074E5CBBA6E38 /* PBXTargetDependency */, - C51B1F653CA932A2F43341CB2E94E7C9 /* PBXTargetDependency */, - 00A24BC2DCB8D342331A512AF55ABE4C /* PBXTargetDependency */, - D02D4F609F78663AFCA4594C32C27FC4 /* PBXTargetDependency */, - 1D0F672381ABCABA14B8AF6E0488FD86 /* PBXTargetDependency */, - 07A788C4457555E814F3FAB6945952BB /* PBXTargetDependency */, - 2661C4455A3B98F106296FCCC1D7B1F0 /* PBXTargetDependency */, - CE1F875AA07B832ACDD8AC69E54D84DF /* PBXTargetDependency */, - 0700F43FDBC989CAD2987284A87BC472 /* PBXTargetDependency */, - 8BE67C5BAF4C62371FDF85C761394674 /* PBXTargetDependency */, - 2686620A84378B632A98335FA51A2278 /* PBXTargetDependency */, - 456E62FF2F53B174278947CA23D27724 /* PBXTargetDependency */, - 6084CF4BD4350CD45F1E2F3D88CC1485 /* PBXTargetDependency */, - 905275FA67870B782710F160FB763D14 /* PBXTargetDependency */, - 4B0FF2D5A604BF1550DE12DBF041D850 /* PBXTargetDependency */, - 61358BB1942559685B9DE86E6B495E4C /* PBXTargetDependency */, - 57A124DB7CAE1B5F54892658C0742183 /* PBXTargetDependency */, - 9AF3A29484D4DB909EB883E2CCFC55E8 /* PBXTargetDependency */, - 6E92170EDB90C122F4EB8D032135E3B7 /* PBXTargetDependency */, + 4241FCD026EFCE41E6B90FC0A300B83D /* PBXTargetDependency */, + A4352052F1AB28E48D0723C00AE9F32A /* PBXTargetDependency */, + 1E5B1E98E09A103FE64E70EF814A6456 /* PBXTargetDependency */, + 639E3147472D13D61754D1D1946BEF88 /* PBXTargetDependency */, + AA632A5EA5A07FD364354A7537284FC8 /* PBXTargetDependency */, + 47762E2DE1C26A96110123B1C0906B1F /* PBXTargetDependency */, + 94FCCE4DE8BAAAB1F0048558F279792E /* PBXTargetDependency */, + 76CB6F30332BA31293535680057D1A82 /* PBXTargetDependency */, + 636818316623A92F7F44152DF7DBCA37 /* PBXTargetDependency */, + 963D8DA0B998D61E537A02E55CF010DB /* PBXTargetDependency */, + 0B6636EB7193791712CEDC6A286369D7 /* PBXTargetDependency */, + 042AF4A339CD9079361D1172A8B700B7 /* PBXTargetDependency */, + ACE592570D10EA2D8B83941E6A756E4D /* PBXTargetDependency */, + 13747381C51023340C948DC9D0CAAB34 /* PBXTargetDependency */, + 0EDD013D99379DA7F25491AD3B0D4A17 /* PBXTargetDependency */, + FDE20676F070391EBFB717F3A44CEB28 /* PBXTargetDependency */, + 5888E6770C2280113387113BC0AF079D /* PBXTargetDependency */, + B94F30513957502E7E9A68F760346076 /* PBXTargetDependency */, + 560E839444B3FE888C630A7D37B4CC3D /* PBXTargetDependency */, + B4E0C082C4383568DE1ED75D463D27CB /* PBXTargetDependency */, + 02A20C4D6B9924D72F6E26ACEE09C8A6 /* PBXTargetDependency */, + A4A49B58B48660755156F046D3085A35 /* PBXTargetDependency */, + 9C2E1B7AA9F90CFA624F588FDE60F148 /* PBXTargetDependency */, + 34CBF500165E3DDBBD108E94FA1931AC /* PBXTargetDependency */, + E399C0A9C9C33EC82603306915AAF9BC /* PBXTargetDependency */, + 99B8BD340C2E566715F7E99A22FA1293 /* PBXTargetDependency */, + 8DCCF120FFC5D8C64AC09AAB8A43DBEB /* PBXTargetDependency */, + 10E3F0BD251847A77135B4DFCC77142E /* PBXTargetDependency */, + 1A29F93F3CE3A9F4C25AF18ACE713C2D /* PBXTargetDependency */, + E3A050451F5296F149229C8170FEB7B5 /* PBXTargetDependency */, + C25F51A531F8D5253E382AA2CCC23E9A /* PBXTargetDependency */, + 08B9B4EBFCE9ADE439B1D89DC3C454C4 /* PBXTargetDependency */, + 1FF17C509513FD186944F508B2689787 /* PBXTargetDependency */, + A96AABCD77A8C2AE5AD2A4A502E0908D /* PBXTargetDependency */, + 651436EC07FCBA17B9BB032118D7A2E1 /* PBXTargetDependency */, + F4391FA50380C94EBF43DCC1267CAA58 /* PBXTargetDependency */, + 7280789B713880799057D32B9F81B83A /* PBXTargetDependency */, + 8F7ACB10BB8E437F05B833A7C4E9A34F /* PBXTargetDependency */, + A6BFD65350A67C4C69DF6187D5C378CC /* PBXTargetDependency */, + 748493E0D85A6A0AE24DDD54DF268501 /* PBXTargetDependency */, + 024BC5516157D487D169FBBCE965EBC8 /* PBXTargetDependency */, + 093C1818483861544A83C0C004AC501E /* PBXTargetDependency */, + C9221D8069B52EC52D61FD6E2850B0A2 /* PBXTargetDependency */, + 374285A82FA0173040C7329350D24F91 /* PBXTargetDependency */, + 359197ADD469980F890B330440AFE60B /* PBXTargetDependency */, + 38B000D474353FBF6F34AF6F7191B42E /* PBXTargetDependency */, + 6BDDFCE7C34954B5B097D6D0327CAADC /* PBXTargetDependency */, + D608106C4C779494E7C8847CED60E91C /* PBXTargetDependency */, + ADD11D04F8D393C4E03D52AA7E62102C /* PBXTargetDependency */, + 8248634040F19865480CC2366104E884 /* PBXTargetDependency */, + BBE2FA9B7AA5D8930444B243A749BA92 /* PBXTargetDependency */, + 8F6F2148A37EA42201179D843EC1CE12 /* PBXTargetDependency */, + 7448D0F24617D8F1543F17E630FBB895 /* PBXTargetDependency */, + A7E3141CD30795952E881780E95CC938 /* PBXTargetDependency */, + F8CA78219BD764C6638DBCADA099E439 /* PBXTargetDependency */, + 3DBF56FB1CB800D39EEF49487CA292AB /* PBXTargetDependency */, + C2178D7A14F97E3CA1AC7A131E3BA0CB /* PBXTargetDependency */, + 30E0C08F69B04211E0BD7C33C199BF84 /* PBXTargetDependency */, + EAF6515932B154B47D06F34478C699C2 /* PBXTargetDependency */, + 820F6CE06E89681F768430B96360357A /* PBXTargetDependency */, + FE49E72291605516CA334081BD7A2E4F /* PBXTargetDependency */, + 373CE6C99110F1B1CA384E0497636940 /* PBXTargetDependency */, + A1658710EF3DCF50343EA9604D92900C /* PBXTargetDependency */, + D8B3A4B89BA0EFEC5ECF38507ED747C4 /* PBXTargetDependency */, + 377C071CB4967300677E6EBCB5412742 /* PBXTargetDependency */, + B4B96A27E1C371A05A209D1AB89F2D60 /* PBXTargetDependency */, + AAF7FDAC2FD4C477AF08C51A0544A8E0 /* PBXTargetDependency */, + 43AE24DB5271C3B3811E2A9CB1731104 /* PBXTargetDependency */, + 7D98B9D848A321F2AB7A2A8FDADF938D /* PBXTargetDependency */, + 84FB88A13022BEF42C0C902477210CF8 /* PBXTargetDependency */, + 9EC4401FD4069CF95286F15A431716C1 /* PBXTargetDependency */, + 8EA1F99BBBFA5C2B679F6EE7CFFBA28C /* PBXTargetDependency */, + C506D85B8F4F03A7286B2D9C1F13CD2E /* PBXTargetDependency */, + 4CC7017930D3EC7CCB5BA504C11180B9 /* PBXTargetDependency */, + AB17BDA435343910DBAB2B1F6DEAFDD9 /* PBXTargetDependency */, + DEED1B969344C8EA4A17E577DA1C6703 /* PBXTargetDependency */, + 55A4A8059918B3700808521493056DFA /* PBXTargetDependency */, + 6C9D146006B1762A0C77BD5BA88019EC /* PBXTargetDependency */, + 26BAD723D62823405CC263625B1BC5CE /* PBXTargetDependency */, + 84CDFABF9811573A51CB3FC7CAAA41FB /* PBXTargetDependency */, + BC428CC67216088C4161D263D43200FA /* PBXTargetDependency */, + 2DEA716030712BB74FDEBE84F75032ED /* PBXTargetDependency */, + 11D6A77366708F268E64988CADFC4DA5 /* PBXTargetDependency */, + 4F7485CDEDE10FE09724BE3A3BF79524 /* PBXTargetDependency */, + 0D228494C82BE19970266B8588FEB8F8 /* PBXTargetDependency */, + F257D7DC8E610D3218E83F7802C4D033 /* PBXTargetDependency */, + 374354A29D235242BAA918540576D7B1 /* PBXTargetDependency */, + 23E2E116139BABBDC85AC79FC129358B /* PBXTargetDependency */, + 934D639572FEC6D889D6D3B673584332 /* PBXTargetDependency */, + 18A6C87C1024A7BB7AE92ACAFAEFE079 /* PBXTargetDependency */, + 0C8B3F40B29647CD80C6B786D38B0628 /* PBXTargetDependency */, + 0B01A3FE65F6730FBEEBB38EABBD0012 /* PBXTargetDependency */, + BA3E62E003F1B9098C9BBCE281D35FF7 /* PBXTargetDependency */, + A09A12DDFB0BB64788A0CD4ED2B6C9A0 /* PBXTargetDependency */, + A27DC9A266F8C8C5B3291ECC00732368 /* PBXTargetDependency */, + 179167139D014480EB9E704096C265B1 /* PBXTargetDependency */, + 9C0B5E716505E4D200DE1A45C6595E3E /* PBXTargetDependency */, + D376267002B5D82439BF12F5DF5A97FB /* PBXTargetDependency */, + 84E9B512DE43F89735BBD39BC7FA4A41 /* PBXTargetDependency */, + 16ACEDED659E2DD08719F8F364B7B9EF /* PBXTargetDependency */, + C9431653B68C09B887091348543E3DC8 /* PBXTargetDependency */, + B3CDCD1963D1EA4AFB49CA026B707688 /* PBXTargetDependency */, + A3623C1506E479D5D30754865E2ACBEB /* PBXTargetDependency */, + FE0D45AB9667EEB26EB45E0D2DF1EC86 /* PBXTargetDependency */, + 8EF3C9D9EFFB25F12267FF792BDD76C1 /* PBXTargetDependency */, + A383F2939DA6304E698504C43C2E6FF2 /* PBXTargetDependency */, + B2F6D0DEE59F11B4180231FD4DACB087 /* PBXTargetDependency */, + 45748241840CB5EFDF6281A09683010A /* PBXTargetDependency */, + 2388C8E83A81A828CDFB5B57EDD657A9 /* PBXTargetDependency */, + 721BCD02BAA2BD9CBABA5A12239DC828 /* PBXTargetDependency */, ); name = "Pods-RocketChatRN"; productName = "Pods-RocketChatRN"; @@ -21645,7 +21542,7 @@ Base, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = E31346C0B67ACF2249F832AF0EB5F565 /* Products */; + productRefGroup = B79D97D81BB3ECBD020C5135791D4334 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -21728,7 +21625,6 @@ 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */, A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */, 64F427905796B33B78A704063422979D /* rn-fetch-blob */, - 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */, 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */, 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */, 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */, @@ -23236,6 +23132,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + A9D3ECF8A336241293F1B2555CB011A1 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B90CD4D3B727E243BB7741E701F84E18 /* Pods-RocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; AABBC016A58479851F5E22666161CED9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -23470,23 +23374,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C644FA2A2259D1F4C1D0B90D1688E653 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 40ED423DFB93BE77EF57A2C13318964E /* Pods-RocketChatRN-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C8617D8BE10774C434401452F5C531D6 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 1728749B028AD1D781945AAA91BE736E /* AudioRecorderManager.m in Sources */, - 4C7CFC31B67E5D1520E3FDB757211A24 /* RNAudio-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; C8C4AFB10F24F14BAAB24E8F777A0D23 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -23506,19 +23393,11 @@ 82B3ACF24FBA461B54C393C8E8057A62 /* UMErrorCodes.m in Sources */, CB0D74E997007796BD50F14F96295806 /* UMExportedModule.m in Sources */, D3BBAAEC1BB62E99D63C32C6742A60ED /* UMLogManager.m in Sources */, - 3D68D2557A63C01FD65F87F4565A0A53 /* UMModuleRegistry.m in Sources */, - 78F927721FF33D4B9A04BF10E78C536E /* UMModuleRegistryProvider.m in Sources */, - 87873D084F83703DE3C009D5A2A0C043 /* UMSingletonModule.m in Sources */, - 4A75E803AF46B56D11CCCE41CE8FBE0C /* UMUtilities.m in Sources */, - 1B7460A41AE9C572291675EBBA73DBF3 /* UMViewManager.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - CDA0623D42187422171BEC6C48BBBEE8 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 1F6DFF890D73A3400DF2B04DD1601E79 /* Pods-ShareRocketChatRN-dummy.m in Sources */, + 3D68D2557A63C01FD65F87F4565A0A53 /* UMModuleRegistry.m in Sources */, + 78F927721FF33D4B9A04BF10E78C536E /* UMModuleRegistryProvider.m in Sources */, + 87873D084F83703DE3C009D5A2A0C043 /* UMSingletonModule.m in Sources */, + 4A75E803AF46B56D11CCCE41CE8FBE0C /* UMUtilities.m in Sources */, + 1B7460A41AE9C572291675EBBA73DBF3 /* UMViewManager.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -23681,27 +23560,35 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + FF93FA580F40065D0DCA23082400CDA9 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BF257B6DB0846F3C0D58FDF9677DD393 /* Pods-ShareRocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 00A24BC2DCB8D342331A512AF55ABE4C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = YogaKit; - target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; - targetProxy = B77EC1A3590605F7F303BFA0F423C646 /* PBXContainerItemProxy */; - }; - 0191C6433074D2D92D5AC844B6456C0C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = 81F8896C5DB1BCE0407DE2B61AD3D6F9 /* PBXContainerItemProxy */; - }; 023955AC36E92DE48F0B6670771E8769 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTActionSheet"; target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; targetProxy = 2FEE8079F6A6AAB7EF261D76B867F043 /* PBXContainerItemProxy */; }; + 024BC5516157D487D169FBBCE965EBC8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 0F3608D02111F878B8A532F70BA27877 /* PBXContainerItemProxy */; + }; + 02A20C4D6B9924D72F6E26ACEE09C8A6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = 0724F085AD56B3250975E01660D751DA /* PBXContainerItemProxy */; + }; 03C5D1361123B1B19A913F4F89661FDB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; @@ -23714,17 +23601,17 @@ target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = 90A863AAA5E405464866F689B43DA4E0 /* PBXContainerItemProxy */; }; - 03F29B056F728C0CF30034C00E198D07 /* PBXTargetDependency */ = { + 0406A614C3BC6FA5A80845B070D2EE82 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 889B4629741816E3830F8BF948F984C6 /* PBXContainerItemProxy */; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = 9CC029F303117E7997F002DFF9B7FADD /* PBXContainerItemProxy */; }; - 03F79D6FE58DD3B0773E439C801ED83E /* PBXTargetDependency */ = { + 042AF4A339CD9079361D1172A8B700B7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 113D310048CCDBA4829745D03E7C5EB4 /* PBXContainerItemProxy */; + name = EXLocalAuthentication; + target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; + targetProxy = 87C5F0D0DF5CFCFD47266C1B8FCAABDB /* PBXContainerItemProxy */; }; 047D4E0D4AFA3202E8B85875CD42FFF0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23732,17 +23619,17 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 4EFDA9ABE3CE71234F681C27E6E67E0C /* PBXContainerItemProxy */; }; - 05B4A0C68D9A3503EA483C250D4B2D71 /* PBXTargetDependency */ = { + 052A3272E95951029E721AB674A12598 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 5FE28374E7632DBC75D4A5D58FAC3ADB /* PBXContainerItemProxy */; + name = EXAV; + target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; + targetProxy = 919588A70490EE27CDF56AA88435272E /* PBXContainerItemProxy */; }; - 0700F43FDBC989CAD2987284A87BC472 /* PBXTargetDependency */ = { + 06C9FB1002CE8F2FB0AE12F3D95D4417 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = CCBF64AD9DF5D129E7BCD151F2EF81E6 /* PBXContainerItemProxy */; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = BE06AF7132FD74B99BE842AE71BEA649 /* PBXContainerItemProxy */; }; 073CD2E5F0971C9A28E591F6289C48BA /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23750,24 +23637,24 @@ target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; targetProxy = 70056FCB7FB870FB7D91F161A3B6F84F /* PBXContainerItemProxy */; }; - 07A788C4457555E814F3FAB6945952BB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = A85E89D4FB7CA935A92B4AB152E73C5B /* PBXContainerItemProxy */; - }; - 07C61FE0436E70B37BE1A57AB1693832 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-RSocket"; - target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; - targetProxy = F2F7A2A57746511D774A16249C56F981 /* PBXContainerItemProxy */; - }; 0819D4E8DCB748F652F6C3216F88A453 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 449D79087AC8EFD285D3D6948D363A86 /* PBXContainerItemProxy */; }; + 08B9B4EBFCE9ADE439B1D89DC3C454C4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = F0D0A7EE6C9AED4F4CFB71C0051CB115 /* PBXContainerItemProxy */; + }; + 093C1818483861544A83C0C004AC501E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = 3E91FD90206247D5B162FD60ACECA835 /* PBXContainerItemProxy */; + }; 09548539F9B55DB83B7CFF0A3382B178 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTTypeSafety; @@ -23780,11 +23667,17 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 437B65583B16B649BD8F25DF7359E61D /* PBXContainerItemProxy */; }; - 0B65F37E5C0CC4101087214A1C117A4C /* PBXTargetDependency */ = { + 0B01A3FE65F6730FBEEBB38EABBD0012 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = CE542961701E278768ED1BA423934B23 /* PBXContainerItemProxy */; + name = UMTaskManagerInterface; + target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; + targetProxy = B8E4E999272CD0D6F359F4557A4ED87F /* PBXContainerItemProxy */; + }; + 0B6636EB7193791712CEDC6A286369D7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXKeepAwake; + target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; + targetProxy = AE5F1A2AD93CA37CFE5A916CAC8B09BC /* PBXContainerItemProxy */; }; 0B6CE01049FAA34EEDB7B041E1C159D1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23798,17 +23691,23 @@ target = 6D979AB5FDA2E858850D9903776A30B3 /* RNImageCropPicker-QBImagePicker */; targetProxy = CF87F655D13B486B7A39F4A5166807A5 /* PBXContainerItemProxy */; }; - 0D28D8C83C3E0F396E1B8919B43290A6 /* PBXTargetDependency */ = { + 0C8B3F40B29647CD80C6B786D38B0628 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = 1F4A7616363E0961A58CA41935200E36 /* PBXContainerItemProxy */; + name = UMSensorsInterface; + target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; + targetProxy = 6FC0A4E967E6F53D2BD2B0DCE46D9CCF /* PBXContainerItemProxy */; }; - 0DF0FFFFED8362E2C5A09AADEA936A08 /* PBXTargetDependency */ = { + 0D228494C82BE19970266B8588FEB8F8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = C58BBBD418E6F3778E7EA7161CD806CA /* PBXContainerItemProxy */; + name = UMFaceDetectorInterface; + target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; + targetProxy = 85BB3AA9E636EB9AF4B867331A2004CB /* PBXContainerItemProxy */; + }; + 0EDD013D99379DA7F25491AD3B0D4A17 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = DD717108B1E120FC5F974874A0443F4F /* PBXContainerItemProxy */; }; 0F0BDC8FEB853569FB1BF7ACAD504741 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23816,29 +23715,17 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = B3F501C8895365B2E84048FB6C665944 /* PBXContainerItemProxy */; }; - 0F6562A3E8EA059D32C2E260C613D05C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNCMaskedView; - target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; - targetProxy = DB0847A53B2FA0A3C99B225E97C243C6 /* PBXContainerItemProxy */; - }; - 0FA2D8C5763528912FFC9AA618B20106 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Fabric; - target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; - targetProxy = D5441E0DE33B91B5B638940730AF5F96 /* PBXContainerItemProxy */; - }; - 1065FA6A1736A17ACB9A2628C30FD91B /* PBXTargetDependency */ = { + 0F580AD86C91B431660834519A0FFB58 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = F8CFE6F279DB272E9F6E36635CFEBF0B /* PBXContainerItemProxy */; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = A9B56F141C6AAC96E58CC9F41996A85A /* PBXContainerItemProxy */; }; - 10864F134D666F9FC7FCA9F319EA531B /* PBXTargetDependency */ = { + 1076580E108857C18570E1D94FA7CB70 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; - targetProxy = 4356C23A90B8E137C947C8E3E45D4C23 /* PBXContainerItemProxy */; + name = Flipper; + target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; + targetProxy = A2C2F03D44D94585CB2010EF37F36292 /* PBXContainerItemProxy */; }; 109AAD7F89F41A04284880BB80B4C074 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23846,23 +23733,41 @@ target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; targetProxy = 9BAAC27A785084FD67CA13B8EDA42C7D /* PBXContainerItemProxy */; }; - 11479B34F53D4335B07CDBA6A276CDED /* PBXTargetDependency */ = { + 109D28A2941A7F623515025A7DE7B2F4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = D16209CB92E2B310A78EC1EB8F1232B2 /* PBXContainerItemProxy */; + name = UMReactNativeAdapter; + target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; + targetProxy = 5DB7F97DE91806103B61DBCC61FF0C85 /* PBXContainerItemProxy */; }; - 1147AFA34344FA2CFF2382EFC3CB601E /* PBXTargetDependency */ = { + 10E3F0BD251847A77135B4DFCC77142E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 06238F09DE81970920F8FB3CB188A752 /* PBXContainerItemProxy */; + name = "Flipper-PeerTalk"; + target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; + targetProxy = 99E3855087138B534412E888776D0804 /* PBXContainerItemProxy */; }; - 11E03DC29CCF3A6E1570BB48B558A8D2 /* PBXTargetDependency */ = { + 110C01337EC799713219E4E92D1CB83F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXConstants; - target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; - targetProxy = F00A3AD284C3AE098AFC0F2C255A6452 /* PBXContainerItemProxy */; + name = UMBarCodeScannerInterface; + target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; + targetProxy = D685642B4187BD2EDEB37C38DBB2A6FF /* PBXContainerItemProxy */; + }; + 117DA71B6F929BCD9C48CDB447E976AE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = 6EF4187B15E51427DF939B1A0C098ED0 /* PBXContainerItemProxy */; + }; + 11AAC62DCA02622989E8E3EA025BD8F4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = E6E85C84E0BF3664B3621AA181051EE3 /* PBXContainerItemProxy */; + }; + 11D6A77366708F268E64988CADFC4DA5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = B8E2819D888C83C49815412B015A2ACD /* PBXContainerItemProxy */; }; 11F238A9B52D1449196113F8D64A42B1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23870,17 +23775,11 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = 69F31C657CAAFD3F29F09AA817462D1B /* PBXContainerItemProxy */; }; - 121A74151918CB7449220FE670917F46 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = DB8E6C2B826259CD8BC9F60B2D50D0F4 /* PBXContainerItemProxy */; - }; - 127FBC8665696CAF9A4546526B6B0DDA /* PBXTargetDependency */ = { + 13747381C51023340C948DC9D0CAAB34 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = A0514ECFACC7F0E9DCCFE507BC6414A4 /* PBXContainerItemProxy */; + name = EXWebBrowser; + target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; + targetProxy = 2B1333BFD9FA436DD4BE6137437CEA9E /* PBXContainerItemProxy */; }; 13D1447CBB44B0928F9CC7C4F753C88D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23888,47 +23787,29 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 25511591901776CBD4A6CC6BDD1BD233 /* PBXContainerItemProxy */; }; - 13F99B20D85C230DB4F20AF9749A74BC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = 42234504C7FF67CDFFCAF6B4CAD7F517 /* PBXContainerItemProxy */; - }; 14D04125E2284DB6D632FA2146727F98 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = YogaKit; target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; targetProxy = 14FABE1DA2D29D5AE8EE8EE26F763525 /* PBXContainerItemProxy */; }; - 15D67197F0C00710D6DE9C60DD2EA0F3 /* PBXTargetDependency */ = { + 15D1C78E6A6EA88B9513D5A8E2B2F127 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnosticsInterop; - target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; - targetProxy = A6230F7EEE1ACF1F51FC6517BFAA3C8C /* PBXContainerItemProxy */; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = B2F47CFA3A341501917A2B4068CE1557 /* PBXContainerItemProxy */; }; - 164D3C2FC166FB4D760514EDA0F12923 /* PBXTargetDependency */ = { + 16ACEDED659E2DD08719F8F364B7B9EF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RSKImageCropper; - target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; - targetProxy = BE33BC644F700F14C28AB6288F04A377 /* PBXContainerItemProxy */; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = 85AB64E01EB845F2A0EDEF3EAF922184 /* PBXContainerItemProxy */; }; - 1657E8D662438B92461B051DD9EBC8AF /* PBXTargetDependency */ = { + 179167139D014480EB9E704096C265B1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 04992C00E6EBE5373FE7EFBC57507B72 /* PBXContainerItemProxy */; - }; - 16DF80CB8FADDE6F0276DA13F242643A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = 1B916168DEA3C9F7676FA3590811525C /* PBXContainerItemProxy */; - }; - 17677DCD05E1AEB88D18451AF9B0DB8F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; - targetProxy = A19DF5E0EFE248F59AFA5C74EF0DFEC2 /* PBXContainerItemProxy */; + targetProxy = E49F409AB968685E124DD7405E2D489A /* PBXContainerItemProxy */; }; 17B0305E08C7EF9ED292AA9014450AF0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23936,11 +23817,17 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */; }; - 18B64FEADA8BCD76BFC7B11AB8CA8DC3 /* PBXTargetDependency */ = { + 18A6C87C1024A7BB7AE92ACAFAEFE079 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = 644D050C69124CC642E63531715DFECC /* PBXContainerItemProxy */; + name = UMReactNativeAdapter; + target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; + targetProxy = 815D22F0C7554B66C20F0883A9CED355 /* PBXContainerItemProxy */; + }; + 18AFE0F008B7FCD47DE12AFA15548D44 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNCAsyncStorage; + target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; + targetProxy = 74113676160F37B393AB55911779346B /* PBXContainerItemProxy */; }; 19297402BCBD687406D317002BE87D26 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23948,41 +23835,41 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = C5792CABC007D0A7A4E11F4A976C441D /* PBXContainerItemProxy */; }; + 1A29F93F3CE3A9F4C25AF18ACE713C2D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-RSocket"; + target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; + targetProxy = 949557E6EBA8D03E95E55C475275DC55 /* PBXContainerItemProxy */; + }; 1AB5E32532E3403A1A4C0821215EE208 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = FA5C86A90420903CA42E08EC8584B824 /* PBXContainerItemProxy */; }; - 1CB5826B04A12E8E43187A497C73FA8E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = B4E7AA2F388BF06D09134ABA91287970 /* PBXContainerItemProxy */; - }; - 1CF0C9F1A1AC63D7D64B9D2AC7F36F58 /* PBXTargetDependency */ = { + 1B2C12243D44E281BD5075924CD8849F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = 297A2B84FC17D6F7F91153C9C3334C7B /* PBXContainerItemProxy */; + name = "react-native-safe-area-context"; + target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; + targetProxy = 13DED3B15C4599CF6C10EF16EBCE12B2 /* PBXContainerItemProxy */; }; - 1D0F672381ABCABA14B8AF6E0488FD86 /* PBXTargetDependency */ = { + 1CA17D54A05A31E8897AA24BD58213FC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = B38FB333782EF76F150C8C7CA582A8EF /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 9DADAD2C725CD30150F8EA261622F635 /* PBXContainerItemProxy */; }; - 1D808741F89D99577DE455C3A703774A /* PBXTargetDependency */ = { + 1CB5826B04A12E8E43187A497C73FA8E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = A473FE384ECC0A5305C9C74DC4AA4FE5 /* PBXContainerItemProxy */; + name = Folly; + target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; + targetProxy = B4E7AA2F388BF06D09134ABA91287970 /* PBXContainerItemProxy */; }; - 1DA9B856C82A0C292A5181C74F02CBF3 /* PBXTargetDependency */ = { + 1D8DFACA8845473F4E03DEC9E9F8480B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 642361D0ADF645370385D06B396110ED /* PBXContainerItemProxy */; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = EFB92E0669EEF7479DE9848F2182CA33 /* PBXContainerItemProxy */; }; 1DF8472826EA8CB4E129A9BAD49CD435 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -23990,23 +23877,11 @@ target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; targetProxy = 1EECCDC5376D77D4DC29D8ACA3551B3F /* PBXContainerItemProxy */; }; - 1E4E14FB42789553798BE7BB31687C73 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = 839AF7ADA9594F89244CF78223DBD467 /* PBXContainerItemProxy */; - }; - 1E7E417DEE0745A76EF13814A9D61FB6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = 4F982604C49A2BD0F1E05AA077E90EEC /* PBXContainerItemProxy */; - }; - 1E8526572D3A1DB262CB13E3BBDA9266 /* PBXTargetDependency */ = { + 1E5B1E98E09A103FE64E70EF814A6456 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = 1D95D863811FBD1B356071611606D1D3 /* PBXContainerItemProxy */; + name = CocoaLibEvent; + target = D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */; + targetProxy = 09058C4773C962F25A99A05A20686EC8 /* PBXContainerItemProxy */; }; 1E86F846CC0FF76E323FC68CD12C6316 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24014,29 +23889,41 @@ target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; targetProxy = A86A3721252494F286B714B8A88F95BA /* PBXContainerItemProxy */; }; - 1FF7E39645381C9968C5357D47649543 /* PBXTargetDependency */ = { + 1FF17C509513FD186944F508B2689787 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Flipper; - target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; - targetProxy = 1227D1FB7E27665C424F0F15E124E59E /* PBXContainerItemProxy */; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = 2CB43F268A1853EB13305DBF0FB147FA /* PBXContainerItemProxy */; }; - 234022E135394B7FCF6E6298EC490F6B /* PBXTargetDependency */ = { + 22465B1BFEA40FCCF23C11694186A1E4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = 244E5D6DEF2503D7C675692C46AD761A /* PBXContainerItemProxy */; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = EC7697094172CB627368A3F7E519B0D3 /* PBXContainerItemProxy */; }; - 2464E1F41141314B407C8D7CB5EA73A2 /* PBXTargetDependency */ = { + 2388C8E83A81A828CDFB5B57EDD657A9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 3AEF996ACD3624F5D0525CCA0F787201 /* PBXContainerItemProxy */; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = A0621A2B42E0D2DFBF1626FAC54A7E95 /* PBXContainerItemProxy */; }; - 2495E19E71AD431C6D6A7406BD519772 /* PBXTargetDependency */ = { + 23E2E116139BABBDC85AC79FC129358B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = 3D1BF08E2D556F98377224E12140D456 /* PBXContainerItemProxy */; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = 69A63A820F50153817D04A50BDC03272 /* PBXContainerItemProxy */; + }; + 23FA680CF155F2C058D19A919B398B6D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 6872644DF7C4A17AB5193829D2794A82 /* PBXContainerItemProxy */; + }; + 243BCC2172EACF4D93BD84AE1BE058B4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXWebBrowser; + target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; + targetProxy = C735692ADAB6141B68DDC31A6BFFB6AF /* PBXContainerItemProxy */; }; 24B55147C941BE9797F6BC794F57308C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24062,41 +23949,17 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 113CDDB809E5888DDC4ACE47ACB7FEB3 /* PBXContainerItemProxy */; }; - 2661C4455A3B98F106296FCCC1D7B1F0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = 5825B399C704E26C1BCB6B61F19FDB71 /* PBXContainerItemProxy */; - }; - 2686620A84378B632A98335FA51A2278 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = 7D209FDD21AC8016C90C101B929B5426 /* PBXContainerItemProxy */; - }; - 26892CDA0E8A3E862D89CD1B8CC505F7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-RSocket"; - target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; - targetProxy = 30EC7A400C70E10F3722731C54F15542 /* PBXContainerItemProxy */; - }; - 272D59F6FB5CBDFBD154E32B82D9DCBE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNAudio; - target = 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */; - targetProxy = 7D7E343C7C927F27F36C93F45E00971B /* PBXContainerItemProxy */; - }; - 27B99C753AA01B55FA4B2ECDF5175607 /* PBXTargetDependency */ = { + 26BAD723D62823405CC263625B1BC5CE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXConstants; - target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; - targetProxy = 6F7F04555C3F3B75491B971CAC243E4E /* PBXContainerItemProxy */; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = 6782FA854213AADBCC13DEDEE0785732 /* PBXContainerItemProxy */; }; - 27F4759EE12E02E87B6E75A63BBA13CC /* PBXTargetDependency */ = { + 27C6B9F823E69C42FF118BE1D336965F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; - targetProxy = F47B5413B8735C1D7011155D11D69E4F /* PBXContainerItemProxy */; + name = "Flipper-DoubleConversion"; + target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; + targetProxy = 919C5B44CB96FD514CAA4B01D32F84C6 /* PBXContainerItemProxy */; }; 2925383A3851E8CB0EB2C4380F4B3D13 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24104,11 +23967,11 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = A948FF4AC90480FCBFC7BBA8916F351F /* PBXContainerItemProxy */; }; - 2A23B5D4A478FA61F50FACDCF5DD6245 /* PBXTargetDependency */ = { + 2A201BFD18E3EB12F2CD1ECD7C570B7D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = 3612DC2F5B92A76BED684DFEB53F5156 /* PBXContainerItemProxy */; + name = RNCMaskedView; + target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; + targetProxy = BA41ACE5BAB5838BDF3B2E29120DFF20 /* PBXContainerItemProxy */; }; 2ADC78EE47A1B88A86148BD4DAF07642 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24122,12 +23985,6 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = 9D5A278B1D609214380E444D1D5DFFEE /* PBXContainerItemProxy */; }; - 2BE71C554BD1E77A0E4A9672F6278A73 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = 6E305EFA6CA49BC3193707CC134B410C /* PBXContainerItemProxy */; - }; 2C3AC2CEA8022D07044F7BA29590CA5A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -24152,53 +24009,65 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = D1B6676933B6091F594BD94DE1B18D11 /* PBXContainerItemProxy */; }; + 2DC024633A673DABFFD99EDDCA4E91A2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactNativeKeyboardInput; + target = 33B041E5D061336F88B875C8B86E45FB /* ReactNativeKeyboardInput */; + targetProxy = AD05FE5DFB550E1D7D69C8C37DC28186 /* PBXContainerItemProxy */; + }; + 2DEA716030712BB74FDEBE84F75032ED /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCameraInterface; + target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; + targetProxy = E981CDFE391D527326105F1383C2ECC9 /* PBXContainerItemProxy */; + }; 2DEC0DE01DA6493268B04579B21C8297 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Flipper-DoubleConversion"; target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; targetProxy = 9E534D42CEE0BAE16AFBC5CDD1AE05CE /* PBXContainerItemProxy */; }; - 2EB9B72457A4CC9287633CC0B1D7864F /* PBXTargetDependency */ = { + 2DF2163F70500900539C00E8BA5887F8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = 4CE4C00F0CB7FF9472D6B23967581F2A /* PBXContainerItemProxy */; + name = "Flipper-Glog"; + target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; + targetProxy = D5CB33F704AF988E058AD3F63E0192B1 /* PBXContainerItemProxy */; }; - 303A329EFE63F98C76E1F88C1909DC69 /* PBXTargetDependency */ = { + 2EC4893F8C84EAD0D53615FC1A7AE21C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = F56EBC18CB64EE0482444624DFEC06A2 /* PBXContainerItemProxy */; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = B08A8724879997615F03A6A5ABBE7918 /* PBXContainerItemProxy */; }; - 3152722E87FC29CE2F09059093E805D7 /* PBXTargetDependency */ = { + 2F381C15596A063B61CFD861C24D3525 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-RSocket"; - target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; - targetProxy = 286C7DA34EBE9F8A3EC10424B36A30C8 /* PBXContainerItemProxy */; + name = UMAppLoader; + target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; + targetProxy = 52D7312886D16C191A69BD562E7FBC21 /* PBXContainerItemProxy */; }; - 320675A0BC320406F4A222365B3553A3 /* PBXTargetDependency */ = { + 30390DDFB5C828BF558D09FA32DB460A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNAudio; - target = 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */; - targetProxy = 721922D52B0FCC4904CB6A9DC5B0F513 /* PBXContainerItemProxy */; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = 87FA06E532CFAF4310731BCD488B28F6 /* PBXContainerItemProxy */; }; - 329CF45A699037A17BC01FC9E8C506FF /* PBXTargetDependency */ = { + 303A329EFE63F98C76E1F88C1909DC69 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXPermissions; - target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; - targetProxy = 5C716264B10214580C06B36EBC231789 /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = F56EBC18CB64EE0482444624DFEC06A2 /* PBXContainerItemProxy */; }; - 330760ABF1FF003750D5C1F387F87E58 /* PBXTargetDependency */ = { + 30E0C08F69B04211E0BD7C33C199BF84 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXHaptics; - target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; - targetProxy = 686BC32D1C6CCC457FE2565F332BABCE /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = B9C424064E69761B7F38172BC6C7D618 /* PBXContainerItemProxy */; }; - 33142750F2828C0A066D79FCC14B8406 /* PBXTargetDependency */ = { + 3152722E87FC29CE2F09059093E805D7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = 5915E8006D75569F464804839856A9C5 /* PBXContainerItemProxy */; + name = "Flipper-RSocket"; + target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; + targetProxy = 286C7DA34EBE9F8A3EC10424B36A30C8 /* PBXContainerItemProxy */; }; 33F5B6A58855F2016450517E03B74C4E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24206,11 +24075,23 @@ target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; targetProxy = D466E30F6A7C6BA97286EAE8358F3B63 /* PBXContainerItemProxy */; }; - 34DF935B2296AFACAF0A2493B61A39C1 /* PBXTargetDependency */ = { + 34CBF500165E3DDBBD108E94FA1931AC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = BE0DA9D5A9956AE2715C11C1AE7AC86F /* PBXContainerItemProxy */; + name = Flipper; + target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; + targetProxy = 49B2FB183C0363437E4A08C1B4011FD4 /* PBXContainerItemProxy */; + }; + 356783A7DE0738D9070EB45EE8631BD4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 85526C6F5E52C7506C5ADA9B14A322F7 /* PBXContainerItemProxy */; + }; + 359197ADD469980F890B330440AFE60B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = A46C12B91C09C3659509E0A2006EBDEB /* PBXContainerItemProxy */; }; 362889F28F9982FC90A7E35964352495 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24230,11 +24111,35 @@ target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; targetProxy = AEC8DF6D4B91F6B6CAA5DFE9C52B76F8 /* PBXContainerItemProxy */; }; - 38390BDAEE3FE9DC30AD97E2E88927EE /* PBXTargetDependency */ = { + 373CE6C99110F1B1CA384E0497636940 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = B42A7A869D992BA4DB3CF5080446DFBF /* PBXContainerItemProxy */; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = 0D5508EDDBB014C6F80887B386B684C8 /* PBXContainerItemProxy */; + }; + 374285A82FA0173040C7329350D24F91 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNCMaskedView; + target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; + targetProxy = A75F817332E5014998BB41D5D396D4DA /* PBXContainerItemProxy */; + }; + 374354A29D235242BAA918540576D7B1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = B3AC97C4C55FC0B1199602F331051454 /* PBXContainerItemProxy */; + }; + 377C071CB4967300677E6EBCB5412742 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = F9A9360399852B73ACBCD5D6F63BF901 /* PBXContainerItemProxy */; + }; + 38B000D474353FBF6F34AF6F7191B42E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = 32DB7DF4E89B48C00B28388F70F51EEA /* PBXContainerItemProxy */; }; 38C850DC298E7FC761A0A9EEEE745754 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24242,17 +24147,17 @@ target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; targetProxy = 884D4E9F643132CA763055003CE8B51B /* PBXContainerItemProxy */; }; - 397071BA6514A7CD48CCDDA877FB07F4 /* PBXTargetDependency */ = { + 3B59187EE3D81397C5FC2B1306827049 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = 61878CFB3F586AE186108990A431EB64 /* PBXContainerItemProxy */; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = E8A3F4167B676EA70EDCB3CF63F5AE5A /* PBXContainerItemProxy */; }; - 39F001A92EE94E235A3B498555D0DD8D /* PBXTargetDependency */ = { + 3BC07D2F2FC01F9FC9255E284AF2EB85 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 7581ED2D9DC49A86B186710998456FB7 /* PBXContainerItemProxy */; + name = EXPermissions; + target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; + targetProxy = 8C081151D12C5FE077D585FB660C38C5 /* PBXContainerItemProxy */; }; 3BDD26DF1C76A2717767412BFEFD633E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24260,30 +24165,12 @@ target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = C6318E60C9E68C5F678F7ADDF357AED8 /* PBXContainerItemProxy */; }; - 3C2D490B5C0EDC95185C0D781BAB5700 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 96F661024B66FE3559C7774BB419C99D /* PBXContainerItemProxy */; - }; - 3C7549ED94DFEB8133B352FC7C69A9AC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = D525D6ACA7B1B78DD462D10E15FE1F5F /* PBXContainerItemProxy */; - }; 3C84792B8074AA29FD5BC06A64A9AB0F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = C9A96638BA1FF6B3D2046312346C0E9B /* PBXContainerItemProxy */; }; - 3C8F4FBDD55CA093B158475D9C037317 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = A669E7A301270A2DDAF00B85D781585A /* PBXContainerItemProxy */; - }; 3CDE7CA6B5E8DC488FDB8E4812131AE4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMPermissionsInterface; @@ -24302,11 +24189,11 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = B016F73616BD062B510476739F12C437 /* PBXContainerItemProxy */; }; - 3FB867C7ACE403BCB9BE1D69DDE8FF46 /* PBXTargetDependency */ = { + 3DBF56FB1CB800D39EEF49487CA292AB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNUserDefaults; - target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; - targetProxy = AA16D97646B953B5DE25C0F786EB4D0B /* PBXContainerItemProxy */; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = 493DD40A6D9A3B3022736253673CD456 /* PBXContainerItemProxy */; }; 408548483766B59D87684AF72638B1FE /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24314,17 +24201,23 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = F13412B1EC8D97A0134A577EFE4FFBFA /* PBXContainerItemProxy */; }; - 40E82F903B3591E3944E48BB47492D3B /* PBXTargetDependency */ = { + 40E4113849241146126C21AA6CBD28C2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 262124D87F940F49B36C9748D58C48D8 /* PBXContainerItemProxy */; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = D6DDD54731A3E64A5F61409BB3B92C3E /* PBXContainerItemProxy */; }; - 41098DF369169B1BE7D66C994839FB03 /* PBXTargetDependency */ = { + 40E453C27467A8FCBDAFDF8A2D2B21B2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 75A14AF211679514F264E7F0DF803B07 /* PBXContainerItemProxy */; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = 09499C072D69A77822477918EB1FAC3F /* PBXContainerItemProxy */; + }; + 41017D024E5B9F8B1E342B2E5F91522E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = 9B4F64F9C1AAB77C8B1DB313744B3990 /* PBXContainerItemProxy */; }; 41693E96081D863AA597AB8B46CF3F00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24350,11 +24243,23 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = B40AA08577F30A00FD2A25A08341964A /* PBXContainerItemProxy */; }; - 42595CA16F59B66578B3C66B255B556A /* PBXTargetDependency */ = { + 4241FCD026EFCE41E6B90FC0A300B83D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMAppLoader; - target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; - targetProxy = 17F8EC1275B4E6633AD6431F19A9E1DD /* PBXContainerItemProxy */; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = 21EE8DE14B6C57FB03272AF15235EE11 /* PBXContainerItemProxy */; + }; + 43AE24DB5271C3B3811E2A9CB1731104 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = 1A7C443E2DE4659BAC334D2616271AF9 /* PBXContainerItemProxy */; + }; + 43CA9F2BB6DC13775F3B69F4203FD01B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = 68E4772B5A28F6802F7CC91472F2E828 /* PBXContainerItemProxy */; }; 43E169AEDF03426697FA963504C2AB59 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24362,17 +24267,17 @@ target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; targetProxy = 35A10B7FC1F84462218C13545EB7FB88 /* PBXContainerItemProxy */; }; - 456E62FF2F53B174278947CA23D27724 /* PBXTargetDependency */ = { + 4498397DB6DAD023DA46CFD20315ACB6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = 4CC9310248550CE20442255A925333A5 /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 50114E647EDB2937CDAA4B75317200B7 /* PBXContainerItemProxy */; }; - 45C3D06E0566EC98EC6635E85AD5616C /* PBXTargetDependency */ = { + 45748241840CB5EFDF6281A09683010A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = 19F7171BD534372A0EFDBA36CC5BA297 /* PBXContainerItemProxy */; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = A00FC153514218F035B7E8B40A0F61AB /* PBXContainerItemProxy */; }; 45E6BC946DC4674AE9C022050299B84F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24380,17 +24285,23 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = C266DDB269EE618DE8FA720583C9C81B /* PBXContainerItemProxy */; }; - 46E0EEB8B76A0842E5A957A7F4828804 /* PBXTargetDependency */ = { + 4747EF2FA050D6C00F50DECBE8ECAE68 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-safe-area-context"; - target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; - targetProxy = 666A5F249A3AA80B1D46125C42872342 /* PBXContainerItemProxy */; + name = EXImageLoader; + target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; + targetProxy = 0B1936A65C759365DACA7DBFC78E4E31 /* PBXContainerItemProxy */; }; - 47D510C0F7AF24736928849D37BF1816 /* PBXTargetDependency */ = { + 47762E2DE1C26A96110123B1C0906B1F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = CocoaLibEvent; - target = D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */; - targetProxy = 01C8A4087E0DCFE7278E113AD6885B61 /* PBXContainerItemProxy */; + name = EXAV; + target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; + targetProxy = B4827814E75522E683C0013EAA71A252 /* PBXContainerItemProxy */; + }; + 47EA6E912DBC63EFEB6D3016A177A745 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFirebase; + target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; + targetProxy = E4DE17D7388756F49645BD57B4F0E980 /* PBXContainerItemProxy */; }; 48076A1E02117E39C56513D1F085E022 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24398,30 +24309,6 @@ target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; targetProxy = BFD1349A73D002FF8BADA635DB23EA34 /* PBXContainerItemProxy */; }; - 483DFA135410BE255DDDCF0012247A93 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = 6D67EFEBD531F532E3038CAA6D274C44 /* PBXContainerItemProxy */; - }; - 49017C29D99310C025F9A400C964F43B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = 221CAE049F4AB86CB031AC422F732424 /* PBXContainerItemProxy */; - }; - 4930CE43E4A8FD633A3FBBEE83D5075B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXPermissions; - target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; - targetProxy = 6C268D987CA614E5B63919CDA4EA447F /* PBXContainerItemProxy */; - }; - 4990A38856112896F4574A8B84BE6864 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = 9A9AF991BD38A26E4991C70E12B3E338 /* PBXContainerItemProxy */; - }; 49AC31079F8A8A1CB4A6E1E09B034C7F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; @@ -24434,41 +24321,23 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 2539C386890D7883A108FF4E3829524A /* PBXContainerItemProxy */; }; - 49E0EF84E9DA70960BCF7BD27AB6F679 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNCAsyncStorage; - target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; - targetProxy = BE237984A2200A73DBA16ED3579E8BEE /* PBXContainerItemProxy */; - }; 49FF0E01B2E6C594A989F60389EABF30 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = CBBD408BB7D70EE08646E3F8BD770069 /* PBXContainerItemProxy */; }; - 4AF7FAE8B9CCA84773CA059D010560C8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = AC9C0601DAAAEE96A7829DE927A63A35 /* PBXContainerItemProxy */; - }; - 4B0FF2D5A604BF1550DE12DBF041D850 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-safe-area-context"; - target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; - targetProxy = C1D3AEE4D2FEA05EBDCE3A43E5C08707 /* PBXContainerItemProxy */; - }; 4B92E472400E59291AA9A2C4B7798BF1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = C6FB783E0F0B781F24F3E63FACA0E42A /* PBXContainerItemProxy */; }; - 4CE61830D6DD438881DF56A3BC095D90 /* PBXTargetDependency */ = { + 4CC7017930D3EC7CCB5BA504C11180B9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = 6E717D4CFDB10347250AECA14017ACD3 /* PBXContainerItemProxy */; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 8C5B5CD9BB0D40B73548BCEC1730C79E /* PBXContainerItemProxy */; }; 4CF06059EAB58EC36AFC1EB383725395 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24482,17 +24351,11 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = E2A7D57EF8EAB020233EDC68A9ECF68D /* PBXContainerItemProxy */; }; - 4DFF612BF024BC7E5EDE7088A4FCACFE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 49CECD17031457623F27667B19749B43 /* PBXContainerItemProxy */; - }; - 4E3BF7DADEA7AC81D27643FCCE2B8613 /* PBXTargetDependency */ = { + 4D869BD3647193DE51BF7CDEF0990FBE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = C6C64E1E52A2544CA03B7973DFC5F635 /* PBXContainerItemProxy */; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = 9FDA086596C2F4F04BABDB99309DD8B2 /* PBXContainerItemProxy */; }; 4E7A54EBDEED5E1498EB0028BFC71740 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24506,11 +24369,11 @@ target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = 1202CD0D4E7F78CCFBB9BAF05625B5D2 /* PBXContainerItemProxy */; }; - 4F0FA856B08570E445FFD430E94EECB8 /* PBXTargetDependency */ = { + 4F7485CDEDE10FE09724BE3A3BF79524 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXImageLoader; - target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; - targetProxy = 825E6B70DF984A80754D23A4950D7438 /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = D7CE17DB715435A93E1DCB1B219F0D52 /* PBXContainerItemProxy */; }; 4F7FBAA168FB752BC980C4CB37D4732D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24524,35 +24387,17 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 0DBDC3964B7166E1CC00C4929706C8F0 /* PBXContainerItemProxy */; }; - 5069B82DB07E8B7E1270D95B291C92CD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = 012B6E31000B9C7B50203C445166E8D0 /* PBXContainerItemProxy */; - }; - 50BF44DAB73C9ACF2501FE226A8EEC69 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = 1CADAE3BD5BDEE1695D2D3E4635CC7E0 /* PBXContainerItemProxy */; - }; - 51405A95713D4690E84685C10829267F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CocoaAsyncSocket; - target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; - targetProxy = DC53500068069FA76A13081AFB08E2CF /* PBXContainerItemProxy */; - }; - 518792C2E63BB97915D6B4DB7403B1C4 /* PBXTargetDependency */ = { + 50095666DF0D6B71936BD9191DBA9CDC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 2E3FCD4E164C20DF6149425A23C418C9 /* PBXContainerItemProxy */; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = 9E1B41910A1E3EA9033D26E0732E2EBE /* PBXContainerItemProxy */; }; - 519068D8A02FB0DAA9F01CFC2125A274 /* PBXTargetDependency */ = { + 500C76064682DFAA49E728C8D36933D7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; - targetProxy = B765F6580593CA66972B16001E901AEE /* PBXContainerItemProxy */; + name = UMCameraInterface; + target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; + targetProxy = 651DA1781930146F96CBE024EC221FCF /* PBXContainerItemProxy */; }; 524568FE4D02E31C1BD2A7E91C5DB04B /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24560,29 +24405,17 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 14BB3DAC17135FD28DBB5B1361FD079A /* PBXContainerItemProxy */; }; - 525D54EAB1308E4F2B0DCB638C5E6098 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = F5AB0832E10BD6B650CDAA9D6700A955 /* PBXContainerItemProxy */; - }; 529A28997E74D7B9F72AEE72F30482FB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBReactNativeSpec; target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 531AEE2AD8DFFD598D97E440C81B6FA9 /* PBXContainerItemProxy */; }; - 52AE874F5F477E2B2CB0AB3B794D7A69 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXLocalAuthentication; - target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; - targetProxy = 6E8DE6BDF28E1F509FAEFEBD2EF06C79 /* PBXContainerItemProxy */; - }; - 52FC53E3A66C2EADAF62CDE9438EA18B /* PBXTargetDependency */ = { + 53AF20394D1B76CC742E391A07E0FA91 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = 5FF7C26F074B004B268EDBE2CE7D7D31 /* PBXContainerItemProxy */; + name = FlipperKit; + target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; + targetProxy = AFF707C40035F46A8334DFC9783BAD29 /* PBXContainerItemProxy */; }; 53E8383D1F4AA7480989633C67AD27FE /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24590,23 +24423,29 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 01C9B473BC5FF516A57C61FAAAD8049F /* PBXContainerItemProxy */; }; - 54F044FCE552049B561517309D00B729 /* PBXTargetDependency */ = { + 548A853EAA66CC4F1E50ED3180E79C3A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "OpenSSL-Universal"; - target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = E8D57349E6188E7731DBA51BCC24F3B0 /* PBXContainerItemProxy */; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = F54C6CB3A06BB759FDCD6285308EBC5D /* PBXContainerItemProxy */; }; - 5571DE7ABC350C535A922F4BFA7A9EFA /* PBXTargetDependency */ = { + 5502F1DB22BB510A2BAADC0DD92CD627 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = FB6EA7F53397D6BAA834F970A1CFE9BF /* PBXContainerItemProxy */; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = 2D66320257EB31B3981906944FD54CF1 /* PBXContainerItemProxy */; }; - 55EFFEB45B2919A33FBEF4D4EDD60B21 /* PBXTargetDependency */ = { + 55A4A8059918B3700808521493056DFA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = F0270D4E6F206819F8BB666203201160 /* PBXContainerItemProxy */; + name = ReactNativeKeyboardTrackingView; + target = 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */; + targetProxy = AC84F99FFCDD55ED1AF1592DD12E2DEF /* PBXContainerItemProxy */; + }; + 560E839444B3FE888C630A7D37B4CC3D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = 18833468301DAF1070D05ABDB4F2EA2E /* PBXContainerItemProxy */; }; 57208D0D75A784D7D6459DDE64924E2A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24620,17 +24459,29 @@ target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; targetProxy = 0ABA41EE7B3250B41F236C99879E22DF /* PBXContainerItemProxy */; }; - 57A124DB7CAE1B5F54892658C0742183 /* PBXTargetDependency */ = { + 57A0D1BE5EDB82FF8A5E6E219DA67F04 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = E548EF4E15DC9B249703DF7C569CE90B /* PBXContainerItemProxy */; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = 29B93056AB7ADFEA987EE975A4C94CDC /* PBXContainerItemProxy */; }; - 58D1B0168039D97F1EB2BC4727712339 /* PBXTargetDependency */ = { + 57C99AF43E89AE0F99C57DEEEE13FE40 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeKeyboardTrackingView; - target = 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */; - targetProxy = 137C2EA56581466C052C35663441B214 /* PBXContainerItemProxy */; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = B77AF950DFD810A712CADAA03D959E74 /* PBXContainerItemProxy */; + }; + 5885AB798957849A47D3751BFDD24056 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFaceDetectorInterface; + target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; + targetProxy = EA26F9F28F30E44D919F6383ABA51263 /* PBXContainerItemProxy */; + }; + 5888E6770C2280113387113BC0AF079D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Fabric; + target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; + targetProxy = EA6AC0810303CFCFB243AAA16854B53B /* PBXContainerItemProxy */; }; 58EB016622ABE5A31A364D8F7F8E67EB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24644,17 +24495,35 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 592671C6C3F74111AF89BE688E45B730 /* PBXContainerItemProxy */; }; - 5BB2657AF85CE68C7A23FF14EFB2A99A /* PBXTargetDependency */ = { + 5949A77C1D9D4B8629190D4341C4FD25 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-Folly"; - target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = 0CE11FC0203744D7E107AE16B6A8C7CC /* PBXContainerItemProxy */; + name = EXLocalAuthentication; + target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; + targetProxy = 8AB84C7F5DF090ABC99AA77E573DFA9A /* PBXContainerItemProxy */; + }; + 5A458BD8F95AE868894AA67EEB85E4AF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 0FA749002CDCBB778D498F37FA9E1044 /* PBXContainerItemProxy */; + }; + 5A5A921EE7B2C7097C980D79905ABB2F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTLinking"; + target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; + targetProxy = 360C0613EA580B6608B7C51B33877F31 /* PBXContainerItemProxy */; + }; + 5B21DC12A841B191C6D4646E48E903E6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = 1F6BB76A4007F77FE050A4031B538B3F /* PBXContainerItemProxy */; }; - 5BF7C0803307D305610C95274B48149A /* PBXTargetDependency */ = { + 5B4B2A200EA782E7A466ECDEA925E0C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = FD34C96679BF0F4BC88604C97BC1A5A3 /* PBXContainerItemProxy */; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = DE86C43E2A30CA89BC81FB250A0B8928 /* PBXContainerItemProxy */; }; 5E5771F5CD476657DAB39DF1A27D5193 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24662,18 +24531,6 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = D5A54583BF0127DD21B8A44510CBB36D /* PBXContainerItemProxy */; }; - 5F728FE463B42A417904E99B4B6BD3DE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 8A6FF4D0F60D1A1737F944D831B6F746 /* PBXContainerItemProxy */; - }; - 5F7D1D33AF06B0AB57D9A82921413A97 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-DoubleConversion"; - target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; - targetProxy = 8905D9550652F9ACC7DC0827EE1C2607 /* PBXContainerItemProxy */; - }; 5FD0C4F9D97C88847DCFF62E51086938 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -24692,23 +24549,17 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 3002EB76A6ED5F1FB34B5AB5DC3C2068 /* PBXContainerItemProxy */; }; - 6084CF4BD4350CD45F1E2F3D88CC1485 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = 83D2618D2C50A897754D642E84FF5923 /* PBXContainerItemProxy */; - }; - 61358BB1942559685B9DE86E6B495E4C /* PBXTargetDependency */ = { + 61AC384D9CDC163479F549007478072D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = EF935A0094EFA2395E9453F7D9C75DF4 /* PBXContainerItemProxy */; + name = "Flipper-Folly"; + target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; + targetProxy = 166BB0AE37B589FA0BC062DCFDF66490 /* PBXContainerItemProxy */; }; - 6230B0983C4C18DDB67BEA949F8311B1 /* PBXTargetDependency */ = { + 62A1B54E30ADE087FBA98DD2472F559B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = FB4B9BDA30D2FCA6AC90A933C6936801 /* PBXContainerItemProxy */; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = 6F114F5156AAB293844B1F2ECA5D8598 /* PBXContainerItemProxy */; }; 62D1D88A1695760F638E66025F47B496 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24716,11 +24567,17 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = CAAFA5AEF75D91014E0A847946B5CD1B /* PBXContainerItemProxy */; }; - 62FD7BCCFF8C5117F53472A87638369E /* PBXTargetDependency */ = { + 636818316623A92F7F44152DF7DBCA37 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; - targetProxy = A897D0E88033885E5D7E049FBA306557 /* PBXContainerItemProxy */; + name = EXHaptics; + target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; + targetProxy = 1FE84BBFE3187BF12BB6935EA5534851 /* PBXContainerItemProxy */; + }; + 639E3147472D13D61754D1D1946BEF88 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Crashlytics; + target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; + targetProxy = C880E3ECF30FF8F42D0CEE21BC0848B5 /* PBXContainerItemProxy */; }; 6451B8973D840A0A374086225070784F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24734,17 +24591,11 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = 55B00EF6EA1E3BAC13075885EAE12B7B /* PBXContainerItemProxy */; }; - 649F18470A7C878AB0BDFA575A005950 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = F31739D22AB136C7DEEBCAFFFCE1CF90 /* PBXContainerItemProxy */; - }; - 64B6717E3167311CB462AD731F264DBE /* PBXTargetDependency */ = { + 651436EC07FCBA17B9BB032118D7A2E1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCameraInterface; - target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; - targetProxy = 3507BD48B392827B556CFC338ED9DE2C /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 46E7505632F5492D20D4900E9A06F815 /* PBXContainerItemProxy */; }; 659CE20F5F8A4FDAFAC33456B26AD2CC /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24752,12 +24603,6 @@ target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; targetProxy = 925B94B36D67D27AF51664D1645EC2F7 /* PBXContainerItemProxy */; }; - 661CAD3F25DC2CA9EFD14C684924E1EA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNCMaskedView; - target = 1A0445474DA11CA659C4BCC5AB64B1BF /* RNCMaskedView */; - targetProxy = D6092560EDE137614C92BED34B9AE2FF /* PBXContainerItemProxy */; - }; 6623FDBE6380766AFECCE4ED0A17EF8A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMFontInterface; @@ -24770,17 +24615,23 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = CAD9ABFE1D8247DFCA7C5B5DC70C1C94 /* PBXContainerItemProxy */; }; + 68885BB0309F943B5784E8307AF73692 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = B71A73EB0EF2BF6826D0A0A060A095C0 /* PBXContainerItemProxy */; + }; 68FB2B8F06277465B5375A45215CC9BB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = libwebp; target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; targetProxy = A7E5D397C11338DEED5E896EF959836C /* PBXContainerItemProxy */; }; - 6A31CDDFB5860F565319A6AFCEB4EBDE /* PBXTargetDependency */ = { + 69C348B6C341A905B110F33E39F0E348 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = 6736F72960F6002FF4A3CF65915D000E /* PBXContainerItemProxy */; + name = RSKImageCropper; + target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; + targetProxy = A581FDE13125B91CE0406372CAD495BE /* PBXContainerItemProxy */; }; 6A6C1E99508C762B0559F6CE02D79C21 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24788,29 +24639,23 @@ target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; targetProxy = CBD51A45D388152438D56522530F9232 /* PBXContainerItemProxy */; }; - 6B3C0C3F59B0AE65CF177BE1F9AF9C52 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = 47C15B465F430F5AA1F87F556D8BC4F0 /* PBXContainerItemProxy */; - }; - 6CCCBB8CD21984D6F2864E83416C1AC6 /* PBXTargetDependency */ = { + 6B8CFB46FC35E3504388B23D0ED98E0B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-Glog"; - target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; - targetProxy = 31B6D878932415CEEFE8C8A835FF17BE /* PBXContainerItemProxy */; + name = EXKeepAwake; + target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; + targetProxy = 360866ECA89FF8B1D73E46A62E529454 /* PBXContainerItemProxy */; }; - 6DD98A9F9A6FBCE28A8074E5CBBA6E38 /* PBXTargetDependency */ = { + 6BDDFCE7C34954B5B097D6D0327CAADC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; - targetProxy = 18A8A853FDBA952676258AF9A219E053 /* PBXContainerItemProxy */; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = F632C19CDFE37BDDF3B623C03A8764EB /* PBXContainerItemProxy */; }; - 6E92170EDB90C122F4EB8D032135E3B7 /* PBXTargetDependency */ = { + 6C9D146006B1762A0C77BD5BA88019EC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 547A97FCEF3B5F496F346B56B569B1FC /* PBXContainerItemProxy */; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = DE29C289C18ADC9DE56FAA864C4CB100 /* PBXContainerItemProxy */; }; 6F06AF75AD0361C1DB54FE0842FB5A20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24818,11 +24663,11 @@ target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; targetProxy = E679399E70A1302F64F34F5147A0D753 /* PBXContainerItemProxy */; }; - 6F5A4A3131069A973E8438D53B18B0A2 /* PBXTargetDependency */ = { + 6F2F194E1634E6E83F3B14B2552BD8BE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = 705FABF8970AA0635666C3BFDA63D7CB /* PBXContainerItemProxy */; + name = UMSensorsInterface; + target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; + targetProxy = BD75F4EFEA19EED1D0AAC20C98EE7712 /* PBXContainerItemProxy */; }; 7074AB64938AFE46C3B792B65FC0AE8B /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24830,17 +24675,11 @@ target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; targetProxy = 935BBCA2BD6E481D46FA01E32BFEF1E3 /* PBXContainerItemProxy */; }; - 71886C7581D00EAEE8ECD4832F5A5219 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = BB161EB6C6BB407192EB7CD70EAA2AF3 /* PBXContainerItemProxy */; - }; - 71AE9F32C9F242FA18914121899A0934 /* PBXTargetDependency */ = { + 71400CEF13D5590F685BDAEB582FE331 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXLocalAuthentication; - target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; - targetProxy = 3CAD605631D93011CB127DF26BB5855F /* PBXContainerItemProxy */; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = F4FB7B20C0A6964D1736AD06470E3990 /* PBXContainerItemProxy */; }; 7219E71D87295064D1DD48DB1B8580A3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24848,35 +24687,23 @@ target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = 4EC2A48991B69891116F09993FBAC1BC /* PBXContainerItemProxy */; }; - 72B059030824F625CF2C5364414F81B4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 914920FE125E08820136442E6C40FF7E /* PBXContainerItemProxy */; - }; - 72F5C1350AEEA8284BC93C2DDDB0B589 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-PeerTalk"; - target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; - targetProxy = 3D08869D2D5C89ED73ACFB6FD5621227 /* PBXContainerItemProxy */; - }; - 732A0A42B0730E2C60B9956F9ABA1599 /* PBXTargetDependency */ = { + 721BCD02BAA2BD9CBABA5A12239DC828 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = 685E92EDBC430330C804A55B8F8878B3 /* PBXContainerItemProxy */; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = 7E8FAAA37C4B768DCD827D0F00A146A8 /* PBXContainerItemProxy */; }; - 735109AEA79348BF23E13D0C78E70A17 /* PBXTargetDependency */ = { + 7280789B713880799057D32B9F81B83A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = C9CD3B03306F8775ACFF54CBE838C68E /* PBXContainerItemProxy */; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = 1B40B34EE1816BC0313A066CDD74ECBB /* PBXContainerItemProxy */; }; - 73EBF48372D9432E6F5F441DE385F3C6 /* PBXTargetDependency */ = { + 72B059030824F625CF2C5364414F81B4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = 2CE32DBC2709206E2054AE28B010E175 /* PBXContainerItemProxy */; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 914920FE125E08820136442E6C40FF7E /* PBXContainerItemProxy */; }; 741686727E05FB8600BB0643B2B0AFED /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24884,11 +24711,17 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 1F6D1D516291934964CB96DF667AC71C /* PBXContainerItemProxy */; }; - 741BFC8D27BFB8D6F0F6EC626832BF47 /* PBXTargetDependency */ = { + 7448D0F24617D8F1543F17E630FBB895 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = D677AFC4CC2D97D3DDE846F41F92E216 /* PBXContainerItemProxy */; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = 98F46713659942DB73475BFB15D951A8 /* PBXContainerItemProxy */; + }; + 748493E0D85A6A0AE24DDD54DF268501 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = A3EFF8927F04351666F413BC0DCE8B46 /* PBXContainerItemProxy */; }; 74F58832B6EE859ACAC8329A38B23E43 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24896,23 +24729,23 @@ target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; targetProxy = 02884AC05BC4B650EBE6E310CA3916B7 /* PBXContainerItemProxy */; }; - 768A3F864614D7AD4F13E710C5BB6AAE /* PBXTargetDependency */ = { + 76CB6F30332BA31293535680057D1A82 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCoreDiagnosticsInterop; - target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; - targetProxy = F7E84F06FCDF6D783EAB427DD266F1C4 /* PBXContainerItemProxy */; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = D0E4A73293F3E7A7B48C578945225BA9 /* PBXContainerItemProxy */; }; - 7926087FCBB060DE439A27DE8132AC2C /* PBXTargetDependency */ = { + 77230814D3478BF41A5DF18BC9F9FD2A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 894B471BA7FD2341B3F517268F61BA1F /* PBXContainerItemProxy */; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = 5708A3455DCBA9A62042FCB37153DE97 /* PBXContainerItemProxy */; }; - 79FF7872A3B23C9047E5B5BE547BCB95 /* PBXTargetDependency */ = { + 793D2DCA768E7397DD52C5ECE7AE2786 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-Folly"; - target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; - targetProxy = E51C66421462312696F2D01BD169C9E3 /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = C95E2C5763A3E043AF1E65C97B4FB9A2 /* PBXContainerItemProxy */; }; 7A115CFBA518CCFA1088361489F7D53D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24920,6 +24753,18 @@ target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 7A89F7EA8C0CCE4C1799109D360F0F8D /* PBXContainerItemProxy */; }; + 7A4F321E6A3F063844B34BF003209E48 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 1250B13283DF6C827095574E8536A36A /* PBXContainerItemProxy */; + }; + 7AB3A9EF88C81F186E120E06068A5113 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = DAC3BDD0D671FD2004BE6BD478EF49D2 /* PBXContainerItemProxy */; + }; 7AEC0D15EF11C1415A94D769184AD812 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseAnalytics; @@ -24932,29 +24777,47 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 53E2A1BD19729C2293AB46582C686251 /* PBXContainerItemProxy */; }; + 7BE7322D313549722D5F63B55DC510C9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = BB4126C128EB1D0587D442D98AA35103 /* PBXContainerItemProxy */; + }; 7CDFAC77C9B2E078C4776F6D7DA9941C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMConstantsInterface; target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; targetProxy = 81B20C29D8DE0AECFEEA7BFC3548E125 /* PBXContainerItemProxy */; }; + 7D5C4018B62CF839E1DD0ABA00772DAD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Folly; + target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; + targetProxy = 4109B8AFEA1CA87565966C659194CE6F /* PBXContainerItemProxy */; + }; + 7D98B9D848A321F2AB7A2A8FDADF938D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = 0065B82346B0B7F7A3FF7835C266F541 /* PBXContainerItemProxy */; + }; 7DCE32D473F4F7CC77F17725D7C937C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 882BEE9E8FCF0A6BD665F01DFBEF822B /* PBXContainerItemProxy */; }; - 7F5A6007F31AF81CFD73CA5035A0BBFB /* PBXTargetDependency */ = { + 7E9CABE86CABD0E704F3FABF417F55C4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = 0DEF6E66DFC16CDC50C902C561CA5EA1 /* PBXContainerItemProxy */; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = 77965761592DD3250430BD1AABDE6601 /* PBXContainerItemProxy */; }; - 7F6B42B46257B4D23403DB945B90CC60 /* PBXTargetDependency */ = { + 7FE798CAFB90637325F600DE98C58101 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 9564EEBF40E15A31A8E7CC8D8C0E37D2 /* PBXContainerItemProxy */; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = 4B63642631923F106C622B73EF065A01 /* PBXContainerItemProxy */; }; 8006C1B350C45E4A3E439F4B4C5D9C26 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -24974,23 +24837,17 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 256A3233D39C474C08913C7F1FE396E2 /* PBXContainerItemProxy */; }; - 819E8683E2F3D43FDEA889B448A21031 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = D8D8C376BD01ACE11AF31C74BEFCF6C5 /* PBXContainerItemProxy */; - }; - 819F73185EEB6671557857BC0E1C20FB /* PBXTargetDependency */ = { + 820F6CE06E89681F768430B96360357A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = D7A33C551BF0BFCEE920C8B2119BF542 /* PBXContainerItemProxy */; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = 3B2807E3FE9D5DD5EEAEFA156B4D7EB5 /* PBXContainerItemProxy */; }; - 81B8ED507A06D43304E2C6E070880466 /* PBXTargetDependency */ = { + 8248634040F19865480CC2366104E884 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = A352A2546D195F5EAB5CFEAF573EE5A5 /* PBXContainerItemProxy */; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = 2A2EF3B4AF1656FA1D3310E5AA46B100 /* PBXContainerItemProxy */; }; 82877F99355D080CE20A36AE96108AFD /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25004,47 +24861,29 @@ target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; targetProxy = 729C920815C311E1D586861019E10612 /* PBXContainerItemProxy */; }; - 82ECBA7749774BDDB0C838B907DEE96B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 4AC169329774617BA6B8F3F614E8E2CE /* PBXContainerItemProxy */; - }; - 833A092EE2B9A35ABB9B8A9915F1643A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 0457AC86F2F2F169E373C29F0CB64E88 /* PBXContainerItemProxy */; - }; - 83B8950F268925F9D242A9E4D927FE11 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = C37E10135CA6C05B846F3506C7F16D61 /* PBXContainerItemProxy */; - }; - 842319D04AFA092803B83FAE65603E5A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-PeerTalk"; - target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; - targetProxy = FF88C51032D281BDEA5ACBD2E9CB8F18 /* PBXContainerItemProxy */; - }; - 847D01C123FB011E25BD45C42B73FEFF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = 35919A43D7796D975ADA32B79DAB5B88 /* PBXContainerItemProxy */; - }; 8484740BEE2FEF19B15C8D2BF292645F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 6C2F4A0DAC27B8CC1550B7060BBD3B66 /* PBXContainerItemProxy */; }; - 85A04A9630C52FED4292624CFE63C347 /* PBXTargetDependency */ = { + 84CDFABF9811573A51CB3FC7CAAA41FB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeKeyboardTrackingView; - target = 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */; - targetProxy = 1B81F8C0565FADEB45A711ED943895AD /* PBXContainerItemProxy */; + name = UMAppLoader; + target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; + targetProxy = 51F8A39EC9A10E1173E62CCDC73F4F97 /* PBXContainerItemProxy */; + }; + 84E9B512DE43F89735BBD39BC7FA4A41 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = 34BC66599A01B19CEC87174F9B6DA131 /* PBXContainerItemProxy */; + }; + 84FB88A13022BEF42C0C902477210CF8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = A1D6201F091A38966DE678E49A48CE90 /* PBXContainerItemProxy */; }; 864EE57537F47B11F5790BA3515F0120 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25052,11 +24891,11 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 734EDC79ECD7EB645E49FCFEECA93782 /* PBXContainerItemProxy */; }; - 86CB57084F4471E868260DE32116F916 /* PBXTargetDependency */ = { + 87058C503A6FFC0E467635C84BBB85D9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = C924141874094D028FB642F223B799DA /* PBXContainerItemProxy */; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = C0154815F7FAEB96560D9B7F7777BCF6 /* PBXContainerItemProxy */; }; 87AEF2C8DFA51306ED9C9AB1DE0F546C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25070,53 +24909,59 @@ target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; targetProxy = 55D53B02C446F60245427454DCA9546F /* PBXContainerItemProxy */; }; - 88CC1562464E37A572260F3F5B854209 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = 7E740B3EA4C3D227C7CDD81A256D4856 /* PBXContainerItemProxy */; - }; - 88CC29D6D45039A1C6AC563762D69393 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = B9EEA885BAF142FCA381D83672647BF6 /* PBXContainerItemProxy */; - }; - 89AB65282C82B231A17065E2A755BC86 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Crashlytics; - target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; - targetProxy = 051F5DCCB690390EAB9C1207EB2428F1 /* PBXContainerItemProxy */; - }; 8B45BA9683C0AE1D7149D313D4FDC461 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 8D04B36B23A984DDD45F643F1C461D61 /* PBXContainerItemProxy */; }; - 8BE67C5BAF4C62371FDF85C761394674 /* PBXTargetDependency */ = { + 8CC2B6C2F26A86E0A5DC080BB1C99BF5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "react-native-cameraroll"; target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = F4C3D2F5F697D1FF431D6CCD1DC2E2C4 /* PBXContainerItemProxy */; + targetProxy = 6D90F18E32C4E657BC9CA54E6F611DAA /* PBXContainerItemProxy */; }; - 8F09117FAF8B091EC2568F33870A306C /* PBXTargetDependency */ = { + 8DCCF120FFC5D8C64AC09AAB8A43DBEB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Flipper-DoubleConversion"; - target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; - targetProxy = 3B9FBEE4B2B6D2D98D3E9DEA0E5910C3 /* PBXContainerItemProxy */; + name = "Flipper-Glog"; + target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; + targetProxy = 4C977CF2D51F459694032880A1F55587 /* PBXContainerItemProxy */; }; - 9013A0482FB9B15D0A32499D01A68C65 /* PBXTargetDependency */ = { + 8EA1F99BBBFA5C2B679F6EE7CFFBA28C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = 9F5139B580DB48CBB546E5DA6213CF53 /* PBXContainerItemProxy */; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = F99E3B061EFB5906B0231D5865DB11AC /* PBXContainerItemProxy */; }; - 905275FA67870B782710F160FB763D14 /* PBXTargetDependency */ = { + 8EF3C9D9EFFB25F12267FF792BDD76C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "react-native-orientation-locker"; target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = BCBB0BB67512B1EE5D9FC19E1D158165 /* PBXContainerItemProxy */; + targetProxy = 95A4FC1581E8A001F1227046E64C4580 /* PBXContainerItemProxy */; + }; + 8F0C80D2DB0255285D1FA8D7835599FB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = 1F859D1C9A82FFAA5F3E423B7D7D8114 /* PBXContainerItemProxy */; + }; + 8F6F2148A37EA42201179D843EC1CE12 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = E7F339F18D8BA7448E4D6B54C6421E0B /* PBXContainerItemProxy */; + }; + 8F7ACB10BB8E437F05B833A7C4E9A34F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "OpenSSL-Universal"; + target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; + targetProxy = 1BF4D0803FA1BA32646C976C30757958 /* PBXContainerItemProxy */; + }; + 9013A0482FB9B15D0A32499D01A68C65 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 9F5139B580DB48CBB546E5DA6213CF53 /* PBXContainerItemProxy */; }; 92A1446A84FF6C166A2D47791865DC09 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25124,29 +24969,23 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 6B6C9C98FB7F5650E3334BCFFACE0D76 /* PBXContainerItemProxy */; }; - 92A431F0B6EF8625A7638352232C502D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = CB03CD17FDCABA719768C607406BEB2F /* PBXContainerItemProxy */; - }; 92B657FA7537B193C576AA91FEE18747 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTSettings"; target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; targetProxy = B56678A4474A9DE17802BB174F7A946D /* PBXContainerItemProxy */; }; - 9449EF77CC6FB39E0BE307FF2DD1FB86 /* PBXTargetDependency */ = { + 934D639572FEC6D889D6D3B673584332 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeKeyboardInput; - target = 33B041E5D061336F88B875C8B86E45FB /* ReactNativeKeyboardInput */; - targetProxy = AC6D2E0D2044713E0891D41AF811ACCA /* PBXContainerItemProxy */; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = DE1C7C689B37F00200CE5F410E00FAE1 /* PBXContainerItemProxy */; }; - 95013C8EF7D7F54D51DFD2EBA324E6BA /* PBXTargetDependency */ = { + 94FCCE4DE8BAAAB1F0048558F279792E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 7E5CF4EB9B0B0447DA4E25A106293A73 /* PBXContainerItemProxy */; + name = EXConstants; + target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; + targetProxy = BE7DDD65DE83B4CDEE169294C6384FC3 /* PBXContainerItemProxy */; }; 9552E6513B331715442754BEE5068F0A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25154,17 +24993,23 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 01B7E2B77CFBD925BCAA5EE41E2360D6 /* PBXContainerItemProxy */; }; + 957674870A5F9D10B0FDF556A7C0806B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXHaptics; + target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; + targetProxy = E01B54E261FEB5A02C9630BD3B2C09E9 /* PBXContainerItemProxy */; + }; 95C5BE71331808A0FB06387AADD5E734 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTNetwork"; target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = F02CC3076A54CCCA5F221E28F3E20FAE /* PBXContainerItemProxy */; }; - 967464678DFCEC1C59CC4180164576A9 /* PBXTargetDependency */ = { + 963D8DA0B998D61E537A02E55CF010DB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = 84082BE82B89E7C124EA0026CADD5A98 /* PBXContainerItemProxy */; + name = EXImageLoader; + target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; + targetProxy = 9555102BAED557A0B13D44272EBC9F1C /* PBXContainerItemProxy */; }; 96DA387B98978C2974700F14ACFDEBCE /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25172,6 +25017,12 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */; }; + 986B0941FF01156DC429309AC1FD5781 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnosticsInterop; + target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; + targetProxy = 21E3AAF5A01782E4AE2BC7B5B6216C86 /* PBXContainerItemProxy */; + }; 987D3E640745DCE5518F2C282606AB1D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; @@ -25184,59 +25035,83 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = D62C017428E93B98F00E023C43EC1EE8 /* PBXContainerItemProxy */; }; - 9975E8EB69D0E3D6775539B2FC3E0AB7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = 8302F21982A3EFCDC6FD0714DAE85EEB /* PBXContainerItemProxy */; - }; 99AB4B73588249614F65174F1425C73F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 28E9E87BF06330725E1FF3E5A023FE61 /* PBXContainerItemProxy */; }; + 99B8BD340C2E566715F7E99A22FA1293 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-Folly"; + target = B6D39E083AE0FF45BA30D7CDF6198A03 /* Flipper-Folly */; + targetProxy = F2A2AB545389241F9F6AF85BDCFAF677 /* PBXContainerItemProxy */; + }; 9A1ED1EA0C27682218626A2105C226FC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 91EE084DD583BBFC5B94D7F82B78A6A8 /* PBXContainerItemProxy */; }; - 9AF3A29484D4DB909EB883E2CCFC55E8 /* PBXTargetDependency */ = { + 9ADC41D70269487D442416B0926C9148 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = 682D55C33CE77D1D22FE2E939A062C2B /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = 4E17DFE25504DE8C2F3BC368A0F8F85C /* PBXContainerItemProxy */; }; - 9C78D37FE6E872A02DA34BED2DD298E0 /* PBXTargetDependency */ = { + 9C0B5E716505E4D200DE1A45C6595E3E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = C06F3735F551BCC5AB2B6C61FC941617 /* PBXContainerItemProxy */; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = 0C856D67B0F9D69F4A0A402471B9A1CD /* PBXContainerItemProxy */; }; - 9D35D0DD0AB8F08BA4102FEB7890D70F /* PBXTargetDependency */ = { + 9C2E1B7AA9F90CFA624F588FDE60F148 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 245FAA2D4288BB2D9D7C8C290A2E4173 /* PBXContainerItemProxy */; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 94CE8279DAB4AA4045EB3D38F811E33A /* PBXContainerItemProxy */; + }; + 9EC4401FD4069CF95286F15A431716C1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 2F451AEE60BBEA5AE1EC8DC2D1F1F49A /* PBXContainerItemProxy */; + }; + A040B2D07090F56C38AFEFA759EBC4E4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-PeerTalk"; + target = 718DB7D0A7E90B531AD577B3356C4161 /* Flipper-PeerTalk */; + targetProxy = 1D60BD5A2AAB2444316BAF24184D8FB7 /* PBXContainerItemProxy */; }; - 9E0812DD65227D77ABBB5CE3B5558D66 /* PBXTargetDependency */ = { + A09A12DDFB0BB64788A0CD4ED2B6C9A0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = YogaKit; target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; - targetProxy = DFC509BBFDD853A8D299A1455023C72B /* PBXContainerItemProxy */; + targetProxy = EB0C055B0E0016C7B096D81A758B7001 /* PBXContainerItemProxy */; }; - A0C32F1F71671CA390653E17A539E067 /* PBXTargetDependency */ = { + A1658710EF3DCF50343EA9604D92900C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = B2F273D9B85840547D0C458F7741B6B6 /* PBXContainerItemProxy */; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = 6F40D53701E3633C0C4AAC94CF244DC5 /* PBXContainerItemProxy */; }; - A3E2F29848DB6D0404FDB7E548F6BD6C /* PBXTargetDependency */ = { + A27DC9A266F8C8C5B3291ECC00732368 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = 6A352984A742DA189FB8046B104E649F /* PBXContainerItemProxy */; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 044A08F746E3FE4D703B6FD9576E63CD /* PBXContainerItemProxy */; + }; + A3623C1506E479D5D30754865E2ACBEB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = 703BF00A879AEA63E9D7CC6088AA5FB8 /* PBXContainerItemProxy */; + }; + A383F2939DA6304E698504C43C2E6FF2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-safe-area-context"; + target = BD9A27D8398DEB3205D3F8937B0672A0 /* react-native-safe-area-context */; + targetProxy = E9C72A12081D84A6526BEBC7F09BFE66 /* PBXContainerItemProxy */; }; A3F4258D4EA27D6C88C15BCDA4CDEDA4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25244,6 +25119,18 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = DDFCA674E1FE8DC1DB86D5A0C0A1FB6A /* PBXContainerItemProxy */; }; + A4352052F1AB28E48D0723C00AE9F32A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CocoaAsyncSocket; + target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; + targetProxy = 380BA391EB9395A080532739722A5980 /* PBXContainerItemProxy */; + }; + A4A49B58B48660755156F046D3085A35 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnosticsInterop; + target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; + targetProxy = 430870FBE16F1FD41809D7C8BEFC5DC4 /* PBXContainerItemProxy */; + }; A4B4D14FC869AC54FADAAD5F5963BD28 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; @@ -25268,35 +25155,53 @@ target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = C5C74D9E7DA1AA3DC76770DCBD7CC27C /* PBXContainerItemProxy */; }; + A65F9D5D298D67DD5788512184311DA6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = 9F97CDB866088A6D1AB366734DC82222 /* PBXContainerItemProxy */; + }; + A661755701DEA2970AB4208CABD7F8ED /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 13C55A91A3CB8024316B04B976A803F4 /* PBXContainerItemProxy */; + }; A671FD9C71751CB6B884B7B271E0707D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 10C2BEA52A3170A3F51CFAF499B2C693 /* PBXContainerItemProxy */; }; + A6BFD65350A67C4C69DF6187D5C378CC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 4343AD886482E901C9589A7890F3DABC /* PBXContainerItemProxy */; + }; + A7E3141CD30795952E881780E95CC938 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = FC8B9BC4501E476CE138F3986882D50B /* PBXContainerItemProxy */; + }; A7EDAB3B9A47E48FB675B49879F59C87 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTBlob"; target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; targetProxy = 1842322FCC293F8D40D3185CF322FF92 /* PBXContainerItemProxy */; }; - A8EC3A54AC05F8B42C17B35EE147BF92 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = AB127B7AC6926A555A6A6FC702B198D8 /* PBXContainerItemProxy */; - }; - A918A0E49B5A4B7C3F696309AEEF970B /* PBXTargetDependency */ = { + A96AABCD77A8C2AE5AD2A4A502E0908D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAV; - target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; - targetProxy = A70634994F83F832F25CF3F2767EA577 /* PBXContainerItemProxy */; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = 038BA7E4E83CCFAF747D3771CA84497B /* PBXContainerItemProxy */; }; - A9A60F4545DA9243E50AFE52F161870D /* PBXTargetDependency */ = { + A9D926728B0C9F0728B3673AC5AAB30B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = D87770F20C781AA9DA01FBD8E4736763 /* PBXContainerItemProxy */; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = 1EFA9622A71562087A1B6DB0DD7DEA93 /* PBXContainerItemProxy */; }; AA3AF74C71F85490722FC8CF0F9DA99E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25304,11 +25209,17 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 60A0EA9E2BD9CEC64E95082A2A9E3B65 /* PBXContainerItemProxy */; }; - AA67CD6F8F920B7C25CE65C3FC3FE8DD /* PBXTargetDependency */ = { + AA550A21E8D78E27132D09E576FD35A2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 7591D4886E50377DD63D58E2B727CAD7 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = C0A2BCEC0A015BBB7C1F865419D951D7 /* PBXContainerItemProxy */; + }; + AA632A5EA5A07FD364354A7537284FC8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 55DC1CE9D07BE0344A390062840FF11C /* PBXContainerItemProxy */; }; AA9052A974DA4ECF27CC38A7633849E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25316,35 +25227,47 @@ target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; targetProxy = BBDC7C661CA5567D3925BC0747CAAEC5 /* PBXContainerItemProxy */; }; + AAB009B5162F903CF583B793590CB850 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = C221653910B9C2B6238F641652562E6E /* PBXContainerItemProxy */; + }; AACFA3F54D41DD980F02203B57C8F7A2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = E8524B7128B54F7936616A550BEB7203 /* PBXContainerItemProxy */; }; + AAF7FDAC2FD4C477AF08C51A0544A8E0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = A9242CEAF7FFBD0B07A40EB61366AA2D /* PBXContainerItemProxy */; + }; + AB17BDA435343910DBAB2B1F6DEAFDD9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = 77788032BA10030FFF2413A94AD58C6A /* PBXContainerItemProxy */; + }; ABA77A0C4CABFF7D7D6BF44195A1D093 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseInstallations; target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; targetProxy = C8CA4B534CE37351B06EDF9C3744C014 /* PBXContainerItemProxy */; }; - AC28828332ABCB82180B888B79776D8B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FlipperKit; - target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; - targetProxy = 5F16023EAC1F1EB07B1F66863C1A8EF2 /* PBXContainerItemProxy */; - }; - ADB3480B3F60DF128E71AC6C6AEAB74A /* PBXTargetDependency */ = { + ACE592570D10EA2D8B83941E6A756E4D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 8135C638E8BA5FD09534BEE55259A5BD /* PBXContainerItemProxy */; + name = EXPermissions; + target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; + targetProxy = E31C940641607DEDCBC7B8C6E6E64019 /* PBXContainerItemProxy */; }; - ADB4596B6D25EF1FD02E5585C4F45394 /* PBXTargetDependency */ = { + ADD11D04F8D393C4E03D52AA7E62102C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = 81A1D83097B7AE95C8A5857EC5E10AE7 /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = 645321059809539F71C97DA230D8456B /* PBXContainerItemProxy */; }; AE2135E39D7AC4E181788F79286CC4E9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25352,17 +25275,11 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 5BE488B88EB1D7B8BFE4A63D278D4B18 /* PBXContainerItemProxy */; }; - AE79F97CF85223D0A2435F1F6CBA32AF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = E33F96D95B2EE0D5217037F7BD3115A5 /* PBXContainerItemProxy */; - }; - AF1E3E519BE45B20D12E62083372C18E /* PBXTargetDependency */ = { + AEBAD156A12659334B7A31EEC6994E76 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = B182109061561F8260E028E35AE84834 /* PBXContainerItemProxy */; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = 3990DBFD49A76736961C88B9091A13A4 /* PBXContainerItemProxy */; }; B019EB5AD49776AF1318C9F7D52D6018 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25370,41 +25287,29 @@ target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 15369A0EF6EA635BE4072AAC14FB2D68 /* PBXContainerItemProxy */; }; - B0D4B3A3ADD03810DF451533B6EE3FCA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXHaptics; - target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; - targetProxy = D0CD9F95D7AF114C7FA72B1CD427B3BF /* PBXContainerItemProxy */; - }; - B1B77E132A721D4D52688B79C2E05FB6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFirebase; - target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; - targetProxy = 3DD3903DB817956DFC2FC8339F36E8D7 /* PBXContainerItemProxy */; - }; - B1E7A1FD1500EDB81D6846514D73140D /* PBXTargetDependency */ = { + B2F6D0DEE59F11B4180231FD4DACB087 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = F8979DAB3B05DADF40B66DB3410CA732 /* PBXContainerItemProxy */; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = 270C7919A17837871D996EC671E60249 /* PBXContainerItemProxy */; }; - B263DFBD8D4ECDB2B189B5296F204548 /* PBXTargetDependency */ = { + B3CDCD1963D1EA4AFB49CA026B707688 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = 217A3152041B91AC2C69C5E57D6F9C47 /* PBXContainerItemProxy */; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = 119DB4BFEE4B3A855EA0904185BB6401 /* PBXContainerItemProxy */; }; - B2FA949FC020CB4B2CE8219765C76610 /* PBXTargetDependency */ = { + B4B96A27E1C371A05A209D1AB89F2D60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXWebBrowser; - target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; - targetProxy = 8CCBAA9D14AB79F06954DD34A2731FCD /* PBXContainerItemProxy */; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = F37E2B471F05EF12E577020D8EB5ED82 /* PBXContainerItemProxy */; }; - B4F19A4298A8F6AEAFC0726C15887C9E /* PBXTargetDependency */ = { + B4E0C082C4383568DE1ED75D463D27CB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDateTimePicker; - target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; - targetProxy = FC77D8C041630A4415313362FCF92C27 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = 2DACDC433DEF81DAF2FBA8393FF64845 /* PBXContainerItemProxy */; }; B522C45997E90058E7BACAB65C97DDE3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25412,41 +25317,23 @@ target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; targetProxy = D07A2073C8416FD3ABDA2FC695482B1F /* PBXContainerItemProxy */; }; - B52C55B27C4E6D716F2CC9F5972C5EBB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = B82293B9E6A3296AA27328595327F9B8 /* PBXContainerItemProxy */; - }; B53AC58BFA8F3376DEBEE3444D8F3770 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = AE7111F2927DD7B05F869FBCAFD506C0 /* PBXContainerItemProxy */; }; - B5792CFAB46B7EB277C756AAE448FE6F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = F0866E4673899AF51D540EF97B44B4D1 /* PBXContainerItemProxy */; - }; B58CF1FEA4024B58557DC96FA1284F62 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "OpenSSL-Universal"; target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; targetProxy = 3B2CB4C09D3A44183329A2C1357EC2EF /* PBXContainerItemProxy */; }; - B620FC5461BFA6FA8685FE1527A8AC87 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-cameraroll"; - target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = 923376C74AF4DFE8BA454FE5909DD20C /* PBXContainerItemProxy */; - }; - B71A9C867136ED65344E13874C7838A0 /* PBXTargetDependency */ = { + B5A00AE59141F9BA59D3E7610784B1FC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Crashlytics; - target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; - targetProxy = F4034DDE7024E1C58C11E10ADB7724EA /* PBXContainerItemProxy */; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = A979BF6AB0E5B6E88DC9532E2B6E435E /* PBXContainerItemProxy */; }; B7CA987A1545E9E4D990C621C4B0D48F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25454,71 +25341,83 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = F9BC7D28AD87790D95A38C36E89FA025 /* PBXContainerItemProxy */; }; + B7CB7E107C13B009CFFF21233286C49C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = E0299D0D33D3FA7A02DB29B4D21FD535 /* PBXContainerItemProxy */; + }; B8B73617617104E7103760F1AB0FDDAD /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = JitsiMeetSDK; target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; targetProxy = 52D75569EE8B532085465A5470C6C390 /* PBXContainerItemProxy */; }; - B8E3E0021E497E9F7033E4C78DA6D006 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXWebBrowser; - target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; - targetProxy = 19FFA4D76F413735B1A492707578C908 /* PBXContainerItemProxy */; - }; B92630B331C84A01EBE7ECA0D823D9FC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = AA5B8F43EAD114EE3717346D55C72BE5 /* PBXContainerItemProxy */; }; + B94F30513957502E7E9A68F760346076 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 29AA65FCC711F353EF18D657546DA2F8 /* PBXContainerItemProxy */; + }; BA241D5679EFEE167EE2F6CED9B54AF4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 77650DB9BCD15D3DBD659DF4437F2533 /* PBXContainerItemProxy */; }; + BA3E62E003F1B9098C9BBCE281D35FF7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = 3493519DACDAAEE46860321CCD682AFE /* PBXContainerItemProxy */; + }; BABF0E4239ACD0E5B2ED1C561C7F1F0D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTNetwork"; target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = 34DE7C292D92E3CB1F5D90FC054FCBA3 /* PBXContainerItemProxy */; }; - BAC79B8607A771D50691F800F25C223B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNCAsyncStorage; - target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; - targetProxy = 4F32EDCE5B3A12D06CE0D50B6AF3545F /* PBXContainerItemProxy */; - }; BB584E8B3525C3D5CBB4CF38C00E5689 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = F40F967DB5AFDF925A6D54E4FB17CA0A /* PBXContainerItemProxy */; }; - BB81E4E4CE787266F80353CE3317DD96 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFirebase; - target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; - targetProxy = ED466F782FCAD6F97E9AEE113C58905E /* PBXContainerItemProxy */; - }; BB8DA3F066408CD75CA01FCAF89A2BFB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 2F33AF4C1C0B51002BC93979F647366E /* PBXContainerItemProxy */; }; - BBA8FD06D1D363D8117CBDEDC0FFC0EE /* PBXTargetDependency */ = { + BBAF64ED1A67E41CF3C8D8900CD071BB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = 548DFBC4940FA536EDADD9274D48F26C /* PBXContainerItemProxy */; + name = ReactNativeKeyboardTrackingView; + target = 27E277B43A5F7AE00EC5051AB99AC38E /* ReactNativeKeyboardTrackingView */; + targetProxy = 1B25BAD809DD51C8C17A22D9924B4661 /* PBXContainerItemProxy */; }; - BE1B7250F0D5F94F1CDD8145D5273AB3 /* PBXTargetDependency */ = { + BBE2FA9B7AA5D8930444B243A749BA92 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = E87EAF6AF192C2BAC70D150EEF007592 /* PBXContainerItemProxy */; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = A753A24DEBE37F0975456719D6FF03A8 /* PBXContainerItemProxy */; + }; + BC027893692FADB19CB04066080F0593 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = 0692C5A45BE21CF7509A1C2C39B5E0EE /* PBXContainerItemProxy */; + }; + BC428CC67216088C4161D263D43200FA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMBarCodeScannerInterface; + target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; + targetProxy = E333D2BC9DCB3CEB462FE2054F25C633 /* PBXContainerItemProxy */; }; BE7D0958FA0D61A89ADF1137F78DA078 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25526,59 +25425,65 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 7CBA093BB5F4F39B712F2AF488BEEC02 /* PBXContainerItemProxy */; }; - BE9B1D7B36F058DD2E5D491290E2E6AB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = F4703B1B1058B7A8D057AD4F8AFFEAA2 /* PBXContainerItemProxy */; - }; BF23376B1A7E5DFDD5B71433E58CDDA1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 2284921B4FC397971FFFACC555D01A18 /* PBXContainerItemProxy */; }; - BF6D0677D14F9EFAC68E1A35F4723619 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXImageLoader; - target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; - targetProxy = 86183DE889527A9647EEAC01222F58F2 /* PBXContainerItemProxy */; - }; BFDF94603630E69B318F5F405972A285 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 302C794E2B3640352D4037D8E0366B5D /* PBXContainerItemProxy */; }; + BFEB81C9F070066BDAA412708C276B29 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = 5481117445925143DE32D33A0FE91521 /* PBXContainerItemProxy */; + }; + C0729F2F9C49872C07123077018B9680 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = 690494113528102E3DA789534616DC8C /* PBXContainerItemProxy */; + }; + C20D59FCF2A3EC8107CF67CCB1EC4449 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = YogaKit; + target = 32CA4CBD6B28983076BD93DA221AD027 /* YogaKit */; + targetProxy = 7C2CEDFA6599040FF198248D1337A42B /* PBXContainerItemProxy */; + }; C217101135EFE0403239B5B2FC6C3632 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = F2E57867E76DED400D1A4035EF3D8735 /* PBXContainerItemProxy */; }; - C2906BD0E330E6D43979718AA7BEE0E2 /* PBXTargetDependency */ = { + C2178D7A14F97E3CA1AC7A131E3BA0CB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = C7A71D296A06DEFFACAC95769713AB88 /* PBXContainerItemProxy */; + name = RSKImageCropper; + target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; + targetProxy = 0385A53417915629901AE62E9C22DF04 /* PBXContainerItemProxy */; }; - C419BBDD967B27E9D7F2C019BF800192 /* PBXTargetDependency */ = { + C25F51A531F8D5253E382AA2CCC23E9A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = D73D7BA595B1E9DA6DC89A0B9F769F49 /* PBXContainerItemProxy */; + name = Folly; + target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; + targetProxy = A7F64F029F71A4ABD9D4B649550C49E9 /* PBXContainerItemProxy */; }; - C45EF051DED3A7ADE32A6FB8C02BEC40 /* PBXTargetDependency */ = { + C492A45E995898FEBF7950CA1EE6A9C4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 4A8F0BE217B301EC2E43425B0A5F21EC /* PBXContainerItemProxy */; + name = Fabric; + target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; + targetProxy = 790CBCBE87BE40D190F8E625A0AC8FF2 /* PBXContainerItemProxy */; }; - C51B1F653CA932A2F43341CB2E94E7C9 /* PBXTargetDependency */ = { + C506D85B8F4F03A7286B2D9C1F13CD2E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 7DDD6FE55BBB3E679C5550D19E0C634F /* PBXContainerItemProxy */; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = 61426AB042ACC8C915D8B7DCA4DCB98D /* PBXContainerItemProxy */; }; C5A0E011AD4DDD3DB47BE2A057285067 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25586,29 +25491,29 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 1B209875BE1A2519F69D4DFF0948FFAC /* PBXContainerItemProxy */; }; - C629A7CD44828BE4F4F6A9A1FF53B7F0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = 6C1876B42A8A11CAD3F4F695CDA925C5 /* PBXContainerItemProxy */; - }; C85153279823DD6D83526F6B511CE44D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMConstantsInterface; target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; targetProxy = 13791CBAE3B4CCAF1FC636BA2BBD9DE4 /* PBXContainerItemProxy */; }; - C85FB30891762E676295B172267E6F6F /* PBXTargetDependency */ = { + C9221D8069B52EC52D61FD6E2850B0A2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Flipper; - target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; - targetProxy = 5FAB23E385BA05DBED57BAF876723AED /* PBXContainerItemProxy */; + name = RNCAsyncStorage; + target = 89F573A6B1292B3B2296B2206BFDC3D7 /* RNCAsyncStorage */; + targetProxy = C2AE6048EF083653FA2606100AA5B147 /* PBXContainerItemProxy */; + }; + C9426C51C13100420E96AE99576D4101 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = 47D9AA5DE9898ECC256174DEA6ABC6FF /* PBXContainerItemProxy */; }; - C88AA674C93645A3BA122FC47665C8B9 /* PBXTargetDependency */ = { + C9431653B68C09B887091348543E3DC8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = D1379898B669373AB3FEECEA86DD36B7 /* PBXContainerItemProxy */; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = 701291BC6CD4C3AA18275ACE387FE70A /* PBXContainerItemProxy */; }; C94D432895D486C9508FB387F74AE1DB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25622,17 +25527,23 @@ target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; targetProxy = D465047540D12FD9D95291AE82A76DB9 /* PBXContainerItemProxy */; }; + C9FBD448B92EF469A058C857876FC849 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = E4C7F995188052D342E252C80502B081 /* PBXContainerItemProxy */; + }; CA20CC0CC8595F02B384BCF03BBE9452 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = 455009ED9ED8F59E3D7880EA52A66B11 /* PBXContainerItemProxy */; }; - CB4108A98392A30DDF0C1B8121FA6F2C /* PBXTargetDependency */ = { + CABF88C9B745690D2303532012F0A80C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = E295AEA66CFDD6623A312A4734A37AB5 /* PBXContainerItemProxy */; + name = RNUserDefaults; + target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; + targetProxy = A51F447F24DD10435A203FA28A61097F /* PBXContainerItemProxy */; }; CB67FB062DE8CAF07E20E144CB621739 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25640,29 +25551,29 @@ target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = F6A14184DE3C02C257A7298719E4FD9B /* PBXContainerItemProxy */; }; - CBB06B8B03B2346919C999F0887CDF3F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXKeepAwake; - target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; - targetProxy = 6243B5380DE7572F20F68EE582599719 /* PBXContainerItemProxy */; - }; CBCED9CB448C55E858853770E18D9CA1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 22906590CC5A956C3E20ACC35B78D306 /* PBXContainerItemProxy */; }; + CBF30D9909B06ACF1370C16F53AAB4CB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXConstants; + target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; + targetProxy = E6DE9590FB09A446D469C84816B6B64E /* PBXContainerItemProxy */; + }; CD4A90C407C044A72171FE0E08BE8CBF /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "boost-for-react-native"; target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = 370DE049C383B99628BC1490AE7AF5A6 /* PBXContainerItemProxy */; }; - CDCD6B35CF12F6B89E330C3EFF1EDE5B /* PBXTargetDependency */ = { + CD689BE0B2CFC21CFDAF48F5A03BA11E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = BA7B7E1F2CF0D45AE8FC7320A03337D6 /* PBXContainerItemProxy */; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = 799C74A0726AF456D1C5D644513B1E8C /* PBXContainerItemProxy */; }; CDF9E458CE5417481CDC4BABE348B377 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25670,47 +25581,11 @@ target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; targetProxy = 82B12BA2AABCF09A5F85DF84C0BDD0AE /* PBXContainerItemProxy */; }; - CE1F875AA07B832ACDD8AC69E54D84DF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = F1312F6BB267898F9763CFCAB2225B1F /* PBXContainerItemProxy */; - }; - CEE39A2161F9BF533BA048C8D47412EF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = CE12D0235200FECDFC6E74CF0A1D212D /* PBXContainerItemProxy */; - }; - CFD8247B5ACBEB146A21C46C4A3B7354 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = E2ED9F097AA42802FCCF6DD879C4EB79 /* PBXContainerItemProxy */; - }; - D02D4F609F78663AFCA4594C32C27FC4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = F45C8B23AAE6EA8FD3DD2D67F77A66DD /* PBXContainerItemProxy */; - }; - D091FE2EDEB9D2BFC7A7B31E3AF0DBB1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = 44CBDE61952FBC28F86C739EBC4AB8C2 /* PBXContainerItemProxy */; - }; - D158BE6489688BC444E6E3D739E0CDB8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = 955AAE1FE6E875B0E70E957463F8FB11 /* PBXContainerItemProxy */; - }; - D2597BB4726D1EF880E7498B869C3816 /* PBXTargetDependency */ = { + CE218F3EB89311F87D62B266EB13271A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMAppLoader; - target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; - targetProxy = 8E8FADFE18B61A9C7EA803AAD965E322 /* PBXContainerItemProxy */; + name = "OpenSSL-Universal"; + target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; + targetProxy = 82BCBC9FD278C2697F8072A1C1133910 /* PBXContainerItemProxy */; }; D2E8899B6358167269542AB9F6844F35 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25718,24 +25593,30 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 88BF67064CFFE8794B0B07782EB28354 /* PBXContainerItemProxy */; }; + D376267002B5D82439BF12F5DF5A97FB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 47116BDC2069880395B20D2E721A0DF8 /* PBXContainerItemProxy */; + }; D38B23A869C5F0B4893BAAB33F170973 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = C9BCCF707D9DCF8AEA6E8C8B78FECA9E /* PBXContainerItemProxy */; }; - D52BFC35D0680021013F4A02ED03F08D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CocoaLibEvent; - target = D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */; - targetProxy = E7E2CA5641EE4FEA39D5724A4CE38E31 /* PBXContainerItemProxy */; - }; D5F43FE63F1F6C96E0D9F953258FAE9D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = E79050B7B79BB88D74178F90A19D9ECF /* PBXContainerItemProxy */; }; + D608106C4C779494E7C8847CED60E91C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNFirebase; + target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; + targetProxy = BAEA30C24A5D2F89D14BD53C0ADB09C1 /* PBXContainerItemProxy */; + }; D67D869DAC3427BD2240CE9268D233B8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; @@ -25748,23 +25629,11 @@ target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; targetProxy = D487DCE2CE3859F38B4F09019E83312D /* PBXContainerItemProxy */; }; - D8455EFE6A2904EF5AA739452E19BF21 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXAV; - target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; - targetProxy = 90F215D1E26A8D8D4244B203701AAB00 /* PBXContainerItemProxy */; - }; - D84A65525741945B43380B859ED8FDAA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = 3597FB537A4F5019D5421F89B3AA90F3 /* PBXContainerItemProxy */; - }; - D893243090E5BE53E70E318A421F3184 /* PBXTargetDependency */ = { + D7628DC1EF0F664E78A6BBC1F251E62E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; - targetProxy = B42AB67030F3497A99DD3DEFEAE57712 /* PBXContainerItemProxy */; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = 021B0FA153DBCAEEB1A677D7728D7B37 /* PBXContainerItemProxy */; }; D8AE89FD45EA95F81B10A418DCEE2BC4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25772,23 +25641,23 @@ target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; targetProxy = 95D6942673DEF26CD96965BD3A7F39D6 /* PBXContainerItemProxy */; }; + D8B3A4B89BA0EFEC5ECF38507ED747C4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = C27C31C47762897F088C5C3C3E99C7B3 /* PBXContainerItemProxy */; + }; D8CA56F98BEF43CC6BCB3D698CD4CF24 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = D57C0DD9800DB5B6699D08359FEF3AEE /* PBXContainerItemProxy */; }; - D9D82703E2CDB72000C3EEFCBFD05C55 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 10262EA3089B20C23C65722192009691 /* PBXContainerItemProxy */; - }; - DA2291420886BDF8CAEFEF2D5DA5067C /* PBXTargetDependency */ = { + D932D2356A3B0B880E4873D2FB3AFE75 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; - targetProxy = CAA85907C7C17AFB0A10B1530C2BE4E4 /* PBXContainerItemProxy */; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = 23C02F45DF0051AF4B4CFDDBCA108677 /* PBXContainerItemProxy */; }; DB428F9B87F61672189FE93818C7346C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25826,23 +25695,35 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 43F72BBBD9D74426F5F93DE6CCE70C64 /* PBXContainerItemProxy */; }; + DE985EFC37FE4C420079103DA7D6882B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CocoaAsyncSocket; + target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; + targetProxy = 031555B004F8700543B44A242D267F66 /* PBXContainerItemProxy */; + }; + DEED1B969344C8EA4A17E577DA1C6703 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactNativeKeyboardInput; + target = 33B041E5D061336F88B875C8B86E45FB /* ReactNativeKeyboardInput */; + targetProxy = AC2FE1C0602B7AF331598CE3809BB3FC /* PBXContainerItemProxy */; + }; DF072AA82B95EF5DD4445A2E27AEC5E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 21B7FFD1A14C9DCA797642821E09A7B1 /* PBXContainerItemProxy */; }; - DFE8F5BB255DC241D57751C288A586CA /* PBXTargetDependency */ = { + DF8EE4DB14C41DD26ECF525C6265124C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = 71AA0A9F4AF2861DC65C634DCA84DA29 /* PBXContainerItemProxy */; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = D7737E2002FC572BA6E3F073A47C8284 /* PBXContainerItemProxy */; }; - DFF9C253547BA4F3C23304E86EB89262 /* PBXTargetDependency */ = { + E1BF648960EC4A99DB81DC25CE86F7D3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = EC9888C5259A96C5952907392BBDB28F /* PBXContainerItemProxy */; + name = Crashlytics; + target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; + targetProxy = 7C38D8BD5E0F4455A5D19EB6159AFF37 /* PBXContainerItemProxy */; }; E1C36B9799A50B414371514062896CF7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25850,29 +25731,23 @@ target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; targetProxy = 4C6653A5CA1CE41FC050930288153C50 /* PBXContainerItemProxy */; }; - E266503DE84D1EFA18BAB3E30AE021BF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = B0F7C761F918E18B1D0EEEAFB32C5029 /* PBXContainerItemProxy */; - }; E26B7B4B003AA78BCF9CBD540687E3DB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTNetwork"; target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = 7CC878764E325DF5D6D1F598241F3FC1 /* PBXContainerItemProxy */; }; - E2831A9D336E0C4AA90FF3BD09E4CED3 /* PBXTargetDependency */ = { + E31292FD69015900929B1AF199640D14 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RSKImageCropper; - target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; - targetProxy = 84C7A31872934114867DB1B3868C9EE5 /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = E727A93D64726B41F339008BC12302D7 /* PBXContainerItemProxy */; }; - E356572A62F11E13A05964A12E49DCD5 /* PBXTargetDependency */ = { + E34926148A71B07D3AF6910D28183183 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCameraInterface; - target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; - targetProxy = 27F49C59E4ECECC0F1AD44D9418C2E98 /* PBXContainerItemProxy */; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = 38FDEFCA4E4FA8406285E30E025030D7 /* PBXContainerItemProxy */; }; E364FC183F2618C9D12C99E67143417F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25880,17 +25755,29 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 0FD6A4ED78388214475895E97458EB68 /* PBXContainerItemProxy */; }; + E399C0A9C9C33EC82603306915AAF9BC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-DoubleConversion"; + target = D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */; + targetProxy = 6F4366AF34218EFBB7B27468E271C98C /* PBXContainerItemProxy */; + }; + E3A050451F5296F149229C8170FEB7B5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FlipperKit; + target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; + targetProxy = F020BEFB830FD6540D54FBFCB1D1BC59 /* PBXContainerItemProxy */; + }; E3D1654B918455824279631C48CD8D36 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = F142B4DF83D0AEA677D3ABE7D7E5BA0C /* PBXContainerItemProxy */; }; - E3DA365DC72A8D15542B99D77666CB33 /* PBXTargetDependency */ = { + E3F5E04E66F6261F627BC775FC81CB65 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = 3C9D25674D8973B33CAD9955B6E9082C /* PBXContainerItemProxy */; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = 950A8F8744FDC0016988B1185DBFE28B /* PBXContainerItemProxy */; }; E463467A75682C4E7C346610654E375B /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25898,35 +25785,17 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = EAA9F477386E52EB30E75431006FAA8C /* PBXContainerItemProxy */; }; - E4707C76224CAD03E5213F0AC1A2DAEC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CocoaAsyncSocket; - target = 6083682834ABE0AE7BD1CBF06CADD036 /* CocoaAsyncSocket */; - targetProxy = CF0FE25543B2D6CED188B88FD2FF87E5 /* PBXContainerItemProxy */; - }; E48FBFF1C285492BB3BCDEFC7A76FE33 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 39CD33DB7DC4569D42431023259B76CF /* PBXContainerItemProxy */; }; - E4E53A5228158B3C6F6B5CB73D08472C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDateTimePicker; - target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; - targetProxy = DB021704D3F01D4EF451CFDE6D168943 /* PBXContainerItemProxy */; - }; - E7616635E878C54FD579D9D3CA550466 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FlipperKit; - target = 982644B5B647690B2E4F5B3F54EB5717 /* FlipperKit */; - targetProxy = AAE5A28788B8F479BB26A4207392F53B /* PBXContainerItemProxy */; - }; - E7CE2C7650D7F7A137AB8263674FF1D9 /* PBXTargetDependency */ = { + E49ADA24F3946D450DE1F68B755EFE22 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = 0864129FFA1C9FE7A7E2F408EA14705C /* PBXContainerItemProxy */; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = 589926F54AC5FF60EC4D81357A5B6842 /* PBXContainerItemProxy */; }; E7D36BFE6E30CE57D9BAA1151633F937 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25940,23 +25809,41 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = CC6DE0595B3D05492642740BF8582E76 /* PBXContainerItemProxy */; }; + E8BA92853F5135DE2EE52F8D05320259 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = 353F585C7ADACA2363ED3D037D388FD8 /* PBXContainerItemProxy */; + }; + E8D966AE948AE7D241CD8CC518CF6270 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Flipper-RSocket"; + target = 1FAAE067C1BFDEA17DFB657C3379AB56 /* Flipper-RSocket */; + targetProxy = FAEB9F4A6AB511DCB766DE84AEB6F3E8 /* PBXContainerItemProxy */; + }; E95EB877E138BF8C3C3FC7A9DFA3601D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = AFBC06851050FD0681A66F16BA170F39 /* PBXContainerItemProxy */; }; - EAA117EA6F7964497C328EA9F860739C /* PBXTargetDependency */ = { + EA6B490B07D1826AB6F8FBA80AF5A4C5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = CA40F60DD5EE5CF7F6AFA03BB4863188 /* PBXContainerItemProxy */; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 4033A4DC07C9D71A13885FFD7F357458 /* PBXContainerItemProxy */; + }; + EA977E8B010D3123447695ACE20DEA65 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = CocoaLibEvent; + target = D63EF582C3FFEAFBF76242E9637C6E0A /* CocoaLibEvent */; + targetProxy = F2D91EB18CF0695B654F7EBBF54FFBBB /* PBXContainerItemProxy */; }; - EACB9F214C49780987916DFB93EE15DF /* PBXTargetDependency */ = { + EAF6515932B154B47D06F34478C699C2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 6D7BFAEBB699B1285C90F5B301EA2DFC /* PBXContainerItemProxy */; + targetProxy = B8BD3850EF5EC46632709B1A723296F3 /* PBXContainerItemProxy */; }; EB53484F3FBF4931B107838DAA5960B1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25970,11 +25857,11 @@ target = E63939AA6EFD3D6A8C09E45929F11DBD /* Flipper */; targetProxy = 6514B943829E36F02B9A139465155A84 /* PBXContainerItemProxy */; }; - ED4E6582F6D84F97495C7B9687150841 /* PBXTargetDependency */ = { + EC5184CC509B207A4835DC7A19830290 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeKeyboardInput; - target = 33B041E5D061336F88B875C8B86E45FB /* ReactNativeKeyboardInput */; - targetProxy = AC36F5A23C7659EEF3D1CCCB7421A131 /* PBXContainerItemProxy */; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = 4441C46CA91F603AC40C8E3813E02919 /* PBXContainerItemProxy */; }; EDE4622A231D7E4C637C51459B075FDC /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -25982,12 +25869,6 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = F1D31400DE78E76FE461920F078645F1 /* PBXContainerItemProxy */; }; - EDF96C662FBA7762CD5536F4C6FA5BBC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = 8A6CA7E78A119BDA035F13C1C2874552 /* PBXContainerItemProxy */; - }; EE1CC51893DCF92DD4E8E26E4F3526E4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; @@ -26000,65 +25881,29 @@ target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = 8E91990EDE03926388322CD5BC7E9596 /* PBXContainerItemProxy */; }; - EF1AFB7B3ECE73E93EF0DE14B0451AD4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = 8B72922AC4529AC0B7D77BE93B230132 /* PBXContainerItemProxy */; - }; F0D16B338A371FF62450A81F3EB9800D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Yoga; target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; targetProxy = 8E0CE3BCFC23F708AABA713FFB149206 /* PBXContainerItemProxy */; }; - F13EA7DAE7A846C572332EFD93580166 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = FC9ECE85F287C504E4BF453D581199F5 /* PBXContainerItemProxy */; - }; - F1A4654A251B1AB1394452E8BA4D4655 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNUserDefaults; - target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; - targetProxy = 039E8CBD37C5983167F040B9350FA534 /* PBXContainerItemProxy */; - }; - F1ED53FE905606823A5CF28B2D7BA967 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXKeepAwake; - target = 0CF4D9052577C85B6B8C4E957332626B /* EXKeepAwake */; - targetProxy = 0323F991328F97F668050CC1F09AEFF6 /* PBXContainerItemProxy */; - }; F2166478FE82B374E2933089EF0F5912 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBReactNativeSpec; target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 7B4E5E1C683AA4C9D6520E9A4748E8B3 /* PBXContainerItemProxy */; }; - F21C2C601334E2996C6B415C19C6FF69 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = A243488DBA17CD164C4860C26B1E6385 /* PBXContainerItemProxy */; - }; - F2FA313DFCFE64F3F81CCBD994D2F7AB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "OpenSSL-Universal"; - target = B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */; - targetProxy = 4C8957D6D63B4DFC721520B173AD5D7E /* PBXContainerItemProxy */; - }; - F3502842BFDCB088B64C588FB75679FD /* PBXTargetDependency */ = { + F257D7DC8E610D3218E83F7802C4D033 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 9FEEE5A7B6225B791A62FF6B93A364EE /* PBXContainerItemProxy */; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = 01AFDF4CAA6CF2622FBB7C6636273A9E /* PBXContainerItemProxy */; }; - F3B46CB82BCF80E679262C1B9F21BB37 /* PBXTargetDependency */ = { + F37622B70DDDB61175150B3067B291C7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Fabric; - target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; - targetProxy = BFF966814809AC138A75A03363F74170 /* PBXContainerItemProxy */; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = 3368FE6ED43AB2C0992BFDDA52797BE7 /* PBXContainerItemProxy */; }; F3EDC9308CCDE762F70BB11464CE0441 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26072,6 +25917,12 @@ target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; targetProxy = 8CD598B3122E1B5D5E0411E9F8DFF385 /* PBXContainerItemProxy */; }; + F4391FA50380C94EBF43DCC1267CAA58 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = 0D431E9B7570E094A7FCCFE124B6777C /* PBXContainerItemProxy */; + }; F4ABC2B3D06CA044325DADC1ED59161D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; @@ -26084,11 +25935,11 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 7D9A4DEA0175BC4538E1272B3B0504FD /* PBXContainerItemProxy */; }; - F5AE83EAB25B7FD0615165ACD306EAD7 /* PBXTargetDependency */ = { + F59C19CED21EC039472B35A2FF6CF63B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = FA21F973340DE63A3E52A43007D42844 /* PBXContainerItemProxy */; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = 3C311CA3D69CA794CFFA10D7F19FA551 /* PBXContainerItemProxy */; }; F6258EC7EA780DA17A9BB7DEC0186247 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -26102,18 +25953,6 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 69C4D7766C312F032D5267A5354EEDFE /* PBXContainerItemProxy */; }; - F6820920416058B65F2F986D60232DD1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = B1CDEFA1365BCB532C7D56E79CB21624 /* PBXContainerItemProxy */; - }; - F6E449B40871C4630423F010277FCF5F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMConstantsInterface; - target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = D00B27B963BA508B1C8AC2E7E18743D2 /* PBXContainerItemProxy */; - }; F7584C8C1825DEDF9A742D3A3F75CC27 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; @@ -26126,24 +25965,42 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 5EED9A44D7E37951C7239080722062AE /* PBXContainerItemProxy */; }; - F7B36088753BAAAF086EE98671FB39EE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = F811C2CFEEF4976187C1F2ACEB105D5F /* PBXContainerItemProxy */; - }; F8C33BCE34AF86F557AC08D445941D34 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 2FECF1896BBEFF162E79DB1B4AE97494 /* PBXContainerItemProxy */; }; + F8CA78219BD764C6638DBCADA099E439 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNUserDefaults; + target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; + targetProxy = 4EB11D12423290F050BDB32C2C893BFE /* PBXContainerItemProxy */; + }; + F971A373E27FBED6DA4D964ACA5E7200 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMTaskManagerInterface; + target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; + targetProxy = 28E7CAFB1777028F4490AC005F918B93 /* PBXContainerItemProxy */; + }; + F9B95AA15EC76D1C432D82DC9C2DEFF3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = 8A14312C3654C8DD052FA4D7B18A08DD /* PBXContainerItemProxy */; + }; FA7DDF48211586BFBE7CB3854A998999 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 0460274CCCBB15E986D75C4F43071A5F /* PBXContainerItemProxy */; }; + FAC1766EC2BD58B91EE3ADF2818D8B89 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = EE37E96258B3A9663D7FA47F4690AB0E /* PBXContainerItemProxy */; + }; FAECE815D420DF0D5CFC2715F357F1C5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; @@ -26156,12 +26013,6 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = BA9E3A8B825153221034FDB7B6A40DD0 /* PBXContainerItemProxy */; }; - FD73855D8E7DA6867B869552BEC837CF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Flipper-Glog"; - target = 6A9637F1BC8154F777335A6420579C05 /* Flipper-Glog */; - targetProxy = 623627DBDEC607D90F43FC2EE0AFCF2D /* PBXContainerItemProxy */; - }; FD786D3D1090698BF6B26C4A3EBF90CF /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; @@ -26170,22 +26021,40 @@ }; FD7FFC18DDE8D049C817E5F819EF924E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = C6B6F02506FCA9766276DEF5FAE04229 /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = C6B6F02506FCA9766276DEF5FAE04229 /* PBXContainerItemProxy */; + }; + FDE20676F070391EBFB717F3A44CEB28 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 0F2BFDCE1221DD97F09CC6C36F69E2AE /* PBXContainerItemProxy */; + }; + FE0D45AB9667EEB26EB45E0D2DF1EC86 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = 38763BE63B64C0CC355805108A0D7250 /* PBXContainerItemProxy */; + }; + FE49E72291605516CA334081BD7A2E4F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = A78781D24053EDF20C4F9616F916726E /* PBXContainerItemProxy */; }; - FE733362EB8B0CDA3D086D800738A750 /* PBXTargetDependency */ = { + FE86A812CCE285C60316B682CC9C7091 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = C23BB79C36BAB0253DC82F033D877286 /* PBXContainerItemProxy */; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = F5F71A33675B26833D2E212E7F681AE0 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ 0346FF986F79C64343F99C0325D2CB9F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 501D5082B219424D8DF417D923AA4F7E /* React-RCTNetwork.xcconfig */; + baseConfigurationReference = FBB97382066662CAFEB8D86DDEF39AC5 /* React-RCTNetwork.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26235,35 +26104,9 @@ }; name = Debug; }; - 073679048D1D150AC0E021A2272308F1 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4F1CEAE90D73118B2A6DEB48D6E4B301 /* RNAudio.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CODE_SIGN_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; - }; 07FADC14E782992AFF2F7671E2E7D23A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B871C0AFEEB5141B6031084C327FDD25 /* react-native-slider.xcconfig */; + baseConfigurationReference = BFDF4F5D7C0B527DB1100D4B8232675D /* react-native-slider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26290,7 +26133,7 @@ }; 082626AE56C49C40C14786925EB6EE61 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0F11316B19D0832A1C6DFA868C245755 /* RCTRequired.xcconfig */; + baseConfigurationReference = 7D83DAB6C4D288B6CA941729F379368C /* RCTRequired.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26306,7 +26149,7 @@ }; 0A4A6F8962251341E9A322BE1EC5E4B1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AD33857D528B2A4D54BBCFCFE7D00BC3 /* rn-fetch-blob.xcconfig */; + baseConfigurationReference = 5D84B5B0AED6D6EC1970C7EAFF91AF57 /* rn-fetch-blob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26359,7 +26202,7 @@ }; 0C325883D859D958B8BEF24647A7BD7E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 501D5082B219424D8DF417D923AA4F7E /* React-RCTNetwork.xcconfig */; + baseConfigurationReference = FBB97382066662CAFEB8D86DDEF39AC5 /* React-RCTNetwork.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26385,7 +26228,7 @@ }; 0DDF703E0A1E8E05DBFA959C12ECD11B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2D1F8A63863074A0FED82448954C3904 /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = 8E1BC7ED511773804406EF08BED63AA5 /* UMTaskManagerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26427,7 +26270,7 @@ }; 136DC5B10B3129544C45EAD704C682CB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 521AA54144A721F1FCE59D66407111DA /* RCTTypeSafety.xcconfig */; + baseConfigurationReference = DBC7B94308CDDEB933D9CFA7617976C7 /* RCTTypeSafety.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26454,7 +26297,7 @@ }; 144C8D6F5DFCD73347E4C70832E1FA51 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D958CE2B81B824D413EE641BDF933F55 /* UMCore.xcconfig */; + baseConfigurationReference = 297458D850ED870E5DF325E40C3C1008 /* UMCore.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26480,33 +26323,6 @@ }; name = Release; }; - 1676DBE1C10283BB1D2D76E8C658B9A5 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4F1CEAE90D73118B2A6DEB48D6E4B301 /* RNAudio.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - CODE_SIGN_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; - }; 16A46006BA9DAD71FC1246465B3E2E00 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = D96B57221ABDA9A8EAEDE4AC20AB620C /* SDWebImageWebPCoder.xcconfig */; @@ -26535,7 +26351,7 @@ }; 172823DAC41CFBCABEA0BA03135BB51D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 66469A4EB01266E9CD0043A424930945 /* react-native-background-timer.xcconfig */; + baseConfigurationReference = 666FA01BCFB570B1D8873A710A164C6E /* react-native-background-timer.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26587,7 +26403,7 @@ }; 1833671E22AD2D6ED73818E0AE2D1ECB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1A57C009B67AD4A473B2FADD3D320055 /* react-native-cameraroll.xcconfig */; + baseConfigurationReference = BD19107D43C4639B74AB628460123D65 /* react-native-cameraroll.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26614,7 +26430,7 @@ }; 192F2140D8D96CFD79CCDC6126BDC355 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CF252186A9F263ADBC39FF5C79901C91 /* RNBootSplash.xcconfig */; + baseConfigurationReference = D6C8B6125EDED348D3F287B2AAEE8233 /* RNBootSplash.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26641,7 +26457,7 @@ }; 1C6A4450E4C8F8FB4972753A2432DD29 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BB4E515183972964190DB1E137702400 /* RNScreens.xcconfig */; + baseConfigurationReference = 702D4587FC7CAF227427C89C7FAFD8C4 /* RNScreens.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26711,7 +26527,7 @@ }; 1FD730E1AED9B4A80890683689AF92CC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7BBC15FD8B590818292C04F01F196CA4 /* RNUserDefaults.xcconfig */; + baseConfigurationReference = C7767E56845E21A11C6CAD49A3455020 /* RNUserDefaults.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26738,7 +26554,7 @@ }; 211C4C82F5DF1D82CBB2D407761ED06C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D3AF5E808F514DDD9EC46E125ED9B249 /* UMCameraInterface.xcconfig */; + baseConfigurationReference = 3AE883FCB4846DF697DDDB8421B46ADA /* UMCameraInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26770,7 +26586,7 @@ }; 21993510FEBBBB050D27D176EF7FF12B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B55C77BFF12D757C3EB6AB8DC7ED02B /* Yoga.xcconfig */; + baseConfigurationReference = D0B4B699CF178C3B0664F745D8AD6313 /* Yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26797,7 +26613,7 @@ }; 21F38FCE8441AA400CC5BD4C4317A9AD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5B3F7558270DE7DD2D98E22DE3FDD57E /* UMReactNativeAdapter.xcconfig */; + baseConfigurationReference = 7ED94019A38F38B84CE4B5051D7B73C4 /* UMReactNativeAdapter.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26851,7 +26667,7 @@ }; 23CBFB3E266E8CF21EFE823F989A526F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DE6A50A3C93D966F1701A784B02E764B /* FBReactNativeSpec.xcconfig */; + baseConfigurationReference = 8CF11B6072C8C126008ACDD5215CD003 /* FBReactNativeSpec.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26878,7 +26694,7 @@ }; 2460F60985C3F210DF73337B5546844A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 01D3B1A561D7B0CBAE1AF721EB04E89D /* React-RCTImage.xcconfig */; + baseConfigurationReference = AB2494725646DF282ADC3AB4F37FE632 /* React-RCTImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -26965,7 +26781,7 @@ }; 26953C374A7AE6B44C19B0BB19DFC360 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B4C3E2B9A36416E0693F1F9CF4FDEE1E /* EXKeepAwake.xcconfig */; + baseConfigurationReference = A2E0CC2B5B8F2A4D0940A946D22685E0 /* EXKeepAwake.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27019,7 +26835,7 @@ }; 27866C9CAFA37084A2F8A2BC5470991B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2ABADCE36F2A93255F0B6ED89C75174E /* React-jsiexecutor.xcconfig */; + baseConfigurationReference = F63D8A44AE3171808A0B84AAE84799C4 /* React-jsiexecutor.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27045,7 +26861,7 @@ }; 2B8D1445F622D4CF87B5619297A4C3DE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 71CBCA8FC53D1D188B46BB564F697E9D /* react-native-appearance.xcconfig */; + baseConfigurationReference = 7710D2E200011A16F735222C5A3532CE /* react-native-appearance.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27097,7 +26913,7 @@ }; 2BF6C04CA0DC7A51799793311AEF60EE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FFA4CFB3B95B6F4C70B41392CFAAC74F /* React-jsi.xcconfig */; + baseConfigurationReference = 0F60E2D30A6E55A7CBF4A75E705C5AD8 /* React-jsi.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27124,7 +26940,7 @@ }; 2CEF953D9176553A03F12772D7854FEF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B871C0AFEEB5141B6031084C327FDD25 /* react-native-slider.xcconfig */; + baseConfigurationReference = BFDF4F5D7C0B527DB1100D4B8232675D /* react-native-slider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27150,7 +26966,7 @@ }; 2D6B15879D8FB32EFD2AF3EBD2EED716 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 25CFED65ACBDF5664F0F70F8F7FBDC06 /* ReactNativeKeyboardInput.xcconfig */; + baseConfigurationReference = 2A417F150D5E5377C589D3FADCF8F8F9 /* ReactNativeKeyboardInput.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27177,7 +26993,7 @@ }; 2DBC10DC0499C957FD1EEE4576D28990 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 141E273C68C9F6143C1000B3D0FEA407 /* RNVectorIcons.xcconfig */; + baseConfigurationReference = 23918F66B61005385A067544979022B4 /* RNVectorIcons.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27219,7 +27035,7 @@ }; 2E8F188D8D8AA7A857EB6C00C0EE6BF1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 13A209B7AC8202BCCBD6658FE2ADFC80 /* RNGestureHandler.xcconfig */; + baseConfigurationReference = 8EF35648A59FD5DB6F7ED71EB947B1B8 /* RNGestureHandler.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27246,7 +27062,7 @@ }; 32773B018020B1C9C403484A17245B36 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 102B618FBDF9A29644423919A343E83C /* KeyCommands.xcconfig */; + baseConfigurationReference = D4A501B5DB4897607E43BD772D7B566D /* KeyCommands.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27298,7 +27114,7 @@ }; 3524DD9801CA7FE1979B90B7C11ECF82 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 521AA54144A721F1FCE59D66407111DA /* RCTTypeSafety.xcconfig */; + baseConfigurationReference = DBC7B94308CDDEB933D9CFA7617976C7 /* RCTTypeSafety.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27339,7 +27155,7 @@ }; 39C67524A03DCAD424A71B388F938D6E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2ABADCE36F2A93255F0B6ED89C75174E /* React-jsiexecutor.xcconfig */; + baseConfigurationReference = F63D8A44AE3171808A0B84AAE84799C4 /* React-jsiexecutor.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27366,7 +27182,7 @@ }; 3A0C36DCF0D838792ACADCA351DA7239 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 927ADF884056F9DE57AB890BF56E39EB /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = 10514393CB6D7409E4DA1184CD175882 /* UMConstantsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27383,7 +27199,7 @@ }; 3A37BE7A73D51BAA2813B529FEE9E8EA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 20258C64C159B7362A628C8082ED1D8A /* ReactNativeART.xcconfig */; + baseConfigurationReference = 3EA59C8E8F8FD565FBB99D325DA6D0A4 /* ReactNativeART.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27436,7 +27252,7 @@ }; 3F8E658BE58823DB07092F62E68AE9C3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 77C5B60149667B362E4FE28027169C28 /* UMFaceDetectorInterface.xcconfig */; + baseConfigurationReference = 86BB660AAFBDF90D48690893B2289C0E /* UMFaceDetectorInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27505,7 +27321,7 @@ }; 415A52154C0D00BB5981E4CD6EE8982B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0C6442FC28EE73A623CF965B80E181F0 /* EXAV.xcconfig */; + baseConfigurationReference = B0F30F07515A758A483B860F3513C551 /* EXAV.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27533,7 +27349,7 @@ }; 41E11E8C21A52C694A4D3BEE864D9AEC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BCC39FF80147AFD7516495702A33FD10 /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = F0E264BE547EC61F5D8823E96733114C /* UMImageLoaderInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27590,7 +27406,7 @@ }; 42944898C766E1F58CF1D114D908DF7F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CB36FE94E7064BDF21B7063705C2585A /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 29BBF567B242DB371110C704D4FF5E64 /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -27686,61 +27502,61 @@ }; name = Release; }; - 4AF574769C58C092E18BB54463D02F71 /* Release */ = { + 45C1455B35A61F999403D9898B421F57 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 872E574D6BC79F4782E595DB08B75CE8 /* libwebp.xcconfig */; + baseConfigurationReference = 5F2C9D4A4102266BF3CBD25EF6756A16 /* Pods-RocketChatRN.debug.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + 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/libwebp/libwebp-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = libwebp; - PRODUCT_NAME = libwebp; - PUBLIC_HEADERS_FOLDER_PATH = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; - 4C168093C8EBAB4B79BF8C1C2FF085AA /* Debug */ = { + 4AF574769C58C092E18BB54463D02F71 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 57B1BBC643E020C8DFA80AEB7F9E636A /* Pods-ShareRocketChatRN.debug.xcconfig */; + baseConfigurationReference = 872E574D6BC79F4782E595DB08B75CE8 /* libwebp.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - 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 = 11.0; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.modulemap"; + GCC_PREFIX_HEADER = "Target Support Files/libwebp/libwebp-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = libwebp; + PRODUCT_NAME = libwebp; + 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; }; 4DC88F1B94BA98100CCC2DBFCBF1170B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 33296D02D55691A0EB008324A67ED97C /* React-RCTBlob.xcconfig */; + baseConfigurationReference = 1C5743DDDD74488674FE6DE4BC6E8259 /* React-RCTBlob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27782,7 +27598,7 @@ }; 4FC0A3ABC7C0A55EBAEB07FFC1BFEBC4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B55C77BFF12D757C3EB6AB8DC7ED02B /* Yoga.xcconfig */; + baseConfigurationReference = D0B4B699CF178C3B0664F745D8AD6313 /* Yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27810,7 +27626,7 @@ }; 50BCB5F1EEE1F97FD0276478C777BCB0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 988A4F90E6C77B510C4E26F1FFFF78FC /* react-native-notifications.xcconfig */; + baseConfigurationReference = A59EA16D7394CDC58C728B1031735568 /* react-native-notifications.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27836,7 +27652,7 @@ }; 5147D2DB0A11697EDFA27B87341E852B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0C6442FC28EE73A623CF965B80E181F0 /* EXAV.xcconfig */; + baseConfigurationReference = B0F30F07515A758A483B860F3513C551 /* EXAV.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27863,7 +27679,7 @@ }; 52A007D721D1D2D6BD14B70C9FABE5B1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C15412FB555EC82A84E5662C521F5A69 /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = DF153716257E8284E747023ED54F0F81 /* UMFileSystemInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27879,7 +27695,7 @@ }; 531DF162FE7827B65B86953D3626930F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CB36FE94E7064BDF21B7063705C2585A /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 29BBF567B242DB371110C704D4FF5E64 /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -27897,7 +27713,7 @@ }; 54BE9E0B8B40988719562072F53CDD1C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C15412FB555EC82A84E5662C521F5A69 /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = DF153716257E8284E747023ED54F0F81 /* UMFileSystemInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27914,7 +27730,7 @@ }; 57DC61FA52A3832C2CBAB748125714DE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 927ADF884056F9DE57AB890BF56E39EB /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = 10514393CB6D7409E4DA1184CD175882 /* UMConstantsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27930,7 +27746,7 @@ }; 57F7DAB4A25A41E7061089F35621D18B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 102B618FBDF9A29644423919A343E83C /* KeyCommands.xcconfig */; + baseConfigurationReference = D4A501B5DB4897607E43BD772D7B566D /* KeyCommands.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27956,7 +27772,7 @@ }; 590C90EE6FEA01582AE180BFEBD3DCA9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DF85DEADCDCE3CC0A2717889EF77DA40 /* react-native-webview.xcconfig */; + baseConfigurationReference = 4FFCA561BAB6718919054DE61A4CD6DE /* react-native-webview.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -27982,7 +27798,7 @@ }; 598007DCBC5363C8FDBF87E241969ABE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EAE32E30BFC9792E281139AEB50CBF12 /* rn-extensions-share.xcconfig */; + baseConfigurationReference = 8CD07C9B316C154FECFD4FF963C0B423 /* rn-extensions-share.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28008,7 +27824,7 @@ }; 59F8A83A04EE60686800B304A0A1B420 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6DCAD9F2C019CFD4B9270A1B91B9D2C0 /* react-native-safe-area-context.xcconfig */; + baseConfigurationReference = D01599CF77DFB0489A47E18D11DDB3B7 /* react-native-safe-area-context.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28034,7 +27850,7 @@ }; 5A602A4A591A93C2FE3885D6F59E423D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CF252186A9F263ADBC39FF5C79901C91 /* RNBootSplash.xcconfig */; + baseConfigurationReference = D6C8B6125EDED348D3F287B2AAEE8233 /* RNBootSplash.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28060,7 +27876,7 @@ }; 5B681A10D993A1880ECC76BA11C8D827 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 708DB8109DA3CBF05AA39C5EF54F7F96 /* EXImageLoader.xcconfig */; + baseConfigurationReference = 5EB0253DA06DCDD17D12D4001B8C6E6A /* EXImageLoader.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28116,7 +27932,7 @@ }; 5DA74E72D8EDEBC4C5FEDBE4BC3A7400 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2B227BB4081A0127E3F5F504F8BECC8E /* EXPermissions.xcconfig */; + baseConfigurationReference = 7F3BB4CE0AD0B8C7B54FB7F37505224F /* EXPermissions.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28144,7 +27960,7 @@ }; 5EDF89B6E42E865A92E659ED341FB36C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D958CE2B81B824D413EE641BDF933F55 /* UMCore.xcconfig */; + baseConfigurationReference = 297458D850ED870E5DF325E40C3C1008 /* UMCore.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28171,7 +27987,7 @@ }; 5FC3252789FC71BD4F07FF10A84D89FB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BB35C8B34CE65D263DD4FF787E10D778 /* React-RCTAnimation.xcconfig */; + baseConfigurationReference = 8835C348AFCBB837C33237110E8F969F /* React-RCTAnimation.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28197,7 +28013,7 @@ }; 61013CC5330326ECBBE24E236D4756ED /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0D058555FF1C043FD328AC579E635FA4 /* react-native-jitsi-meet.xcconfig */; + baseConfigurationReference = 17E87B00A92EE15EC1C9E2F5467933B6 /* react-native-jitsi-meet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28250,7 +28066,7 @@ }; 6252E431DF550AC2ABE38A07C30E5C69 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CB36FE94E7064BDF21B7063705C2585A /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 29BBF567B242DB371110C704D4FF5E64 /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28276,7 +28092,7 @@ }; 630D3143C493E80D71A24FDEC5E714D1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6DCAD9F2C019CFD4B9270A1B91B9D2C0 /* react-native-safe-area-context.xcconfig */; + baseConfigurationReference = D01599CF77DFB0489A47E18D11DDB3B7 /* react-native-safe-area-context.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28303,7 +28119,7 @@ }; 646D288F19E706EE0C7FEF68D7AA7A08 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0DED49DBE81C96433EAEA2DD88F579E2 /* RNFirebase.xcconfig */; + baseConfigurationReference = 265C1CB4595B827AAB73D50EF2E67CC0 /* RNFirebase.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28330,7 +28146,7 @@ }; 6587E0E85E50C6129418B61EE75243F0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F5BC8B2FD5EB70416804537EE96B3C1A /* react-native-orientation-locker.xcconfig */; + baseConfigurationReference = 467D30BBBCF05A268C5376F1447E6934 /* react-native-orientation-locker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28357,7 +28173,7 @@ }; 65E4EE47AAD5F8BE136CFEA39BC3B696 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7BBC15FD8B590818292C04F01F196CA4 /* RNUserDefaults.xcconfig */; + baseConfigurationReference = C7767E56845E21A11C6CAD49A3455020 /* RNUserDefaults.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28383,7 +28199,7 @@ }; 68189F95B1543CA95038FD98447B904A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 92F931B69167975533EFB5B58AFD1845 /* FBLazyVector.xcconfig */; + baseConfigurationReference = 5834A146A19C77147AEB1AA4C34C14F9 /* FBLazyVector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28468,7 +28284,7 @@ }; 6B8AFF9E35F50BAC0DE697F5E0C3EFA9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 66469A4EB01266E9CD0043A424930945 /* react-native-background-timer.xcconfig */; + baseConfigurationReference = 666FA01BCFB570B1D8873A710A164C6E /* react-native-background-timer.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28495,7 +28311,7 @@ }; 6D620E1574035BE4B178936002B7BC8F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 17707C0ABA9B0849AD25E3238ADBE1D5 /* RNFastImage.xcconfig */; + baseConfigurationReference = 505053A2D26FE3E5F176EF91C7408E22 /* RNFastImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28522,7 +28338,7 @@ }; 6DC1143AC9B3ADDDE273AD03BC717821 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0F11316B19D0832A1C6DFA868C245755 /* RCTRequired.xcconfig */; + baseConfigurationReference = 7D83DAB6C4D288B6CA941729F379368C /* RCTRequired.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28537,7 +28353,7 @@ }; 6E1EED754019B0D2FD4071647DD2554A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 708DB8109DA3CBF05AA39C5EF54F7F96 /* EXImageLoader.xcconfig */; + baseConfigurationReference = 5EB0253DA06DCDD17D12D4001B8C6E6A /* EXImageLoader.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28564,7 +28380,7 @@ }; 6FF5942A55CB716386FB81B3A661E7FB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2D1F8A63863074A0FED82448954C3904 /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = 8E1BC7ED511773804406EF08BED63AA5 /* UMTaskManagerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28581,7 +28397,7 @@ }; 71E8415D6468DFBF796F1039C1E97625 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D3F6C4A7B7A52935C844753CDE09D46D /* React-RCTSettings.xcconfig */; + baseConfigurationReference = DBD32390C988B0EDD281390E40FFB1E0 /* React-RCTSettings.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28607,7 +28423,7 @@ }; 7282579EA97D587611013797E31B73E6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4ABD0D258526EBB5C3877A4E12802162 /* React-jsinspector.xcconfig */; + baseConfigurationReference = 8D3AE99B23D50E69F4FB054F6E5A1446 /* React-jsinspector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28632,9 +28448,35 @@ }; name = Release; }; + 74F11AF1DF61D1FCDE1BD3825A19BABF /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 852DC564997734F4D539E66A2B03F20B /* Pods-ShareRocketChatRN.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + 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 = 11.0; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.modulemap"; + 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; + }; 764669D8236F7BDD2D5A7B8E1528A8B9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A5006732F65587CD1537CE06DC7E867B /* UMFontInterface.xcconfig */; + baseConfigurationReference = F19D2DC6B50D3626B771B0A36634D8DF /* UMFontInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28651,7 +28493,7 @@ }; 79C3DC195028717BB3D7DDD12A46B8DF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1842B46FEF3AB5C0A25B40CFE3F0FCE2 /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = 4AB4319EDC95A50EF7679752214D6855 /* UMPermissionsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28678,7 +28520,7 @@ }; 7B7C0755F8375DAF3EF185586C94D369 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E1F337022FAD323E4E4537DA434CEE80 /* RNCMaskedView.xcconfig */; + baseConfigurationReference = 83C6051B5BB74E0C061731744EC94DC0 /* RNCMaskedView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28704,7 +28546,7 @@ }; 7BAAF8357658CAC4B5D6D0C4B80A3994 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1A589265F3297A75FF9C6602E4183895 /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = F7FC50AB3769D8B489703AF8B57EE592 /* UMSensorsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28720,7 +28562,7 @@ }; 7DB17BC8E09831F39FB08A7D81AA5907 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E732B1F3F10F6B1D59C6227D9628145F /* BugsnagReactNative.xcconfig */; + baseConfigurationReference = F930B0140651E1470E092D5C593DB665 /* BugsnagReactNative.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28746,7 +28588,7 @@ }; 7E677923F364581870FA8D124AFACE60 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1A589265F3297A75FF9C6602E4183895 /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = F7FC50AB3769D8B489703AF8B57EE592 /* UMSensorsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28763,7 +28605,7 @@ }; 80E28D6632D5DE4EF8E68CF8C231AFAC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7DD272DCA947023FE82762683D2897FA /* React-CoreModules.xcconfig */; + baseConfigurationReference = 4F3112315AC8239958E8D6F5FC897437 /* React-CoreModules.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28788,32 +28630,6 @@ }; name = Release; }; - 8318601443E9A810BCA4D6580373DEDE /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 852DC564997734F4D539E66A2B03F20B /* Pods-ShareRocketChatRN.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - 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 = 11.0; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.modulemap"; - 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; - }; 83794AFF62CA736A9E35B0C1E34A27C7 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 47BE8606ADAA46F17D3BCB260DFDB92E /* FirebaseCoreDiagnosticsInterop.xcconfig */; @@ -28884,7 +28700,7 @@ }; 8870C3F12DF20A8A79E4B0A817E80111 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B0F26A286D2B52BBD17BAFEBA5AEA109 /* EXConstants.xcconfig */; + baseConfigurationReference = 2D653138FC87559632D13F0E506B8939 /* EXConstants.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28912,7 +28728,7 @@ }; 8904A84B684086F0B016083093CE07FE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F557C5AEE9C0BAD4A29F3B44DF064AE0 /* React-RCTText.xcconfig */; + baseConfigurationReference = 53C080B81E4DA7601E54FFD20BE475BA /* React-RCTText.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28939,7 +28755,7 @@ }; 8A594744D753D19412FBE936E712B047 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2145A175E8A39B3546220D281803BA6B /* RNCAsyncStorage.xcconfig */; + baseConfigurationReference = E5A6370B7C73A043A8FF32CF2159663E /* RNCAsyncStorage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28966,7 +28782,7 @@ }; 8B4C75AB2077821412B0BEABB795B133 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 324340B7C0A3CBAF308887B4453E9BD4 /* React-RCTActionSheet.xcconfig */; + baseConfigurationReference = A181A43245853FAC86236B435A587F7A /* React-RCTActionSheet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -28981,7 +28797,7 @@ }; 8B55720C1BD1EFE406E82A759744EB7A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B4C3E2B9A36416E0693F1F9CF4FDEE1E /* EXKeepAwake.xcconfig */; + baseConfigurationReference = A2E0CC2B5B8F2A4D0940A946D22685E0 /* EXKeepAwake.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29102,7 +28918,7 @@ }; 8D6C7A34D73E3808BBA4673B8AE0C087 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46138D88D9089B325DB537848E0BD935 /* EXLocalAuthentication.xcconfig */; + baseConfigurationReference = 1E231DB88DBDDA719E356518743872C4 /* EXLocalAuthentication.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29130,7 +28946,7 @@ }; 8DE4E46184828C3AC9AE2F483CAEEB62 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E732B1F3F10F6B1D59C6227D9628145F /* BugsnagReactNative.xcconfig */; + baseConfigurationReference = F930B0140651E1470E092D5C593DB665 /* BugsnagReactNative.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29157,7 +28973,7 @@ }; 8FC7CBDFE142209F416AC981FCB80953 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4ABD0D258526EBB5C3877A4E12802162 /* React-jsinspector.xcconfig */; + baseConfigurationReference = 8D3AE99B23D50E69F4FB054F6E5A1446 /* React-jsinspector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29223,25 +29039,9 @@ }; name = Release; }; - 91D4E468815E5E97CFA73772ED20A135 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 77C5B60149667B362E4FE28027169C28 /* UMFaceDetectorInterface.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - 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; - }; - 92A3674E494DB07A3079268B0B7BF25A /* Debug */ = { + 90E83551A0B75968799A01FDC634DB1D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5F2C9D4A4102266BF3CBD25EF6756A16 /* Pods-RocketChatRN.debug.xcconfig */; + baseConfigurationReference = 01CF13B9D679B7BC88155AD55F3DD540 /* Pods-RocketChatRN.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = NO; @@ -29261,12 +29061,29 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 91D4E468815E5E97CFA73772ED20A135 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 86BB660AAFBDF90D48690893B2289C0E /* UMFaceDetectorInterface.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + 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; }; 94F96B3181B5C4A55422960AE29B071C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 564108603663D6E8FD3C576E9C82E0FE /* React-cxxreact.xcconfig */; + baseConfigurationReference = 7867172B082DEC058AEB7E73800D54B4 /* React-cxxreact.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29292,7 +29109,7 @@ }; 952D998029472DC4C4DFD6B66EFD440F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F04F5797167F566DEC173C68ED322390 /* React-RCTLinking.xcconfig */; + baseConfigurationReference = 434C89B7FF1C87A3657C1C43B3CB5CAA /* React-RCTLinking.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29319,7 +29136,7 @@ }; 962FD9D12A679DF0DA56E883AA397314 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 988A4F90E6C77B510C4E26F1FFFF78FC /* react-native-notifications.xcconfig */; + baseConfigurationReference = A59EA16D7394CDC58C728B1031735568 /* react-native-notifications.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29346,7 +29163,7 @@ }; 96BCE63753F828171C3FD05BBAA1ECCA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BB35C8B34CE65D263DD4FF787E10D778 /* React-RCTAnimation.xcconfig */; + baseConfigurationReference = 8835C348AFCBB837C33237110E8F969F /* React-RCTAnimation.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29400,7 +29217,7 @@ }; 97B00E3BBA0AECB29905C5EC1B0E87EC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 69E2FC04583B23D65644B8FAE8EB8CC9 /* EXFileSystem.xcconfig */; + baseConfigurationReference = 1FB44558A4716076A776890E5B9EEA0A /* EXFileSystem.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29428,7 +29245,7 @@ }; 9A256B0D575C1B9903CAA284900CEFE5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 343B4A0F29E595ED75877EE1453475D2 /* React-Core.xcconfig */; + baseConfigurationReference = 3B5FFECD1A6CEB423DF95FD048E5BB70 /* React-Core.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29455,7 +29272,7 @@ }; 9B4801DC8D6EB696AFFB6202AEAC0D6D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1842B46FEF3AB5C0A25B40CFE3F0FCE2 /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = 4AB4319EDC95A50EF7679752214D6855 /* UMPermissionsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29509,7 +29326,7 @@ }; 9D09360779C91B7CD5A5D701B0D29033 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 01D3B1A561D7B0CBAE1AF721EB04E89D /* React-RCTImage.xcconfig */; + baseConfigurationReference = AB2494725646DF282ADC3AB4F37FE632 /* React-RCTImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29550,7 +29367,7 @@ }; 9DEEE31A23BEFA95B0F652A29164D233 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AC68DDDC7441B628763DD9D36213E057 /* UMBarCodeScannerInterface.xcconfig */; + baseConfigurationReference = EE6998582AD69397537481EADD7C1462 /* UMBarCodeScannerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29567,7 +29384,7 @@ }; A27739C2B1814FAB77CC3AD01C44D6A9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 141E273C68C9F6143C1000B3D0FEA407 /* RNVectorIcons.xcconfig */; + baseConfigurationReference = 23918F66B61005385A067544979022B4 /* RNVectorIcons.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29621,7 +29438,7 @@ }; A55D5C7C42C605BFB77735B7507A3903 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FFA4CFB3B95B6F4C70B41392CFAAC74F /* React-jsi.xcconfig */; + baseConfigurationReference = 0F60E2D30A6E55A7CBF4A75E705C5AD8 /* React-jsi.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29647,7 +29464,7 @@ }; A58FA93F97A296717115907AA968DDAB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 92F931B69167975533EFB5B58AFD1845 /* FBLazyVector.xcconfig */; + baseConfigurationReference = 5834A146A19C77147AEB1AA4C34C14F9 /* FBLazyVector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29662,7 +29479,7 @@ }; A79F89732A48D404FA27EC70182FC350 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DCB94CBCFE0C715380C60E0F455AF63D /* ReactNativeKeyboardTrackingView.xcconfig */; + baseConfigurationReference = F370366D214C24AEC8016C7F3376858F /* ReactNativeKeyboardTrackingView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29746,7 +29563,7 @@ }; A892379D8DBD903F9F5299ACE5AB9573 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F557C5AEE9C0BAD4A29F3B44DF064AE0 /* React-RCTText.xcconfig */; + baseConfigurationReference = 53C080B81E4DA7601E54FFD20BE475BA /* React-RCTText.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29841,7 +29658,7 @@ }; AB6916FCBFF289595BB1FD37CB4239A6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 17E475146D66F0F10D91E05C8A9ADEC9 /* RNLocalize.xcconfig */; + baseConfigurationReference = 818E91D92E60A66D973E1B296FFEBD5C /* RNLocalize.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29868,7 +29685,7 @@ }; AB765F75D361A75CB79E1D9700DDB0D4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BB4E515183972964190DB1E137702400 /* RNScreens.xcconfig */; + baseConfigurationReference = 702D4587FC7CAF227427C89C7FAFD8C4 /* RNScreens.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29921,7 +29738,7 @@ }; AC2FA42C6AC72075B90CD2FF1B790DDC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 13A209B7AC8202BCCBD6658FE2ADFC80 /* RNGestureHandler.xcconfig */; + baseConfigurationReference = 8EF35648A59FD5DB6F7ED71EB947B1B8 /* RNGestureHandler.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29947,7 +29764,7 @@ }; AC3CF821ABE60EA5B1E7BE05E64047F0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7DD272DCA947023FE82762683D2897FA /* React-CoreModules.xcconfig */; + baseConfigurationReference = 4F3112315AC8239958E8D6F5FC897437 /* React-CoreModules.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29973,7 +29790,7 @@ }; AC4775936C29D295B6450EC08CEA5829 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DE6A50A3C93D966F1701A784B02E764B /* FBReactNativeSpec.xcconfig */; + baseConfigurationReference = 8CF11B6072C8C126008ACDD5215CD003 /* FBReactNativeSpec.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -29999,7 +29816,7 @@ }; AD2FB5912891BCBB6C51DA8334CE98B9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CC3D692DE6A573051DEFFB08CD5D594C /* RNDateTimePicker.xcconfig */; + baseConfigurationReference = 78FA3E580A83E7B3822370ACC3E1854F /* RNDateTimePicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30025,7 +29842,7 @@ }; ADB0CDDE1827CA646C52C523066D211C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D3B484652A54786BFEE5700397369185 /* RNReanimated.xcconfig */; + baseConfigurationReference = 15A32BF114F112D49D59D4C01A9A9E69 /* RNReanimated.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30051,7 +29868,7 @@ }; AE7A4B8707442677FE1CD9E0498C5BDD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FB1CA6C03E7D44A0EACA8FC328819F99 /* EXWebBrowser.xcconfig */; + baseConfigurationReference = C19DF073BDDF25E492E8456257A7F78F /* EXWebBrowser.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30079,7 +29896,7 @@ }; AECEBCE712AC0C128D865D4E39988C78 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 17707C0ABA9B0849AD25E3238ADBE1D5 /* RNFastImage.xcconfig */; + baseConfigurationReference = 505053A2D26FE3E5F176EF91C7408E22 /* RNFastImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30105,7 +29922,7 @@ }; AFBC9B2636EE1DA9119ED359CF5814C8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 324340B7C0A3CBAF308887B4453E9BD4 /* React-RCTActionSheet.xcconfig */; + baseConfigurationReference = A181A43245853FAC86236B435A587F7A /* React-RCTActionSheet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30136,7 +29953,7 @@ }; B3CD22B7EC2C67CFA2FB701F29289AD1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B0F26A286D2B52BBD17BAFEBA5AEA109 /* EXConstants.xcconfig */; + baseConfigurationReference = 2D653138FC87559632D13F0E506B8939 /* EXConstants.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30163,7 +29980,7 @@ }; B44A36D415BFFEFF1BD92163209EAAD0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 33296D02D55691A0EB008324A67ED97C /* React-RCTBlob.xcconfig */; + baseConfigurationReference = 1C5743DDDD74488674FE6DE4BC6E8259 /* React-RCTBlob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30189,7 +30006,7 @@ }; B54A78056E8E8F777325DFAD36EB43D4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D3B484652A54786BFEE5700397369185 /* RNReanimated.xcconfig */; + baseConfigurationReference = 15A32BF114F112D49D59D4C01A9A9E69 /* RNReanimated.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30216,7 +30033,7 @@ }; B61F008C099CB869F5B3E38B4D075F48 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7199657A9DFF62F73AA45770EAEF4E9B /* UMAppLoader.xcconfig */; + baseConfigurationReference = C202C8EC08324AF5B06841DD9921B48A /* UMAppLoader.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30244,7 +30061,7 @@ }; B7AD6090725057CB46AA61569BE0CCC1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 25CFED65ACBDF5664F0F70F8F7FBDC06 /* ReactNativeKeyboardInput.xcconfig */; + baseConfigurationReference = 2A417F150D5E5377C589D3FADCF8F8F9 /* ReactNativeKeyboardInput.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30270,7 +30087,7 @@ }; BBEBA8BC8D45B72A1F7C78820819ED5B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A26D555F22D3C4D5CC22A443F85F09BB /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = 97B89602ED6ABDDE6450722CCD0129D7 /* RNDeviceInfo.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30296,7 +30113,7 @@ }; BD4DAD572553882617A36503DAE72BB1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1A57C009B67AD4A473B2FADD3D320055 /* react-native-cameraroll.xcconfig */; + baseConfigurationReference = BD19107D43C4639B74AB628460123D65 /* react-native-cameraroll.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30322,7 +30139,7 @@ }; BD8C555F387DC02E6524EA86AE69C7E4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DCB94CBCFE0C715380C60E0F455AF63D /* ReactNativeKeyboardTrackingView.xcconfig */; + baseConfigurationReference = F370366D214C24AEC8016C7F3376858F /* ReactNativeKeyboardTrackingView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30375,7 +30192,7 @@ }; C0AB43CFD0B16DF72729061865BC82A3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FB1CA6C03E7D44A0EACA8FC328819F99 /* EXWebBrowser.xcconfig */; + baseConfigurationReference = C19DF073BDDF25E492E8456257A7F78F /* EXWebBrowser.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30402,7 +30219,7 @@ }; C2140C4487286D40FDDDE672BB0F8DC8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 17E475146D66F0F10D91E05C8A9ADEC9 /* RNLocalize.xcconfig */; + baseConfigurationReference = 818E91D92E60A66D973E1B296FFEBD5C /* RNLocalize.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30455,7 +30272,7 @@ }; C55480815892F9BB7C7BF102985FB172 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2145A175E8A39B3546220D281803BA6B /* RNCAsyncStorage.xcconfig */; + baseConfigurationReference = E5A6370B7C73A043A8FF32CF2159663E /* RNCAsyncStorage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30507,7 +30324,7 @@ }; C7608D4BF5509F4421796B0625F9EE31 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 93F3F4E733620B7659DF3CB246FC200C /* React-RCTVibration.xcconfig */; + baseConfigurationReference = 8C8258725B6514D8F505C6041FA55690 /* React-RCTVibration.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30533,7 +30350,7 @@ }; CBE349CFB950987CBC1021A4C612051B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2CCADECA416C36233EDB1367D6148C60 /* RNRootView.xcconfig */; + baseConfigurationReference = 02E9A3D5B9DAE21C00A3C9E91CA495C7 /* RNRootView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30559,7 +30376,7 @@ }; CD63E8958EC6FBA71ED080060B3C3DA1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F5BC8B2FD5EB70416804537EE96B3C1A /* react-native-orientation-locker.xcconfig */; + baseConfigurationReference = 467D30BBBCF05A268C5376F1447E6934 /* react-native-orientation-locker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30585,7 +30402,7 @@ }; CE86BC8747547C114C1EF56E764850DF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7199657A9DFF62F73AA45770EAEF4E9B /* UMAppLoader.xcconfig */; + baseConfigurationReference = C202C8EC08324AF5B06841DD9921B48A /* UMAppLoader.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30612,7 +30429,7 @@ }; CF8A82D2305CC4EB7BF73381C538A5E9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 71CBCA8FC53D1D188B46BB564F697E9D /* react-native-appearance.xcconfig */; + baseConfigurationReference = 7710D2E200011A16F735222C5A3532CE /* react-native-appearance.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30639,7 +30456,7 @@ }; CFF0829E30F943E442923B3BFABD26BA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A5006732F65587CD1537CE06DC7E867B /* UMFontInterface.xcconfig */; + baseConfigurationReference = F19D2DC6B50D3626B771B0A36634D8DF /* UMFontInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30655,7 +30472,7 @@ }; D44AE23116BFC459841E46F78A7D18D4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CAF57B687DBABF5583B844CE17FE9AE7 /* ReactCommon.xcconfig */; + baseConfigurationReference = A1F14998FCA22D0DA4C9B893F4D8917A /* ReactCommon.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30724,7 +30541,7 @@ }; D6462DB5908EF31119072DF180707EFF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 20258C64C159B7362A628C8082ED1D8A /* ReactNativeART.xcconfig */; + baseConfigurationReference = 3EA59C8E8F8FD565FBB99D325DA6D0A4 /* ReactNativeART.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30750,7 +30567,7 @@ }; D6BAF1C6FB468A07A014451F2079E77B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0DED49DBE81C96433EAEA2DD88F579E2 /* RNFirebase.xcconfig */; + baseConfigurationReference = 265C1CB4595B827AAB73D50EF2E67CC0 /* RNFirebase.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30776,7 +30593,7 @@ }; D73FFAC8B9760363DD94D0DD18099667 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D3AF5E808F514DDD9EC46E125ED9B249 /* UMCameraInterface.xcconfig */; + baseConfigurationReference = 3AE883FCB4846DF697DDDB8421B46ADA /* UMCameraInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30820,7 +30637,7 @@ }; D8B2A5C994FAA699F9AB034F417CA033 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DF85DEADCDCE3CC0A2717889EF77DA40 /* react-native-webview.xcconfig */; + baseConfigurationReference = 4FFCA561BAB6718919054DE61A4CD6DE /* react-native-webview.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30847,7 +30664,7 @@ }; D8D246725C7020402ADBA119535596A9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 98DC296BF9AB6C5F92D462E85FF0B4E9 /* react-native-document-picker.xcconfig */; + baseConfigurationReference = D290732FB1A772D68C40D1DFC5859F7E /* react-native-document-picker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30873,7 +30690,7 @@ }; DC2F76B5BB2274BFAA8345C2A93DC1CE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 93F3F4E733620B7659DF3CB246FC200C /* React-RCTVibration.xcconfig */; + baseConfigurationReference = 8C8258725B6514D8F505C6041FA55690 /* React-RCTVibration.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -30898,6 +30715,31 @@ }; name = Release; }; + DC416A8296E3086FF141D0C5E4EAB744 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 57B1BBC643E020C8DFA80AEB7F9E636A /* Pods-ShareRocketChatRN.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + 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 = 11.0; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.modulemap"; + 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; + }; DCB0A65789B2656AFA4503995E893750 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 675D9C2D56362FEDC42624B8F23A4D31 /* FirebaseAnalytics.xcconfig */; @@ -30941,7 +30783,7 @@ }; DD42D07940E9CC1333330CCEC47EDB63 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A26D555F22D3C4D5CC22A443F85F09BB /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = 97B89602ED6ABDDE6450722CCD0129D7 /* RNDeviceInfo.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31032,7 +30874,7 @@ }; DE7D558F8B19FD2028AA1A619EF12C1C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AC68DDDC7441B628763DD9D36213E057 /* UMBarCodeScannerInterface.xcconfig */; + baseConfigurationReference = EE6998582AD69397537481EADD7C1462 /* UMBarCodeScannerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31075,7 +30917,7 @@ }; E002F01A244490EC2D7BE0B5908EF609 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EAE32E30BFC9792E281139AEB50CBF12 /* rn-extensions-share.xcconfig */; + baseConfigurationReference = 8CD07C9B316C154FECFD4FF963C0B423 /* rn-extensions-share.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31102,7 +30944,7 @@ }; E0407D5E33F8D74FFACAF38B739C8B29 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BCC39FF80147AFD7516495702A33FD10 /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = F0E264BE547EC61F5D8823E96733114C /* UMImageLoaderInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31119,7 +30961,7 @@ }; E042A1F3DA2D655DF64065BDE71EEF04 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5B3F7558270DE7DD2D98E22DE3FDD57E /* UMReactNativeAdapter.xcconfig */; + baseConfigurationReference = 7ED94019A38F38B84CE4B5051D7B73C4 /* UMReactNativeAdapter.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31160,32 +31002,6 @@ }; name = Release; }; - E0E00834D930FBADC9C7DB6F3FD98E87 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 01CF13B9D679B7BC88155AD55F3DD540 /* Pods-RocketChatRN.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - ARCHS = "$(ARCHS_STANDARD_64_BIT)"; - 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 = 11.0; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.modulemap"; - 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; - }; E1CC6024391925867D6F5746C801CBBF /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = FAAAA8269B5EEB70685F47DA901D4B89 /* FlipperKit.xcconfig */; @@ -31216,7 +31032,7 @@ }; E2343B210AF75F7D3FAFF5A1ADAA8E2B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2CCADECA416C36233EDB1367D6148C60 /* RNRootView.xcconfig */; + baseConfigurationReference = 02E9A3D5B9DAE21C00A3C9E91CA495C7 /* RNRootView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31243,7 +31059,7 @@ }; E2D24AA18608BA090376E86DB7BCB26E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E1F337022FAD323E4E4537DA434CEE80 /* RNCMaskedView.xcconfig */; + baseConfigurationReference = 83C6051B5BB74E0C061731744EC94DC0 /* RNCMaskedView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31270,7 +31086,7 @@ }; E2D6EA909158F38D23E09480CFC0012B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 343B4A0F29E595ED75877EE1453475D2 /* React-Core.xcconfig */; + baseConfigurationReference = 3B5FFECD1A6CEB423DF95FD048E5BB70 /* React-Core.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31322,7 +31138,7 @@ }; E3C29AEA11F3223722658CFAD4CED5A3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C8B6B90EB6C36BC126CCCD3BC87DDE8F /* React.xcconfig */; + baseConfigurationReference = DA70884E7FDA3795BFD5C16FFE565B79 /* React.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31338,7 +31154,7 @@ }; E4994CD19B3CE26912637B9AE5C584F6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0D058555FF1C043FD328AC579E635FA4 /* react-native-jitsi-meet.xcconfig */; + baseConfigurationReference = 17E87B00A92EE15EC1C9E2F5467933B6 /* react-native-jitsi-meet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31364,7 +31180,7 @@ }; EA78216D413AEF5509BC7B4DBF691BAC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AD33857D528B2A4D54BBCFCFE7D00BC3 /* rn-fetch-blob.xcconfig */; + baseConfigurationReference = 5D84B5B0AED6D6EC1970C7EAFF91AF57 /* rn-fetch-blob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31390,7 +31206,7 @@ }; EB22789E6D5BAB3E3F969EDF91DE9BC1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C8B6B90EB6C36BC126CCCD3BC87DDE8F /* React.xcconfig */; + baseConfigurationReference = DA70884E7FDA3795BFD5C16FFE565B79 /* React.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31405,7 +31221,7 @@ }; EF837CE35B7A473EFD08BF3C094E6D28 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2B227BB4081A0127E3F5F504F8BECC8E /* EXPermissions.xcconfig */; + baseConfigurationReference = 7F3BB4CE0AD0B8C7B54FB7F37505224F /* EXPermissions.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31432,7 +31248,7 @@ }; EFBC1B2B4FDA4EAFF967FBC3A5455A23 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D3F6C4A7B7A52935C844753CDE09D46D /* React-RCTSettings.xcconfig */; + baseConfigurationReference = DBD32390C988B0EDD281390E40FFB1E0 /* React-RCTSettings.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31459,7 +31275,7 @@ }; F110780FDF9D939A972D53231EE6FA24 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 69E2FC04583B23D65644B8FAE8EB8CC9 /* EXFileSystem.xcconfig */; + baseConfigurationReference = 1FB44558A4716076A776890E5B9EEA0A /* EXFileSystem.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31513,7 +31329,7 @@ }; F3D3F652EF48BAA51EBC8E2B8BF33B10 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 564108603663D6E8FD3C576E9C82E0FE /* React-cxxreact.xcconfig */; + baseConfigurationReference = 7867172B082DEC058AEB7E73800D54B4 /* React-cxxreact.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31540,7 +31356,7 @@ }; F557FCBDFC24296FDD3F0B44C274A253 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CC3D692DE6A573051DEFFB08CD5D594C /* RNDateTimePicker.xcconfig */; + baseConfigurationReference = 78FA3E580A83E7B3822370ACC3E1854F /* RNDateTimePicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31567,7 +31383,7 @@ }; F7F7649CBC7C19196B8BBEF0DD2B193F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CAF57B687DBABF5583B844CE17FE9AE7 /* ReactCommon.xcconfig */; + baseConfigurationReference = A1F14998FCA22D0DA4C9B893F4D8917A /* ReactCommon.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31649,7 +31465,7 @@ }; FA6530159C429B86F21FB87A3F4E315D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CB36FE94E7064BDF21B7063705C2585A /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 29BBF567B242DB371110C704D4FF5E64 /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31702,7 +31518,7 @@ }; FA75107B9FA4AEC31421192228EAF167 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F04F5797167F566DEC173C68ED322390 /* React-RCTLinking.xcconfig */; + baseConfigurationReference = 434C89B7FF1C87A3657C1C43B3CB5CAA /* React-RCTLinking.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31728,7 +31544,7 @@ }; FC4DE0C4A8D93C86E058BD266AD33FA9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46138D88D9089B325DB537848E0BD935 /* EXLocalAuthentication.xcconfig */; + baseConfigurationReference = 1E231DB88DBDDA719E356518743872C4 /* EXLocalAuthentication.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31782,7 +31598,7 @@ }; FE5DF526A592397782C99673E1056E52 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EA19326E85E449FBF80D9050EE2053EB /* EXHaptics.xcconfig */; + baseConfigurationReference = 7B36BE1CB72067A3C7D3AEF8F878B0E3 /* EXHaptics.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31809,7 +31625,7 @@ }; FEE2A6B5E74B79501495E1D072804DE2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 98DC296BF9AB6C5F92D462E85FF0B4E9 /* react-native-document-picker.xcconfig */; + baseConfigurationReference = D290732FB1A772D68C40D1DFC5859F7E /* react-native-document-picker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -31836,7 +31652,7 @@ }; FFB88A23A6CBC95B90E15C63EDA3D2A9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EA19326E85E449FBF80D9050EE2053EB /* EXHaptics.xcconfig */; + baseConfigurationReference = 7B36BE1CB72067A3C7D3AEF8F878B0E3 /* EXHaptics.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ARCHS = "$(ARCHS_STANDARD_64_BIT)"; @@ -32252,15 +32068,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 64DB932A72AC27314419FE6861FADD3F /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4C168093C8EBAB4B79BF8C1C2FF085AA /* Debug */, - 8318601443E9A810BCA4D6580373DEDE /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 6724FB64E45E8AF2DFE38B228CA55678 /* Build configuration list for PBXNativeTarget "RNImageCropPicker-QBImagePicker" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -32387,15 +32194,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 90263AB0A28855EB2C91CD34783542CD /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 92A3674E494DB07A3079268B0B7BF25A /* Debug */, - E0E00834D930FBADC9C7DB6F3FD98E87 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 913138D43225773C4430483BA181BA0E /* Build configuration list for PBXNativeTarget "RNGestureHandler" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -32495,6 +32293,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + A2A758EA5128F2F9EA827AE0B3FE26BB /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DC416A8296E3086FF141D0C5E4EAB744 /* Debug */, + 74F11AF1DF61D1FCDE1BD3825A19BABF /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; A3A2A6898A170D522E0B11C485B6E5C8 /* Build configuration list for PBXNativeTarget "RNDateTimePicker" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -32585,15 +32392,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BAD9CE9FDF5CCD5375CD542095538171 /* Build configuration list for PBXNativeTarget "RNAudio" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 073679048D1D150AC0E021A2272308F1 /* Debug */, - 1676DBE1C10283BB1D2D76E8C658B9A5 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; BB4981FF89847CBB09ECE3E13602D09A /* Build configuration list for PBXNativeTarget "RCTTypeSafety" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -32675,6 +32473,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + CC51CEF38932AE45ED0685090821B669 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 45C1455B35A61F999403D9898B421F57 /* Debug */, + 90E83551A0B75968799A01FDC634DB1D /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; CDE33BE98D57C7F321E4FCBBBAD79D50 /* Build configuration list for PBXNativeTarget "React-cxxreact" */ = { isa = XCConfigurationList; buildConfigurations = ( diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown index 610cf666ad8..8ffe98d5785 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 @@ -2963,31 +2963,6 @@ limitations under the License. limitations under the License. -## RNAudio - -The MIT License (MIT) - -Copyright (c) [2016] [Joshua Sierles] - -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. - - ## RNBootSplash 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 f61e1970a39..d9af2ce29a8 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 @@ -3148,37 +3148,6 @@ limitations under the License. Type PSGroupSpecifier - - FooterText - The MIT License (MIT) - -Copyright (c) [2016] [Joshua Sierles] - -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 - RNAudio - Type - PSGroupSpecifier - FooterText MIT License 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 8813e45394e..3ebe50ceb9e 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,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 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/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AVFoundation" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 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 a9664777d76..79bd1d2772e 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,11 +1,11 @@ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 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/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AVFoundation" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 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 610cf666ad8..8ffe98d5785 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 @@ -2963,31 +2963,6 @@ limitations under the License. limitations under the License. -## RNAudio - -The MIT License (MIT) - -Copyright (c) [2016] [Joshua Sierles] - -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. - - ## RNBootSplash 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 f61e1970a39..d9af2ce29a8 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 @@ -3148,37 +3148,6 @@ limitations under the License. Type PSGroupSpecifier - - FooterText - The MIT License (MIT) - -Copyright (c) [2016] [Joshua Sierles] - -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 - RNAudio - Type - PSGroupSpecifier - FooterText MIT License diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig index a8dd196b024..2e088c7f1d6 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,10 +1,10 @@ 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/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Folly" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-Glog" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-PeerTalk" "${PODS_CONFIGURATION_BUILD_DIR}/Flipper-RSocket" "${PODS_CONFIGURATION_BUILD_DIR}/FlipperKit" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AVFoundation" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"Flipper" -l"Flipper-DoubleConversion" -l"Flipper-Folly" -l"Flipper-Glog" -l"Flipper-PeerTalk" -l"Flipper-RSocket" -l"FlipperKit" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/FlipperKit/FlipperKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 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 9318f92c68f..db88ed8714c 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,10 +1,10 @@ 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/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public/CocoaLibEvent" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXKeepAwake" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/Flipper" "${PODS_ROOT}/Headers/Public/Flipper-DoubleConversion" "${PODS_ROOT}/Headers/Public/Flipper-Folly" "${PODS_ROOT}/Headers/Public/Flipper-Glog" "${PODS_ROOT}/Headers/Public/Flipper-PeerTalk" "${PODS_ROOT}/Headers/Public/Flipper-RSocket" "${PODS_ROOT}/Headers/Public/FlipperKit" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNCAsyncStorage" "${PODS_ROOT}/Headers/Public/RNCMaskedView" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardInput" "${PODS_ROOT}/Headers/Public/ReactNativeKeyboardTrackingView" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/UMAppLoader" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public/UMCameraInterface" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/YogaKit" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-safe-area-context" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/CocoaAsyncSocket" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXKeepAwake" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage" "${PODS_CONFIGURATION_BUILD_DIR}/RNCMaskedView" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardInput" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeKeyboardTrackingView" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/UMAppLoader" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/YogaKit" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-safe-area-context" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" "${PODS_ROOT}/CocoaLibEvent/lib" "${PODS_ROOT}/OpenSSL-Universal/ios/lib" OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AVFoundation" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"CocoaAsyncSocket" -l"DoubleConversion" -l"EXAV" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXKeepAwake" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNBootSplash" -l"RNCAsyncStorage" -l"RNCMaskedView" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"ReactNativeKeyboardInput" -l"ReactNativeKeyboardTrackingView" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"YogaKit" -l"c++" -l"crypto" -l"event" -l"event_core" -l"event_extra" -l"event_pthreads" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-safe-area-context" -l"react-native-slider" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"ssl" -l"stdc++" -l"z" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "MobileCoreServices" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -Xcc -fmodule-map-file="${PODS_CONFIGURATION_BUILD_DIR}/YogaKit/YogaKit.modulemap" -Xcc -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) diff --git a/ios/Pods/Target Support Files/RNAudio/RNAudio-dummy.m b/ios/Pods/Target Support Files/RNAudio/RNAudio-dummy.m deleted file mode 100644 index 945c6cb8872..00000000000 --- a/ios/Pods/Target Support Files/RNAudio/RNAudio-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_RNAudio : NSObject -@end -@implementation PodsDummy_RNAudio -@end diff --git a/ios/Pods/Target Support Files/RNAudio/RNAudio-prefix.pch b/ios/Pods/Target Support Files/RNAudio/RNAudio-prefix.pch deleted file mode 100644 index beb2a244183..00000000000 --- a/ios/Pods/Target Support Files/RNAudio/RNAudio-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/RNAudio/RNAudio.xcconfig b/ios/Pods/Target Support Files/RNAudio/RNAudio.xcconfig deleted file mode 100644 index cf85327a227..00000000000 --- a/ios/Pods/Target Support Files/RNAudio/RNAudio.xcconfig +++ /dev/null @@ -1,12 +0,0 @@ -APPLICATION_EXTENSION_API_ONLY = YES -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RNAudio -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNAudio" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/React-Core" "${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/Yoga" "${PODS_ROOT}/Headers/Public/glog" -OTHER_CFLAGS = $(inherited) -fmodule-map-file="${PODS_ROOT}/Headers/Public/yoga/Yoga.modulemap" -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-audio -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/package.json b/package.json index 0abbc356591..248598ea4e0 100644 --- a/package.json +++ b/package.json @@ -60,7 +60,6 @@ "react-native": "0.62.2", "react-native-animatable": "^1.3.3", "react-native-appearance": "0.3.4", - "react-native-audio": "^4.3.0", "react-native-background-timer": "2.2.0", "react-native-bootsplash": "2.2.4", "react-native-console-time-polyfill": "^1.2.1", diff --git a/yarn.lock b/yarn.lock index 4d1efac3ff9..455424009cc 100644 --- a/yarn.lock +++ b/yarn.lock @@ -11741,11 +11741,6 @@ react-native-appearance@0.3.4: invariant "^2.2.4" use-subscription "^1.0.0" -react-native-audio@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/react-native-audio/-/react-native-audio-4.3.0.tgz#fae22b81f6a4dda706fd4837d0c6a89c66cf2e7e" - integrity sha512-QQYq28eSJy+y/Ukvry0AkbwMVELAj+LcEwCVRH+7sKLqlnoBBxGd4ilhgJHjwOiC70192LueGbjXJjPPEwW3iA== - react-native-background-timer@2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/react-native-background-timer/-/react-native-background-timer-2.2.0.tgz#ff82d30899209b924983cc00e6ce174b8de5054a" From 3ad86af5bf2cf5db84fa4249a7b1f46e6c7d0ce8 Mon Sep 17 00:00:00 2001 From: Neil Agarwal Date: Tue, 23 Jun 2020 21:08:56 +0530 Subject: [PATCH 07/11] fix(MessageBox): bring back some missed styles during refactor --- app/containers/MessageBox/index.js | 48 +++++++++++++++++------------- 1 file changed, 27 insertions(+), 21 deletions(-) diff --git a/app/containers/MessageBox/index.js b/app/containers/MessageBox/index.js index cac361c4be0..67986636cdb 100644 --- a/app/containers/MessageBox/index.js +++ b/app/containers/MessageBox/index.js @@ -824,22 +824,25 @@ class MessageBox extends Component { /> ); - const commandsReplyMentions = !recording ? ( + const commandsPreviewAndMentions = !recording ? ( <> - ) : null; - const content = !recording ? ( + const replyPreview = !recording ? ( + + ) : null; + + const textInputAndButtons = !recording ? ( <> - {commandsReplyMentions} - - {content} - {recordAudio} + {commandsPreviewAndMentions} + + {replyPreview} + + {textInputAndButtons} + {recordAudio} + ); From ed5e09c0182ef8f3ca03e56d20bc9fd61d8e8e4e Mon Sep 17 00:00:00 2001 From: Neil Agarwal Date: Wed, 24 Jun 2020 01:42:36 +0530 Subject: [PATCH 08/11] refactor(RecordAudio): use class component --- app/containers/MessageBox/RecordAudio.js | 302 ++++++++++++----------- 1 file changed, 164 insertions(+), 138 deletions(-) diff --git a/app/containers/MessageBox/RecordAudio.js b/app/containers/MessageBox/RecordAudio.js index e63395464b4..e8a22ca820d 100644 --- a/app/containers/MessageBox/RecordAudio.js +++ b/app/containers/MessageBox/RecordAudio.js @@ -1,15 +1,15 @@ -import React, { useRef, useState, useEffect } from 'react'; +import React from 'react'; import PropTypes from 'prop-types'; import { View, Text } from 'react-native'; -import { activateKeepAwake, deactivateKeepAwake } from 'expo-keep-awake'; import { Audio } from 'expo-av'; -import { getInfoAsync } from 'expo-file-system'; import { BorderlessButton } from 'react-native-gesture-handler'; +import { getInfoAsync } from 'expo-file-system'; +import { deactivateKeepAwake, activateKeepAwake } from 'expo-keep-awake'; -import { CustomIcon } from '../../lib/Icons'; import styles from './styles'; import I18n from '../../i18n'; import { themes } from '../../constants/colors'; +import { CustomIcon } from '../../lib/Icons'; const RECORDING_EXTENSION = '.aac'; const RECORDING_SETTINGS = { @@ -40,7 +40,7 @@ const RECORDING_MODE = { interruptionModeAndroid: Audio.INTERRUPTION_MODE_ANDROID_DO_NOT_MIX }; -const _formatTime = function(seconds) { +const formatTime = function(seconds) { let minutes = Math.floor(seconds / 60); seconds %= 60; if (minutes < 10) { minutes = `0${ minutes }`; } @@ -48,154 +48,180 @@ const _formatTime = function(seconds) { return `${ minutes }:${ seconds }`; }; -const startRecordingAudio = async(instance, setRecordingStatus, setRecorderBusy) => { - setRecorderBusy(true); - try { - const permissions = await Audio.getPermissionsAsync(); - - if (permissions.status === 'granted') { - await Audio.setAudioModeAsync(RECORDING_MODE); - instance.setOnRecordingStatusUpdate((status) => { - setRecordingStatus(status); - }); - - await instance.prepareToRecordAsync(RECORDING_SETTINGS); - await instance.startAsync(); - activateKeepAwake(); - } else { - await Audio.requestPermissionsAsync(); - } - } catch (error) { - // Do nothing +export default class RecordAudio extends React.PureComponent { + static propTypes = { + theme: PropTypes.string, + recordingCallback: PropTypes.func, + onFinish: PropTypes.func } - setRecorderBusy(false); -}; -const finishRecordingAudio = async(instance, onFinish, setRecorderBusy) => { - setRecorderBusy(true); - try { - await instance.stopAndUnloadAsync(); - - const fileURI = instance.getURI(); - const fileData = await getInfoAsync(fileURI); - const fileInfo = { - name: `${ Date.now() }.aac`, - mime: 'audio/aac', - type: 'audio/aac', - store: 'Uploads', - path: fileURI, - size: fileData.size + constructor(props) { + super(props); + this.recording = null; + this.state = { + isRecording: false, + isRecorderBusy: false, + recordingDurationMillis: 0 }; - - onFinish(fileInfo); - } catch (error) { - // Do nothing } - deactivateKeepAwake(); - setRecorderBusy(false); -}; -const cancelAudioMessage = async(instance, setRecorderBusy) => { - setRecorderBusy(true); - try { - await instance.stopAndUnloadAsync(); - } catch (error) { - // Do nothing + componentDidUpdate() { + const { recordingCallback } = this.props; + const { isRecording } = this.state; + + recordingCallback(isRecording); } - deactivateKeepAwake(); - setRecorderBusy(false); -}; -const RecordAudio = ({ theme, recordingCallback, onFinish }) => { - const recordingInstance = useRef(null); + componentWillUnmount() { + if (this.recording) { + this.cancelRecordingAudio(); + } + } - const [recordingStatus, setRecordingStatus] = useState({ - canRecord: false, - isRecording: false, - durationMillis: 0, - isDoneRecording: false - }); - const [recorderBusy, setRecorderBusy] = useState(false); + get duration() { + const { recordingDurationMillis } = this.state; + return formatTime(Math.floor(recordingDurationMillis / 1000)); + } - useEffect(() => () => { - if (recordingInstance.current) { - cancelAudioMessage(recordingInstance.current, setRecorderBusy); + startRecordingAudio = async() => { + const { isRecorderBusy } = this.state; + + if (!isRecorderBusy) { + this.setState({ isRecorderBusy: true }); + try { + const permissions = await Audio.getPermissionsAsync(); + + if (permissions.status === 'granted') { + await Audio.setAudioModeAsync(RECORDING_MODE); + + if (this.recording !== null) { + this.recording.setOnRecordingStatusUpdate(null); + this.recording = null; + } + + const recording = new Audio.Recording(); + await recording.prepareToRecordAsync(RECORDING_SETTINGS); + recording.setOnRecordingStatusUpdate((status) => { + this.setState({ + isRecording: status.isRecording, + recordingDurationMillis: status.durationMillis + }); + }); + + this.recording = recording; + + await this.recording.startAsync(); + activateKeepAwake(); + } else { + await Audio.requestPermissionsAsync(); + } + } catch (error) { + // Do nothing + } + this.setState({ isRecorderBusy: false }); + } + }; + + finishRecordingAudio = async() => { + const { isRecorderBusy } = this.state; + + if (!isRecorderBusy) { + const { onFinish } = this.props; + + this.setState({ isRecorderBusy: true }); + try { + await this.recording.stopAndUnloadAsync(); + + const fileURI = this.recording.getURI(); + const fileData = await getInfoAsync(fileURI); + const fileInfo = { + name: `${ Date.now() }.aac`, + mime: 'audio/aac', + type: 'audio/aac', + store: 'Uploads', + path: fileURI, + size: fileData.size + }; + + onFinish(fileInfo); + } catch (error) { + // Do nothing + } + deactivateKeepAwake(); + this.setState({ isRecorderBusy: false }); + } + }; + + cancelRecordingAudio = async() => { + const { isRecorderBusy } = this.state; + + if (!isRecorderBusy) { + this.setState({ isRecorderBusy: true }); + try { + await this.recording.stopAndUnloadAsync(); + } catch (error) { + // Do nothing + } + deactivateKeepAwake(); + this.setState({ isRecorderBusy: false }); } - }, []); + }; - useEffect(() => { - recordingCallback(recordingStatus.isRecording); - }, [recordingStatus.isRecording]); + render() { + const { theme } = this.props; + const { isRecording } = this.state; - const recordingContent = recordingStatus.isRecording ? ( - - + if (!isRecording) { + return ( { - if (!recorderBusy) { - cancelAudioMessage(recordingInstance.current, setRecorderBusy); - } - }} - accessibilityLabel={I18n.t('Cancel_recording')} - accessibilityTraits='button' + onPress={this.startRecordingAudio} style={styles.actionButton} - > - - - - {_formatTime(Math.floor(recordingStatus.durationMillis / 1000))} - - - - { - if (!recorderBusy) { - finishRecordingAudio(recordingInstance.current, onFinish, setRecorderBusy); - } - }} - accessibilityLabel={I18n.t('Finish_recording')} + testID='messagebox-send-audio' + accessibilityLabel={I18n.t('Send_audio_message')} accessibilityTraits='button' - style={styles.actionButton} > - + - - - ) : ( - { - if (!recorderBusy) { - recordingInstance.current = new Audio.Recording(); - startRecordingAudio(recordingInstance.current, setRecordingStatus, setRecorderBusy); - } - }} - style={styles.actionButton} - testID='messagebox-send-audio' - accessibilityLabel={I18n.t('Send_audio_message')} - accessibilityTraits='button' - > - - - ); - - return recordingContent; -}; - -RecordAudio.propTypes = { - theme: PropTypes.string, - recordingCallback: PropTypes.func, - onFinish: PropTypes.func -}; + ); + } -export default RecordAudio; + return ( + + + + + + + {this.duration} + + + + + + + + + ); + } +} From 0ee380a2fb7f01d9c5b0b1a84df8f42915f712b2 Mon Sep 17 00:00:00 2001 From: Neil Agarwal Date: Wed, 24 Jun 2020 05:46:17 +0530 Subject: [PATCH 09/11] refactor(RecordAudio): recorder busy to class property, styling changes * recorder initialisation changes --- app/containers/MessageBox/RecordAudio.js | 94 +++++++++++------------- app/containers/MessageBox/index.js | 5 +- app/containers/MessageBox/styles.js | 9 +-- 3 files changed, 44 insertions(+), 64 deletions(-) diff --git a/app/containers/MessageBox/RecordAudio.js b/app/containers/MessageBox/RecordAudio.js index e8a22ca820d..a9372a87e7c 100644 --- a/app/containers/MessageBox/RecordAudio.js +++ b/app/containers/MessageBox/RecordAudio.js @@ -57,10 +57,9 @@ export default class RecordAudio extends React.PureComponent { constructor(props) { super(props); - this.recording = null; + this.isRecorderBusy = false; this.state = { isRecording: false, - isRecorderBusy: false, recordingDurationMillis: 0 }; } @@ -83,32 +82,28 @@ export default class RecordAudio extends React.PureComponent { return formatTime(Math.floor(recordingDurationMillis / 1000)); } - startRecordingAudio = async() => { - const { isRecorderBusy } = this.state; + isRecordingPermissionGranted = async() => { + const permission = await Audio.getPermissionsAsync(); + return permission.status === 'granted'; + } - if (!isRecorderBusy) { - this.setState({ isRecorderBusy: true }); - try { - const permissions = await Audio.getPermissionsAsync(); + onRecordingStatusUpdate = (status) => { + this.setState({ + isRecording: status.isRecording, + recordingDurationMillis: status.durationMillis + }); + } - if (permissions.status === 'granted') { + startRecordingAudio = async() => { + if (!this.isRecorderBusy) { + this.isRecorderBusy = true; + try { + if (this.isRecordingPermissionGranted()) { await Audio.setAudioModeAsync(RECORDING_MODE); - if (this.recording !== null) { - this.recording.setOnRecordingStatusUpdate(null); - this.recording = null; - } - - const recording = new Audio.Recording(); - await recording.prepareToRecordAsync(RECORDING_SETTINGS); - recording.setOnRecordingStatusUpdate((status) => { - this.setState({ - isRecording: status.isRecording, - recordingDurationMillis: status.durationMillis - }); - }); - - this.recording = recording; + this.recording = new Audio.Recording(); + await this.recording.prepareToRecordAsync(RECORDING_SETTINGS); + this.recording.setOnRecordingStatusUpdate(this.onRecordingStatusUpdate); await this.recording.startAsync(); activateKeepAwake(); @@ -116,19 +111,17 @@ export default class RecordAudio extends React.PureComponent { await Audio.requestPermissionsAsync(); } } catch (error) { - // Do nothing + // Do nothing } - this.setState({ isRecorderBusy: false }); + this.isRecorderBusy = false; } }; finishRecordingAudio = async() => { - const { isRecorderBusy } = this.state; - - if (!isRecorderBusy) { + if (!this.isRecorderBusy) { const { onFinish } = this.props; - this.setState({ isRecorderBusy: true }); + this.isRecorderBusy = true; try { await this.recording.stopAndUnloadAsync(); @@ -145,25 +138,23 @@ export default class RecordAudio extends React.PureComponent { onFinish(fileInfo); } catch (error) { - // Do nothing + // Do nothing } deactivateKeepAwake(); - this.setState({ isRecorderBusy: false }); + this.isRecorderBusy = false; } }; cancelRecordingAudio = async() => { - const { isRecorderBusy } = this.state; - - if (!isRecorderBusy) { - this.setState({ isRecorderBusy: true }); + if (!this.isRecorderBusy) { + this.isRecorderBusy = true; try { await this.recording.stopAndUnloadAsync(); } catch (error) { - // Do nothing + // Do nothing } deactivateKeepAwake(); - this.setState({ isRecorderBusy: false }); + this.isRecorderBusy = false; } }; @@ -201,26 +192,23 @@ export default class RecordAudio extends React.PureComponent { /> {this.duration} - - - - - + + + ); } diff --git a/app/containers/MessageBox/index.js b/app/containers/MessageBox/index.js index 67986636cdb..cfcf7634022 100644 --- a/app/containers/MessageBox/index.js +++ b/app/containers/MessageBox/index.js @@ -1,8 +1,6 @@ import React, { Component } from 'react'; import PropTypes from 'prop-types'; -import { - View, Alert, Keyboard -} from 'react-native'; +import { View, Alert, Keyboard } from 'react-native'; import { connect } from 'react-redux'; import { KeyboardAccessoryView } from 'react-native-keyboard-input'; import ImagePicker from 'react-native-image-crop-picker'; @@ -868,7 +866,6 @@ class MessageBox extends Component { theme={theme} {...isAndroidTablet} /> - Date: Wed, 24 Jun 2020 06:02:23 +0530 Subject: [PATCH 10/11] fix(RecordAudio): missing await in isRecordingPermissionGranted --- app/containers/MessageBox/RecordAudio.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/containers/MessageBox/RecordAudio.js b/app/containers/MessageBox/RecordAudio.js index a9372a87e7c..8fdd83e89a7 100644 --- a/app/containers/MessageBox/RecordAudio.js +++ b/app/containers/MessageBox/RecordAudio.js @@ -98,7 +98,7 @@ export default class RecordAudio extends React.PureComponent { if (!this.isRecorderBusy) { this.isRecorderBusy = true; try { - if (this.isRecordingPermissionGranted()) { + if (await this.isRecordingPermissionGranted()) { await Audio.setAudioModeAsync(RECORDING_MODE); this.recording = new Audio.Recording(); From 34cf913e5c897692dd86ffe997898021f2cc6634 Mon Sep 17 00:00:00 2001 From: Neil Agarwal Date: Wed, 24 Jun 2020 23:22:24 +0530 Subject: [PATCH 11/11] fix(RecordAudio): set isRecording = false on cancel/finish, refactor perms --- app/containers/MessageBox/RecordAudio.js | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/app/containers/MessageBox/RecordAudio.js b/app/containers/MessageBox/RecordAudio.js index 8fdd83e89a7..b9e94988cac 100644 --- a/app/containers/MessageBox/RecordAudio.js +++ b/app/containers/MessageBox/RecordAudio.js @@ -83,8 +83,16 @@ export default class RecordAudio extends React.PureComponent { } isRecordingPermissionGranted = async() => { - const permission = await Audio.getPermissionsAsync(); - return permission.status === 'granted'; + try { + const permission = await Audio.getPermissionsAsync(); + if (permission.status === 'granted') { + return true; + } + await Audio.requestPermissionsAsync(); + } catch { + // Do nothing + } + return false; } onRecordingStatusUpdate = (status) => { @@ -98,7 +106,8 @@ export default class RecordAudio extends React.PureComponent { if (!this.isRecorderBusy) { this.isRecorderBusy = true; try { - if (await this.isRecordingPermissionGranted()) { + const canRecord = await this.isRecordingPermissionGranted(); + if (canRecord) { await Audio.setAudioModeAsync(RECORDING_MODE); this.recording = new Audio.Recording(); @@ -140,6 +149,7 @@ export default class RecordAudio extends React.PureComponent { } catch (error) { // Do nothing } + this.setState({ isRecording: false, recordingDurationMillis: 0 }); deactivateKeepAwake(); this.isRecorderBusy = false; } @@ -153,6 +163,7 @@ export default class RecordAudio extends React.PureComponent { } catch (error) { // Do nothing } + this.setState({ isRecording: false, recordingDurationMillis: 0 }); deactivateKeepAwake(); this.isRecorderBusy = false; }